/* ============================================================
   TPS TAXI NANTES — DESIGN SYSTEM v2
   ------------------------------------------------------------
   Identité : teal foncé profond + cuivre chaud + crème.
   Inspiration limousine premium, typographie serif éditoriale
   pour les titres, sans-serif géométrique pour le corps.
   ============================================================ */

/* ----- 1. VARIABLES ----- */
:root {
  /* Palette */
  --teal-950: #062a28;        /* Quasi-noir teal, sections sombres */
  --teal-900: #0d3d3a;        /* Teal principal */
  --teal-700: #155650;        /* Teal medium */
  --teal-500: #2a8a82;        /* Teal accent */
  --teal-100: #e0ebe9;        /* Teal très clair */

  --brass-700: #8a6420;       /* Cuivre foncé hover */
  --brass-500: #c89647;       /* Cuivre principal — CTA premium */
  --brass-300: #e6c993;       /* Cuivre clair */
  --brass-50:  #faf3e6;       /* Cuivre pâle */

  --cream:     #fbf9f4;       /* Fond chaud par défaut */
  --cream-100: #f4efe5;       /* Cream un ton plus profond */
  --cream-200: #e8e1d3;       /* Bordures, séparateurs */

  --ink:       #0e1f1d;       /* Texte principal */
  --ink-soft:  #4a5a57;       /* Texte secondaire */
  --ink-muted: #8a948f;       /* Texte tertiaire */

  --white:     #ffffff;

  /* Typo */
  --font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Échelle */
  --container: 1240px;
  --gutter: 28px;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(13, 61, 58, 0.06);
  --shadow-sm: 0 2px 8px rgba(13, 61, 58, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 61, 58, 0.10);
  --shadow-lg: 0 18px 48px rgba(13, 61, 58, 0.14);
  --shadow-brass: 0 12px 28px rgba(200, 150, 71, 0.32);

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--brass-500); color: var(--teal-950); }

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

a { color: var(--teal-700); text-decoration: none; transition: color .2s var(--easing); }
a:hover { color: var(--brass-700); }

h1, h2, h3, h4, .display {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.08;
  color: var(--teal-950);
  letter-spacing: -0.025em;
}
h1 .italic, h2 .italic { font-style: italic; font-weight: 400; }

h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.85rem); margin-bottom: .6em; }
h3 { font-size: 1.4rem; margin-bottom: .5em; line-height: 1.2; }
h4 { font-size: 1.05rem; line-height: 1.3; }

