/* ==========================================================================
   TRANS EXPRESS — Design system
   Style : minimalisme affirmé, confiance & autorité (navy + bleu, accent orange CTA)
   Polices : Sora (titres) / Inter (texte)
   ========================================================================== */

:root {
  /* Couleurs primitives */
  --navy-950: #071328;
  --navy-900: #0a1a33;
  --navy-800: #0f2547;
  --navy-700: #16326a;
  --blue-700: #1e40af;
  --blue-600: #1d4ed8;
  --blue-500: #2563eb;
  --blue-100: #dbe6ff;
  --blue-50: #eef3ff;
  --orange-700: #c2410c;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-50: #fff4ec;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f7f9fc;
  --white: #ffffff;
  --green-600: #16a34a;

  /* Tokens sémantiques */
  --color-primary: var(--blue-600);
  --color-primary-hover: var(--blue-700);
  --color-on-primary: var(--white);
  --color-accent: var(--orange-600);
  --color-accent-hover: var(--orange-700);
  --color-on-accent: var(--white);
  --color-bg: var(--white);
  --color-bg-soft: var(--slate-50);
  --color-bg-dark: var(--navy-900);
  --color-bg-darker: var(--navy-950);
  --color-surface: var(--white);
  --color-text: var(--slate-900);
  --color-text-2: var(--slate-600);
  --color-text-muted: var(--slate-500);
  --color-text-on-dark: #f8fafc;
  --color-text-on-dark-2: #c7d2e4;
  --color-border: var(--slate-200);
  --color-border-strong: var(--slate-300);
  --color-ring: var(--blue-500);

  /* Typographie */
  --font-heading: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.5rem, 1.2rem + 1.2vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 1.4rem + 1.8vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.6rem + 2.6vw, 3.25rem);
  --text-hero: clamp(2.5rem, 1.6rem + 4.2vw, 4.75rem);
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-body: 1.65;

  /* Espacements (échelle 4 px) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --section-y: clamp(4rem, 3rem + 4vw, 7rem);

  /* Rayons, ombres */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 18px -6px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 24px 48px -18px rgba(10, 26, 51, 0.28), 0 8px 20px -10px rgba(10, 26, 51, 0.12);
  --shadow-accent: 0 12px 28px -10px rgba(234, 88, 12, 0.55);

  /* Mouvement */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 160ms;
  --dur-base: 240ms;
  --dur-slow: 600ms;

  /* Layout */
  --container: 1200px;
  --container-narrow: 820px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 84px;
  --header-h-compact: 66px;

  /* z-index */
  --z-header: 100;
  --z-menu: 110;
  --z-float: 120;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text);
  margin: 0 0 var(--space-4);
  letter-spacing: -0.02em;
  line-height: var(--leading-snug);
  font-weight: 700;
}
h1 { font-size: var(--text-4xl); line-height: var(--leading-tight); letter-spacing: -0.03em; }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
p { margin: 0 0 var(--space-4); }
ul, ol { margin: 0 0 var(--space-4); padding-left: 1.25rem; }
li { margin-bottom: var(--space-2); }
strong { font-weight: 600; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--color-ring); outline-offset: 3px; border-radius: 4px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--space-4); top: -100px; z-index: 1000;
  background: var(--color-bg-dark); color: #fff; padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm); font-weight: 600;
}
.skip-link:focus { top: var(--space-4); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--soft { background: var(--color-bg-soft); }
.section--dark { background: var(--color-bg-dark); color: var(--color-text-on-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-text-on-dark); }
.section--dark p { color: var(--color-text-on-dark-2); }
.section--tight { padding-block: clamp(3rem, 2rem + 3vw, 5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-heading); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--color-accent); border-radius: 2px; }
.section--dark .eyebrow { color: #93c5fd; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.lead { font-size: var(--text-lg); color: var(--color-text-2); }
.section--dark .lead { color: var(--color-text-on-dark-2); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  min-height: 52px; padding: 0.85rem 1.6rem;
  font-family: var(--font-heading); font-weight: 600; font-size: var(--text-base);
  border-radius: var(--radius-full); border: 2px solid transparent;
  text-decoration: none !important; white-space: nowrap; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out), color var(--dur-fast), border-color var(--dur-fast);
  touch-action: manipulation;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--accent { background: var(--color-accent); color: var(--color-on-accent); box-shadow: var(--shadow-accent); }
.btn--accent:hover { background: var(--color-accent-hover); color: #fff; }
.btn--primary { background: var(--color-primary); color: var(--color-on-primary); box-shadow: 0 12px 28px -12px rgba(29, 78, 216, 0.6); }
.btn--primary:hover { background: var(--color-primary-hover); color: #fff; }
.btn--ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: #fff; color: #fff; }
.btn--outline { background: transparent; color: var(--color-text); border-color: var(--color-border-strong); }
.btn--outline:hover { border-color: var(--color-text); color: var(--color-text); }
.btn--sm { min-height: 44px; padding: 0.55rem 1.15rem; font-size: var(--text-sm); }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: 0.6; pointer-events: none; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.link-arrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-weight: 600; color: var(--color-primary);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform var(--dur-fast) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur-base), border-color var(--dur-base), background-color var(--dur-base);
}
.site-header.is-compact { border-bottom-color: var(--color-border); box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, 0.94); }
.site-header--over { position: fixed; left: 0; right: 0; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header--over:not(.is-compact) .nav__link { color: #fff; }
.site-header--over:not(.is-compact) .nav__link:hover, .site-header--over:not(.is-compact) .nav__link[aria-current="page"] { color: #fff; }
.site-header--over:not(.is-compact) .nav__link[aria-current="page"]::after { background: var(--orange-500); }
.site-header--over:not(.is-compact) .brand__name { color: #fff; }
.site-header--over:not(.is-compact) .brand__tag { color: rgba(255, 255, 255, 0.72); }
.site-header--over:not(.is-compact) .nav__phone { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.site-header--over:not(.is-compact) .nav__phone:hover { border-color: #fff; }
.site-header--over:not(.is-compact) .burger { color: #fff; }
.site-header--over.is-compact { background: rgba(255, 255, 255, 0.94); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  height: var(--header-h); transition: height var(--dur-base) var(--ease-out);
}
.is-compact .header__inner { height: var(--header-h-compact); }
.brand { display: inline-flex; align-items: center; gap: var(--space-3); text-decoration: none !important; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; color: var(--navy-900); }
.brand__name em { font-style: normal; color: var(--color-accent); }
.brand__tag { display: none; white-space: nowrap; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); margin-top: 3px; }
.nav { display: none; align-items: center; gap: var(--space-1); }
.nav__link {
  position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 0 var(--space-3); white-space: nowrap;
  font-weight: 500; font-size: 0.95rem; color: var(--color-text-2); text-decoration: none !important;
  transition: color var(--dur-fast);
}
.nav__link:hover { color: var(--color-text); }
.nav__link[aria-current="page"] { color: var(--color-text); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: var(--space-3); right: var(--space-3); bottom: 6px; height: 2px;
  background: var(--color-accent); border-radius: 2px;
}
.nav__actions { display: none; align-items: center; gap: var(--space-3); }
.nav__phone {
  display: inline-flex; align-items: center; gap: var(--space-2); min-height: 44px; padding: 0 var(--space-4); white-space: nowrap;
  border: 1.5px solid var(--color-border-strong); border-radius: var(--radius-full);
  font-weight: 600; font-size: var(--text-sm); color: var(--color-text); text-decoration: none !important;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.nav__phone svg { width: 18px; height: 18px; }
.nav__phone:hover { border-color: var(--color-text); }
.burger {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border: 0; background: transparent; color: var(--color-text); border-radius: var(--radius-sm);
}
.burger svg { width: 28px; height: 28px; }
.burger .icon-close { display: none; }
.burger[aria-expanded="true"] .icon-menu { display: none; }
.burger[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--navy-900); color: #fff;
  padding: calc(var(--header-h) + var(--space-4)) var(--gutter) var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-6);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility 0s linear var(--dur-base);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.mobile-menu__close {
  position: absolute; top: 18px; right: var(--gutter); width: 48px; height: 48px;
  background: rgba(255, 255, 255, 0.08); color: #fff; border: 0; border-radius: var(--radius-full);
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu__brand { color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; }
.mobile-menu__brand em { font-style: normal; color: var(--orange-500); }
.mobile-menu__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mobile-menu__list li { margin: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.mobile-menu__list a {
  display: flex; align-items: center; justify-content: space-between; min-height: 56px;
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: #fff; text-decoration: none !important;
}
.mobile-menu__list a svg { width: 20px; height: 20px; opacity: 0.6; }
.mobile-menu__list .is-sub a { font-size: 1rem; font-weight: 500; color: var(--color-text-on-dark-2); min-height: 48px; padding-left: var(--space-4); }
.mobile-menu__list a[aria-current="page"] { color: var(--orange-500); }
.mobile-menu__cta { display: flex; flex-direction: column; gap: var(--space-3); margin-top: auto; }
.mobile-menu__meta { font-size: var(--text-sm); color: var(--color-text-on-dark-2); }
.mobile-menu__meta a { color: #fff; }
body.menu-open { overflow: hidden; }

@media (min-width: 560px) { .brand__tag { display: block; } }
@media (min-width: 1024px) {
  .nav, .nav__actions { display: flex; }
  .burger, .mobile-menu { display: none; }
  .header__inner { gap: var(--space-4); }
  .site-header .brand__tag { display: none; }
}
@media (min-width: 1240px) { .site-header .brand__tag { display: block; } .header__inner { gap: var(--space-6); } }

/* ---------- Boutons flottants : appel (mobile) + WhatsApp (toutes tailles) ---------- */
.floating {
  position: fixed; left: 16px; right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); z-index: var(--z-float);
  display: flex; justify-content: space-between; align-items: flex-end; gap: var(--space-3); pointer-events: none;
}
.call-float, .wa-float {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: var(--space-2);
  min-height: 56px; padding: 0 1.25rem 0 1rem;
  color: #fff; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-weight: 700; text-decoration: none !important;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), filter var(--dur-base);
}
.call-float svg, .wa-float svg { width: 24px; height: 24px; flex: none; }
.call-float { background: var(--color-accent); box-shadow: var(--shadow-accent); }
.wa-float { background: #25d366; box-shadow: 0 12px 28px -10px rgba(37, 211, 102, 0.7), 0 4px 12px rgba(15, 23, 42, 0.12); margin-left: auto; }
.call-float:hover, .wa-float:hover { color: #fff; transform: translateY(-3px); filter: brightness(1.06); }
.call-float:active, .wa-float:active { transform: translateY(0) scale(0.97); }
@media (max-width: 400px) { .call-float span, .wa-float span { display: none; } .call-float, .wa-float { width: 56px; padding: 0; justify-content: center; } }
@media (min-width: 1024px) {
  .call-float { display: none; }
  .floating { left: auto; right: 24px; bottom: 24px; }
  .wa-float { min-height: 60px; padding: 0 1.4rem 0 1.1rem; }
}

/* ---------- Hero plein écran ---------- */
.hero {
  position: relative; min-height: min(100vh, 900px); min-height: min(100svh, 900px);
  display: flex; align-items: center; color: #fff; overflow: hidden;
  background: var(--navy-900);
  padding-top: var(--header-h);
  padding-bottom: clamp(5rem, 4rem + 4vw, 8rem);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 19, 40, 0.86) 0%, rgba(7, 19, 40, 0.62) 45%, rgba(7, 19, 40, 0.25) 100%),
    linear-gradient(180deg, rgba(7, 19, 40, 0.35) 0%, rgba(7, 19, 40, 0) 35%, rgba(7, 19, 40, 0.75) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 760px; padding-block: var(--space-12) var(--space-8); }
.hero__chip {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 0.4rem 0.9rem 0.4rem 0.5rem; border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: var(--text-sm); font-weight: 500; margin-bottom: var(--space-6);
}
.hero__chip .dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--orange-500);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero__chip .dot svg { width: 14px; height: 14px; }
.hero__title { color: #fff; font-size: var(--text-hero); font-weight: 800; margin-bottom: var(--space-5); text-wrap: balance; }
.hero__title em { font-style: normal; color: var(--orange-500); }
.hero__text { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem); color: rgba(255, 255, 255, 0.86); max-width: 600px; margin-bottom: var(--space-8); }
.hero__cta .btn { min-height: 56px; padding-inline: 1.9rem; font-size: 1.05rem; }
.hero__scroll {
  position: absolute; left: 50%; bottom: clamp(5.5rem, 4.5rem + 4vw, 8.5rem); z-index: 2; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 14px;
  display: none;
}
.hero__scroll::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 2px; background: #fff; animation: scrollHint 1.8s var(--ease-in-out) infinite;
}
@keyframes scrollHint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }
@media (min-width: 768px) and (min-height: 1000px) { .hero__scroll { display: block; } }

/* Bandeau de confiance chevauchant le hero */
.trust { position: relative; z-index: 3; margin-top: clamp(-4.5rem, -3.5rem - 2vw, -6rem); }
.trust__grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--color-border); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.trust__item { display: flex; align-items: center; gap: var(--space-4); padding: var(--space-5) var(--space-6); background: var(--color-surface); }
.trust__icon {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--color-primary);
}
.trust__icon svg { width: 24px; height: 24px; }
.trust__item strong { display: block; font-family: var(--font-heading); font-size: var(--text-sm); font-weight: 700; color: var(--color-text); }
.trust__item span { font-size: var(--text-sm); color: var(--color-text-muted); }
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Cartes services ---------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-6); } }
.card {
  position: relative; display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-8) var(--space-6); background: var(--color-surface);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--color-primary); margin-bottom: var(--space-2);
  transition: background-color var(--dur-base), color var(--dur-base);
}
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { background: var(--color-primary); color: #fff; }
.card h3 { margin-bottom: var(--space-1); font-size: 1.2rem; }
.card p { color: var(--color-text-2); font-size: 0.95rem; margin: 0; flex: 1; }
.card__link { margin-top: var(--space-2); }
.card__link a::after { content: ""; position: absolute; inset: 0; }
.card--accent { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.card--accent h3 { color: #fff; }
.card--accent p { color: var(--color-text-on-dark-2); }
.card--accent .card__icon { background: rgba(255, 255, 255, 0.1); color: var(--orange-500); }
.card--accent:hover .card__icon { background: var(--orange-500); color: #fff; }
.card--accent .link-arrow { color: var(--orange-500); }
.services-note { margin-top: var(--space-8); display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; color: var(--color-text-2); font-size: 0.95rem; }
.services-note svg { width: 20px; height: 20px; color: var(--color-accent); flex: none; }

/* ---------- Deux colonnes média + texte ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 1.5rem + 3vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 1fr; } .split--reverse .split__media { order: 2; } }
.split__media { position: relative; }
.media-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; background: var(--slate-100);
}
.media-frame video, .media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--wide { aspect-ratio: 16 / 10; }
.media-badge {
  position: absolute; left: var(--space-5); bottom: var(--space-5); z-index: 2;
  display: inline-flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-4); border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md); font-size: var(--text-sm); color: var(--color-text);
}
.media-badge strong { display: block; font-family: var(--font-heading); }
.media-badge__icon { width: 36px; height: 36px; border-radius: 10px; background: var(--orange-50); color: var(--color-accent); display: inline-flex; align-items: center; justify-content: center; }
.media-badge__icon svg { width: 20px; height: 20px; }
.split__deco {
  position: absolute; inset: auto -14px -14px auto; width: 60%; height: 60%; z-index: -1;
  border-radius: var(--radius-xl); background: var(--blue-50);
}
.checklist { list-style: none; padding: 0; margin: var(--space-6) 0; display: grid; gap: var(--space-3); }
.checklist li { display: flex; gap: var(--space-3); align-items: flex-start; margin: 0; }
.checklist svg { width: 22px; height: 22px; flex: none; color: var(--green-600); margin-top: 2px; }
.checklist strong { display: block; }
.checklist span { color: var(--color-text-2); font-size: 0.95rem; }
.section--dark .checklist svg { color: #4ade80; }
.section--dark .checklist span { color: var(--color-text-on-dark-2); }

/* ---------- Étapes ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--space-6); counter-reset: step; position: relative; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); } }
.step { position: relative; padding: var(--space-8) var(--space-6) var(--space-6); background: var(--color-surface); border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.step__num {
  font-family: var(--font-heading); font-size: 3.25rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1.5px var(--blue-100); margin-bottom: var(--space-4);
  background: linear-gradient(120deg, var(--color-primary), var(--color-accent)); -webkit-background-clip: text; background-clip: text;
  -webkit-text-stroke: 0; opacity: 0.9;
}
.step h3 { font-size: 1.2rem; }
.step p { color: var(--color-text-2); margin: 0; font-size: 0.95rem; }
.step__icon { position: absolute; top: var(--space-6); right: var(--space-6); width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--color-primary); display: inline-flex; align-items: center; justify-content: center; }
.step__icon svg { width: 22px; height: 22px; }

/* ---------- Zones ---------- */
.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin: var(--space-4) 0 var(--space-6); padding: 0; list-style: none; }
.chips li { margin: 0; }
.chip {
  display: inline-flex; align-items: center; min-height: 36px; padding: 0 0.9rem;
  border-radius: var(--radius-full); background: var(--color-surface); border: 1px solid var(--color-border);
  font-size: var(--text-sm); font-weight: 500; color: var(--color-text-2);
}
.chip--strong { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.chip--accent { background: var(--orange-50); border-color: #fed7aa; color: var(--orange-700); }

/* ---------- Chiffres / garanties ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-4); }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); gap: var(--space-8); } }
.stat { padding-left: var(--space-5); border-left: 2px solid rgba(255, 255, 255, 0.16); }
.stat__value { font-family: var(--font-heading); font-size: clamp(2rem, 1.5rem + 2vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.stat__value em { font-style: normal; color: var(--orange-500); }
.stat__label { display: block; margin-top: var(--space-3); font-weight: 600; color: #fff; font-size: var(--text-sm); }
.stat__hint { display: block; margin-top: var(--space-1); color: var(--color-text-on-dark-2); font-size: var(--text-sm); }

/* ---------- Engagements ---------- */
.engagements { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 640px) { .engagements { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .engagements { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); } }
.engagement { display: flex; gap: var(--space-4); padding: var(--space-6); border-radius: var(--radius-lg); background: var(--color-surface); border: 1px solid var(--color-border); }
.engagement__icon { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--orange-50); color: var(--color-accent); display: inline-flex; align-items: center; justify-content: center; }
.engagement__icon svg { width: 22px; height: 22px; }
.engagement h3 { font-size: 1.05rem; margin-bottom: var(--space-1); }
.engagement p { margin: 0; font-size: 0.95rem; color: var(--color-text-2); }

/* Galerie images */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); margin-top: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
@media (min-width: 900px) { .gallery { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-4); } }
.gallery figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--slate-100); }
.gallery figure:first-child { grid-column: span 2; aspect-ratio: 16 / 9; }
@media (min-width: 900px) { .gallery figure:first-child { grid-column: auto; grid-row: span 2; aspect-ratio: auto; } }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.gallery figure:hover img { transform: scale(1.04); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--space-3); }
.faq details { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow var(--dur-base); }
.faq details[open] { box-shadow: var(--shadow-md); border-color: transparent; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) var(--space-6); font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem; color: var(--color-text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .faq__icon { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--blue-50); color: var(--color-primary); display: inline-flex; align-items: center; justify-content: center; transition: transform var(--dur-base) var(--ease-out), background-color var(--dur-base), color var(--dur-base); }
.faq summary .faq__icon svg { width: 18px; height: 18px; }
.faq details[open] summary .faq__icon { transform: rotate(45deg); background: var(--color-primary); color: #fff; }
.faq__body { padding: 0 var(--space-6) var(--space-6); color: var(--color-text-2); }
.faq__body p:last-child { margin-bottom: 0; }
.faq-group { margin-bottom: var(--space-12); }
.faq-group h2 { font-size: var(--text-2xl); margin-bottom: var(--space-6); }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--blue-600) 100%);
  color: #fff; padding: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  display: grid; gap: var(--space-8); align-items: center;
}
@media (min-width: 900px) { .cta-final { grid-template-columns: 1.4fr 1fr; } }
.cta-final::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.55), transparent 65%); pointer-events: none;
}
.cta-final h2 { color: #fff; font-size: var(--text-3xl); margin-bottom: var(--space-3); }
.cta-final p { color: rgba(255, 255, 255, 0.82); margin-bottom: 0; }
.cta-final .btn-group { position: relative; justify-content: flex-start; }
@media (min-width: 900px) { .cta-final .btn-group { justify-content: flex-end; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-bg-darker); color: var(--color-text-on-dark-2); padding-top: var(--space-16); font-size: var(--text-sm); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-10); padding-bottom: var(--space-12); }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-12); } }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__tag { color: var(--color-text-on-dark-2); }
.footer__brand p { margin-top: var(--space-5); max-width: 36ch; }
.footer__badges { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }
.footer__badges span { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: var(--radius-full); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); font-size: var(--text-xs); color: #fff; }
.footer__badges svg { width: 14px; height: 14px; color: #4ade80; }
.site-footer h3 { color: #fff; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: var(--space-5); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--space-3); }
.site-footer a { color: var(--color-text-on-dark-2); }
.site-footer a:hover { color: #fff; }
.footer__contact li { display: flex; gap: var(--space-3); align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; flex: none; color: var(--orange-500); margin-top: 3px; }
.footer__legal { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: var(--space-6) 0; font-size: var(--text-xs); color: #94a3b8; }
.footer__legal p { margin-bottom: var(--space-2); }
.footer__legal a { color: #cbd5e1; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-4); }
@media (max-width: 1023px) { .site-footer { padding-bottom: 80px; } }

/* ---------- Pages intérieures ---------- */
.page-hero {
  position: relative; background: var(--navy-900); color: #fff; overflow: hidden;
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0 clamp(3.5rem, 2.5rem + 3vw, 6rem);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.45), transparent 55%), radial-gradient(ellipse at 10% 100%, rgba(249, 115, 22, 0.28), transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; max-width: 18ch; text-wrap: balance; }
.page-hero .lead { color: rgba(255, 255, 255, 0.82); max-width: 60ch; }
.page-hero .eyebrow { color: #93c5fd; }
.page-hero--split { padding-bottom: 0; }
.page-hero__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: end; }
@media (min-width: 900px) { .page-hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-12); } .page-hero__grid > div:first-child { padding-bottom: clamp(3.5rem, 2.5rem + 3vw, 6rem); } }
.page-hero__media { border-radius: var(--radius-xl) var(--radius-xl) 0 0; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); background: var(--navy-800); }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); list-style: none; padding: 0; margin: 0 0 var(--space-6); font-size: var(--text-sm); color: rgba(255, 255, 255, 0.7); }
.breadcrumb li { margin: 0; display: inline-flex; align-items: center; gap: var(--space-2); }
.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb li + li::before { content: "/"; opacity: 0.45; }
.breadcrumb [aria-current] { color: #fff; font-weight: 500; }

.article-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-12); align-items: start; }
@media (min-width: 1024px) { .article-layout { grid-template-columns: minmax(0, 1fr) 360px; gap: var(--space-16); } }
.article { max-width: 72ch; }
.article h2 { font-size: var(--text-2xl); margin-top: var(--space-12); }
.article h2:first-child { margin-top: 0; }
.article h3 { font-size: 1.15rem; margin-top: var(--space-8); }
.article p, .article li { color: var(--color-text-2); }
.article ul { padding-left: 0; list-style: none; }
.article ul li { position: relative; padding-left: 1.6rem; }
.article ul li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); }
.article ol { padding-left: 1.4rem; }
.article ol li::marker { color: var(--color-primary); font-weight: 700; }
.article .callout {
  margin: var(--space-8) 0; padding: var(--space-5) var(--space-6); border-radius: var(--radius-md);
  background: var(--blue-50); border-left: 4px solid var(--color-primary); color: var(--color-text);
}
.article .callout p { margin: 0; color: var(--color-text); }
.article .callout--accent { background: var(--orange-50); border-left-color: var(--color-accent); }
.included { list-style: none; padding: 0; margin: var(--space-4) 0 var(--space-6); display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .included { grid-template-columns: repeat(2, 1fr); } }
.article .included li { padding: var(--space-4); padding-left: var(--space-4); border-radius: var(--radius-md); background: var(--color-bg-soft); display: flex; gap: var(--space-3); align-items: flex-start; color: var(--color-text); }
.article .included li::before { display: none; }
.included svg { width: 20px; height: 20px; flex: none; color: var(--green-600); margin-top: 3px; }

