/* =====================================================================
   HOME BLUE — Conciergerie & gestion immobilière
   Feuille de style principale
   Direction artistique alignée sur la référence :
   conteneur 1140px, titres Lato 600 majuscules, corps Heebo,
   boutons carrés, sections 100px, alternance blanc / gris / marine.
   Palette reprise du logo : marine profond, or et bleu acier.
   ===================================================================== */

/* ------------------------------ 1. Tokens ---------------------------- */
:root {
  /* Or du logo Home Blue — couleur d'accent principale */
  --accent: #c0a062;
  --accent-dark: #a5854a;
  --accent-soft: #d8bd85;
  --accent-tint: #f7f2e7;

  /* Bleu acier du logo — accent secondaire */
  --steel: #4a7bb0;
  --steel-dark: #2e5c8a;

  /* Marine du logo — fonds sombres */
  --navy: #0e1b2e;
  --navy-2: #16273f;

  --ink: #181818;
  --title: #000000;
  --body: #333333;
  --muted: #666666;
  --line: #e5e5e5;
  --soft: #f5f5f5;
  --soft-2: #f8f8f8;
  --black: #0e1b2e;
  --white: #ffffff;

  --container: 1140px;
  --gutter: 20px;

  --font-display: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Heebo', 'Libre Franklin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-logo: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;

  --header-h: 40px;
  --topbar-h: 79px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ------------------------------ 2. Reset ----------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  color: var(--title);
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
}
.skip-link:focus {
  left: 0;
}

/* ------------------------------ 3. Layout ---------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: 860px;
}

.section {
  padding: 60px 0;
}

@media (min-width: 992px) {
  .section {
    padding: 100px 0;
  }
}

.section--tight {
  padding: 50px 0;
}

.section--soft {
  background: var(--soft);
}

.section--soft2 {
  background: var(--soft-2);
}

.section--dark {
  background: var(--black);
  color: rgba(255, 255, 255, 0.82);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.grid {
  display: grid;
  gap: 30px;
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--split {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .grid--split-wide {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
  }
}

.text-center {
  text-align: center;
}

/* ------------------------------ 4. Typographie ----------------------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  display: block;
}

@media (min-width: 768px) {
  .eyebrow {
    font-size: 18px;
  }
}

.title-lg,
h1.title-lg,
h2.title-lg {
  font-size: 26px;
  line-height: 1.28;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--title);
  margin: 0 0 22px;
}

@media (min-width: 768px) {
  .title-lg {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .title-lg {
    font-size: 42px;
    line-height: 1.3;
  }
}

.title-md {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

@media (min-width: 992px) {
  .title-md {
    font-size: 32px;
    line-height: 1.3;
  }
}

.title-sm {
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
}

.section--dark .lead,
.section--dark p {
  color: rgba(255, 255, 255, 0.8);
}

.rule {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 0 26px;
}

.rule--center {
  margin-left: auto;
  margin-right: auto;
}

.text-accent {
  color: var(--accent);
}

/* ------------------------------ 5. Boutons --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.3s var(--ease);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn--dark {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.btn--dark:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn--outline {
  background: rgba(0, 0, 0, 0.44);
  border-color: #fff;
  color: #fff;
  padding: 18px 32px;
}

.btn--outline:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.22);
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-row--center {
  justify-content: center;
}

/* ------------------------------ 6. En-tête --------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.site-header--solid,
.site-header.is-stuck {
  position: fixed;
  background: rgba(14, 27, 46, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

/* Bandeau supérieur : adresse / téléphone / e-mail / horaires */
.topbar {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header.is-stuck .topbar {
  display: none;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
}

@media (min-width: 992px) {
  .topbar__inner {
    justify-content: space-between;
  }
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.topbar__item svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--accent-soft);
}

.topbar__item a:hover {
  color: var(--accent-soft);
}

/* Barre de navigation */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

/* ---- Logo Home Blue : monogramme HB + typogramme HOMEBLUE ---- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: none;
}

.logo__mark {
  width: 42px;
  height: 42px;
  flex: none;
}

/* Monogramme HB composé en typographie (or + bleu acier) */
.logo__mono {
  flex: none;
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.13em;
  padding-right: 0.13em;
}