p { margin-bottom: 1em; color: var(--ink-soft); }
ul, ol { margin: 0 0 1em 1.25em; }
li { margin-bottom: .35em; color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

/* ----- 2. LAYOUT ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

.section-cream  { background: var(--cream); }
.section-cream-100 { background: var(--cream-100); }
.section-teal { background: var(--teal-950); color: rgba(255,255,255,.9); }
.section-teal h1, .section-teal h2, .section-teal h3 { color: #fff; }
.section-teal p { color: rgba(255,255,255,.7); }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-700);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--brass-500);
}
.section-teal .eyebrow { color: var(--brass-300); }
.section-teal .eyebrow::before { background: var(--brass-300); }

.section-header p { color: var(--ink-soft); font-size: 1.08rem; max-width: 600px; margin: 0 auto; }

/* ----- 3. BOUTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: -0.005em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s var(--easing);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--brass-500);
  color: var(--teal-950);
  box-shadow: var(--shadow-brass);
}
.btn-primary:hover {
  background: var(--brass-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(200, 150, 71, 0.42);
}

.btn-dark {
  background: var(--teal-950);
  color: #fff;
}
.btn-dark:hover { background: var(--teal-900); transform: translateY(-2px); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--teal-950);
}

.btn-outline {
  background: transparent;
  color: var(--teal-900);
  border-color: var(--teal-900);
}
.btn-outline:hover { background: var(--teal-900); color: #fff; }

.btn-whatsapp { background: #1ea659; color: #fff; }
.btn-whatsapp:hover { background: #178548; color: #fff; transform: translateY(-2px); }

.btn-lg { padding: 18px 36px; font-size: 1.02rem; }
.btn-sm { padding: 11px 22px; font-size: .88rem; }

/* Pulse pour le bouton d'appel principal */
.btn-pulse { position: relative; }
.btn-pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: var(--brass-500);
  opacity: .4;
  z-index: -1;
  animation: pulse-ring 2.4s var(--easing) infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(.95); opacity: .55; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ----- 4. HEADER + DROPDOWN ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, .85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--cream-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--teal-950);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--teal-950);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: -.02em;
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 6px; right: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass-500);
}
.brand .name-sub {
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  font-weight: 500;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-main {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-main > a, .nav-dropdown > button {
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .94rem;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s var(--easing);
}
.nav-main > a:hover, .nav-dropdown > button:hover {
  color: var(--teal-950);
  background: var(--cream-100);
}
.nav-main > a.active, .nav-dropdown.active > button { color: var(--teal-950); font-weight: 600; }
.nav-main > a.active::after {
  content: "·";
  color: var(--brass-500);
  font-size: 1.5rem;
  line-height: 0;
  margin-left: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > button .chevron {
  width: 14px; height: 14px;
  transition: transform .25s var(--easing);
}
.nav-dropdown:hover > button .chevron,
.nav-dropdown.open > button .chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  min-width: 320px;
  padding: 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-200);
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--easing);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  transition: background .2s var(--easing);
}
.nav-dropdown-menu a:hover { background: var(--cream-100); color: var(--teal-950); }
.nav-dropdown-menu a .dd-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--brass-50);
  color: var(--brass-700);
  display: grid;
  place-items: center;
}
.nav-dropdown-menu a .dd-icon svg { width: 16px; height: 16px; }
.nav-dropdown-menu a strong {
  display: block;
  font-size: .92rem;
  margin-bottom: 2px;
  color: var(--ink);
}
.nav-dropdown-menu a small {
  font-size: .78rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.header-cta .btn { padding: 11px 22px; font-size: .9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--teal-950);
  margin: 5px auto;
  transition: .3s var(--easing);
  border-radius: 2px;
}

@media (max-width: 1080px) {
  .nav-main { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--cream-200);
    box-shadow: var(--shadow-md);
  }
  .site-header.open .nav-main > a,
  .site-header.open .nav-dropdown > button { width: 100%; justify-content: flex-start; }
  .site-header.open .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: var(--cream-100);
    margin-top: 6px;
    width: 100%;
    min-width: 0;
  }
  .site-header.open .header-cta {
    display: flex;
    flex-direction: column;
    padding: 0 24px 20px;
  }
  .site-header.open .header-cta .btn { width: 100%; }
}

/* ----- 5. HERO ----- */
.hero {
  position: relative;
  background: var(--teal-950);
  color: #fff;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 20%, rgba(200, 150, 71, .22), transparent 55%),
    radial-gradient(ellipse at 12% 90%, rgba(42, 138, 130, .25), transparent 60%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-full);
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge-top .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .15);
  animation: live 1.8s var(--easing) infinite;
}
@keyframes live {
  0%, 100% { opacity: 1; }
  50% { opacity: .55; }
}

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  font-weight: 500;
}
.hero h1 .accent {
  color: var(--brass-300);
  font-style: italic;
  font-weight: 400;
}
.hero .lead {
  font-size: 1.18rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.55;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--brass-300);
  letter-spacing: -.02em;
  display: block;
  line-height: 1;
}
.hero-stat .num small { font-size: .85rem; }
.hero-stat .label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Visual : photo véhicule avec overlay premium */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
  background: var(--teal-950);
}
.hero-visual img.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-visual::before {
  content: "TAXI";
  position: absolute;
  top: 24px; left: 24px;
  background: var(--brass-500);
  color: var(--teal-950);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .22em;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  z-index: 3;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 42, 40, .15) 0%, rgba(6, 42, 40, .55) 65%, rgba(6, 42, 40, .85) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-floating-card {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(255,255,255,.96);
  color: var(--teal-950);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  backdrop-filter: blur(8px);
}
.hero-floating-card .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal-950);
  color: var(--brass-300);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-floating-card strong {
  display: block;
  font-size: .98rem;
  color: var(--teal-950);
}
.hero-floating-card small {
  display: block;
  font-size: .82rem;
  color: var(--ink-muted);
}
.hero-floating-card .star-rating {
  margin-left: auto;
  display: flex;
  gap: 1px;
  color: var(--brass-500);
}
.hero-floating-card .star-rating svg { width: 14px; height: 14px; fill: currentColor; }

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 540px; margin: 0 auto; aspect-ratio: 4/3; }
  .hero-stats { gap: 28px; }
  .hero-stat .num { font-size: 1.6rem; }
}
@media (max-width: 560px) {
  .hero-visual { aspect-ratio: 1/1; border-radius: var(--radius-lg); }
  .hero-floating-card { padding: 12px 14px; gap: 10px; }
  .hero-floating-card .avatar { width: 40px; height: 40px; font-size: 1rem; }
  .hero-floating-card strong { font-size: .9rem; }
  .hero-floating-card small { font-size: .76rem; }
  .hero-floating-card .star-rating svg { width: 12px; height: 12px; }
}

