/* ═══════════════════════════════════════════════════════════
   HOSTEZIA — Luxury Concierge · Design System
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --black:       #0A0A0A;
  --surface-1:   #111111;
  --surface-2:   #161616;
  --surface-3:   #1E1E1E;
  --gold:        #C9A96E;
  --gold-light:  #F0D090;
  --gold-dim:    rgba(201, 169, 110, 0.15);
  --gold-border: rgba(201, 169, 110, 0.25);
  --white:       #F5F5F0;
  --text-2:      #AEAEA8;
  --text-3:      #6A6A64;
  --on-gold:     #0A0A0A;   /* texte/icônes posés sur une surface dorée */
  --radius:      4px;
  --radius-lg:   12px;
  --transition:  0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme:  dark;
}

/* ── Thème clair ── */
html[data-theme="light"] {
  --black:       #F4F0E8;   /* fond de page — ivoire chaud */
  --surface-1:   #FBF9F3;   /* sections alternées — ivoire clair */
  --surface-2:   #FFFFFF;   /* cartes — blanc */
  --surface-3:   #F1ECE2;   /* champs de formulaire */
  --gold:        #9A7B3C;   /* or antique profond — accents & texte */
  --gold-light:  #7E6125;   /* emphase (em / survols) — plus foncé, lisible */
  --gold-dim:    rgba(154, 123, 60, 0.12);
  --gold-border: rgba(154, 123, 60, 0.28);
  --white:       #1E1B16;   /* texte principal — presque noir chaud */
  --text-2:      #57534B;   /* texte secondaire */
  --text-3:      #8C877D;   /* texte tertiaire */
  --on-gold:     #FBF8F2;   /* texte/icônes sur l'or profond — clair */
  color-scheme:  light;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
em { font-style: italic; color: var(--gold-light); }

.eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── Layout ── */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.25rem;
}
.section-header p {
  color: var(--text-2);
  margin-top: 1.25rem;
  font-size: 1rem;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--gold);
  color: var(--on-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}
.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--gold-border);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--gold-dim);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap var(--transition), color var(--transition);
}
.btn-link:hover { gap: 0.9rem; color: var(--gold-light); }
.btn-full { width: 100%; text-align: center; }
.btn-large { padding: 1.1rem 3rem; font-size: 0.8rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.7rem; }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-color: var(--gold-border);
}
.nav-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 1.5rem;
}
/* Le wrapper devient transparent pour la grille : ses 2 enfants
   (liens centrés + actions) deviennent directement les colonnes 2 et 3. */
.nav-menu { display: contents; }
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.logo-sub {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-3);
}
.nav-links-center {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.7rem;
}
.nav-links-center a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-links-center a:hover { color: var(--white); }
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.7rem;
}
.nav-cta {
  padding: 0.62rem 1.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  border: none !important;
  border-radius: var(--radius);
  background: var(--gold) !important;
  color: var(--on-gold) !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important, transform var(--transition) !important, box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--on-gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white) !important;
  letter-spacing: 0.06em !important;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.nav-phone svg { flex: none; color: var(--gold); }
.nav-phone:hover { color: var(--gold) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 0 40px;   /* dégage la navbar fixe (80px) + place pour le bandeau bas */
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Assombrissement biaisé à gauche pour la lisibilité de l'accroche,
     plus un léger voile vertical en bas pour la transition vers #stats. */
  background:
    linear-gradient(105deg,
      rgba(8,8,8,0.84) 0%,
      rgba(8,8,8,0.52) 38%,
      rgba(8,8,8,0.15) 64%,
      rgba(8,8,8,0.06) 100%),
    linear-gradient(to bottom,
      rgba(8,8,8,0.25) 0%,
      rgba(8,8,8,0.0) 28%,
      rgba(8,8,8,0.0) 62%,
      rgba(8,8,8,0.45) 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(380px, 430px);
  gap: 3.5rem;
  align-items: center;
}
.hero-content {
  text-align: left;
  max-width: 600px;
  container-type: inline-size;
}
.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.4rem;
  border: 1px solid var(--gold-border);
  border-radius: 40px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
  backdrop-filter: blur(8px);
  background: rgba(201, 169, 110, 0.06);
}
.hero-title {
  font-size: clamp(2.2rem, 3.2vw, 3.3rem);
  font-weight: 300;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

/* Au-delà de 980px, .hero-content est plafonné à 600px (max-width) alors que
   3.2vw continue de croître avec le viewport : la police finissait par dépasser
   l'espace disponible et casser la 1re ligne du H1 sur les grands écrans.
   On base donc la taille sur cqi (largeur réelle du conteneur, pas du viewport)
   et on verrouille la 1re ligne en nowrap pour garantir qu'elle ne se coupe jamais. */
@media (min-width: 981px) {
  /* Pas de plancher en rem ici : à cette largeur .hero-content peut être
     plus étroit que 600px (juste au-dessus du breakpoint), et un plancher
     fixe ferait à nouveau déborder le texte. 8cqi garde le même ratio
     police/texte à toute largeur de conteneur, donc ça ne déborde jamais. */
  .hero-title { font-size: min(8cqi, 3.1rem); }
  .hero-title-line1 { white-space: nowrap; }
}
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(245, 245, 240, 0.82);
  margin-bottom: 0.9rem;
  line-height: 1.6;
}
.hero-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  color: rgba(245, 245, 240, 0.92);
  line-height: 1.3;
}
.hero-points svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.br-desktop { display: inline; }
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; }
}