.logo__mono i {
  font-style: normal;
  background-image: linear-gradient(160deg, #e9d5a1 0%, #c0a062 45%, #8f7239 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo__mono b {
  font-weight: 600;
  background-image: linear-gradient(160deg, #9dc0e4 0%, #4a7bb0 45%, #24456b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-family: var(--font-logo);
  font-weight: 500;
  font-size: 23px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo__name i {
  font-style: normal;
  color: var(--accent-soft);
}

.logo__name b {
  font-weight: 500;
  color: #9dc0e4;
}

.logo__sub {
  font-size: 8.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
  white-space: nowrap;
}

@media (max-width: 400px) {
  .logo__mono {
    font-size: 32px;
  }
  .logo__name {
    font-size: 19px;
    letter-spacing: 2.6px;
  }
  .logo__sub {
    font-size: 7.5px;
    letter-spacing: 1.6px;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }
}

.nav__link {
  position: relative;
  font-size: 15px;
  color: #fff;
  padding: 6px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-soft);
  transition: width 0.3s var(--ease);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__link.is-active {
  color: var(--accent-soft);
}

.nav-cta {
  display: none;
}

@media (min-width: 1100px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* Bouton hamburger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}

@media (min-width: 1100px) {
  .burger {
    display: none;
  }
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile plein écran */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  padding: 110px 0 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
    visibility 0.3s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu__link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__link.is-active,
.mobile-menu__link:hover {
  color: var(--accent-soft);
}

.mobile-menu__footer {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.mobile-menu__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.mobile-menu__contact svg {
  width: 16px;
  height: 16px;
  color: var(--accent-soft);
  flex: none;
}

body.no-scroll {
  overflow: hidden;
}

/* ------------------------------ 7. Hero ------------------------------ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 190px 0 90px;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 768px) {
  .hero {
    min-height: 640px;
    padding: 240px 0 120px;
  }
}

@media (min-width: 992px) {
  .hero {
    min-height: 100vh;
    padding: 300px 0 220px;
  }
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #101317;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 9s ease-out both;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.3) 45%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero__title {
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(0, 0, 0, 0.58);
  padding: 22px 24px;
  margin: 0 0 26px;
  max-width: 1049px;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 42px;
  }
}

@media (min-width: 992px) {
  .hero__title {
    font-size: 56px;
    line-height: 1;
    padding: 26px 30px;
  }
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin: 0 0 12px;
}

@media (min-width: 992px) {
  .hero__subtitle {
    font-size: 26px;
    line-height: 1.15;
  }
}

.hero__baseline {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin: 0 0 30px;
  max-width: 640px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  display: none;
}

@media (min-width: 992px) {
  .hero__scroll {
    display: block;
  }
}

.hero__scroll::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--accent-soft);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.3;
  }
}

/* Bandeau de statistiques sous le hero */
.stat-strip {
  background: var(--black);
  color: #fff;
}

.stat-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stat-strip__item {
  padding: 26px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-strip__item:last-child {
  border-right: 0;
}

.stat-strip__value {
  font-family: 'Roboto', var(--font-body);
  font-size: 34px;
  font-weight: 600;
  color: var(--accent-soft);
  line-height: 1.1;
}

@media (min-width: 768px) {
  .stat-strip__value {
    font-size: 50px;
  }
}

.stat-strip__label {
  font-size: 12px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
  white-space: pre-line;
}

@media (min-width: 768px) {
  .stat-strip__label {
    font-size: 14px;
  }
}

/* ------------------------------ 8. Bannière de page ------------------ */
.page-banner {
  position: relative;
  padding: 190px 0 70px;
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
}

@media (min-width: 992px) {
  .page-banner {
    padding: 250px 0 100px;
  }
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.62);
}

.page-banner__title {
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}

@media (min-width: 992px) {
  .page-banner__title {
    font-size: 42px;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a:hover {
  color: var(--accent-soft);
}

.breadcrumb span[aria-hidden] {
  opacity: 0.5;
}

/* ------------------------------ 9. Listes de prestations ------------- */
.check-list {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .check-list--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 15.5px;
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--accent-tint);
}

.check-list li::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.section--dark .check-list li::before {
  background: rgba(255, 255, 255, 0.14);
}

.section--dark .check-list li::after {
  border-color: #fff;
}

/* ------------------------------ 10. Cartes --------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px 28px;
  height: 100%;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card__icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent);
  margin-bottom: 22px;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card:hover .card__icon {
  background: var(--accent);
  color: #fff;
}

.card__title {
  font-size: 17px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* Carte étape (processus) */
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px 28px;
  height: 100%;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.step__num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: var(--accent-tint);
  margin-bottom: 14px;
}

.step:hover .step__num {
  color: var(--accent);
}

/* Carte ville */
.city-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
  aspect-ratio: 4 / 3;
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
}

.city-card:hover img {
  transform: scale(1.08);
  opacity: 0.55;
}

.city-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.city-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
}

.city-card__region {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

/* Carte tarif */
.price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px 30px;
  height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.price-card--highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
  position: relative;
}

.price-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 14px;
}

.price-card__name {
  font-size: 18px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.price-card__price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
}

.price-card__unit {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 20px;
}

.price-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-card .check-list {
  margin-bottom: 28px;
}

.price-card .btn {
  margin-top: auto;
}

/* ------------------------------ 11. Compteurs ------------------------ */
.counters {
  background: var(--black);
  color: #fff;
}

.counters__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

@media (min-width: 768px) {
  .counters__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.counters--duo .counters__inner {
  grid-template-columns: repeat(2, 1fr);
}

.counter {
  padding: 30px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 768px) {
  .counter {
    border-bottom: 0;
  }
  .counter:last-child {
    border-right: 0;
  }
}

.counter__value {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--accent-soft);
  line-height: 1;
}

@media (min-width: 768px) {
  .counter__value {
    font-size: 46px;
  }
}

.counter__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 10px;
  letter-spacing: 0.4px;
}

/* ------------------------------ 12. Bande parallaxe ------------------ */
.parallax-cta {
  position: relative;
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #fff;
  isolation: isolate;
}

@media (min-width: 992px) {
  .parallax-cta {
    padding: 100px 0;
    background-attachment: fixed;
  }
}

.parallax-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.68);
}