/* ----- 6. SECTION TRANSPARENCE TARIFAIRE ----- */
.transparency {
  background: linear-gradient(180deg, var(--brass-50) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.transparency::before {
  content: "";
  position: absolute;
  top: 0; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200, 150, 71, .14) 0%, transparent 60%);
  pointer-events: none;
}
.transparency .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.transparency-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 24px;
}
.transparency-content h2 .italic {
  color: var(--brass-700);
}
.transparency-subtitle {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-weight: 500;
}
.transparency-subtitle strong { color: var(--teal-950); }

.transparency-text {
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
  font-size: 1.02rem;
}

.transparency-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  max-width: 380px;
}
.transparency-action {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  color: var(--ink);
  font-weight: 500;
  transition: all .25s var(--easing);
  position: relative;
}
.transparency-action:hover {
  border-color: var(--brass-500);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  color: var(--teal-950);
}
.transparency-action .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--teal-950);
  color: var(--brass-300);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.transparency-action .icon svg { width: 20px; height: 20px; }
.transparency-action strong { display: block; color: var(--teal-950); font-size: .96rem; }
.transparency-action small { display: block; font-size: .82rem; color: var(--ink-muted); }
.transparency-action::after {
  content: "→";
  position: absolute;
  right: 22px;
  color: var(--brass-500);
  font-weight: 600;
  opacity: 0;
  transition: all .25s var(--easing);
}
.transparency-action:hover::after { opacity: 1; right: 18px; }

/* Visual côté droit : large pricing card */
.transparency-card {
  background: var(--teal-950);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.transparency-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 150, 71, .20) 0%, transparent 60%);
}
.transparency-card .label {
  position: relative;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-300);
  font-weight: 600;
  margin-bottom: 16px;
}
.transparency-card-quote {
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 32px;
}
.transparency-card-quote::before {
  content: "“";
  display: block;
  font-size: 4rem;
  line-height: .5;
  color: var(--brass-500);
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.transparency-comparison {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.tc-item small {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.tc-item.bad { opacity: .6; }
.tc-item.bad strong {
  color: rgba(255,255,255,.65);
  text-decoration: line-through;
  text-decoration-color: rgba(255,200,200,.5);
}
.tc-item strong {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: #fff;
  font-style: italic;
}
.tc-item.good strong { color: var(--brass-300); }

@media (max-width: 880px) {
  .transparency .container { grid-template-columns: 1fr; gap: 48px; }
  .transparency-card { padding: 36px 28px; }
}

/* ----- 7. BADGES ARGUMENTS ----- */
.badges-strip {
  background: var(--teal-950);
  padding: 48px 0;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.badge-item {
  text-align: center;
  padding: 24px 18px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .25s var(--easing);
  cursor: default;
}
.badge-item:last-child { border-right: none; }
.badge-item:hover { background: rgba(255,255,255,.03); }
.badge-item .badge-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(200, 150, 71, .12);
  color: var(--brass-300);
  display: grid;
  place-items: center;
  transition: all .25s var(--easing);
}
.badge-item:hover .badge-icon {
  background: var(--brass-500);
  color: var(--teal-950);
  transform: scale(1.05);
}
.badge-item .badge-icon svg { width: 22px; height: 22px; }
.badge-item strong {
  display: block;
  font-size: .94rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}
.badge-item small {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}
@media (max-width: 1000px) {
  .badges-grid { grid-template-columns: repeat(3, 1fr); }
  .badge-item:nth-child(3) { border-right: none; }
  .badge-item:nth-child(4), .badge-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 600px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-item { border-right: 1px solid rgba(255,255,255,.08) !important; }
  .badge-item:nth-child(2n) { border-right: none !important; }
  .badge-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.08); }
}

/* ----- 8. SERVICES ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: all .3s var(--easing);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--brass-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--easing);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--brass-50);
  color: var(--brass-700);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all .3s var(--easing);
}
.service-card:hover .icon {
  background: var(--teal-950);
  color: var(--brass-300);
}
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 { color: var(--teal-950); margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 18px; }
.service-card a.more {
  font-weight: 600;
  font-size: .9rem;
  color: var(--teal-900);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
}
.service-card a.more::after { content: "→"; transition: transform .25s var(--easing); }
.service-card a.more:hover::after { transform: translateX(4px); }

/* ----- 9. CPAM ----- */
.cpam-section {
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.cpam-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--brass-500), var(--brass-300));
}
.cpam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cpam-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-950);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.cpam-badge svg { width: 16px; height: 16px; color: var(--brass-300); }

