:root {
  --blue: #0747ff;
  --blue-dark: #00144a;
  --ink: #020b2d;
  --muted: #51607a;
  --ink-soft: #111b3f;
  --ink-muted: #53627a;
  --line: #e7ebf4;
  --soft: #f6f8fc;
  --yellow: #ffb703;
  --radius: 16px;
  --text-xs: 11px;
  --text-sm: 12px;
  --text-md: 13px;
  --text-base: 15px;
  --text-lg: 17px;
  --text-xl: 18px;
  --text-2xl: 20px;
  --text-3xl: 24px;
  --text-icon: 28px;
  --title-xs: clamp(22px, 2.6vw, 34px);
  --title-sm: clamp(28px, 3vw, 42px);
  --title-md: clamp(30px, 3.4vw, 46px);
  --title-lg: clamp(42px, 5vw, 60px);
  --title-hero: clamp(58px, 8.2vw, 104px);
  --title-mobile-sm: clamp(28px, 9vw, 38px);
  --title-mobile-md: clamp(30px, 9vw, 42px);
  --title-mobile-lg: clamp(38px, 10vw, 50px);
  --title-mobile-xl: clamp(32px, 10vw, 46px);
  --font-weight-normal: 400;
  --font-weight-body: 400;
  --font-weight-text: 400;
  --font-weight-strong: 600;
  --font-weight-title: 700;
  --header-height: 76px;
  --hero-min-height: calc(100svh - var(--header-height));
  /* Largeur de contenu unifiée — élargie pour limiter les marges sur grand écran */
  --container: min(1480px, calc(100% - 64px));
}

/* Pages utilitaires (FAQ, RDV, légales, article blog) : hero non plein écran */
body.compact-hero {
  --hero-min-height: auto;
}

/* Icône téléphone SVG (remplace le glyphe ☎ pour un rendu mobile fiable) */
.phone-ico {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  vertical-align: -0.12em;
}

/* ---------- Page prise de rendez-vous ---------- */
.appointment-hero,
.appointment-home-band,
.appointment-steps,
.appointment-urgency,
.appointment-map-band,
.appointment-trust {
  width: var(--container);
  margin-inline: auto;
}

.appointment-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .72fr);
  gap: 28px 54px;
  align-items: center;
  min-height: var(--hero-min-height);
  padding: clamp(42px, 5.5vw, 72px) 0 28px;
}

.appointment-hero::before {
  content: '';
  position: absolute;
  right: -6%;
  top: 18%;
  z-index: -1;
  width: min(520px, 42vw);
  height: min(520px, 42vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18,82,255,.13), rgba(18,82,255,.05) 42%, transparent 70%);
}

.appointment-hero-copy h1 {
  max-width: 640px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: .98;
  letter-spacing: -0.06em;
}

.appointment-hero .section-eyebrow {
  margin-bottom: 14px;
  text-align: left;
}

.appointment-hero-copy p:not(.section-eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: var(--text-xl);
  line-height: 1.45;
  font-weight: var(--font-weight-text);
}

.appointment-hero-home-card {
  display: grid;
  gap: 14px;
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(18,82,255,.12);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(239,245,255,.68)),
    radial-gradient(circle at 100% 0%, rgba(18,82,255,.18), transparent 42%);
  box-shadow: 0 20px 58px rgba(0,34,102,.08);
  backdrop-filter: blur(10px);
}

.appointment-hero-home-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.appointment-hero-home-head > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(18,82,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.74);
}

.appointment-hero-home-head svg {
  width: 27px;
  stroke: var(--blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appointment-hero-home-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.15vw, 31px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.appointment-hero-home-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.appointment-hero-home-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: var(--text-sm);
  line-height: 1.25;
  font-weight: var(--font-weight-strong);
}

.appointment-hero-home-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(18,82,255,.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.appointment-hero-home-card .btn {
  width: 100%;
}

.appointment-hero-home-card small {
  color: var(--ink-muted);
  font-size: var(--text-xs);
}

.appointment-hero-stats {
  grid-column: 1 / -1;
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 48px rgba(0, 34, 102, .07);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.appointment-hero-stats-track {
  display: flex;
  width: max-content;
  animation: appointment-stats-scroll 28s linear infinite;
}

.appointment-hero-stats:hover .appointment-hero-stats-track {
  animation-play-state: paused;
}

.appointment-hero-stats article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "value label"
    "value text";
  column-gap: 18px;
  align-content: center;
  align-items: center;
  min-width: 360px;
  min-height: 66px;
  padding: 12px 28px;
  border-left: 1px solid var(--line);
}

.appointment-hero-stats article:first-child,
.appointment-hero-stats article:nth-child(4) {
  border-left: 0;
}

.appointment-hero-stats strong {
  grid-area: value;
  color: var(--blue);
  font-size: clamp(26px, 2vw, 34px);
  line-height: .98;
  letter-spacing: -0.05em;
  overflow-wrap: normal;
}

.appointment-hero-stats span {
  grid-area: label;
  margin-top: 0;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.18;
  font-weight: var(--font-weight-strong);
}

.appointment-hero-stats small {
  grid-area: text;
  max-width: 170px;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: var(--text-xs);
  line-height: 1.36;
}

.appointment-hero-stats em {
  grid-column: 2;
  margin-top: 6px;
  color: #f6b800;
  font-style: normal;
  letter-spacing: .06em;
  font-size: var(--text-xs);
}

@keyframes appointment-stats-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.appointment-home-band {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  margin-top: 10px;
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid rgba(18, 82, 255, .08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 17% 45%, rgba(18,82,255,.12), transparent 26%),
    linear-gradient(135deg, #f3f7ff 0%, #eef4ff 100%);
  box-shadow: 0 28px 90px rgba(0, 32, 96, .08);
}

.appointment-home-visual {
  position: relative;
  min-height: 230px;
  display: grid;
  place-items: center;
}

.appointment-home-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 20px 60px rgba(18,82,255,.14);
}

.appointment-home-icon svg {
  width: 72px;
  stroke: var(--blue);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appointment-country-shape {
  position: absolute;
  right: 22px;
  bottom: 12px;
  width: 124px;
  height: 100px;
  border: 2px dashed rgba(18,82,255,.22);
  border-radius: 42% 58% 45% 55%;
  transform: rotate(-13deg);
}

.appointment-country-shape span {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 28px;
  height: 28px;
  border-radius: 999px 999px 999px 0;
  background: var(--blue);
  transform: rotate(-45deg);
  box-shadow: 0 12px 28px rgba(18,82,255,.24);
}

.appointment-country-shape span::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  background: #fff;
}

.appointment-home-content h2 {
  max-width: 740px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.appointment-home-content ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 32px 0 28px;
  padding: 0;
  list-style: none;
}

.appointment-home-content li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-size: var(--text-lg);
  line-height: 1.25;
  font-weight: var(--font-weight-strong);
}

.appointment-home-content li::before,
.appointment-step-centers p svg,
.appointment-trust svg {
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appointment-home-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(18,82,255,.1);
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.appointment-home-content .btn {
  width: min(100%, 520px);
}

.appointment-home-content small {
  display: block;
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: var(--text-sm);
}

.appointment-steps {
  margin-top: 34px;
}

.appointment-step {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.appointment-step:last-child {
  border-bottom: 1px solid var(--line);
}

.appointment-step-title span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.appointment-step-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-3xl);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.appointment-country-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.appointment-country-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 150px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  cursor: default;
}

.appointment-country-card.is-active {
  border-color: rgba(18,82,255,.55);
  box-shadow: inset 0 0 0 1px rgba(18,82,255,.3), 0 16px 44px rgba(18,82,255,.08);
}

.appointment-country-card.is-active::after {
  content: '✓';
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.appointment-flag {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(18,82,255,.06);
  font-size: 40px;
  line-height: 1;
}

.appointment-country-card strong {
  font-size: var(--text-lg);
}

.appointment-region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.appointment-region-list button {
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-strong);
  cursor: default;
}

.appointment-region-list button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(18,82,255,.2);
}

.appointment-center-list {
  display: grid;
  gap: 14px;
}

.appointment-center-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 250px;
  gap: 30px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 54px rgba(0,34,102,.05);
}

.appointment-center-photo {
  width: 148px;
  aspect-ratio: 1;
  height: auto;
  border-radius: 16px;
  background:
    #fff url('../img/addictik-logo-bleu-transparent.svg') center/82% auto no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(18,82,255,.18),
    0 16px 38px rgba(0,34,102,.1);
}

.appointment-center-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: var(--text-2xl);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.appointment-center-card p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.35;
}

.appointment-center-card p svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.appointment-center-actions {
  display: grid;
  gap: 10px;
}

.appointment-center-actions .btn {
  min-height: 50px;
}

.appointment-outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(18,82,255,.44);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(255,255,255,.78);
  font-weight: var(--font-weight-strong);
  text-decoration: none;
}

.appointment-urgency {
  margin-top: 34px;
}

.appointment-urgency-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  border: 2px dashed rgba(224, 122, 36, .55);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 30%, rgba(240, 150, 60, .14), transparent 40%),
    linear-gradient(135deg, #fdf3e7, #fbe9d4);
}

.appointment-urgency-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: linear-gradient(140deg, #ef8b2c, #e0681c);
  box-shadow: 0 14px 28px rgba(224, 104, 28, .28);
}

.appointment-urgency-icon svg {
  width: 38px;
  height: 38px;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appointment-urgency-copy h2 {
  margin: 0;
  color: #9a4a10;
  font-size: var(--text-xl);
  letter-spacing: -0.03em;
}

.appointment-urgency-copy p {
  margin: 8px 0 0;
  max-width: 60ch;
  color: #7a4b22;
  font-size: var(--text-md);
  line-height: 1.5;
}

.appointment-urgency-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 22px;
  border: 1px solid rgba(224, 122, 36, .5);
  border-radius: 12px;
  background: rgba(255, 255, 255, .7);
  color: #c5631a;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.appointment-urgency-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(224, 104, 28, .2);
}

.appointment-urgency-cta-head {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: var(--font-weight-strong);
  font-size: var(--text-md);
}

.appointment-urgency-cta-head svg {
  width: 22px;
  height: 22px;
}

.appointment-urgency-cta strong {
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  color: #9a4a10;
}

.appointment-map-band {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 34px;
  padding: 32px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 35%, rgba(18,82,255,.12), transparent 32%),
    linear-gradient(135deg, #f5f9ff, #eef5ff);
}

.appointment-map-band h2 {
  max-width: 290px;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-4xl);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.appointment-map-band p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: var(--text-md);
  line-height: 1.45;
}

.appointment-map-band .appointment-outline-link {
  margin-top: 20px;
}

.appointment-map {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,.45)),
    url('https://tile.openstreetmap.org/5/16/10.png') center/cover;
}

.appointment-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 48%, rgba(18,82,255,.16), transparent 22%),
    linear-gradient(90deg, rgba(245,249,255,.82), rgba(245,249,255,.18));
}

.appointment-map-marker {
  display: grid;
  place-items: center;
  width: 42px !important;
  height: 52px !important;
  background: transparent;
  border: 0;
}

.appointment-map-marker span {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 999px 999px 999px 6px;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(18,82,255,.32);
  transform: rotate(-45deg);
}

.appointment-map-marker span::after {
  content: '';
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
}

.appointment-map-marker img {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(45deg);
}

.appointment-map .pin {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 999px 999px 999px 0;
  background: var(--blue);
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgba(18,82,255,.28);
}

.pin-1 { left: 47%; top: 28%; }
.pin-2 { left: 52%; top: 24%; }
.pin-3 { left: 56%; top: 31%; }
.pin-4 { left: 50%; top: 38%; }
.pin-5 { left: 60%; top: 41%; }
.pin-6 { left: 54%; top: 48%; }
.pin-7 { left: 45%; top: 48%; }
.pin-8 { left: 58%; top: 55%; }
.pin-9 { left: 64%; top: 52%; }
.pin-10 { left: 42%; top: 60%; }
.pin-11 { left: 50%; top: 64%; }
.pin-12 { left: 67%; top: 66%; }
.pin-13 { left: 36%; top: 46%; }
.pin-14 { left: 32%; top: 38%; }
.pin-15 { left: 73%; top: 44%; }
.pin-16 { left: 76%; top: 58%; }
.pin-17 { left: 28%; top: 54%; }
.pin-18 { left: 70%; top: 33%; }