/* ── Bandeau « diffusion premium sur » — une seule ligne, ancré en bas du hero ── */
.hero-diffusion {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.4rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.9rem;
  padding: 0 1.5rem;
}
.hero-diffusion-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.5);
}
.hero-diffusion-list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.hero-diffusion-list span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(245, 245, 240, 0.66);
}
.hero-diffusion-list span:not(:last-child)::after {
  content: '·';
  margin: 0 0.7rem;
  color: rgba(245, 245, 240, 0.32);
  font-style: normal;
}

/* ══════════════════════════════════
   HERO — CARTE D'ESTIMATION (mini-funnel)
══════════════════════════════════ */
.hero-card {
  position: relative;
  align-self: center;
  background: rgba(13, 12, 11, 0.72);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 1.85rem 1.7rem 1.6rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  scroll-margin-top: 100px;   /* dégage la navbar fixe quand un CTA scrolle vers le formulaire */
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 1.7rem; right: 1.7rem;
  height: 2px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.hcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
}
.hcard-title em { font-style: italic; color: var(--gold-light); }
.hcard-sub {
  font-size: 0.74rem;
  color: rgba(245, 245, 240, 0.6);
  margin: 0.35rem 0 1.1rem;
  line-height: 1.5;
}
.hcard-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 1.35rem;
}
.hcard-seg {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: rgba(201, 169, 110, 0.18);
  transition: background 0.4s ease;
}
.hcard-seg.on { background: linear-gradient(to right, var(--gold), var(--gold-light)); }

/* Étapes empilées — une seule visible à la fois */
.hcard-steps {
  position: relative;
  min-height: 150px;
}
.hstep {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hstep.active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.hstep.exit { opacity: 0; transform: translateX(-18px); }
.hstep-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

/* Grilles d'options */
.hopts { display: grid; gap: 0.55rem; }
.hopts.g3 { grid-template-columns: repeat(3, 1fr); }
.hopts.g2 { grid-template-columns: 1fr 1fr; }
.hopts.g1 { grid-template-columns: 1fr; }

.hopt {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  text-align: left;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.16);
  border-radius: 11px;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.hopt:hover { border-color: var(--gold-border); background: rgba(201, 169, 110, 0.06); }
.hopt.selected { border-color: var(--gold); background: rgba(201, 169, 110, 0.12); }
.hopt.selected .hopt-ic { color: var(--gold-light); }

/* Variante « tuile » verticale (étape 1) */
.hopt--tile {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.05rem 0.4rem;
  text-align: center;
}
.hopt-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.hopt-ic svg { width: 26px; height: 26px; display: block; }
.hopt-ic.sm svg { width: 20px; height: 20px; }

/* Badges de réassurance — sous les tuiles Villa/Maison/Appartement */
.hcard-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.hcard-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(245, 245, 240, 0.75);
  white-space: nowrap;
}
.hcard-trust-item svg {
  width: 12px;
  height: 12px;
  display: block;
  flex-shrink: 0;
  color: var(--gold);
}
.hcard-trust-sep {
  width: 1px;
  height: 11px;
  background: rgba(245, 245, 240, 0.18);
  flex-shrink: 0;
}
.hopt-txt { display: flex; flex-direction: column; }
.hopt-l { font-size: 0.82rem; font-weight: 500; color: #fff; }
.hopt--tile .hopt-l { font-size: 0.76rem; }
.hopt-d {
  font-size: 0.66rem;
  color: rgba(245, 245, 240, 0.5);
  margin-top: 1px;
  line-height: 1.3;
}

/* Étape coordonnées */
.hfield { margin-bottom: 0.58rem; }
.hinput {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 10px;
  padding: 0.78rem 0.95rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.hinput::placeholder { color: rgba(245, 245, 240, 0.42); }
.hinput:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}
.hfield-ic { position: relative; }
.hfield-ic .hinput { padding-left: 2.5rem; }
.hfield-icon {
  position: absolute;
  top: 50%;
  left: 0.95rem;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  color: var(--gold-light);
  pointer-events: none;
}
.hsuggest {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 20;
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  background: #1A1A1A;
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  max-height: 260px;
  overflow-y: auto;
}
.hsuggest li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  font-size: 0.78rem;
  color: rgba(245, 245, 240, 0.88);
  line-height: 1.3;
  cursor: pointer;
}
.hsuggest li:hover,
.hsuggest li.active { background: rgba(201, 169, 110, 0.12); }
.hsuggest li svg {
  flex: none;
  width: 14px;
  height: 14px;
  color: var(--gold-light);
}
.hcard-privacy {
  font-size: 0.62rem;
  color: rgba(245, 245, 240, 0.45);
  line-height: 1.5;
  margin-top: 0.55rem;
}