.documents-list {
  list-style: none;
  margin: 0;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
}
.documents-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--cream-100);
  margin: 0;
}
.documents-list li:last-child { border-bottom: 0; }
.documents-list .doc-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brass-50);
  color: var(--brass-700);
  display: grid;
  place-items: center;
}
.documents-list .doc-icon svg { width: 18px; height: 18px; }
.documents-list strong { color: var(--teal-950); display: block; margin-bottom: 2px; font-size: .98rem; }
.documents-list small { color: var(--ink-muted); font-size: .85rem; }

@media (max-width: 880px) {
  .cpam-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ----- 10. TARIFS ----- */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.tarif-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: all .25s var(--easing);
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.tarif-card.featured {
  border-color: var(--brass-500);
  background: linear-gradient(180deg, var(--brass-50) 0%, #fff 70%);
  position: relative;
}
.tarif-card.featured::before {
  content: "Populaire";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brass-500);
  color: var(--teal-950);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tarif-card .label { font-size: .82rem; color: var(--ink-muted); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.tarif-card .price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--teal-950);
  margin: 16px 0 6px;
  letter-spacing: -.025em;
}
.tarif-card .price small { font-size: .9rem; color: var(--ink-muted); font-weight: 500; font-family: var(--font-sans); }
.tarif-card .desc { color: var(--ink-soft); font-size: .9rem; margin: 0; }

/* Grille 3 colonnes pour les cartes forfait */
.tarifs-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) {
  .tarifs-grid-3 { grid-template-columns: 1fr; }
}

/* Note tarifaire réglementaire sous les cartes */
.tarifs-note {
  font-size: .85rem;
  color: var(--ink-muted);
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-top: 4px;
  line-height: 1.7;
}
.tarifs-note strong { color: var(--ink-soft); }

/* Liste de features dans les cartes tarifs */
.tarif-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  text-align: left;
  font-size: .88rem;
  color: var(--ink-soft);
}
.tarif-features li {
  padding: 6px 0 6px 22px;
  position: relative;
  border-top: 1px solid var(--cream-200);
}
.tarif-features li:first-child { border-top: 0; }
.tarif-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brass-500);
  font-weight: 700;
}