.map-label {
  position: absolute;
  z-index: 2;
  color: var(--ink);
  font-size: var(--text-xs);
  font-weight: 800;
}

.map-belgium { left: 52%; top: 48%; }
.map-france { left: 34%; top: 72%; }
.map-netherlands { left: 60%; top: 15%; }
.map-luxembourg { left: 68%; top: 72%; }

.appointment-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  margin-bottom: 72px;
  border-top: 1px solid var(--line);
}

.appointment-trust article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 28px 30px;
  border-left: 1px solid var(--line);
}

.appointment-trust article:first-child {
  border-left: 0;
}

.appointment-trust span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(18,82,255,.14);
  border-radius: 999px;
  background: rgba(18,82,255,.06);
}

.appointment-trust svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.appointment-trust h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-lg);
  line-height: 1.2;
}

.appointment-trust p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.4;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 70px;
  }

  .appointment-hero,
  .appointment-home-band,
  .appointment-map-band {
    grid-template-columns: 1fr;
  }

  .appointment-urgency-card {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 18px;
  }

  .appointment-urgency-cta {
    align-self: stretch;
    align-items: center;
  }

  .appointment-hero-stats,
  .appointment-home-content ul,
  .appointment-trust {
    grid-template-columns: 1fr;
  }

  .appointment-hero-stats article {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .appointment-hero-stats article,
  .appointment-trust article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .appointment-hero-stats article {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .appointment-hero-stats article:first-child,
  .appointment-trust article:first-child {
    border-top: 0;
  }

  .appointment-step {
    grid-template-columns: 1fr;
  }

  .appointment-center-card {
    grid-template-columns: 144px minmax(0, 1fr);
    gap: 22px;
  }

  .appointment-center-actions {
    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .appointment-center-photo {
    width: 144px;
    aspect-ratio: 1;
    height: auto;
  }
}

@media (min-width: 1081px) and (max-width: 1360px) {
  .appointment-hero {
    grid-template-columns: minmax(0, .92fr) minmax(340px, .68fr);
    gap: 28px 42px;
  }

  .appointment-hero-copy h1 {
    font-size: clamp(50px, 4.6vw, 66px);
  }

  .appointment-hero-stats article {
    min-width: 320px;
    min-height: 62px;
    padding: 11px 24px;
  }

  .appointment-hero-stats strong {
    font-size: clamp(25px, 2vw, 32px);
  }

  .appointment-hero-stats span {
    font-size: var(--text-base);
  }

  .appointment-hero-stats small {
    font-size: var(--text-xs);
  }

  .appointment-hero-home-card {
    padding: 20px;
  }

  .appointment-hero-home-card ul {
    grid-template-columns: 1fr;
  }

  .appointment-hero-home-head {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .appointment-hero-home-head > span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
}

@media (max-width: 760px) {
  .appointment-hero,
  .appointment-home-band,
  .appointment-steps,
  .appointment-map-band,
  .appointment-trust {
    width: var(--container);
  }

  .appointment-hero {
    gap: 16px;
    padding: 26px 0 18px;
  }

  .appointment-hero::before {
    right: -28%;
    top: 12%;
    width: 360px;
    height: 360px;
  }

  .appointment-hero-copy h1 {
    font-size: clamp(36px, 10.8vw, 48px);
  }

  .appointment-hero-copy p:not(.section-eyebrow) {
    margin-top: 14px;
    font-size: var(--text-md);
    line-height: 1.42;
  }

  .appointment-hero-stats article {
    grid-template-columns: auto minmax(0, 1fr);
    min-width: 290px;
    min-height: auto;
    padding: 10px 18px;
  }

  .appointment-hero-home-card {
    gap: 11px;
    padding: 16px;
  }

  .appointment-hero-home-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .appointment-hero-home-head > span {
    display: none;
  }

  .appointment-hero-home-head > div {
    display: grid;
    gap: 8px;
  }

  .appointment-hero-home-head .section-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-bottom: 0;
    padding: 8px 11px;
    border: 1px solid rgba(18,82,255,.13);
    border-radius: 999px;
    background: rgba(255,255,255,.66);
    font-size: 10px;
    line-height: 1;
    letter-spacing: .16em;
  }

  .appointment-hero-home-head .section-eyebrow::before {
    content: '';
    width: 17px;
    height: 17px;
    background: var(--blue);
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 23 24 10l16 13' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 22v18h22V22' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20 40V29h8v11' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 23 24 10l16 13' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 22v18h22V22' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20 40V29h8v11' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  }

  .appointment-hero-home-head svg {
    width: 22px;
  }

  .appointment-hero-home-card h2 {
    max-width: 330px;
    font-size: clamp(20px, 5.7vw, 25px);
    line-height: 1.1;
  }

  .appointment-hero-home-card ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .appointment-hero-home-card li {
    padding-left: 24px;
    font-size: var(--text-xs);
  }

  .appointment-hero-home-card li::before {
    width: 18px;
    height: 18px;
  }

  .appointment-hero-home-card .btn {
    min-height: 44px;
    font-size: var(--text-xs);
    letter-spacing: .04em;
  }

  .appointment-hero-stats strong {
    font-size: var(--text-3xl);
  }

  .appointment-hero-stats span {
    font-size: var(--text-sm);
  }

  .appointment-hero-stats small,
  .appointment-hero-stats em {
    font-size: var(--text-xs);
  }

  .appointment-home-band {
    gap: 18px;
    margin-top: 18px;
    padding: 28px 20px;
  }

  .appointment-home-visual {
    min-height: 170px;
  }

  .appointment-home-content h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .appointment-home-content ul {
    gap: 14px;
    margin: 24px 0;
  }

  .appointment-step {
    gap: 18px;
    padding: 24px 0;
  }

  .appointment-step-countries {
    gap: 14px;
  }

  .appointment-step-countries .appointment-step-title h2 {
    font-size: var(--text-3xl);
  }

  .appointment-step-countries .appointment-country-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }

  .appointment-country-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 15px 0 12px;
    border-radius: 12px;
  }

  .appointment-country-card.is-active {
    box-shadow: 0 10px 26px rgba(18,82,255,.12);
  }

  .appointment-country-card.is-active::after {
    position: static;
    width: 18px;
    height: 18px;
    order: 3;
    font-size: 11px;
  }

  .appointment-country-card .appointment-flag {
    width: 28px;
    height: 28px;
    font-size: 21px;
    background: rgba(18,82,255,.07);
  }

  .appointment-country-card strong {
    font-size: var(--text-sm);
    white-space: nowrap;
  }

  .appointment-region-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .appointment-region-list button {
    padding: 0 12px;
  }

  .appointment-center-card {
    grid-template-columns: clamp(112px, 30vw, 142px) minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    align-items: start;
  }

  .appointment-center-photo {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    border-radius: 12px;
    background-size: 82% auto;
  }

  .appointment-center-card h3 {
    margin-bottom: 8px;
    font-size: var(--text-xl);
    line-height: 1.08;
  }

  .appointment-center-card p {
    gap: 7px;
    margin-top: 6px;
    font-size: var(--text-xs);
    line-height: 1.3;
  }

  .appointment-center-card p svg {
    width: 15px;
    height: 15px;
  }

  .appointment-center-card .center-note {
    margin-bottom: 5px;
    font-size: var(--text-xs);
  }

  .appointment-center-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .appointment-center-actions .btn,
  .appointment-outline-link {
    min-height: 44px;
    padding-inline: 14px;
    font-size: var(--text-sm);
  }

  .appointment-map-band {
    margin-top: 22px;
    padding: 22px;
  }

  .appointment-map {
    min-height: 230px;
  }

  .appointment-trust {
    margin-bottom: 42px;
  }

  .appointment-trust article {
    padding: 22px 0;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.35;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container-custom {
  width: var(--container);
  margin-inline: auto;
}

.section-padding {
  padding-block: clamp(56px, 8vw, 104px);
}

.wp-note {
  outline: 2px dashed rgba(37, 99, 235, 0.15);
  outline-offset: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-size: var(--text-md);
  font-weight: var(--font-weight-strong);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(7, 71, 255, 0.22);
}

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: var(--text-xs);
  white-space: nowrap;
}

.btn-footer {
  width: fit-content;
}

.footer-primary-cta {
  margin-top: 18px;
  justify-self: start;
}

.mobile-floating-cta {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(231, 235, 244, 0.82);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--container);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  transition: height 0.25s ease;
}

/* Anneau du logo : pivote autour de son centre (rotation pilotée au scroll en JS) */
.logo-ring {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  margin-left: 0;
  margin-right: auto;
  font-size: var(--text-md);
  font-weight: var(--font-weight-strong);
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 14px;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 7px;
}

.nav-main-row {
  display: flex;
  align-items: center;
}

.submenu-toggle {
  display: none;
}

.has-submenu > .nav-main-row > a::before {
  content: '';
  order: 2;
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .18s ease;
}

.has-submenu:hover > .nav-main-row > a::before,
.has-submenu:focus-within > .nav-main-row > a::before {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 260px;
  gap: 3px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 48px rgba(2, 11, 45, .14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-submenu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.nav-submenu strong {
  display: block;
  padding: 3px 10px 9px;
  color: var(--blue);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-title);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-submenu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: var(--text-md);
  line-height: 1.2;
  white-space: normal;
}

.nav-submenu a::before {
  content: '';
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(7, 71, 255, .22);
  transition: background .18s ease, transform .18s ease;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--blue);
  background: var(--soft);
}

.nav-submenu a:hover::before,
.nav-submenu a:focus-visible::before {
  background: var(--blue);
  transform: scale(1.35);
}

.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.main-nav a:hover,
.phone-link:hover,
.footer-inner a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* Neutre en desktop : nav + actions se comportent comme des enfants directs.
   En mobile (cf. breakpoint burger), devient un panneau en superposition. */
.mobile-menu {
  display: contents;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-strong);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--blue);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle span::before {
  content: '';
  top: -7px;
  transform: translateX(-50%);
}

.nav-toggle span::after {
  content: '';
  top: 7px;
  transform: translateX(-50%);
}

.site-header.is-open .nav-toggle span {
  background: transparent;
}

.site-header.is-open .nav-toggle span::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.site-header.is-open .nav-toggle span::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

.hero-addictik {
  position: relative;
  min-height: var(--hero-min-height);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 28%, rgba(255,255,255,.62) 48%, rgba(255,255,255,.1) 70%),
    linear-gradient(0deg, rgba(255,255,255,.1), rgba(255,255,255,.1)),
    var(--hero-image, url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2100&q=86'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.015);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, #fff 92%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
  padding-top: 58px;
}

.hero-content h1 {
  margin: 0 0 22px;
  max-width: 660px;
  color: var(--blue-dark);
  font-size: var(--title-hero);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: var(--font-weight-title);
}

.hero-content h1 span {
  color: var(--blue);
}

.hero-eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: var(--text-base);
  font-weight: var(--font-weight-title);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-subtitle,
.hero-highlight,
.hero-rating strong,
.hero-small {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-strong);
  color: var(--ink);
}

.hero-subtitle {
  margin: 0 0 10px;
}

.hero-highlight {
  margin: 0 0 12px;
  color: var(--blue);
}

.hero-rating {
  display: grid;
  gap: 4px;
  margin: 4px 0 14px;
}

.hero-rating span,
.stars {
  color: var(--yellow);
  letter-spacing: 3px;
  font-size: var(--text-3xl);
}

.hero-small {
  margin: 0 0 22px;
  font-size: var(--text-xl);
  line-height: 1.45;
}