/* Pied de carte — navigation */
.hcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.3rem;
}
/* Étapes 1-3 : seul « Précédent » reste (avance automatique sur sélection) —
   on le centre pour combler l'espace laissé par le bouton « Suivant » retiré. */
.hcard-foot--solo { justify-content: center; }
.hcard-foot--solo .hcard-prev:disabled { display: none; }
.hcard-prev {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.hcard-prev svg { display: block; }
.hcard-prev:hover { color: #fff; }
.hcard-prev:disabled { opacity: 0; pointer-events: none; }
.hcard-next {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
  padding: 0.75rem 1.55rem;
  background: var(--gold);
  color: var(--on-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}
.hcard-next svg { display: block; }
.hcard-next:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}
.hcard-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* Écran de confirmation */
.hcard-success { display: none; text-align: center; padding: 1.4rem 0.5rem 0.5rem; }
.hcard-success.show { display: block; }
.hcard-success-ic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.hcard-success strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}
.hcard-success p {
  font-size: 0.78rem;
  color: rgba(245, 245, 240, 0.65);
  line-height: 1.6;
  max-width: 290px;
  margin: 0 auto;
}

/* Réassurance — RDV téléphonique + preuve sociale */
.hcard-reassure {
  margin-top: 1.1rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(245, 245, 240, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hcard-rdv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.68rem 1rem;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.hcard-rdv:hover {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}
.hcard-rdv-ic { display: flex; }
.hcard-rdv-ic svg { width: 15px; height: 15px; display: block; }
.hcard-social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hcard-avatars { display: flex; flex-shrink: 0; }
.hcard-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #14110d;
  margin-left: -9px;
}
.hcard-avatars img:first-child { margin-left: 0; }
.hcard-rating {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.25;
}
.hcard-stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 2px;
}
.hcard-rating-txt {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 0.66rem;
  color: rgba(245, 245, 240, 0.7);
}
.hcard-rating-txt strong { color: #fff; font-weight: 600; }
.hcard-gicon { display: inline-flex; }
.hcard-gicon svg { display: block; }

/* ══════════════════════════════════
   STATS
══════════════════════════════════ */
#stats {
  background: var(--surface-1);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 2.3rem 1.5rem;
}
.stats-inner {
  width: min(1000px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1 1 180px;
  text-align: center;
  padding: 0.5rem 1.5rem;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-unit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--gold);
}
.stat-item p {
  font-size: 0.72rem;
  color: var(--text-2);
  letter-spacing: 0.05em;
  margin-top: 0.45rem;
  line-height: 1.55;
}
.stat-divider {
  width: 1px;
  height: 42px;
  background: var(--gold-border);
  flex-shrink: 0;
}

/* ══════════════════════════════════
   INTRO
══════════════════════════════════ */
#intro {
  padding: 6rem 1.5rem;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  width: min(1200px, 100%);
  margin: 0 auto;
}
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p { color: var(--text-2); margin-bottom: 1rem; font-size: 0.95rem; }
.intro-text .btn-link { margin-top: 1rem; }

.intro-visual { position: relative; }
.intro-card {
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}
.intro-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201,169,110,0.2), transparent 60%);
  pointer-events: none;
}
.intro-quote { margin-bottom: 1.2rem; }
.intro-card-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.intro-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  object-fit: cover;
}
.intro-author strong { display: block; font-size: 0.85rem; font-weight: 600; }
.intro-author span { font-size: 0.72rem; color: var(--text-3); }

.intro-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--on-gold);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.4);
}
.tag-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.tag-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
#services {
  background: var(--surface-1);
  padding: 2.5rem 1.5rem 6rem;
  border-top: 1px solid var(--gold-border);
}
/* ── « Pourquoi choisir Hostezia » : grille de 8 tuiles ── */
.why-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  width: min(1080px, 100%);
  margin: 0 auto;
}
.why-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.25rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.why-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.30);
}
.why-tile-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--on-gold);
  box-shadow: 0 6px 16px rgba(154, 123, 60, 0.25);
  margin-bottom: 1rem;
}
.why-tile-ic svg { width: 28px; height: 28px; stroke-width: 1.9; }
.why-tile h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.why-tile p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-2);
}
.why-tile-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.14rem 0.55rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--on-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .why-tiles { grid-template-columns: repeat(2, 1fr); max-width: 520px; }
}
@media (max-width: 480px) {
  .why-tiles { grid-template-columns: 1fr; max-width: 360px; }
}