/* ----- 10b. ONBOARD GRID — services à bord ----- */
.onboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.onboard-item {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: all .25s var(--easing);
}
.onboard-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--brass-300);
}
.onboard-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--brass-50);
  color: var(--brass-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.onboard-icon svg { width: 26px; height: 26px; }
.onboard-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--teal-950);
  margin: 0 0 6px;
  font-weight: 500;
}
.onboard-item p {
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* ----- 11. FAQ ----- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .25s var(--easing);
}
.faq-item:hover { border-color: var(--brass-300); }
.faq-item[open] { border-color: var(--brass-500); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  color: var(--teal-950);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c89647' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-size: contain;
  flex-shrink: 0;
  transition: transform .3s var(--easing);
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item .faq-body {
  padding: 0 26px 24px;
  color: var(--ink-soft);
}
.faq-item .faq-body p { margin: 0; }

/* ----- 12. TRUST ----- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.trust-item {
  text-align: center;
  padding: 36px 20px;
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  transition: all .3s var(--easing);
}
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brass-300);
}
.trust-item .icon {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--teal-950);
  color: var(--brass-300);
  display: grid;
  place-items: center;
}
.trust-item .icon svg { width: 30px; height: 30px; }
.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--teal-950);
  font-weight: 500;
}
.trust-item small {
  display: block;
  color: var(--ink-muted);
  font-size: .85rem;
  margin-top: 4px;
  letter-spacing: .04em;
}
@media (max-width: 700px) { .trust-grid { grid-template-columns: 1fr; } }

/* ----- 13. VÉHICULES ----- */
.vehicles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vehicle-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
  transition: all .3s var(--easing);
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.vehicle-card .vehicle-img {
  aspect-ratio: 16/10;
  background: var(--teal-950);
  position: relative;
  overflow: hidden;
}
.vehicle-card .vehicle-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s var(--easing);
}
.vehicle-card:hover .vehicle-img img { transform: scale(1.04); }
.vehicle-card .vehicle-img svg { width: 80px; height: 80px; }
.vehicle-card .vehicle-img .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--brass-500);
  color: var(--teal-950);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.vehicle-card .vehicle-info { padding: 26px 28px; }
.vehicle-card h3 { margin-bottom: 6px; }
.vehicle-card .vehicle-info > p { color: var(--ink-soft); font-size: .95rem; }
.vehicle-card .vehicle-info ul {
  list-style: none;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.vehicle-card .vehicle-info li {
  font-size: .9rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.vehicle-card .vehicle-info li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brass-500);
}
@media (max-width: 700px) { .vehicles-grid { grid-template-columns: 1fr; } }

/* ----- 14. CONTACT ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { color: rgba(255,255,255,.92); }
.contact-info h2 { color: #fff; margin-bottom: 18px; }
.contact-info .lead { color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 460px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.contact-row:last-of-type { border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-row .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(200,150,71,.12);
  color: var(--brass-300);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-row .icon svg { width: 22px; height: 22px; }
.contact-row small {
  display: block;
  font-size: .76rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-row strong, .contact-row a {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -.01em;
}

.qr-block {
  margin-top: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.qr-block .qr-code {
  width: 88px; height: 88px;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  flex-shrink: 0;
}
.qr-block .qr-code img { width: 100%; height: 100%; }
.qr-block strong { color: #fff; display: block; margin-bottom: 4px; font-family: var(--font-sans); font-size: .98rem; }
.qr-block small { color: rgba(255,255,255,.6); font-size: .85rem; }

/* Formulaire */
.booking-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  border: 1px solid var(--cream-200);
}
.booking-form h3 {
  margin-bottom: 6px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
}
.booking-form .form-lead { color: var(--ink-soft); font-size: .94rem; margin-bottom: 28px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal-950);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .96rem;
  background: var(--cream);
  color: var(--ink);
  transition: all .2s var(--easing);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--brass-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 150, 71, .14);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-form .btn { width: 100%; margin-top: 8px; }
.booking-form .legal {
  font-size: .76rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px; }
}

/* ----- 15. FOOTER ----- */
.site-footer {
  background: var(--teal-950);
  color: rgba(255,255,255,.6);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 20px;
}
.site-footer ul { list-style: none; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,.65); font-size: .92rem; transition: color .2s var(--easing); }
.site-footer a:hover { color: var(--brass-300); }
.site-footer .footer-brand p { font-size: .92rem; max-width: 320px; line-height: 1.7; }