.hero-text {
  max-width: 580px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: var(--text-lg);
  line-height: 1.68;
  font-weight: var(--font-weight-body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  max-width: 620px;
  margin: -8px 0 24px;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.35;
  font-weight: var(--font-weight-body);
}

.hero-proof-line span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.hero-proof-line span + span::before {
  content: '';
  width: 4px;
  height: 4px;
  margin: 0 14px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateY(-2px);
}

.hero-proof-line strong {
  color: var(--blue-dark);
  font-size: var(--text-xl);
  line-height: 1;
  font-weight: var(--font-weight-title);
}

.stats-strip {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--line);
}

.stats-strip article {
  min-height: 154px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
  text-align: left;
}

.stats-strip article:first-child {
  padding-left: 0;
}

.stats-strip article:last-child {
  padding-right: 0;
}

.stats-strip article:last-child {
  border-right: 0;
}

.stats-strip strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: var(--title-xs);
  line-height: .98;
  letter-spacing: -0.045em;
  font-weight: var(--font-weight-title);
}

/* Surbrillance bleue cyclique des titres, l'un après l'autre (CSS pur, paint léger) */
@keyframes statCycle {
  0% { color: var(--blue); }
  18%, 100% { color: var(--ink); }
}

@media (prefers-reduced-motion: no-preference) {
  .stats-strip strong {
    animation: statCycle 6s ease-in-out infinite;
  }

  .stats-strip article:nth-child(1) strong { animation-delay: 0s; }
  .stats-strip article:nth-child(2) strong { animation-delay: 1s; }
  .stats-strip article:nth-child(3) strong { animation-delay: 2s; }
  .stats-strip article:nth-child(4) strong { animation-delay: 3s; }
  .stats-strip article:nth-child(5) strong { animation-delay: 4s; }
  .stats-strip article:nth-child(6) strong { animation-delay: 5s; }
}

.stats-strip p,
.problem-copy p,
.why-card li,
.addictions-grid p,
.reviews-grid p,
.centers-card li,
.site-footer p,
.footer-inner li {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-md);
  line-height: 1.62;
  font-weight: var(--font-weight-body);
}

.problem-section {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.7fr;
  gap: 42px;
  padding: 54px 0 42px;
  border-bottom: 1px solid var(--line);
}

.problem-title h2,
.reviews-title h2,
.dark-cta h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--title-lg);
  line-height: .98;
  letter-spacing: -0.05em;
  font-weight: var(--font-weight-title);
}

.problem-title h2 span,
.reviews-title h2 span {
  color: var(--blue);
}

.problem-title h2::after,
.reviews-title h2:last-child::after {
  content: '';
  display: block;
  width: 168px;
  max-width: 80%;
  height: 7px;
  margin-top: 10px;
  border-bottom: 4px solid var(--blue);
  border-radius: 45%;
  transform: rotate(-1.5deg);
}

.problem-copy {
  display: grid;
  align-content: start;
  gap: 20px;
}

.problem-copy p {
  font-size: var(--text-lg);
  line-height: 1.58;
  font-weight: var(--font-weight-body);
}

.problem-copy a,
.reviews-link,
.centers-card a {
  color: var(--blue);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-strong);
}

/* Même hover que le lien CTA de la FAQ (.faq-all-link) */
.problem-copy a:hover,
.reviews-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.why-card {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.why-card h3 {
  margin: 0 0 28px;
  color: var(--blue-dark);
  font-size: var(--title-xs);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: var(--font-weight-title);
}

.why-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 52px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-card li {
  position: relative;
  padding-left: 30px;
  font-size: var(--text-lg);
  font-weight: var(--font-weight-strong);
}

.why-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(7, 71, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230747ff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.addictions-section {
  width: var(--container);
  margin: 0 auto;
  padding: 10px 0 42px;
  border-bottom: 1px solid var(--line);
}

.section-eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  text-align: center;
  font-size: var(--text-base);
  font-weight: var(--font-weight-title);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.addictions-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  align-items: start;
}

.addictions-grid article {
  position: relative;
  min-height: 240px;
  padding: 6px 6px 10px;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  outline: 0;
}

.addiction-icon {
  display: grid;
  place-items: end center;
  height: 104px;
  margin-bottom: 14px;
}

.addiction-icon img {
  width: auto;
  height: 94px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 13px 9px rgba(2, 11, 45, 0.22));
}

.addictions-grid h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: var(--text-lg);
  line-height: 1.04;
  font-weight: var(--font-weight-title);
}

.addictions-grid p {
  font-size: var(--text-md);
  line-height: 1.2;
}

.addiction-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  border: 1px solid rgba(7, 71, 255, .14);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.99) 100%),
    radial-gradient(circle at 50% 10%, rgba(7, 71, 255, .16), transparent 48%);
  box-shadow: 0 22px 46px rgba(2, 11, 45, .16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}

.addiction-overlay > span {
  color: var(--ink);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-strong);
  line-height: 1.34;
}

.addiction-overlay a {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-title);
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(7, 71, 255, .25);
}

.addictions-grid article:hover .addiction-overlay,
.addictions-grid article:focus-within .addiction-overlay,
.addictions-grid article:focus-visible .addiction-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.press-section {
  width: var(--container);
  margin: 0 auto;
  padding: 32px 0 28px;
  border-bottom: 1px solid var(--line);
}

.press-logo-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.press-logos {
  display: flex;
  width: max-content;
  gap: clamp(18px, 6vw, 110px);
  align-items: center;
  padding: 12px clamp(16px, 4vw, 44px);
  animation: press-logo-scroll 22s linear infinite;
  /* Stabilise le rendu de l'animation (évite le clignotement/transparence) */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.press-logos img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: clamp(34px, 5vw, 62px);
  max-width: min(46vw, 220px);
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(0.1);
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.press-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

.press-logo-marquee:hover .press-logos {
  animation-play-state: paused;
}

@keyframes press-logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .press-logos {
    animation: none;
  }
}

.reviews-section {
  width: var(--container);
  margin: 0 auto;
  padding: 34px 0 28px;
}

/* Scène en superposition : bloc gauche par-dessus, bande défilante derrière */
.reviews-stage {
  position: relative;
}

/* Lien CTA centré sous le carrousel (zone de droite, pas sous le bloc gauche) */
.reviews-more {
  display: flex;
  justify-content: center;
  padding-left: 46%;
  margin-top: 26px;
}

.reviews-more .reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-base);
}

.reviews-title {
  position: relative;
  z-index: 2;
  max-width: 46%;
  min-height: 242px;
  padding-right: 28px;
  background: #fff;
}

/* Fondu blanc à droite du bloc gauche : les cartes disparaissent en glissant dessous */
.reviews-title::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 90px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.reviews-title h2 {
  font-size: var(--title-sm);
  line-height: 1;
  letter-spacing: -0.045em;
}

.reviews-title h2:last-child::after {
  width: 138px;
  height: 5px;
  margin-top: 8px;
}

.reviews-intro {
  max-width: 520px;
  margin-top: 22px;
}

.reviews-intro strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-strong);
  line-height: 1.32;
}

.reviews-intro p {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-base);
  font-weight: var(--font-weight-body);
  line-height: 1.62;
}

.reviews-title .reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: var(--text-base);
  line-height: 1.25;
}

.reviews-marquee {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* Bande d'avis qui défile en continu, avec fondu dégradé sur les bords */
.reviews-grid {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin: 0;
  padding: 6px 2px 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 88%, transparent 100%);
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.reviews-grid > * {
  flex: 0 0 clamp(240px, 24vw, 300px);
}

.reviews-next {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue-dark);
  font-size: var(--text-2xl);
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(2, 11, 45, 0.14);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.reviews-next:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.reviews-next:active {
  transform: translateY(-50%) scale(0.94);
}

.reviews-grid article {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(2, 11, 45, 0.04);
}

.reviews-grid .stars {
  margin-bottom: 20px;
  font-size: var(--text-xl);
  letter-spacing: 1px;
}

.reviews-grid p {
  min-height: 72px;
  font-size: var(--text-md);
  font-weight: var(--font-weight-strong);
}

.reviews-grid small {
  display: block;
  margin: 18px 0 8px;
  color: var(--blue-dark);
  font-size: var(--text-md);
  font-weight: var(--font-weight-strong);
}

.review-meta {
  margin: 16px 0 10px;
}

.review-meta strong {
  display: block;
  color: var(--blue-dark);
  font-size: var(--text-md);
  font-weight: var(--font-weight-title);
}

.review-meta small {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-body);
}

.reviews-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin-top: 20px;
  color: var(--ink);
  font-size: var(--text-base);
  font-weight: var(--font-weight-strong);
}

.reviews-rating .stars {
  color: var(--yellow);
  font-size: var(--text-xl);
  letter-spacing: 2px;
}

.reviews-rating strong {
  color: var(--blue-dark);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-title);
}

.google {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-body);
}

.google span:nth-child(1) { color: #4285f4; }
.google span:nth-child(2) { color: #ea4335; }
.google span:nth-child(3) { color: #fbbc05; }
.google span:nth-child(4) { color: #4285f4; }
.google span:nth-child(5) { color: #34a853; }
.google span:nth-child(6) { color: #ea4335; }

.reviews-link {
  justify-self: start;
  font-size: var(--text-base);
}

.bottom-section {
  width: var(--container);
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.dark-cta,
.centers-card {
  height: 430px;
  border-radius: 10px;
  overflow: hidden;
}

.dark-cta {
  position: relative;
  color: #fff;
  background: var(--blue-dark);
}

.dark-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0,20,74,.95), rgba(0,20,74,.72)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1400&q=82');
  background-position: center;
  background-size: cover;
}

.dark-content {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.dark-cta h2 {
  color: #fff;
  font-size: var(--title-sm);
}

.dark-cta ul {
  margin: 20px 0 12px;
  padding: 0;
  list-style: none;
}

.dark-cta li,
.dark-cta p,
.trust-row span,
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: var(--text-md);
  font-weight: var(--font-weight-strong);
}
.cta-phone .phone-ico {
  width: 0.92em;
  height: 0.92em;
  vertical-align: 0;
}

.dark-cta li::before {
  content: '✓ ';
}

.dark-cta p {
  margin: 0 0 18px;
  font-size: var(--text-xl);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-phone {
  font-size: var(--text-2xl);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.3);
}

.trust-row span {
  position: relative;
  padding-left: 16px;
  font-size: var(--text-sm);
  line-height: 1.25;
}

.trust-row span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.centers-card {
  display: grid;
  grid-template-columns: minmax(250px, .86fr) minmax(330px, 1fr);
  gap: 18px;
  padding: 28px;
  background: var(--soft);
}

.centers-card .section-eyebrow {
  margin-bottom: 16px;
  text-align: left;
}

.centers-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.centers-card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: var(--text-md);
  font-weight: var(--font-weight-title);
  text-transform: uppercase;
}

.centers-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.centers-card li {
  font-size: var(--text-xs);
  line-height: 1.22;
}

.center-list-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  margin-top: 0;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-strong);
  line-height: 1.22;
  text-align: left;
}

.center-list-button:hover,
.center-list-button:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.center-more-button {
  display: inline-flex;
  margin-top: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-family: inherit;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-title);
}

.center-more-button:hover,
.center-more-button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.centers-map-note {
  margin: 18px 0 0;
  max-width: 330px;
  color: var(--blue);
  font-size: var(--text-base);
  font-weight: var(--font-weight-title);
}

.centers-map {
  position: relative;
  z-index: 0;
  isolation: isolate;
  height: calc(100% + 56px);
  min-height: calc(100% + 56px);
  margin: -28px -28px -28px 0;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(7, 71, 255, .08);
}

.leaflet-centers-map {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #edf3ff;
  isolation: isolate;
}

.leaflet-centers-map .leaflet-tile-pane {
  filter: saturate(.95);
}

.leaflet-centers-map .leaflet-control-attribution {
  opacity: .45;
  font-size: var(--text-xs);
}

.centers-map figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.map-loading {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  place-items: center;
  color: var(--blue-dark);
  font-size: var(--text-md);
  font-weight: var(--font-weight-strong);
}

.center-marker {
  z-index: 3 !important;
  display: grid;
  place-items: center;
  width: 42px !important;
  height: 52px !important;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.center-marker span {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 999px 999px 999px 6px;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(18,82,255,.32);
  transform: rotate(-45deg);
}

.center-marker span::after {
  content: '';
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
}

.center-marker img {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(45deg);
}

.center-marker:hover {
  transform: scale(1.25);
}

.leaflet-popup-content-wrapper {
  position: relative;
  z-index: 440;
  border-radius: 8px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: var(--text-md);
  font-weight: var(--font-weight-body);
}

.site-footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(7, 71, 255, .22), transparent 34%),
    linear-gradient(180deg, #031144 0%, var(--blue-dark) 100%);
  color: #fff;
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(170px, .75fr) minmax(190px, .8fr) minmax(300px, .95fr);
  align-items: start;
  gap: 34px;
  padding: 48px 0 34px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-social {
  display: flex !important;
  flex-flow: row wrap;
  gap: 18px !important;
  margin-top: 18px;
  font-weight: var(--font-weight-strong);
}

.footer-social a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  line-height: 1;
}

.footer-social svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-social a:hover {
  color: var(--blue) !important;
  transform: translateY(-2px);
}

.footer-brand .brand-logo {
  /* Logo bleu rendu blanc sur le fond navy du footer */
  filter: brightness(0) invert(1);
}

.footer-group {
  display: block;
  min-width: 0;
}

.footer-group summary,
.footer-contact-card h3 {
  display: block;
  margin: 0 0 18px;
  color: #fff;
  font-size: var(--text-md);
  font-weight: var(--font-weight-title);
  text-transform: uppercase;
  letter-spacing: .16em;
  list-style: none;
}

.footer-group summary::-webkit-details-marker {
  display: none;
}

.footer-inner p,
.footer-inner a,
.footer-inner li {
  color: rgba(255,255,255,.76);
}

.footer-inner p {
  max-width: 390px;
  margin-top: 20px;
  font-size: var(--text-base);
  font-weight: var(--font-weight-body);
  line-height: 1.55;
}

.footer-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-inner li a {
  display: inline-flex;
  line-height: 1.25;
}

.footer-contact-card {
  display: grid;
  align-content: start;
  gap: 12px;
  width: min(100%, 330px);
  justify-self: end;
  margin-top: -4px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
}

.footer-contact-card h3 {
  margin-bottom: 4px;
}

.footer-contact-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: var(--text-md);
  line-height: 1.35;
}