/* ══════════════════════════════════
   PROCESSUS
══════════════════════════════════ */
#processus {
  padding: 6rem 1.5rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  width: min(1100px, 100%);
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 0 1rem;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(to bottom, var(--gold), rgba(201,169,110,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.step p { font-size: 0.82rem; color: var(--text-2); line-height: 1.75; }
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-border), transparent);
  margin-top: 2rem;
  align-self: start;
}

/* ══════════════════════════════════
   ZONES
══════════════════════════════════ */
#zones {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  background: var(--surface-1);
  border-top: 1px solid var(--gold-border);
}
/* Bandeau défilant — 4 lignes pleine largeur, sens alternés */
.zones-marquee {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.marquee-row {
  display: flex;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.marquee-row:nth-child(odd)  .marquee-track { animation-name: zones-scroll-right; }
.marquee-row:nth-child(even) .marquee-track { animation-name: zones-scroll-left; }
.marquee-row:nth-child(1) .marquee-track { animation-duration: 58s; }
.marquee-row:nth-child(2) .marquee-track { animation-duration: 66s; }
.marquee-row:nth-child(3) .marquee-track { animation-duration: 54s; }
.marquee-row:nth-child(4) .marquee-track { animation-duration: 70s; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  flex-shrink: 0;
}
.zone-item {
  display: inline-flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  white-space: nowrap;
  margin-right: 2.6rem;
  transition: color var(--transition);
}
.zone-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 0.7rem;
  flex-shrink: 0;
}
.zone-item:hover { color: var(--gold-light); }

@keyframes zones-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes zones-scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; transform: none !important; }
  .marquee-row { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .marquee-group[aria-hidden="true"] { display: none; }
}

/* ══════════════════════════════════
   TARIFS
══════════════════════════════════ */
#tarifs {
  padding: 6rem 1.5rem;
}
/* ── Comparateur de formules ── */
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 1.6rem 0;   /* dégage le scale + le badge de la carte mise en avant */
}
.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-2);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.7rem;
  cursor: pointer;
  transform: scale(0.9);
  opacity: 0.72;   /* latérales lisibles, aucune situation ne paraît rejetée */
  transition: transform var(--transition), opacity var(--transition),
              border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.offer:hover { opacity: 0.92; }
.offer:focus-visible { opacity: 0.92; box-shadow: 0 0 0 2px var(--gold-border); }
.offer.is-active {
  transform: scale(1.04);
  opacity: 1;
  border-color: var(--gold-border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  z-index: 2;
  cursor: default;
}
.offer.is-active::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
}
.offer-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.32rem 0.95rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--on-gold);
  border-radius: 40px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.offer-head { margin-bottom: 1.2rem; }
.offer-situation {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.offer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
}
.offer-tag {
  font-size: 0.76rem;
  color: var(--text-2);
  margin-top: 0.25rem;
}
.offer-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.1rem 0.45rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  background: var(--gold-dim);
  border-radius: 10px;
  transition: background var(--transition);
}
.offer-sym {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  align-self: flex-start;
  line-height: 1.6;
}
.offer-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 0.95;
  color: var(--gold);
}
.offer-big--word { font-size: 1.5rem; line-height: 1.15; }
.offer-unit {
  flex-basis: 100%;
  font-size: 0.72rem;
  color: var(--text-2);
}
/* Carte sélectionnée : pastille de prix dorée pleine */
.offer.is-active .offer-price {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.offer.is-active .offer-sym,
.offer.is-active .offer-big { color: var(--on-gold); }
.offer.is-active .offer-unit { color: var(--on-gold); opacity: 0.78; }
.offer-feats {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.offer-feats li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--white);
}
.offer-feats svg { flex-shrink: 0; margin-top: 0.12rem; color: var(--gold); }
.offer-foot {
  font-size: 0.72rem;
  color: var(--text-3);
  line-height: 1.55;
  margin-bottom: 1.3rem;
}
.offer-cta { margin-top: auto; }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
#faq {
  background: var(--surface-1);
  padding: 6rem 1.5rem;
  border-top: 1px solid var(--gold-border);
}
#faq .section-header { margin-bottom: 2.5rem; }
.faq-more { text-align: center; margin-top: 2.6rem; }
.faq-more .btn-ghost span { display: inline-block; transition: transform var(--transition); }
.faq-more .btn-ghost:hover span { transform: translateX(4px); }
.faq-list {
  width: min(820px, 100%);
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gold-border);
}
.faq-item:first-child { border-top: 1px solid var(--gold-border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0.5rem;
  list-style: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--gold-light); }