.sidebar { display: grid; gap: var(--space-6); }
@media (min-width: 1024px) { .sidebar { position: sticky; top: calc(var(--header-h-compact) + var(--space-6)); } }
.sidebar-card { padding: var(--space-6); border-radius: var(--radius-lg); background: var(--color-surface); border: 1px solid var(--color-border); box-shadow: var(--shadow-md); }
.sidebar-card--dark { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.sidebar-card--dark h3 { color: #fff; }
.sidebar-card--dark p { color: var(--color-text-on-dark-2); }
.sidebar-card h3 { font-size: 1.15rem; }
.sidebar-card .btn { width: 100%; margin-top: var(--space-3); }
.sidebar-card .btn + .btn { margin-top: var(--space-3); }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.contact-list li { display: flex; gap: var(--space-3); align-items: flex-start; margin: 0; font-size: 0.95rem; }
.contact-list svg { width: 20px; height: 20px; flex: none; color: var(--color-accent); margin-top: 2px; }
.contact-list strong { display: block; font-size: var(--text-sm); color: var(--color-text-muted); font-weight: 500; }
.sidebar-card--dark .contact-list strong { color: var(--color-text-on-dark-2); }
.sidebar-card--dark .contact-list a { color: #fff; }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { margin: 0; border-bottom: 1px solid var(--color-border); }
.sidebar-links li:last-child { border: 0; }
.sidebar-links a { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); min-height: 48px; color: var(--color-text); font-weight: 500; font-size: 0.95rem; }
.sidebar-links a:hover { color: var(--color-primary); text-decoration: none; }
.sidebar-links a[aria-current="page"] { color: var(--color-primary); }
.sidebar-links svg { width: 16px; height: 16px; flex: none; opacity: 0.5; }

/* Autres services (bas de page service) */
.related { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
@media (min-width: 640px) { .related { grid-template-columns: repeat(3, 1fr); } }
.related a { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-5); border-radius: var(--radius-md); background: var(--color-surface); border: 1px solid var(--color-border); color: var(--color-text); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.related a:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related strong { font-family: var(--font-heading); }
.related span { font-size: var(--text-sm); color: var(--color-text-2); }

/* ---------- Formulaire ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-10); align-items: start; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1.3fr 0.9fr; gap: var(--space-16); } }
.form-card { padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); border-radius: var(--radius-lg); background: var(--color-surface); border: 1px solid var(--color-border); box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } .form-grid .field--full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label { font-weight: 600; font-size: var(--text-sm); color: var(--color-text); }
.field label .req { color: var(--color-accent); }
.field .hint { font-size: var(--text-xs); color: var(--color-text-muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 0.75rem 1rem; font: inherit; font-size: 16px; color: var(--color-text);
  background: var(--color-bg-soft); border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background-color var(--dur-fast);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.75rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); background: #fff; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14); }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #dc2626; }
.field .error { display: none; font-size: var(--text-xs); color: #b91c1c; }
.field.has-error .error { display: block; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #dc2626; }
.form-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-4); margin-top: var(--space-6); }
.form-footer .btn { min-height: 56px; padding-inline: 2rem; }
.form-footer small { color: var(--color-text-muted); font-size: var(--text-xs); max-width: 40ch; }
.form-status { margin-top: var(--space-4); font-size: var(--text-sm); color: #b91c1c; }
.honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.info-card { padding: var(--space-6); border-radius: var(--radius-lg); background: var(--navy-900); color: #fff; }
.info-card h2 { color: #fff; font-size: var(--text-xl); }
.hours { list-style: none; padding: 0; margin: 0; }
.hours li { display: flex; justify-content: space-between; gap: var(--space-4); padding: var(--space-2) 0; border-bottom: 1px solid var(--color-border); margin: 0; font-size: 0.95rem; }
.hours li:last-child { border: 0; }
.hours span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-md); aspect-ratio: 16 / 9; background: var(--slate-100); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Page merci / 404 */
.status-page { min-height: 70vh; display: flex; align-items: center; text-align: center; padding-block: var(--section-y); }
.status-page__icon { width: 88px; height: 88px; margin: 0 auto var(--space-6); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--blue-50); color: var(--color-primary); }
.status-page__icon--ok { background: #dcfce7; color: var(--green-600); }
.status-page__icon svg { width: 44px; height: 44px; }
.status-page h1 { max-width: 20ch; margin-inline: auto; }
.status-page .lead { max-width: 52ch; margin-inline: auto; }
.status-page .btn-group { justify-content: center; margin-top: var(--space-6); }
.status-code { font-family: var(--font-heading); font-size: clamp(5rem, 4rem + 8vw, 10rem); font-weight: 800; line-height: 1; letter-spacing: -0.06em; background: linear-gradient(120deg, var(--navy-900), var(--blue-600) 60%, var(--orange-500)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: var(--space-2); }

/* Mentions légales */
.legal h2 { font-size: var(--text-xl); margin-top: var(--space-10); }
.legal p, .legal li { color: var(--color-text-2); }
.legal dl { display: grid; grid-template-columns: 1fr; gap: var(--space-2) var(--space-6); margin: 0 0 var(--space-6); }
@media (min-width: 640px) { .legal dl { grid-template-columns: max-content 1fr; } }
.legal dt { font-weight: 600; color: var(--color-text); }
.legal dd { margin: 0; color: var(--color-text-2); }

/* Zones page */
.zone-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 768px) { .zone-grid { grid-template-columns: repeat(2, 1fr); } }
.zone-card { padding: var(--space-6); border-radius: var(--radius-lg); background: var(--color-surface); border: 1px solid var(--color-border); }
.zone-card h3 { display: flex; align-items: center; gap: var(--space-3); font-size: 1.15rem; }
.zone-card h3 svg { width: 22px; height: 22px; color: var(--color-accent); flex: none; }
.zone-card p { color: var(--color-text-2); font-size: 0.95rem; }
.zone-card .chips { margin-bottom: 0; }

/* ---------- Animations reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > :nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.is-visible > :nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.is-visible > :nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.is-visible > :nth-child(5) { transition-delay: 280ms; }
.reveal-stagger.is-visible > :nth-child(6) { transition-delay: 350ms; }
.hero__content > * { animation: heroIn 0.9s var(--ease-out) both; }
.hero__content > :nth-child(2) { animation-delay: 0.1s; }
.hero__content > :nth-child(3) { animation-delay: 0.2s; }
.hero__content > :nth-child(4) { animation-delay: 0.3s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.no-js .reveal, .no-js .reveal-stagger > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .hero__scroll { display: none; }
}

/* Boutons flottants masqués quand le menu mobile est ouvert */
body.menu-open .floating { display: none; }

/* ---------- Pages locales (zones/) — ajout 2026-09-09 ---------- */
@media (min-width: 640px) and (max-width: 1023px) { .footer__grid > .footer__brand { grid-column: 1 / -1; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.5fr 1fr 0.9fr 0.9fr 1.2fr; gap: var(--space-10); } }
.footer__zones li { margin-bottom: var(--space-2); }
a.chip { text-decoration: none; transition: border-color var(--dur-base), color var(--dur-base), background-color var(--dur-base); }
a.chip:hover { text-decoration: none; border-color: var(--color-primary); color: var(--color-primary); background: var(--blue-50); }
a.chip.chip--strong:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.article .lead { font-size: var(--text-lg); color: var(--color-text); }
.article .zone-services li { margin-bottom: var(--space-3); }
.article .chips { margin-top: var(--space-3); }
.article .chips li { padding-left: 0; }
.article .chips li::before { display: none; }
.page-hero .btn-group .btn--ghost svg { width: 18px; height: 18px; }
.zone-hub { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 768px) { .zone-hub { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .zone-hub { grid-template-columns: repeat(4, 1fr); } }
.zone-hub .zone-card h3 a { color: inherit; }
.zone-hub .zone-card h3 a:hover { color: var(--color-primary); text-decoration: none; }
.zone-card .zone-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--space-4); font-weight: 600; font-size: var(--text-sm); }
.zone-card .zone-card__link svg { width: 16px; height: 16px; }