.footer-contact-main {
  color: #fff !important;
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-title);
  line-height: 1.05;
}

.btn-footer {
  color: #fff !important;
}

.footer-primary-cta {
  justify-self: start;
  margin-top: 10px;
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.62);
  font-size: var(--text-md);
  font-weight: var(--font-weight-body);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer-legal a {
  color: rgba(255,255,255,.62);
}

.footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Crédit agence (WonderWeb) — inline dans le copyright, même typo */
.footer-credit-link {
  color: rgba(255,255,255,.82);
  font-weight: var(--font-weight-strong);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-credit-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ---------- Header compact au scroll ---------- */
.site-header {
  transition: box-shadow 0.25s ease;
}

.header-inner {
  transition: min-height 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(2, 11, 45, 0.08);
}

.site-header.scrolled .header-inner {
  min-height: 60px;
}

.site-header.scrolled .brand-logo {
  height: 36px;
}

/* ---------- Hover & profondeur ---------- */
.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(7, 71, 255, 0.34);
}

.btn:active {
  transform: translateY(0);
}

/* Bouton secondaire (contour) — ex. choix « à domicile » */
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 12px 26px rgba(7, 71, 255, 0.14);
}

.addiction-icon img {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.addictions-grid article:hover .addiction-icon img {
  transform: translateY(-5px) scale(1.06);
  filter: drop-shadow(0 20px 14px rgba(2, 11, 45, 0.3));
}

.reviews-grid article {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reviews-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(2, 11, 45, 0.12);
}

.press-logos img {
  opacity: 0.7;
}

.press-logos img:hover {
  opacity: 1;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav > .nav-item > .nav-main-row > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav > .nav-item > .nav-main-row > a:hover::after {
  transform: scaleX(1);
}

/* ---------- FAQ + vidéo ---------- */
.faq-section {
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0 70px;
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 18px;
  align-items: start;
}

.faq-main,
.faq-video {
  min-width: 0;
}

.faq-head {
  margin: 0 0 28px;
}

.faq-head .section-eyebrow {
  margin-bottom: 14px;
  text-align: left;
}

.faq-head h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--title-md);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: var(--font-weight-title);
}

.faq-head h2 span {
  color: var(--blue);
}

.faq-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue);
  font-size: var(--text-base);
  font-weight: var(--font-weight-title);
}

.faq-all-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-list {
  display: grid;
  align-content: start;
}

.faq-video {
  position: sticky;
  top: 96px;
  width: 100%;
}

.faq-video-cta {
  width: 100%;
  margin-top: 18px;
}

.faq-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 24px 50px rgba(2, 11, 45, 0.18);
}

.video-player {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.video-sound-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 999px;
  background: rgba(2, 11, 45, .72);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-strong);
  letter-spacing: .02em;
  backdrop-filter: blur(12px);
}

.video-sound-toggle:hover,
.video-sound-toggle:focus-visible {
  background: rgba(7, 71, 255, .88);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  color: var(--blue-dark);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-strong);
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--blue);
}

.faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--blue);
  font-size: var(--text-icon);
  font-weight: var(--font-weight-normal);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0;
  padding: 0 4px 24px;
  max-width: 720px;
  color: var(--ink);
  font-size: var(--text-base);
  font-weight: var(--font-weight-body);
  line-height: 1.62;
}

/* ---------- Page FAQ dédiée ---------- */
.faq-page-hero,
.faq-page-list,
.faq-contact-band,
.faq-trust {
  width: var(--container);
  margin: 0 auto;
}

.faq-page-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  min-height: var(--hero-min-height);
  padding: 72px 0 62px;
  background: var(--soft);
  box-shadow: 0 0 0 100vmax var(--soft);
  clip-path: inset(0 -100vmax);
}

.faq-page-hero h1 {
  margin: 22px 0 18px;
  color: var(--blue-dark);
  font-size: var(--title-lg);
  line-height: .98;
  letter-spacing: -0.055em;
  font-weight: var(--font-weight-title);
}

.faq-page-hero p:not(.hero-eyebrow) {
  max-width: 460px;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-xl);
  line-height: 1.5;
  font-weight: var(--font-weight-body);
}

.faq-page-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-page-stats article {
  display: grid;
  min-height: 196px;
  align-content: center;
  justify-items: center;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 42px rgba(2, 11, 45, .045);
}

.faq-page-stats strong {
  color: var(--blue);
  font-size: var(--title-xs);
  line-height: 1;
  letter-spacing: -0.04em;
}

.faq-page-stats span {
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: var(--text-base);
  font-weight: var(--font-weight-strong);
}

.faq-page-stats small {
  max-width: 190px;
  margin-top: 10px;
  color: var(--ink);
  font-size: var(--text-sm);
  line-height: 1.4;
}

.faq-page-list {
  padding: 48px 0 28px;
}

.faq-page-category + .faq-page-category {
  margin-top: 34px;
}

.faq-page-category h2 {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: var(--title-xs);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: var(--font-weight-title);
}

.faq-page-category .faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(2, 11, 45, .035);
}

.faq-page-category .faq-item + .faq-item {
  margin-top: 10px;
}

.faq-page-category .faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-page-category .faq-item summary {
  padding: 18px 22px;
  font-size: var(--text-base);
}

.faq-page-category .faq-item p {
  padding: 0 22px 22px;
}

.faq-contact-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 10px;
  padding: 30px 34px;
  border-radius: 10px;
  background: var(--soft);
}

.faq-contact-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 16px 34px rgba(2, 11, 45, .06);
}

.faq-contact-icon svg {
  width: 46px;
  height: 46px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-contact-band h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--title-xs);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.faq-contact-band p {
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: var(--text-base);
}

.faq-contact-band strong {
  color: var(--blue-dark);
  font-size: var(--title-xs);
  line-height: 1;
}

.faq-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  margin-bottom: 54px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.faq-trust article {
  min-height: 130px;
  padding: 24px 28px;
  border-left: 1px solid var(--line);
}

.faq-trust article:first-child {
  border-left: 0;
}

.faq-trust h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: var(--text-lg);
  line-height: 1.18;
  font-weight: var(--font-weight-title);
}

.faq-trust p {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-sm);
  line-height: 1.45;
}

/* ---------- Carrousel (visuels — affichés en mobile via .is-enhanced) ---------- */
.carousel {
  /* Permet au carrousel (ex. grid item de la section avis) de rétrécir
     pour que la piste scrollable ne déborde pas horizontalement. */
  min-width: 0;
}

.carousel-controls {
  display: none;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  font-size: var(--text-2xl);
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.carousel-arrow:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.carousel-dots button {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.carousel-dots button::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dots button.is-active::after {
  background: var(--blue);
  transform: scale(1.4);
}

/* ---------- Page méthode ---------- */
.method-hero {
  min-height: var(--hero-min-height);
}

.method-hero .hero-bg {
  background-position: center right;
}

.method-hero .hero-content {
  padding-top: 54px;
}

.method-hero .hero-content h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1.02;
}

.method-section {
  width: var(--container);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.method-section-head {
  max-width: 980px;
  margin: 0 auto 22px;
  text-align: center;
}

.method-section-head h2,
.method-info-card h2,
.method-final-cta h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--title-xs);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: var(--font-weight-title);
}

.method-section-head p,
.method-card p,
.method-choice p,
.method-benefit-card p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.56;
  font-weight: var(--font-weight-body);
}

.method-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(2, 11, 45, .045);
}

.method-two {
  padding: 34px 0 18px;
}

.method-two-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(2, 11, 45, .05);
}

.method-two-grid::before {
  display: none;
}

.method-process-card {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 360px;
  padding: 40px 48px 46px;
  border: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

.method-process-card:first-child {
  border-radius: 10px 0 0 10px;
}

.method-process-card:last-child {
  border-radius: 0 10px 10px 0;
  border-left: 1px solid var(--line);
}

.method-card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(7, 71, 255, .2);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--blue);
  line-height: 1;
  backdrop-filter: blur(8px);
}

.method-icon svg {
  display: block;
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-card-kicker {
  margin: 0 0 12px !important;
  color: var(--blue) !important;
  font-size: var(--text-sm) !important;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.method-process-card h3 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: var(--text-3xl);
  line-height: 1.16;
  letter-spacing: -0.035em;
  font-weight: var(--font-weight-title);
}

.method-process-card ul,
.method-info-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.method-process-card li,
.method-info-card li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.48;
  font-weight: var(--font-weight-body);
}

.method-process-card li + li,
.method-info-card li + li {
  margin-top: 7px;
}

.method-process-card li::before,
.method-info-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.16em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(7, 71, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230747ff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.method-process-card strong {
  display: block;
  margin-top: 20px;
  color: var(--blue);
  font-size: var(--text-base);
  line-height: 1.35;
}

.method-plus {
  position: relative;
  z-index: 2;
  align-self: center;
  display: grid;
  width: 36px;
  height: 36px;
  margin-inline: -18px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-title);
  box-shadow: 0 10px 24px rgba(7, 71, 255, .28);
}

.method-choice {
  padding: 48px 0 42px;
  background: var(--soft);
  box-shadow: 0 0 0 100vmax var(--soft);
  clip-path: inset(0 -100vmax);
}

.method-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.method-choice-grid article {
  min-height: 112px;
  padding: 24px 28px;
  text-align: center;
  background: #fff;
}

.method-choice-grid article + article {
  border-left: 1px solid var(--line);
}

.method-choice-grid h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-title);
}

.method-choice-grid p {
  font-weight: var(--font-weight-body);
}

.method-benefits {
  padding: 42px 0;
}

.method-benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.method-benefit-card {
  min-height: 248px;
  padding: 28px 18px;
  text-align: center;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.method-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(2, 11, 45, .08);
}