.parallax-cta__title {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  max-width: 780px;
}

@media (min-width: 992px) {
  .parallax-cta__title {
    font-size: 42px;
  }
}

.parallax-cta__text {
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin-bottom: 30px;
  line-height: 1.75;
}

/* ------------------------------ 13. Barres de satisfaction ----------- */
.progress {
  margin-bottom: 26px;
}

.progress__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.progress__label {
  font-size: 15px;
  color: var(--ink);
}

.progress__value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
}

.progress__track {
  height: 8px;
  background: var(--line);
  overflow: hidden;
}

.progress__bar {
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 1.4s var(--ease);
}

/* ------------------------------ 14. Média + texte -------------------- */
.media {
  position: relative;
}

.media img {
  width: 100%;
  object-fit: cover;
}

.media--framed::before {
  content: '';
  position: absolute;
  left: -18px;
  top: -18px;
  width: 55%;
  height: 55%;
  border: 3px solid var(--accent);
  z-index: -1;
}

.media--framed {
  isolation: isolate;
}

.media__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--accent);
  color: #fff;
  padding: 20px 24px;
  max-width: 240px;
}

.media__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 4px;
}

.media__badge span {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.9;
}

.signature {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.signature__name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--ink);
}

.signature__role {
  font-size: 13px;
  color: var(--muted);
}

/* ------------------------------ 15. Partenaires ---------------------- */
.partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 50px;
}

.partner {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b9b9b9;
  transition: color 0.3s var(--ease);
}

.partner:hover {
  color: var(--accent);
}

/* ------------------------------ 16. Formulaire ----------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .form-card {
    padding: 40px;
  }
}

.field {
  margin-bottom: 18px;
}

.field__label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 95, 168, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field--row {
  display: grid;
  gap: 18px;
}

@media (min-width: 640px) {
  .field--row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.choice-grid {
  display: grid;
  gap: 10px;
}

@media (min-width: 500px) {
  .choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.choice {
  display: block;
  position: relative;
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: block;
  padding: 13px 16px;
  border: 1px solid var(--line);
  font-size: 14.5px;
  text-align: center;
  transition: all 0.25s var(--ease);
}

.choice input:checked + span {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.choice input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Formulaire multi-étapes */
.stepper__bar {
  height: 6px;
  background: var(--line);
  margin-bottom: 10px;
}

.stepper__fill {
  height: 100%;
  width: 25%;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}

.stepper__meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
}

.step-panel {
  display: none;
  animation: fadeUp 0.4s var(--ease) both;
}

.step-panel.is-active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.step-panel__title {
  font-size: 17px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.form-nav .btn {
  flex: 1;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--accent-tint);
  border-left: 3px solid var(--accent);
  font-size: 14.5px;
  color: var(--ink);
}

.form-status.is-visible {
  display: block;
}

.form-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.6;
}

/* ------------------------------ 17. FAQ ------------------------------ */
.faq {
  border-top: 1px solid var(--line);
}

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

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  color: var(--accent);
  transition: color 0.25s var(--ease);
}

.faq__q:hover {
  color: var(--accent-dark);
}