.footer-contact-quick {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-contact-quick a {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 1.4rem; color: var(--brass-300);
  font-weight: 500;
}
.footer-contact-quick a:hover { color: #fff; }
.footer-contact-quick svg { width: 20px; height: 20px; flex-shrink: 0; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
}

/* ----- 16. PAGES SEO INTÉRIEURES ----- */
.page-hero {
  background: var(--teal-950);
  color: #fff;
  padding: clamp(72px, 10vw, 128px) 0 clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 30%, rgba(200,150,71,.20), transparent 55%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero .container { position: relative; max-width: 880px; z-index: 1; }
.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--brass-300); }
.breadcrumb span { margin: 0 10px; color: rgba(255,255,255,.3); }
.page-hero h1 { color: #fff; margin-bottom: 20px; font-weight: 500; }
.page-hero .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  max-width: 720px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.page-hero .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.content-section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.content-section .container { max-width: 880px; }
.content-section h2 { margin-top: 1.8em; }
.content-section h2:first-child { margin-top: 0; }
.content-section h3 { margin-top: 1.5em; }
.content-section ul, .content-section ol { margin-left: 1.5em; }
.content-section ul li, .content-section ol li { color: var(--ink-soft); }
.content-section p { color: var(--ink-soft); font-size: 1.02rem; }

.info-card {
  background: var(--brass-50);
  border-left: 4px solid var(--brass-500);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  margin: 28px 0;
}
.info-card h3 { color: var(--teal-950); margin-bottom: 8px; margin-top: 0 !important; }
.info-card p { color: var(--ink); margin-bottom: 0; }

.cta-banner {
  background: var(--teal-950);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,150,71,.18) 0%, transparent 60%);
}
.cta-banner h3 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  margin-bottom: 10px;
  position: relative;
}
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 24px; position: relative; }
.cta-banner .btn-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ----- 17. FLOATING ACTIONS (CALL + WHATSAPP) ----- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}
.floating-actions > * { pointer-events: auto; }

.floating-action {
  display: flex;
  align-items: center;
  gap: 12px;
}
.floating-action .label {
  background: var(--teal-950);
  color: #fff;
  padding: 11px 18px 11px 20px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: .92rem;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
}
.floating-action .label small {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.floating-action .label .num {
  font-family: var(--font-serif);
  font-size: 1.06rem;
  color: var(--brass-300);
  font-style: italic;
  display: block;
}
.floating-action .label .wa-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #fff;
  font-style: italic;
  display: block;
}

.floating-action .fab {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .25s var(--easing);
  position: relative;
  flex-shrink: 0;
}
.floating-action .fab:hover { transform: scale(1.06); }
.floating-action .fab svg { width: 26px; height: 26px; }

/* Variant : appel (cuivre) */
.fab-call {
  background: var(--brass-500);
  color: var(--teal-950);
  box-shadow: 0 12px 28px rgba(200, 150, 71, .42);
}
.fab-call:hover { background: var(--brass-700); color: #fff; }
.fab-call::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: var(--brass-500);
  opacity: .35;
  z-index: -1;
  animation: pulse-ring 2.4s var(--easing) infinite;
}

/* Variant : WhatsApp (vert) */
.fab-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .42);
}
.fab-whatsapp:hover { background: #1ea659; }
.fab-whatsapp::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: #25D366;
  opacity: .3;
  z-index: -1;
  animation: pulse-ring 2.4s var(--easing) infinite .8s;
}

@media (max-width: 700px) {
  .floating-action .label { display: none; }
  .floating-actions { bottom: 16px; right: 16px; gap: 10px; }
  .floating-action .fab { width: 56px; height: 56px; }
  .floating-action .fab svg { width: 24px; height: 24px; }
}

/* ----- 18. LANDING PAGE ----- */
.landing-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-950);
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(200,150,71,.15), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(42,138,130,.18), transparent 60%);
  padding: 24px;
}
.landing-card {
  background: #fff;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.landing-avatar {
  width: 104px; height: 104px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--teal-950);
  display: grid;
  place-items: center;
  color: var(--brass-300);
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.landing-card h1 { font-size: 1.8rem; margin-bottom: 4px; }
.landing-card .role { color: var(--brass-700); font-weight: 600; margin-bottom: 6px; font-size: .98rem; letter-spacing: .04em; }
.landing-card .tagline {
  color: var(--ink-muted);
  font-size: .94rem;
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--cream-200);
  line-height: 1.5;
}
.landing-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.landing-actions .btn { width: 100%; }
.landing-footer { font-size: .85rem; color: var(--ink-muted); }
.landing-footer a { color: var(--teal-700); font-weight: 500; }

/* ----- 19. PAGES LÉGALES ----- */
.legal-page { padding: clamp(56px, 8vw, 96px) 0; }
.legal-page .container { max-width: 760px; }
.legal-page h1 { margin-bottom: 36px; }
.legal-page h2 { margin-top: 2.2em; font-size: 1.4rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); }

/* ----- 20. UTILITAIRES ----- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hide-mobile { display: initial; }
.show-mobile { display: none; }
@media (max-width: 700px) {
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
}