.method-benefit-card + .method-benefit-card {
  border-left: 1px solid var(--line);
}

.method-benefit-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--blue);
}

.method-benefit-icon svg {
  width: 50px;
  height: 50px;
}

.method-benefit-card h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--text-lg);
  line-height: 1.15;
  font-weight: var(--font-weight-title);
}

.method-benefit-card p {
  font-size: var(--text-sm);
  line-height: 1.48;
  font-weight: var(--font-weight-body);
}

.method-info {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 54px 0;
  background: var(--soft);
  box-shadow: 0 0 0 100vmax var(--soft);
  clip-path: inset(0 -100vmax);
}

.method-info::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100% - 100vw) / 2);
  right: calc((100% - 100vw) / 2);
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(246,248,252,.68), rgba(246,248,252,.36)),
    url('https://images.unsplash.com/photo-1512290923902-8a9f81dc236c?auto=format&fit=crop&w=2200&q=76');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.method-info-card {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.method-info-glass {
  border-color: rgba(255,255,255,.58);
  background:
    linear-gradient(135deg, rgba(255,255,255,.42), rgba(255,255,255,.2));
  box-shadow:
    0 28px 70px rgba(2, 11, 45, .1),
    inset 0 1px 0 rgba(255,255,255,.86),
    inset 0 -1px 0 rgba(255,255,255,.24);
  backdrop-filter: blur(8px) saturate(1.24);
}

.method-addictions-reuse {
  padding-top: 48px;
}

.method-addictions-reuse .section-eyebrow {
  margin-bottom: 10px;
}

.method-info-card h2 span {
  color: var(--blue);
}

.method-info-card p {
  margin-top: 16px;
}

.method-info-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.method-final-cta {
  position: relative;
  width: var(--container);
  min-height: 250px;
  margin: 0 auto 38px;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-dark);
}

.method-final-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,20,74,.96), rgba(0,20,74,.72) 48%, rgba(0,20,74,.22)),
    url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1700&q=82');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.method-final-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  padding: 34px;
}

.method-final-cta h2 {
  color: #fff;
  font-size: var(--title-sm);
}

.method-final-cta h2 span {
  color: #8fb0ff;
}

.method-final-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.28);
}

.method-final-proof-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-height: 94px;
  align-items: start;
  padding: 0 22px;
  color: #fff;
  border-left: 1px solid rgba(255,255,255,.22);
}

.method-final-proof-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.method-final-proof-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #8fb0ff;
}

.method-final-proof-icon .method-icon svg,
.method-final-proof-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-final-google {
  color: #8fb0ff;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.method-final-proof-grid strong {
  display: block;
  max-width: 220px;
  color: #fff;
  font-size: var(--text-base);
  line-height: 1.16;
  font-weight: var(--font-weight-strong);
}

.method-final-proof-grid small {
  display: block;
  max-width: 220px;
  margin-top: 8px;
  color: rgba(255,255,255,.82);
  font-size: var(--text-sm);
  line-height: 1.35;
  font-weight: var(--font-weight-body);
}

/* ---------- Page addictions ---------- */
.addiction-listing {
  width: min(1580px, calc(100% - 28px));
  margin: 0 auto;
  padding: 42px 0 24px;
}

.addiction-listing-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.addiction-listing-head h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--title-xs);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: var(--font-weight-title);
}

.addiction-listing-head p {
  margin: 12px auto 0;
  max-width: 660px;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.56;
  font-weight: var(--font-weight-body);
}

.addictions-hero {
  min-height: var(--hero-min-height);
}

.addictions-hero .hero-bg {
  background-position: center right;
}

.addictions-hero .hero-content {
  padding-top: 54px;
}

.addictions-hero .hero-content h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1.02;
}

.addictions-hero .hero-text {
  max-width: 520px;
}

.addiction-proof-section {
  padding-top: 42px;
}

.addiction-proof-section .problem-title h2 span {
  color: var(--blue) !important;
}

.addiction-listing-grid {
  width: 100%;
  padding: 0;
  border-bottom: 0;
}

.addiction-listing-grid .addictions-grid article {
  min-height: 188px;
}

/* ---------- Page douleurs & émotions ---------- */
.wellbeing-hero {
  min-height: var(--hero-min-height);
}

.wellbeing-hero .hero-bg {
  background-position: center right;
}

.wellbeing-hero .hero-content {
  padding-top: 54px;
}

.wellbeing-hero .hero-content h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1.02;
}

.wellbeing-hero .hero-text {
  max-width: 560px;
}

.wellbeing-section {
  width: var(--container);
  margin: 0 auto;
  padding: 48px 0 46px;
  border-bottom: 1px solid var(--line);
}

.wellbeing-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.wellbeing-head h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--title-sm);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: var(--font-weight-title);
}

.wellbeing-head p:not(.section-eyebrow) {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.58;
  font-weight: var(--font-weight-body);
}

.wellbeing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.wellbeing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(2, 11, 45, .055);
  transition: transform .2s ease, box-shadow .2s ease;
}

.wellbeing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(2, 11, 45, .09);
}

.wellbeing-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(.95);
}

.wellbeing-card div {
  padding: 18px 20px 20px;
}

.wellbeing-card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: var(--text-xl);
  line-height: 1.16;
  font-weight: var(--font-weight-title);
}

.wellbeing-card p {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-md);
  line-height: 1.5;
  font-weight: var(--font-weight-body);
}

/* ---------- Page tarifs ---------- */
.pricing-hero {
  min-height: var(--hero-min-height);
}

.pricing-hero .hero-bg {
  background-position: center right;
}

.pricing-hero .hero-content {
  padding-top: 54px;
}

.pricing-hero .hero-content h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1.02;
}

.pricing-hero .hero-text {
  max-width: 480px;
  font-size: var(--text-xl);
  font-weight: var(--font-weight-body);
}

.pricing-section,
.pricing-details,
.pricing-trust {
  width: var(--container);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.pricing-section {
  padding: 42px 0 34px;
}

.pricing-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.pricing-head h2,
.pricing-group-card h2,
.pricing-care-card h2,
.pricing-trust h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--title-xs);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: var(--font-weight-title);
}

.pricing-head p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.52;
  font-weight: var(--font-weight-body);
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pricing-plan-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 330px;
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 42px rgba(2, 11, 45, .045);
}

.pricing-plan-card.is-featured {
  border-color: rgba(7,71,255,.22);
  box-shadow: 0 24px 54px rgba(7, 71, 255, .1);
}

.pricing-plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-title);
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.pricing-plan-card h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--text-lg);
  line-height: 1;
  font-weight: var(--font-weight-title);
  text-transform: uppercase;
}

.pricing-plan-kicker {
  margin: 14px 0 0;
  color: var(--blue);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-strong);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pricing-plan-kicker + .pricing-price {
  margin-top: 8px;
}

.pricing-price {
  display: grid;
  gap: 3px;
  margin: 22px 0 20px;
}

.pricing-price strong {
  color: var(--blue-dark);
  font-size: clamp(42px, 4vw, 62px);
  line-height: .95;
  letter-spacing: -0.055em;
  font-weight: var(--font-weight-title);
}

.pricing-price span {
  color: var(--blue);
  font-size: var(--text-base);
  font-weight: var(--font-weight-strong);
}

.pricing-duration {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  margin: -4px 0 14px;
  padding: 0 12px;
  border: 1px solid rgba(7,71,255,.14);
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-strong);
  background: rgba(255,255,255,.8);
}

.pricing-plan-card em,
.pricing-care-card small {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7,71,255,.08);
  color: var(--blue);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: var(--font-weight-strong);
}

.pricing-plan-divider {
  width: 42px;
  height: 2px;
  margin-top: 8px;
  background: rgba(7,71,255,.28);
}

.pricing-plan-card p {
  max-width: 280px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.55;
  font-weight: var(--font-weight-body);
}

.pricing-plan-included {
  width: 100%;
  max-width: 310px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.pricing-plan-included strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: var(--text-sm);
  line-height: 1;
  font-weight: var(--font-weight-title);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-plan-included ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-plan-included li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: var(--text-sm);
  line-height: 1.35;
  font-weight: var(--font-weight-body);
}

.pricing-plan-included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .08em;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: rgba(7, 71, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230747ff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

.pricing-card-cta {
  margin-top: 24px;
  font-size: var(--text-xs);
}

.pricing-details {
  display: grid;
  gap: 22px;
  padding: 28px 0 34px;
}

.pricing-group-card,
.pricing-care-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(2, 11, 45, .04);
}

.pricing-group-card {
  padding: 28px 32px;
}

.pricing-care-card {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 34px;
  align-items: start;
  border-color: rgba(7,71,255,.22);
  background:
    linear-gradient(90deg, rgba(7,71,255,.07), rgba(255,255,255,1) 42%),
    #fff;
  box-shadow: 0 22px 52px rgba(7, 71, 255, .08);
}

.pricing-care-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-title);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.pricing-group-grid article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.74);
}

.pricing-group-card h3 {
  margin: 0 0 6px;
  color: var(--blue-dark);
  font-size: var(--text-lg);
  line-height: 1.2;
  font-weight: var(--font-weight-title);
}

.pricing-group-card p,
.pricing-care-card p,
.pricing-care-card li {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.52;
  font-weight: var(--font-weight-body);
}

.pricing-care-price {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin: 12px 0 8px;
}

.pricing-care-price strong {
  color: var(--blue-dark);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.pricing-care-price span {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-strong);
}

.pricing-care-duration {
  margin: 0 0 14px;
}

.pricing-care-side {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.pricing-care-side h3 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: var(--text-xl);
  line-height: 1.16;
  font-weight: var(--font-weight-title);
}

.pricing-care-card ul {
  columns: 2;
  margin: 0 0 20px;
  padding-left: 18px;
}

.pricing-care-card li + li {
  margin-top: 5px;
}

.pricing-care-card small {
  width: 100%;
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 8px;
  text-align: center;
}

.pricing-trust > div {
  display: grid;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.pricing-trust {
  padding: 26px 0 38px;
  text-align: center;
}

.pricing-trust > div {
  grid-template-columns: repeat(5, 1fr);
}

.pricing-trust article {
  min-height: 150px;
  padding: 24px 18px;
  border-left: 1px solid var(--line);
}

.pricing-trust article:first-child {
  border-left: 0;
}

.pricing-trust strong {
  display: block;
  color: var(--blue);
  font-size: var(--title-xs);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: var(--font-weight-title);
}

.pricing-trust span {
  display: block;
  margin-top: 4px;
  color: var(--blue-dark);
  font-size: var(--text-base);
  font-weight: var(--font-weight-strong);
}

.pricing-trust p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: var(--text-sm);
  line-height: 1.45;
  font-weight: var(--font-weight-body);
}

/* ---------- Page contact ---------- */
.contact-hero {
  min-height: var(--hero-min-height);
}

.contact-hero .hero-bg {
  background-position: center right;
}

.contact-hero .hero-content {
  padding-top: 54px;
}

.contact-hero .hero-content h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1.02;
}

.contact-hero .hero-text {
  max-width: 520px;
}

.contact-channels,
.contact-reasons,
.contact-reassurance,
.contact-form-section {
  width: var(--container);
  margin: 0 auto;
}

.contact-channels {
  padding: 0 0 30px;
  border-bottom: 1px solid var(--line);
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: -104px;
  position: relative;
  z-index: 3;
}

.contact-card {
  display: grid;
  justify-items: center;
  min-height: 390px;
  padding: 34px 30px 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.9);
  text-align: center;
  box-shadow: 0 24px 64px rgba(2, 11, 45, .1);
  backdrop-filter: blur(10px);
}

.contact-card-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(7,71,255,.1);
  color: var(--blue);
  line-height: 1;
}

.contact-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card.is-green .contact-card-icon {
  background: rgba(9, 168, 97, .12);
  color: #0aa862;
}

.contact-card > p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-title);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card.is-green > p,
.contact-card.is-green .contact-card-value {
  color: #0aa862;
}