.faq-chevron {
  flex-shrink: 0;
  display: flex;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-chevron svg { width: 18px; height: 18px; display: block; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] .faq-q { color: var(--gold-light); }
.faq-a {
  overflow: hidden;
  animation: faqReveal 0.45s ease;
}
.faq-a p {
  padding: 0 0.5rem 1.6rem;
  margin-top: -0.3rem;
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 90%;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════
   CTA FINALE
══════════════════════════════════ */
#cta-final {
  position: relative;
  padding: 7.5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content .eyebrow { display: block; margin-bottom: 1.5rem; }
.cta-content h2 { margin-bottom: 1.5rem; font-size: clamp(2.2rem, 4vw, 3.5rem); }
.cta-content p { color: var(--text-2); margin-bottom: 2.5rem; font-size: 0.95rem; max-width: 520px; margin-left: auto; margin-right: auto; }
#cta-final .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
#cta-final .btn-primary svg { display: block; }
.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(245, 245, 240, 0.62);
  transition: color var(--transition);
}
.cta-phone svg { color: var(--gold); flex-shrink: 0; }
.cta-phone:hover { color: #fff; }
.cta-phone:hover svg { color: var(--gold-light); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
#footer {
  background: var(--surface-1);
  border-top: 1px solid var(--gold-border);
  padding: 5rem 1.5rem 0;
}
.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.footer-brand .logo-text { display: block; margin-bottom: 2px; }
.footer-brand .logo-sub { display: block; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.82rem; color: var(--text-3); line-height: 1.8; }

.footer-links h5, .footer-contact h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-2);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.82rem; color: var(--text-2); margin-bottom: 1.25rem; }

.footer-bottom {
  padding: 1.5rem 0;
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.7rem; color: var(--text-3); }
.footer-bottom .theme-toggle { flex-shrink: 0; }

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
#contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.contact-hero {
  position: relative;
  padding: 14rem 1.5rem 8rem;
  text-align: center;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
}
.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.85) 70%, var(--black) 100%);
}
.contact-hero-content {
  position: relative;
  z-index: 2;
}
.contact-hero-content h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1rem; }
.contact-hero-content p { font-size: 1rem; color: var(--text-2); max-width: 500px; margin: 0 auto; }

.contact-body {
  flex: 1;
  padding: 5rem 1.5rem 8rem;
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 5rem;
  align-items: start;
  width: min(1100px, 100%);
  margin: 0 auto;
}
.contact-info h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.contact-info > p { color: var(--text-2); font-size: 0.9rem; line-height: 1.8; margin-bottom: 2.5rem; }
.contact-features { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-feat-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-feat-text h4 { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-feat-text p { font-size: 0.78rem; color: var(--text-2); line-height: 1.6; }

.contact-form-wrapper {
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
}
.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-form-wrapper > p {
  font-size: 0.8rem;
  color: var(--text-2);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: var(--surface-3); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  background: var(--gold);
  color: var(--on-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.form-submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}
.form-privacy {
  margin-top: 1rem;
  font-size: 0.65rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.6;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .step-connector { display: none; }
  .steps-grid .step { text-align: left; display: flex; gap: 2rem; align-items: flex-start; }
  .step-num { font-size: 2.5rem; min-width: 60px; }

  /* Empilement des formules : toutes pleinement visibles, sans réduction */
  .offers {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 420px;
    padding: 0.5rem 0;
  }
  .offer { transform: none; opacity: 1; }
  .offer.is-active { transform: none; }

  .contact-grid { grid-template-columns: 1fr; max-width: 600px; }
}

/* Hero : empilement accroche + carte sous la zone de chevauchement */
@media (max-width: 980px) {
  #hero { justify-content: flex-start; padding: 100px 0 40px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 480px;
  }
  .hero-content { max-width: none; text-align: center; }
  .hero-points { display: none; }
  .hero-card { width: 100%; }
  /* Le bandeau de diffusion repasse dans le flux, sous la carte */
  .hero-diffusion {
    position: static;
    margin-top: 1.9rem;
    width: min(480px, 92%);
  }
}
@media (max-width: 1024px) {
  .nav-inner { display: flex; justify-content: space-between; }
  .nav-menu {
    display: none;
    position: fixed;
    inset: 80px 0 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-menu.open { display: flex; }
  .nav-links-center { flex-direction: column; gap: 2rem; }
  .nav-links-center a { font-size: 1rem; }
  .nav-actions { flex-direction: column; gap: 1.2rem; }
  .nav-cta { padding: 0.8rem 2rem !important; font-size: 0.85rem; }
  .nav-phone { font-size: 0.95rem; }
  .nav-toggle { display: flex; }

  /* Le menu déroulant mobile est un panneau clair : on y rétablit la palette claire */
  html[data-theme="light"] .nav-menu.open {
    background: rgba(251, 248, 242, 0.98);
    --gold:        #9A7B3C;
    --gold-light:  #7E6125;
    --gold-dim:    rgba(154, 123, 60, 0.12);
    --gold-border: rgba(154, 123, 60, 0.28);
    --white:       #1E1B16;
    --text-2:      #57534B;
    --text-3:      #8C877D;
  }
}

@media (max-width: 768px) {
  .hero-sub .br-desktop { display: none; }
  .hero-card { padding: 1.6rem 1.35rem 1.4rem; }
  .hopt--tile { padding: 0.9rem 0.3rem; }
  .hopt-ic svg { width: 23px; height: 23px; }

  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 0.5rem; align-items: start; }
  .stat-divider { display: none; }
  .stat-item { padding: 0.4rem 0.5rem; }
  .stat-number { font-size: 2.4rem; }
  .stat-unit { font-size: 1.45rem; }

  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-tag { right: 0; }

  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .zone-item { font-size: 1.1rem; margin-right: 1.9rem; }
  .zones-marquee { gap: 0.6rem; }

  #temoignage { min-height: 460px; padding: 5rem 1.5rem; }
  .temoignage-overlay {
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.62) 100%);
  }
}