.faq__icon {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.faq__icon::before {
  left: 0;
  top: 8px;
  width: 18px;
  height: 2px;
}

.faq__icon::after {
  left: 8px;
  top: 0;
  width: 2px;
  height: 18px;
}

.faq__q[aria-expanded='true'] .faq__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}

.faq__a-inner {
  padding: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 900px;
}

/* ------------------------------ 18. Témoignages ---------------------- */
.testimonials {
  position: relative;
}

.testi-viewport {
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.55s var(--ease);
}

.testi-slide {
  flex: 0 0 100%;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .testi-slide {
    flex-basis: 50%;
  }
}

@media (min-width: 1100px) {
  .testi-slide {
    flex-basis: 33.3333%;
  }
}

.testi {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testi__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--accent);
}

.testi__stars svg {
  width: 17px;
  height: 17px;
}

.testi__text {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted);
  flex: 1;
  margin-bottom: 22px;
}

.testi__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.testi__avatar {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}

.testi__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.6px;
  color: var(--ink);
}

.testi__meta {
  font-size: 13px;
  color: var(--muted);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

/* ------------------------------ 19. Contact -------------------------- */
.contact-section {
  position: relative;
  padding: 80px 0 70px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 992px) {
  .contact-section {
    padding: 120px 0 100px;
  }
}

.contact-list {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-soft);
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item__label {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 4px;
}

.contact-item__value {
  color: #fff;
  font-size: 15.5px;
  line-height: 1.6;
}

.contact-item__value a:hover {
  color: var(--accent-soft);
}

/* ------------------------------ 20. Pied de page --------------------- */
.site-footer {
  background: #fff;
  padding: 50px 0 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 34px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
  }
}

.footer__logo .logo__name i {
  color: #a5854a;
}

.footer__logo .logo__name b {
  color: #2e5c8a;
}

.footer__logo .logo__sub {
  color: var(--muted);
}

.footer__about {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 18px;
  max-width: 340px;
}

.footer__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}

.footer__list li {
  margin-bottom: 11px;
  font-size: 14.5px;
  color: var(--muted);
}

.footer__list a:hover {
  color: var(--accent);
}

.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 13px;
  font-size: 14.5px;
  color: var(--muted);
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 3px;
  color: var(--accent);
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}

.social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.social svg {
  width: 17px;
  height: 17px;
}

.footer__legal {
  margin-top: 40px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__legal {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__legal a:hover {
  color: var(--accent);
}

.footer__mention {
  font-size: 12.5px;
  color: #8d8d8d;
  line-height: 1.7;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* Barre de contact flottante (mobile) */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: var(--navy);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .mobile-bar {
    display: none;
  }
}

.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
}

.mobile-bar a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-bar .is-wa {
  background: #16a34a;
  border-left: 0;
}

.mobile-bar .is-cta {
  background: var(--accent);
  border-left: 0;
}

.mobile-bar svg {
  width: 16px;
  height: 16px;
}

body {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  body.has-mobile-bar {
    padding-bottom: 50px;
  }
}

/* ------------------------------ 21. Apparition au scroll ------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ------------------------------ 22. Divers --------------------------- */
.prose h2 {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 40px 0 16px;
}

@media (min-width: 992px) {
  .prose h2 {
    font-size: 28px;
  }
}

.prose h3 {
  font-size: 18px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 30px 0 12px;
}

.prose p,
.prose li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--body);
}

.prose ul {
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.prose ul li {
  position: relative;
  padding-left: 20px;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 6px 12px;
  margin: 0 6px 6px 0;
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-links a {
  border: 1px solid var(--line);
  padding: 9px 16px;
  font-size: 14px;
  transition: all 0.3s var(--ease);
}

.city-links a:hover,
.city-links a.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.section--dark .city-links a {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: rgba(14, 27, 46, 0.97);
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 0;
  font-size: 13.5px;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}

.cookie-bar.is-visible {
  transform: none;
}

.cookie-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-bar a {
  color: var(--accent-soft);
  text-decoration: underline;
}

/* ------------------------------ 23. Flottants : WhatsApp + assistant - */
.floating-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 130;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

@media (max-width: 767px) {
  .floating-stack {
    bottom: 62px;
    right: 14px;
  }
}

/* ---- Bouton WhatsApp ---- */
.wa-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(145deg, #2fc45a 0%, #16a34a 55%, #0f8a3d 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(16, 140, 65, 0.38), 0 2px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.wa-fab::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.wa-fab__icon {
  width: 58px;
  height: 58px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-fab__icon svg {
  width: 29px;
  height: 29px;
}

.wa-fab__label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: 14.5px;
  letter-spacing: 0.6px;
  padding: 0;
  transition: max-width 0.4s var(--ease), opacity 0.3s var(--ease),
    padding 0.4s var(--ease);
}

@media (min-width: 992px) {
  .wa-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(16, 140, 65, 0.45);
  }
  .wa-fab:hover .wa-fab__label {
    max-width: 240px;
    opacity: 1;
    padding-right: 24px;
  }
}

.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  animation: waPulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* ---- Bouton de l'assistant ---- */
.chat-fab {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(150deg, var(--navy-2) 0%, var(--navy) 100%);
  border: 1px solid rgba(192, 160, 98, 0.55);
  color: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(14, 27, 46, 0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease);
}

.chat-fab:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 16px 38px rgba(14, 27, 46, 0.45);
}