.contact-card h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--title-xs);
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-card-value {
  margin-top: 8px;
  color: var(--blue);
  font-size: var(--text-3xl);
  line-height: 1.1;
  font-weight: var(--font-weight-title);
}

.contact-card > span {
  max-width: 280px;
  margin: 18px 0 22px;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.5;
}

.contact-card-cta {
  width: 100%;
  max-width: 300px;
}

.contact-card-cta.is-green {
  background: #0aa862;
  box-shadow: 0 12px 26px rgba(10, 168, 98, .22);
}

.contact-card small {
  margin-top: 20px;
  color: var(--ink);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.contact-reasons {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.contact-reasons h2,
.contact-reassurance h2,
.contact-form-intro h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: var(--title-xs);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: var(--font-weight-title);
}

.contact-reasons > div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.contact-reasons span {
  display: grid;
  min-height: 80px;
  place-items: center;
  padding: 12px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: var(--text-md);
  line-height: 1.3;
  font-weight: var(--font-weight-strong);
}

.contact-reasons span:first-child {
  border-left: 0;
}

.contact-reassurance {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.contact-reassurance-image {
  min-height: 360px;
  border-radius: 10px;
  background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=86');
  background-position: center;
  background-size: cover;
  box-shadow: 0 16px 38px rgba(2, 11, 45, .06);
}

.contact-reassurance article,
.contact-form-section {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(2, 11, 45, .04);
}

.contact-reassurance article {
  padding: 34px;
}

.contact-reassurance h2 span {
  color: var(--blue);
}

.contact-reassurance p,
.contact-form-intro p,
.contact-bottom-note p {
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.58;
  font-weight: var(--font-weight-body);
}

.contact-reassurance p {
  margin: 16px 0 0;
}

.contact-reassurance strong {
  display: block;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: var(--text-base);
}

.contact-reassurance small {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(7,71,255,.07);
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-strong);
}

.contact-reassurance small svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--blue);
}

.contact-form-section {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 28px;
  margin-top: 0;
  margin-bottom: 40px;
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  min-height: 126px;
  padding-top: 14px;
  resize: vertical;
}

/* --- Harmonisation WPForms avec le design system --- */
/* Tous les champs en pleine largeur (WPForms met small/medium à 25%/60%). */
.contact-form .wpforms-field,
.contact-form .wpforms-field-small,
.contact-form .wpforms-field-medium,
.contact-form .wpforms-field-large {
  width: 100% !important;
  max-width: 100% !important;
}
.contact-form .wpforms-field input,
.contact-form .wpforms-field textarea,
.contact-form .wpforms-field select {
  width: 100%;
}
/* Champ téléphone « Smart Phone » (intl-tel-input) : le conteneur .iti reste
   inline-block/étroit → on le force en pleine largeur. */
.contact-form .iti {
  display: block;
  width: 100%;
}
.contact-form .iti > input,
.contact-form .wpforms-field-phone input,
.contact-form input.wpforms-smart-phone-field,
.contact-form input[type="tel"] {
  width: 100% !important;
}
/* Bouton d'envoi : repris du design system (.btn). */
.contact-form .wpforms-submit-container,
.contact-form .wpforms-field-submit {
  margin-top: 4px;
}
.contact-form button[type="submit"],
.contact-form .wpforms-submit,
.contact-form input[type="submit"],
.contact-form .wpforms-container button[type="submit"],
.contact-form .wpforms-container .wpforms-submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto !important;
  min-height: 48px !important;
  padding: 0 28px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: var(--blue) !important;
  background-color: var(--blue) !important;
  color: #fff !important;
  font-size: var(--text-md) !important;
  font-weight: var(--font-weight-strong) !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  box-shadow: 0 12px 26px rgba(7, 71, 255, 0.22) !important;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form button[type="submit"]:hover,
.contact-form .wpforms-submit:hover,
.contact-form input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(7, 71, 255, 0.28);
}

/* Images d'articles (blog) : sur mobile, garder les proportions d'origine
   (pas de recadrage object-fit:cover qui coupe les visuels de presse). */
@media (max-width: 760px) {
  .blog-featured-image {
    min-height: 0;
  }
  .blog-featured-image img,
  .blog-card-image img {
    height: auto;
    object-fit: contain;
  }
}

.contact-submit {
  justify-self: end;
  background: var(--blue-dark);
}