/* ══════════════════════════════════
   ICÔNES INLINE (currentColor → or)
══════════════════════════════════ */
.intro-quote,
.service-icon,
.choice-icon,
.success-icon { color: var(--gold); }

/* ══════════════════════════════════
   BASCULE DE THÈME
══════════════════════════════════ */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.theme-toggle:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold-light);
}
.theme-toggle svg { width: 18px; height: 18px; display: block; }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }
html[data-theme="light"] .theme-toggle .icon-sun  { display: block; }

/* ══════════════════════════════════
   ZONES SUR IMAGE (hero, CTA, visuel funnel, navbar sur le hero)
   En thème clair, on rétablit localement la palette sombre via les
   variables CSS → ces zones restent identiques dans les deux thèmes.
══════════════════════════════════ */
/* Les conteneurs sur image re-déclarent leur couleur via la variable locale,
   pour que la redéfinition de --white (ci-dessous) s'applique aussi aux titres
   qui, sinon, hériteraient de la couleur (déjà résolue) du body. */
.hero-content,
.hero-card,
.cta-content,
.contact-hero-content,
.temoignage-content { color: var(--white); }

html[data-theme="light"] #hero,
html[data-theme="light"] #cta-final,
html[data-theme="light"] #temoignage,
html[data-theme="light"] .contact-hero,
html[data-theme="light"] .funnel-visual,
html[data-theme="light"] #navbar:not(.scrolled) {
  --gold:        #C9A96E;
  --gold-light:  #F0D090;
  --gold-dim:    rgba(201, 169, 110, 0.15);
  --gold-border: rgba(201, 169, 110, 0.25);
  --white:       #F5F5F0;
  --text-2:      rgba(245, 245, 240, 0.82);
  --text-3:      rgba(245, 245, 240, 0.55);
  --on-gold:     #0A0A0A;
}
html[data-theme="light"] #navbar.scrolled {
  background: rgba(251, 248, 242, 0.85);
  border-color: var(--gold-border);
}

/* ══════════════════════════════════
   FINITIONS DU MODE CLAIR
══════════════════════════════════ */
html[data-theme="light"] .why-tile,
html[data-theme="light"] .proof-card,
html[data-theme="light"] .choice-card,
html[data-theme="light"] .contact-form-wrapper {
  border-color: rgba(154, 123, 60, 0.22);
  box-shadow: 0 6px 24px rgba(60, 48, 24, 0.06);
}
html[data-theme="light"] .why-tile:hover {
  box-shadow: 0 18px 45px rgba(60, 48, 24, 0.14);
  border-color: var(--gold-border);
}
html[data-theme="light"] .why-tile-ic {
  background: #F0D89A;
  color: #1E1B16;
}
/* Formules en mode clair : bordure lisible + ombre marquée sur la sélection */
html[data-theme="light"] .offer { border-color: rgba(154, 123, 60, 0.20); }
html[data-theme="light"] .offer.is-active {
  border-color: var(--gold-border);
  box-shadow: 0 24px 60px rgba(60, 48, 24, 0.16);
}
html[data-theme="light"] .input-field,
html[data-theme="light"] .form-group input,
html[data-theme="light"] .form-group textarea,
html[data-theme="light"] .form-group select { border-color: rgba(154, 123, 60, 0.28); }
html[data-theme="light"] .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A7B3C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ══════════════════════════════════
   TÉMOIGNAGE VEDETTE (sur image)