.chat-fab svg {
  width: 26px;
  height: 26px;
}

.chat-fab__close {
  display: none;
}

.chat-fab.is-open .chat-fab__open {
  display: none;
}

.chat-fab.is-open .chat-fab__close {
  display: block;
}

.chat-fab__dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--navy);
}

.chat-fab.is-open .chat-fab__dot {
  display: none;
}

/* ---- Panneau de l'assistant ---- */
.chat-panel {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 131;
  width: min(390px, calc(100vw - 28px));
  height: min(580px, calc(100vh - 140px));
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(14, 27, 46, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}

.chat-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media (max-width: 767px) {
  .chat-panel {
    right: 14px;
    bottom: 132px;
    height: min(540px, calc(100vh - 200px));
  }
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(150deg, var(--navy-2) 0%, var(--navy) 100%);
  color: #fff;
  flex: none;
}

.chat-head__avatar {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(192, 160, 98, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-logo);
  font-size: 20px;
  letter-spacing: -0.08em;
  background: rgba(255, 255, 255, 0.04);
}

.chat-head__avatar i {
  font-style: normal;
  color: var(--accent-soft);
}

.chat-head__avatar b {
  font-weight: 500;
  color: #9dc0e4;
}

.chat-head__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.chat-head__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 3px;
}

.chat-head__status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.chat-head__close {
  margin-left: auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s var(--ease);
}

.chat-head__close:hover {
  color: #fff;
}

.chat-head__close svg {
  width: 18px;
  height: 18px;
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px;
  background: var(--soft-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-body::-webkit-scrollbar {
  width: 6px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: #d8d8d8;
}

.chat-msg {
  max-width: 88%;
  padding: 12px 15px;
  font-size: 14.5px;
  line-height: 1.65;
  animation: chatIn 0.35s var(--ease) both;
}

@keyframes chatIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.chat-msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  color: var(--body);
}

.chat-msg--user {
  align-self: flex-end;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
}

.chat-msg strong {
  color: var(--ink);
}

.chat-msg--user strong {
  color: #fff;
}

.chat-msg a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.chat-msg--user a {
  color: var(--accent-soft);
}

.chat-msg ul {
  margin: 8px 0 0;
  display: grid;
  gap: 6px;
}

.chat-msg ul li {
  position: relative;
  padding-left: 16px;
}

.chat-msg ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--accent);
}

.chat-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 5px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: chatDot 1.2s ease-in-out infinite;
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.18s;
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes chatDot {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px 18px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  flex: none;
}

.chat-chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 12.5px;
  padding: 8px 13px;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
}

.chat-chip:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.chat-foot {
  flex: none;
  background: #fff;
  padding: 12px 18px 14px;
  display: flex;
  gap: 9px;
  align-items: flex-end;
}

.chat-input {
  flex: 1;
  border: 1px solid var(--line);
  padding: 11px 14px;
  font-size: 14.5px;
  font-family: var(--font-body);
  resize: none;
  max-height: 96px;
  outline: none;
  transition: border-color 0.25s var(--ease);
}

.chat-input:focus {
  border-color: var(--accent);
}

.chat-send {
  width: 44px;
  height: 44px;
  flex: none;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s var(--ease);
}

.chat-send:hover {
  background: var(--accent-dark);
}

.chat-send svg {
  width: 19px;
  height: 19px;
}

.chat-legal {
  flex: none;
  background: #fff;
  padding: 0 18px 12px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

/* Bouton WhatsApp intégré dans les sections */
.wa-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: #16a34a;
  border: 1px solid #16a34a;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.wa-inline:hover {
  background: #0f8a3d;
  border-color: #0f8a3d;
  transform: translateY(-2px);
  color: #fff;
}

.wa-inline svg {
  width: 20px;
  height: 20px;
}

/* ------------------------------ 24. Accessibilité mouvement ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