.contact-bottom-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-bottom-note article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.contact-bottom-note h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-title);
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 12px;
  }

  .brand-logo {
    height: 38px;
  }

  .main-nav {
    gap: 12px;
    font-size: var(--text-sm);
  }

  .phone-link {
    font-size: var(--text-base);
  }

  .btn-small {
    min-height: 40px;
    padding-inline: 14px;
    font-size: var(--text-xs);
  }
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .header-inner {
    min-height: 70px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
  }

  /* Le menu s'ouvre en superposition (absolu) sans pousser le contenu */
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 8px 16px 18px;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 34px rgba(2, 11, 45, 0.14);
  }

  .site-header.is-open .mobile-menu {
    display: block;
  }

  .main-nav,
  .header-actions {
    display: none;
    order: 5;
    width: 100%;
  }

  .site-header.is-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0 6px;
  }

  .site-header.is-open .nav-item {
    width: 100%;
  }

  .site-header.is-open .nav-item::after,
  .site-header.is-open .nav-submenu::before {
    display: none;
  }

  .site-header.is-open .nav-item > a {
    min-height: 0;
  }

  .site-header.is-open .nav-main-row {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .site-header.is-open .has-submenu > .nav-main-row > a::before {
    display: none;
  }

  .site-header.is-open .submenu-toggle {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
  }

  .site-header.is-open .submenu-toggle span {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .18s ease;
  }

  .site-header.is-open .nav-item.is-submenu-open .submenu-toggle span {
    transform: translateY(2px) rotate(225deg);
  }

  .site-header.is-open .nav-submenu {
    display: none;
    position: static;
    min-width: 0;
    gap: 0;
    margin-top: 8px;
    padding: 6px 0 0 14px;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header.is-open .nav-item.is-submenu-open .nav-submenu {
    display: grid;
  }

  .site-header.is-open .nav-submenu strong {
    display: none;
  }

  .site-header.is-open .nav-submenu a {
    padding: 7px 0;
    font-size: var(--text-md);
  }

  .site-header.is-open .nav-submenu a::before {
    width: 5px;
    height: 5px;
  }

  .site-header.is-open .header-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 8px;
  }

  .site-header.is-open .header-actions .phone-link {
    justify-content: center;
  }

  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-strip article:nth-child(3n) {
    border-right: 0;
  }

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

  .wellbeing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-plan-grid,
  .pricing-care-card {
    grid-template-columns: 1fr;
  }

  .pricing-group-grid {
    grid-template-columns: 1fr;
  }

  .pricing-trust > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-trust article:nth-child(odd) {
    border-left: 0;
  }

  .pricing-trust article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .press-logos {
    gap: clamp(18px, 5vw, 72px);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .problem-section,
  .reviews-section,
  .faq-page-hero,
  .faq-contact-band,
  .contact-channel-grid,
  .contact-reassurance,
  .contact-form-section,
  .bottom-section {
    grid-template-columns: 1fr;
  }

  .contact-channel-grid {
    margin-top: -58px;
  }

  .contact-reasons > div {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-page-stats,
  .faq-trust {
    grid-template-columns: 1fr;
  }

  .faq-trust article,
  .faq-trust article:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .faq-trust article:first-child {
    border-top: 0;
  }

  .contact-reasons span:nth-child(3n + 1) {
    border-left: 0;
  }

  .contact-reasons span:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  /* Tablette/mobile : on dé-superpose (titre puis bande dessous, pleine largeur) */
  .reviews-title {
    position: static;
    z-index: auto;
    max-width: none;
    min-height: 0;
    padding-right: 0;
    background: none;
  }

  .reviews-title::after {
    display: none;
  }

  .reviews-marquee {
    position: static;
    margin-top: 26px;
  }

  .reviews-more {
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  :root {
    /* Gouttières réduites pour gagner de la largeur utile sur mobile */
    --container: min(1480px, calc(100% - 32px));
  }

  .brand-logo {
    height: 36px;
  }

  .hero-addictik {
    min-height: var(--hero-min-height);
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.68) 56%, rgba(255,255,255,.08) 100%),
      var(--hero-image, url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=82'));
  }

  .hero-content {
    padding-top: 44px;
  }

  .hero-content h1 {
    font-size: var(--title-mobile-lg);
  }

  .hero-content .btn {
    width: 100%;
  }

  .hero-proof-line {
    margin: -4px 0 22px;
    font-size: var(--text-sm);
  }

  .hero-proof-line span {
    flex-wrap: wrap;
  }

  .hero-proof-line span + span::before {
    margin-inline: 10px;
  }

  body.has-mobile-floating-cta {
    padding-bottom: 96px;
  }

  .mobile-floating-cta {
    position: fixed;
    z-index: 90;
    right: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 50%;
    display: grid;
    width: min(360px, calc(100% - 28px));
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(9, 35, 89, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 48px rgba(3, 14, 45, .2);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
    transition: opacity .2s ease, transform .2s ease;
    backdrop-filter: blur(16px);
  }

  .mobile-floating-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .mobile-floating-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ink);
    font-size: var(--text-base);
    font-weight: var(--font-weight-title);
    line-height: 1.1;
    text-decoration: none;
  }

  .mobile-floating-btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    font-size: var(--text-md);
  }

  .reviews-grid,
  .footer-inner,
  .centers-card,
  .trust-row,
  .method-two-grid,
  .method-choice-grid,
  .method-info,
  .method-final-proof-grid {
    grid-template-columns: 1fr;
  }

  .method-hero {
    min-height: var(--hero-min-height);
  }

  .wellbeing-hero {
    min-height: var(--hero-min-height);
  }

  .pricing-hero {
    min-height: var(--hero-min-height);
  }

  .contact-hero {
    min-height: var(--hero-min-height);
  }

  .wellbeing-hero .hero-content h1 {
    font-size: var(--title-mobile-lg);
  }

  .pricing-hero .hero-content h1 {
    font-size: var(--title-mobile-lg);
  }

  .contact-hero .hero-content h1 {
    font-size: var(--title-mobile-lg);
  }

  .wellbeing-hero .hero-text {
    max-width: none;
    font-size: var(--text-base);
    line-height: 1.55;
  }

  .pricing-hero .hero-text {
    max-width: none;
    font-size: var(--text-base);
    line-height: 1.55;
  }

  .contact-hero .hero-text {
    max-width: none;
    font-size: var(--text-base);
    line-height: 1.55;
  }

  .contact-channels {
    padding-top: 0;
  }

  .contact-channel-grid {
    margin-top: -46px;
    gap: 16px;
  }

  .contact-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .contact-reasons > div {
    grid-template-columns: 1fr;
  }

  .contact-reasons span,
  .contact-reasons span:nth-child(3n + 1) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .contact-reasons span:first-child {
    border-top: 0;
  }

  .contact-reassurance {
    gap: 18px;
    padding: 26px 0;
  }

  .contact-reassurance-image {
    min-height: 260px;
  }

  .contact-reassurance article,
  .contact-form-section {
    padding: 24px;
  }

  .contact-form-row,
  .contact-bottom-note {
    grid-template-columns: 1fr;
  }

  .contact-bottom-note article + article {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .contact-submit {
    justify-self: stretch;
  }

  .faq-page-hero {
    padding: 46px 0 38px;
  }

  .faq-page-hero h1 {
    font-size: var(--title-mobile-lg);
  }

  .faq-page-stats {
    gap: 12px;
  }

  .faq-page-stats article {
    min-height: 0;
    padding: 22px 18px;
  }

  .faq-page-list {
    padding: 34px 0 24px;
  }

  .faq-contact-band {
    justify-items: start;
    padding: 24px;
  }

  .faq-contact-band .btn {
    width: 100%;
  }

  .wellbeing-section {
    padding: 38px 0 36px;
  }

  .pricing-section {
    padding: 34px 0 28px;
  }

  .pricing-head h2,
  .pricing-group-card h2,
  .pricing-care-card h2,
  .pricing-trust h2 {
    font-size: var(--title-mobile-sm);
  }

  .pricing-plan-card,
  .pricing-group-card,
  .pricing-care-card {
    padding: 26px 22px;
  }

  .pricing-care-side {
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pricing-care-card ul {
    columns: 1;
  }

  .pricing-trust > div {
    grid-template-columns: 1fr;
  }

  .pricing-trust article,
  .pricing-trust article:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pricing-trust article:first-child {
    border-top: 0;
  }

  .wellbeing-head h2 {
    font-size: var(--title-mobile-sm);
  }

  .wellbeing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wellbeing-card img {
    height: 170px;
  }

  .method-hero .hero-content h1 {
    font-size: var(--title-mobile-lg);
  }

  .method-hero .hero-text {
    max-width: none;
    font-size: var(--text-base);
    line-height: 1.55;
  }

  .method-two {
    padding-top: 28px;
  }

  .method-two-grid {
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(2, 11, 45, .05);
  }

  .method-two-grid::before {
    display: none;
  }

  .method-process-card,
  .method-process-card:first-child,
  .method-process-card:last-child {
    min-height: 0;
    padding: 24px;
    border: 0;
    border-radius: 0;
    background: #fff;
  }

  .method-process-card:first-child {
    border-radius: 10px 10px 0 0;
  }

  .method-process-card:last-child {
    border-top: 1px solid var(--line);
    border-left: 0;
    border-radius: 0 0 10px 10px;
  }

  .method-plus {
    display: none;
  }

  .method-choice-grid,
  .method-benefit-grid {
    display: grid;
    overflow: visible;
  }

  .method-choice-grid article + article,
  .method-benefit-card + .method-benefit-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .method-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-benefit-card {
    min-height: 0;
  }

  .method-benefit-card:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .method-benefit-card:nth-child(2) {
    border-top: 0;
  }

  .method-info-card {
    padding: 24px;
  }

  .method-info-card ul {
    grid-template-columns: 1fr;
  }

  .method-final-content {
    padding: 26px 22px;
  }

  .method-final-proof-grid {
    gap: 0;
  }

  .method-final-proof-grid article,
  .method-final-proof-grid article:first-child {
    min-height: 0;
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }

  .method-final-proof-grid article:first-child {
    border-top: 0;
  }

  .centers-card {
    height: auto;
    padding: 24px 22px 24px;
  }

  .dark-cta {
    height: auto;
  }

  .dark-content {
    padding: 26px 22px;
  }

  .dark-cta h2 {
    font-size: var(--title-mobile-md);
  }

  .cta-row .btn,
  .btn-footer {
    width: 100%;
  }

  .centers-map {
    height: 300px;
    min-height: 300px;
    margin: 18px -22px -24px;
    border-radius: 0 0 10px 10px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 52px;
  }

  .faq-video {
    position: static;
  }

  .faq-head h2 {
    font-size: var(--title-mobile-xl);
  }

  .stats-strip,
  .addictions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-logos {
    gap: 22px;
    padding: 10px 14px;
    animation-duration: 18s;
  }

  .press-logos img {
    height: 44px;
    max-width: 160px;
  }

  .addictions-grid article {
    display: grid;
    min-height: 0;
    padding: 14px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 14px 34px rgba(2, 11, 45, .06);
  }

  .addiction-icon {
    height: 84px;
    margin-bottom: 10px;
  }

  .addiction-icon img {
    height: 74px;
  }

  .addictions-grid h3 {
    font-size: var(--text-base);
  }

  .addictions-grid p {
    margin-bottom: 10px;
  }

  .addiction-overlay {
    position: static;
    z-index: auto;
    justify-content: start;
    gap: 7px;
    margin-top: 6px;
    padding: 9px 0 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .addiction-overlay > span {
    font-size: var(--text-xs);
    line-height: 1.32;
  }

  .addiction-overlay a {
    align-self: center;
    margin-top: 0;
  }

  .stats-strip {
    border-top: 1px solid var(--line);
  }

  .stats-strip article {
    min-height: 0;
    padding: 18px 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-strip article:first-child {
    padding-left: 18px;
  }

  .stats-strip article:last-child {
    padding-right: 18px;
  }

  .stats-strip article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .stats-strip strong {
    margin-bottom: 8px;
    font-size: var(--title-xs);
    line-height: .96;
    letter-spacing: -0.04em;
  }

  .stats-strip p {
    font-size: var(--text-md);
    line-height: 1.38;
    font-weight: var(--font-weight-strong);
  }

  .problem-section {
    gap: 26px;
    padding-top: 42px;
  }

  .why-card {
    padding-left: 0;
    border-left: 0;
  }

  .why-card ul {
    grid-template-columns: 1fr;
  }

  .centers-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    align-items: start;
  }

  .centers-card .section-eyebrow {
    margin-bottom: 18px;
  }

  .centers-card h3 {
    font-size: var(--text-sm);
  }

  .centers-card li,
  .center-list-button {
    font-size: var(--text-xs);
    line-height: 1.18;
  }

  .center-more-button {
    margin-top: 8px;
    font-size: var(--text-xs);
    line-height: 1.2;
    text-align: left;
  }

  .centers-map-note {
    margin-top: 26px;
    font-size: var(--text-lg);
    line-height: 1.12;
  }

  .center-more-button {
    min-height: 30px;
  }

  /* Avis : carrousel standard (1 carte/slide, puces + flèches comme les autres) */
  .reviews-grid {
    -webkit-mask-image: none;
    mask-image: none;
    scroll-snap-type: x mandatory;
  }

  .reviews-grid > * {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .reviews-grid > [aria-hidden='true'] {
    display: none;
  }

  .reviews-next {
    display: none;
  }

  .reviews-marquee.is-enhanced .reviews-mobile-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
  }

  .carousel.is-enhanced .carousel-controls {
    display: flex;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0 24px;
  }

  .footer-brand-col {
    text-align: center;
    align-items: center;
  }

  .footer-brand-col .brand,
  .footer-social {
    justify-content: center;
  }

  .footer-brand-col p {
    margin: 14px auto 0;
    max-width: 320px;
    font-size: var(--text-md);
    line-height: 1.45;
  }

  .footer-contact-card {
    order: 4;
    width: 100%;
    justify-self: stretch;
    margin-top: 0;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    text-align: center;
  }

  .footer-contact-card h3 {
    margin-bottom: 2px;
    font-size: var(--text-sm);
  }

  .footer-contact-main {
    font-size: var(--text-3xl);
  }

  .footer-group {
    order: 2;
    padding: 14px 0 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.16);
    border-radius: 0;
    background: transparent;
  }

  .footer-primary-cta {
    justify-self: stretch;
    width: 100%;
    margin-top: 6px;
  }

  .footer-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    margin: 0;
    padding: 0;
    cursor: pointer;
  }

  .footer-group summary::after {
    content: '+';
    font-size: var(--text-2xl);
    line-height: 1;
  }

  .footer-group[open] summary::after {
    content: '−';
  }

  .footer-group ul {
    padding: 0 0 12px;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-top: 18px;
  }

  .footer-legal {
    justify-content: center;
  }

  /* ---------- Carrousel : la piste devient swipable ---------- */
  .carousel-track {
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 4px 2px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .carousel-track::-webkit-scrollbar {
    display: none;
  }

  .carousel-track > * {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .carousel.is-enhanced .carousel-controls {
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
  }
}

/* ---------- Page centres ---------- */
.centers-stats-strip,
.centers-directory,
.centers-home-cta {
  width: var(--container);
  margin-inline: auto;
}

.centers-page-hero {
  min-height: var(--hero-min-height);
}

.centers-page-hero .hero-bg {
  background-position: center right;
}

.centers-page-hero .hero-content {
  padding-top: 54px;
}

.centers-page-hero .hero-content h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1.02;
}

.centers-page-hero .hero-text {
  max-width: 580px;
}

.centers-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 58px rgba(0,34,102,.06);
  overflow: hidden;
}

.centers-stats-strip article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  min-height: 126px;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.centers-stats-strip article:first-child {
  border-left: 0;
}

.centers-stat-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(18,82,255,.07);
}

.centers-stat-icon svg {
  width: 27px;
  height: 27px;
  stroke: var(--blue);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.centers-stats-strip strong,
.centers-stats-strip b {
  display: block;
  color: var(--ink);
  line-height: 1.08;
}

.centers-stats-strip strong {
  font-size: var(--text-2xl);
  letter-spacing: -0.04em;
}

.centers-stats-strip b {
  margin-top: 4px;
  font-size: var(--text-sm);
}

.centers-stats-strip p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: var(--text-xs);
  line-height: 1.42;
}

.centers-directory {
  padding: 58px 0 0;
}

.centers-directory-head {
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
}

.centers-directory-head .section-eyebrow {
  margin-bottom: 12px;
}

.centers-directory-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--title-sm);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.centers-directory-head p:not(.section-eyebrow) {
  margin: 12px auto 0;
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.55;
}

.centers-country-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.centers-country-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-strong);
  cursor: pointer;
}

.centers-country-button.is-active {
  border-color: rgba(18,82,255,.18);
  background: rgba(18,82,255,.08);
  color: var(--blue);
  box-shadow: 0 12px 30px rgba(18,82,255,.08);
}

.centers-map-panel {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin: 0 0 32px;
  padding: 28px;
  border: 1px solid rgba(18,82,255,.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 20%, rgba(18,82,255,.12), transparent 28%),
    linear-gradient(135deg, #f8fbff, #eef5ff);
}

.centers-map-panel h3 {
  max-width: 270px;
  margin: 0;
  color: var(--ink);
  font-size: var(--title-xs);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.centers-map-panel p {
  max-width: 250px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.centers-directory-map {
  min-height: 340px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(rgba(255,255,255,.35), rgba(255,255,255,.35)),
    url('https://tile.openstreetmap.org/5/16/10.png') center/cover;
}

.centers-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 34px 0 18px;
}

.centers-results-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--title-xs);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.centers-results-head p {
  margin: 0;
  color: var(--ink-muted);
  font-size: var(--text-sm);
}

.centers-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.centers-directory-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 286px;
  padding: 30px 24px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 54px rgba(0,34,102,.045);
  text-align: center;
}

.centers-card-pin {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(18,82,255,.07);
}

.centers-card-pin svg {
  width: 30px;
  height: 30px;
  fill: var(--blue);
  stroke: none;
}

.centers-directory-card .center-note {
  order: -1;
  margin: 0 0 10px;
  color: var(--blue);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-strong);
}

.centers-directory-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-3xl);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.centers-country-pill {
  display: inline-flex;
  margin-top: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(18,82,255,.08);
  color: var(--blue);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-strong);
}

.centers-directory-card > p:not(.center-note) {
  margin: 18px 0 22px;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.centers-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.centers-card-actions .btn,
.centers-card-actions .appointment-outline-link {
  min-height: 42px;
  padding-inline: 14px;
  font-size: var(--text-xs);
}

.appointment-outline-link.is-disabled {
  opacity: .48;
  pointer-events: none;
}

.centers-home-cta {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 52px;
  margin-bottom: 72px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 60px rgba(0,34,102,.05);
}

.centers-home-cta[hidden] {
  display: none;
}

.centers-home-cta-inline {
  width: 100%;
  margin-top: 0;
  margin-bottom: 22px;
}

.centers-home-cta > span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(18,82,255,.07);
}