══════════════════════════════════ */
#temoignage {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 460px;
  padding: 5.5rem 1.5rem;
  overflow: hidden;
}
.temoignage-bg {
  position: absolute;
  inset: 0;
}
.temoignage-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.temoignage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.80) 32%,
    rgba(10, 10, 10, 0.45) 58%,
    rgba(10, 10, 10, 0.10) 100%);
}
.temoignage-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  margin: 0 auto;
}
.temoignage-content .eyebrow { display: block; }
.temoignage-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1.5rem;
}
.temoignage-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}
.temoignage-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-border);
  flex-shrink: 0;
}
.temoignage-author strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}
.temoignage-author span {
  font-size: 0.74rem;
  color: rgba(245, 245, 240, 0.65);
}
.temoignage-content p {
  color: rgba(245, 245, 240, 0.82);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.25rem;
}
.temoignage-content p strong {
  color: var(--gold-light);
  font-weight: 500;
}
#temoignage .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
#temoignage .btn-primary svg { display: block; }
.temoignage-rating {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.9rem;
  font-size: 0.82rem;
  color: rgba(245, 245, 240, 0.85);
}
.temoignage-stars {
  color: var(--gold-light);
  letter-spacing: 0.12em;
  font-size: 1rem;
  line-height: 1;
}
.temoignage-rating strong { color: #fff; font-weight: 600; }

/* ══════════════════════════════════
   AVIS GOOGLE
══════════════════════════════════ */
#avis {
  padding: 2.5rem 1.5rem 1rem;
}
#avis .section-header {
  margin-bottom: 0.25rem;
}
.reviews-widget {
  width: min(1200px, 100%);
  margin: 0 auto;
  min-height: 150px;   /* réserve l'espace pendant le chargement du widget */
}
/* En thème sombre, l'en-tête du widget (EXCELLENT · note · « Basée sur X avis »)
   est en texte foncé : on le force en clair pour le contraste. Les étoiles
   (.ti-stars, hors .ti-rating-text) et les cartes blanches ne sont pas touchées. */
html:not([data-theme="light"]) .reviews-widget .ti-rating-text,
html:not([data-theme="light"]) .reviews-widget .ti-rating-text * {
  color: #F5F5F0 !important;
}

/* ══════════════════════════════════
   PREUVE SOCIALE — note Google + témoignages
══════════════════════════════════ */
.proof-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 3rem;
}
.proof-rating-stars {
  color: var(--gold);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  line-height: 1;
}
.proof-rating-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.proof-rating-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-2);
}
.proof-gicon { display: inline-flex; }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: min(1000px, 100%);
  margin: 0 auto 3.5rem;
}
.proof-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.proof-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201,169,110,0.18), transparent 55%);
  pointer-events: none;
}
.proof-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  flex: 1;
}
.proof-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.proof-author-info { margin-right: auto; }
.proof-author-info strong { display: block; font-size: 0.85rem; font-weight: 600; }
.proof-author-info span { font-size: 0.72rem; color: var(--text-3); }
.proof-badge {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--gold);
  color: var(--on-gold);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
}
.proof-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}
.proof-badge small {
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.proof-cta { text-align: center; }
.proof-cta .btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; }
.proof-cta .btn-primary svg { display: block; }

@media (max-width: 820px) {
  .proof-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 480px) {
  .proof-card { padding: 1.6rem 1.4rem; gap: 1.3rem; }
  .proof-author { gap: 0.7rem; }
  .proof-badge { padding: 0.45rem 0.7rem; }
}

/* ══════════════════════════════════
   LIENS LÉGAUX — FOOTER
   ══════════════════════════════════ */
.footer-bottom { flex-wrap: wrap; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.1rem;
}
.footer-legal a {
  font-size: 0.7rem;
  color: var(--text-3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }

/* ══════════════════════════════════
   PAGES LÉGALES (mentions, CGU, confidentialité)
   ══════════════════════════════════ */
.legal-hero {
  padding: 150px 1.5rem 3rem;
  text-align: center;
  background: var(--surface-1);
  border-bottom: 1px solid var(--gold-border);
}
.legal-hero .eyebrow { margin-bottom: 1rem; }
.legal-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  margin: 1rem 0 0.7rem;
}
.legal-hero p { color: var(--text-2); font-size: 0.95rem; max-width: 560px; margin: 0 auto; }
.legal-updated { font-size: 0.78rem; color: var(--text-3); margin-top: 0.9rem; }

.legal-toc {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.9rem 1.5rem;
  background: var(--surface-1);
  border-bottom: 1px solid var(--gold-border);
}
.legal-toc a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color var(--transition);
}
.legal-toc a:hover { color: var(--gold-light); }

.legal-main { padding: 3.5rem 1.5rem 4.5rem; }
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-wrap > section { margin-bottom: 2.8rem; }
.legal-wrap > section:last-child { margin-bottom: 0; }
.legal-part-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--gold-light);
  margin: 4rem 0 1.8rem;
  scroll-margin-top: 110px;
}
.legal-part-title:first-of-type { margin-top: 0; }
.legal-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold-border);
}
.legal-wrap h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin: 1.5rem 0 0.6rem;
}
.legal-wrap p, .legal-wrap li { font-size: 0.9rem; line-height: 1.8; color: var(--text-2); }
.legal-wrap p { margin-bottom: 0.95rem; }
.legal-wrap strong { color: var(--white); font-weight: 600; }
.legal-wrap a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }
.legal-wrap a:hover { color: var(--gold); }
.legal-wrap ul { list-style: none; margin: 0 0 1.1rem; padding: 0; }
.legal-wrap ul li { position: relative; padding-left: 1.4rem; margin-bottom: 0.55rem; }
.legal-wrap ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

.legal-table { width: 100%; border-collapse: collapse; margin: 0.4rem 0 1.2rem; font-size: 0.84rem; }
.legal-table th, .legal-table td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--gold-border);
  color: var(--text-2);
  vertical-align: top;
  line-height: 1.6;
}
.legal-table th {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: var(--surface-2);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   WIDGET WHATSAPP FLOTTANT
   ═══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════
   BARRE CTA STICKY — mobile uniquement
══════════════════════════════════ */
.mcta { display: none; }

@media (max-width: 768px) {
  .mcta {
    display: flex;
    gap: 0.55rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8500;
    padding: 0.6rem 0.85rem calc(0.6rem + env(safe-area-inset-bottom));
    background: var(--surface-1);
    border-top: 1px solid var(--gold-border);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.28);
    transform: translateY(115%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  html[data-theme="light"] .mcta { box-shadow: 0 -6px 24px rgba(30, 27, 22, 0.12); }
  .mcta.is-visible { transform: translateY(0); }

  .mcta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--on-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
  }
  .mcta-btn svg { flex: none; }

  .mcta-phone {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    color: var(--gold);
    background: var(--gold-dim);
  }

  /* Le FAB WhatsApp remonte au-dessus de la barre quand elle est visible */
  body.has-mcta .wa-fab { bottom: calc(92px + env(safe-area-inset-bottom)); }
}

/* Bouton flottant */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s;
  border: none;
  cursor: pointer;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.wa-fab svg { width: 32px; height: 32px; }

/* Overlay */
.wa-overlay {
  position: fixed;
  inset: 0;
  z-index: 9001;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.wa-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Modal */
.wa-modal {
  background: #1a1a1f;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  padding: 1.6rem 1.6rem 1.4rem;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.wa-overlay.is-open .wa-modal {
  transform: translateY(0) scale(1);
}

/* Bouton fermer */
.wa-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.wa-close:hover { background: rgba(255,255,255,0.2); }

/* En-tête */
.wa-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-right: 2rem;
}
.wa-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-icon-wrap svg { width: 30px; height: 30px; }
.wa-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.wa-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

/* Formulaire */
.wa-form { display: flex; flex-direction: column; gap: 0.75rem; }
.wa-form input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.85rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.wa-form input::placeholder { color: rgba(255,255,255,0.4); }
.wa-form input:focus {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(255,255,255,0.1);
}
.wa-form input.is-error { border-color: rgba(255, 80, 80, 0.6); }

/* Bouton envoyer */
.wa-submit {
  width: 100%;
  background: #25D366;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 50px;
  padding: 0.95rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.1rem;
}
.wa-submit:hover { background: #1ebe5a; transform: translateY(-1px); }
.wa-submit:active { transform: translateY(0); }

/* Footer */
.wa-footer-text {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.9rem;
  line-height: 1.4;
}

/* État succès */
.wa-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0 0.5rem;
  gap: 0.6rem;
}
.wa-success.is-visible { display: flex; }
.wa-success svg { color: #25D366; }
.wa-success p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.wa-success strong { color: #fff; font-weight: 600; }

@media (max-width: 480px) {
  .wa-fab { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-fab svg { width: 28px; height: 28px; }
  .wa-modal { padding: 1.3rem 1.2rem 1.2rem; }
}

/* Champ à compléter par l'éditeur — visuellement repérable */
.legal-todo {
  background: rgba(201,169,110,0.16);
  color: var(--gold-light);
  border: 1px dashed var(--gold);
  border-radius: 4px;
  padding: 0.05em 0.4em;
  font-style: normal;
  font-size: 0.9em;
  white-space: nowrap;
}