.centers-home-cta svg {
  width: 36px;
  height: 36px;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.centers-home-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-3xl);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.centers-home-cta p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .centers-map-panel {
    grid-template-columns: 1fr;
  }

  .centers-stats-strip,
  .centers-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .centers-stats-strip article:nth-child(odd) {
    border-left: 0;
  }

  .centers-stats-strip article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .centers-home-cta {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .centers-home-cta .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .centers-stats-strip,
  .centers-directory,
  .centers-home-cta {
    width: var(--container);
  }

  .centers-page-hero .hero-content h1 {
    font-size: var(--title-mobile-lg);
  }

  .centers-page-hero .hero-text {
    max-width: none;
    font-size: var(--text-base);
    line-height: 1.55;
  }

  .centers-stats-strip {
    grid-template-columns: 1fr;
  }

  .centers-stats-strip article,
  .centers-stats-strip article:nth-child(n + 3) {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .centers-stats-strip article:first-child {
    border-top: 0;
  }

  .centers-stat-icon {
    width: 40px;
    height: 40px;
  }

  .centers-directory {
    padding-top: 42px;
  }

  .centers-directory-head {
    margin-bottom: 20px;
    text-align: left;
  }

  .centers-country-filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px;
  }

  .centers-country-button {
    min-height: 42px;
    padding-inline: 12px;
    font-size: var(--text-xs);
  }

  .centers-map-panel {
    gap: 18px;
    padding: 18px;
  }

  .centers-map-panel h3 {
    max-width: none;
  }

  .centers-map-panel p {
    max-width: none;
  }

  .centers-directory-map {
    min-height: 250px;
  }

  .centers-results-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .centers-card-grid {
    grid-template-columns: 1fr;
  }

  .centers-directory-card {
    min-height: 0;
    padding: 24px 18px 18px;
  }

  .centers-card-actions {
    grid-template-columns: 1fr;
  }

  .centers-home-cta {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
    margin-bottom: 48px;
    padding: 22px;
    text-align: left;
  }

  .centers-home-cta > span {
    width: 52px;
    height: 52px;
  }
}

/* ---------- Blog & template article ---------- */
.blog-hero {
  min-height: var(--hero-min-height);
}

.blog-hero .hero-bg {
  background-position: center right;
}

.blog-hero .hero-content h1 {
  max-width: 760px;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1.02;
}

.blog-archive,
.blog-article,
.blog-article-layout {
  width: min(100% - 56px, 1180px);
  margin-inline: auto;
}

.blog-archive {
  padding: 58px 0 72px;
}

.blog-featured-content .section-eyebrow {
  text-align: left;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 20px 64px rgba(0,34,102,.06);
}

.blog-featured-image,
.blog-card-image {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--soft);
}

.blog-featured-image img,
.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-image {
  min-height: 300px;
}

.blog-featured-content {
  display: grid;
  align-content: center;
  padding: clamp(14px, 2.2vw, 28px);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--ink-muted);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-strong);
}

.blog-meta span:first-child {
  color: var(--blue);
}

.blog-featured-content h2,
.blog-card h2 {
  margin: 14px 0 0;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.blog-featured-content h2 {
  max-width: 560px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
}

.blog-featured-content h2 a,
.blog-card h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-featured-content > p:not(.section-eyebrow) {
  max-width: 560px;
  margin: 14px 0 22px;
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.52;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.blog-card-image {
  min-height: 172px;
}

.blog-card-body {
  display: grid;
  align-content: start;
}

.blog-card h2 {
  font-size: var(--text-xl);
  line-height: 1.12;
}

.blog-card p {
  margin: 12px 0 14px;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.blog-read-link,
.blog-back-link {
  color: var(--blue);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-strong);
  text-decoration: none;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.blog-page-arrow,
.blog-page-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-strong);
  text-decoration: none;
}

.blog-page-arrow {
  color: var(--blue);
}

.blog-page-arrow span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: var(--text-sm);
  line-height: 1;
}

.blog-page-arrow.is-disabled {
  color: var(--ink-muted);
  opacity: .45;
  pointer-events: none;
}

.blog-page-arrow.is-disabled span {
  background: var(--line);
  color: var(--ink-muted);
}

.blog-page-current {
  min-width: 92px;
  color: var(--ink);
  background: rgba(18,82,255,.06);
}

.blog-article {
  padding: clamp(38px, 5vw, 68px) 0 0;
}

.blog-article-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, .72fr);
  gap: 44px;
  align-items: center;
  min-height: var(--hero-min-height);
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.blog-article-head h1 {
  max-width: 760px;
  margin: 16px 0;
  color: var(--ink);
  font-size: clamp(40px, 4.7vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.blog-article-head > p:not(.section-eyebrow) {
  max-width: 640px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.blog-article-hero img {
  width: 100%;
  min-height: 360px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 22px 70px rgba(0,34,102,.08);
}

.blog-article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 56px;
  align-items: start;
  padding: 46px 0 64px;
}

.blog-article-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
}

.blog-article-sidebar strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: var(--text-base);
}

.blog-article-sidebar a {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.35;
  text-decoration: none;
}

.blog-prose {
  color: var(--ink);
  font-size: var(--text-lg);
  line-height: 1.72;
}

.blog-prose .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: var(--text-2xl);
  line-height: 1.45;
  font-weight: var(--font-weight-strong);
}

.blog-prose h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: var(--title-xs);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.blog-prose p,
.blog-prose li {
  color: var(--ink-soft);
}

.blog-prose ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.blog-prose table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.blog-prose th,
.blog-prose td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.blog-prose th {
  background: rgba(18,82,255,.06);
  color: var(--ink);
}

.blog-prose blockquote {
  margin: 30px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: rgba(18,82,255,.06);
  color: var(--ink);
  font-weight: var(--font-weight-strong);
}

.blog-single {
  width: min(100% - 56px, 1180px);
  padding: clamp(38px, 5vw, 72px) 0 68px;
}

.blog-single-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.blog-single-head .section-eyebrow {
  margin-bottom: 14px;
  text-align: center;
}

.blog-single-head h1 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--blue-dark);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.blog-single-head .page-meta {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-strong);
}

.blog-single-featured {
  max-width: 1040px;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 74px rgba(0,34,102,.08);
}

.blog-single-featured img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.blog-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  justify-content: center;
}

.blog-single-content {
  width: 100%;
  max-width: 820px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 62px rgba(0,34,102,.055);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.78;
}

.blog-single-content > p:first-child {
  color: var(--ink);
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.58;
  font-weight: var(--font-weight-strong);
}

.blog-single-content h2 {
  margin-top: 2em;
  padding-top: .2em;
  color: var(--blue-dark);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.blog-single-content h3 {
  color: var(--blue-dark);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.12;
}

.blog-single-content a {
  color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.blog-single-content ul,
.blog-single-content ol {
  display: grid;
  gap: 10px;
  padding-left: 1.1em;
}

.blog-single-content li {
  padding-left: 4px;
}

.blog-single-content img,
.blog-single-content figure {
  border-radius: 16px;
}

.blog-single-content blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 5px solid var(--blue);
  border-radius: 0 16px 16px 0;
  background: rgba(18,82,255,.06);
}

.blog-single .blog-back {
  max-width: 820px;
  margin: 28px auto 0;
}

.blog-single .blog-back a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0,34,102,.06);
}

@media (max-width: 1080px) {
  .blog-featured-card,
  .blog-article-hero,
  .blog-article-layout {
    grid-template-columns: 1fr;
  }

  .blog-article-sidebar {
    position: static;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .blog-archive,
  .blog-article,
  .blog-article-layout,
  .blog-single {
    width: min(100% - 28px, 1180px);
  }

  .blog-single {
    padding-top: 28px;
  }

  .blog-single-featured {
    margin-bottom: 22px;
    border-radius: 14px;
  }

  .blog-single-head {
    margin-bottom: 24px;
  }

  .blog-single-head h1 {
    font-size: clamp(26px, 9vw, 36px);
  }

  .blog-single-content {
    padding: 22px;
    border-radius: 14px;
  }

  .blog-archive {
    padding-top: 42px;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
  }

  .blog-featured-image {
    min-height: 210px;
  }

  .blog-featured-content {
    padding: 18px 6px 8px;
  }

  .blog-featured-content h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    min-height: 210px;
  }

  .blog-article {
    padding-top: 30px;
  }

  .blog-article-hero {
    gap: 24px;
    padding-bottom: 30px;
  }

  .blog-article-head h1 {
    font-size: var(--title-mobile-lg);
  }

  .blog-article-head > p:not(.section-eyebrow) {
    font-size: var(--text-base);
  }

  .blog-article-hero img {
    min-height: 240px;
  }

  .blog-article-layout {
    gap: 28px;
    padding-top: 28px;
  }

  .blog-prose {
    font-size: var(--text-base);
    line-height: 1.62;
  }

  .blog-prose .lead {
    font-size: var(--text-xl);
  }

  .blog-pagination {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-page-current {
    order: -1;
  }
}

/* ---------- Pages légales ---------- */
.legal-hero,
.legal-content {
  width: min(100% - 56px, 980px);
  margin-inline: auto;
}

.legal-hero {
  min-height: var(--hero-min-height);
  padding: clamp(48px, 6vw, 82px) 0 36px;
  border-bottom: 1px solid var(--line);
}

.legal-hero .section-eyebrow {
  text-align: left;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.legal-hero p:not(.section-eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.legal-hero span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: var(--text-sm);
}

.legal-content {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  padding: 38px 0 76px;
}

.legal-note {
  align-self: start;
  position: sticky;
  top: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(18,82,255,.06);
}

.legal-note strong {
  color: var(--ink);
  font-size: var(--text-base);
}

.legal-note p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.legal-sections {
  display: grid;
  gap: 28px;
}

.legal-sections article {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-sections h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: var(--title-xs);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.legal-sections p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.65;
}

@media (max-width: 760px) {
  .legal-hero,
  .legal-content {
    width: min(100% - 28px, 980px);
  }

  .legal-hero {
    padding-top: 36px;
  }

  .legal-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
  }

  .legal-note {
    position: static;
  }
}

/* ============================================================
   Pages classiques (légales) & Blog — habillage thème
   ============================================================ */
.page-shell { width: var(--container); margin: 0 auto; padding: clamp(40px,5vw,72px) 0; }
.page-shell-head { max-width: 760px; margin: 0 auto clamp(26px,3vw,42px); text-align: center; }
.page-shell-head .eyebrow { color: var(--blue); font-weight: var(--font-weight-title); text-transform: uppercase; letter-spacing: .16em; font-size: var(--text-sm); margin: 0 0 12px; }
.page-shell-head h1 { color: var(--blue-dark); font-size: clamp(34px,5vw,56px); line-height: 1.05; letter-spacing: -.02em; margin: 0; }
.page-shell-head .page-meta { color: var(--muted); font-size: var(--text-sm); margin-top: 14px; }

.entry-content { max-width: 760px; margin: 0 auto; color: var(--ink); font-size: clamp(16px,1.15vw,18px); line-height: 1.75; }
.entry-content > * { margin: 0 0 1.1em; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h2 { color: var(--blue-dark); font-size: clamp(24px,2.6vw,32px); line-height: 1.15; margin: 1.6em 0 .5em; letter-spacing: -.01em; }
.entry-content h3 { color: var(--blue-dark); font-size: clamp(20px,2vw,24px); margin: 1.4em 0 .4em; }
.entry-content a { color: var(--blue); text-decoration: underline; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; }
.entry-content li { margin: 0 0 .5em; }
.entry-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.entry-content blockquote { border-left: 3px solid var(--blue); padding: 4px 0 4px 18px; color: var(--blue-dark); font-weight: var(--font-weight-strong); }
.entry-content figure { margin: 1.4em 0; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { border: 1px solid var(--line); padding: 8px 12px; text-align: left; }

/* Retour article (single) */
.blog-back { max-width: 760px; margin: 28px auto 0; }
.blog-back a { color: var(--blue); text-decoration: none; font-weight: 600; }
.blog-back a:hover { text-decoration: underline; }

/* Pagination paginate_links — s'intègre à la grille blog de la maquette */
.blog-pagination .page-numbers { display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); text-decoration: none; font-weight: 600; }
.blog-pagination .page-numbers.current { background: var(--blue); color: #fff; border-color: var(--blue); }
.blog-pagination a.page-numbers:hover { border-color: var(--blue); color: var(--blue); }

/* Les pages FAQ et rendez-vous restent en mise en page standard, pas en hero plein écran. */
.appointment-hero,
.faq-page-hero {
  min-height: auto;
}
