/* ═══════════════════════════════════════════════════
   TRANSPORTS OBERNESSER — DESIGN SYSTEM
   ═══════════════════════════════════════════════════ */

:root {
  /* VERT */
  --vert-50:  #E6F5EE; --vert-100: #C0E5D2; --vert-200: #8FCFAF;
  --vert-300: #5AB98C; --vert-400: #1FA96A; --vert-500: #009250;
  --vert-600: #007D44; --vert-700: #006537; --vert-800: #004D2A; --vert-900: #00341C;

  /* NOIR */
  --noir-0:   #000000; --noir-100: #111111; --noir-200: #1C1C1C;
  --noir-300: #2D2D2D; --noir-400: #404040; --noir-500: #5A5A5A;
  --noir-600: #757575; --noir-700: #919191; --noir-800: #B0B0B0; --noir-900: #D0D0D0;

  /* CRÈME */
  --creme-50:  #FFFDF8; --creme-100: #FAF6ED; --creme-200: #F4EDD8;
  --creme-300: #EBE0C2; --creme-400: #DDD0A8; --creme-500: #C9BB8A;
  --creme-600: #B0A06C; --creme-700: #8E8052; --creme-800: #6A5F3C; --creme-900: #47402A;

  /* SÉMANTIQUE */
  --primary:       #009250;
  --primary-dark:  #006537;
  --primary-light: #C0E5D2;
  --bg:            #FAF6ED;
  --bg-dark:       #000000;
  --surface:       #F4EDD8;
  --border:        #EBE0C2;
  --text:          #1C1C1C;
  --text-muted:    #5A5A5A;
  --text-faint:    #919191;

  /* ACCENTS */
  --warning: #E8A020;
  --danger:  #D63B3B;
  --info:    #2A7FBF;

  /* TYPOGRAPHIE */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* TYPE SCALE */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   20px;
  --text-xl:   24px;
  --text-2xl:  30px;
  --text-3xl:  38px;
  --text-4xl:  52px;
  --text-5xl:  68px;
  --text-6xl:  88px;

  /* ESPACEMENT */
  --space-1:  4px;  --space-2:  8px;  --space-3:  12px; --space-4:  16px;
  --space-5:  20px; --space-6:  24px; --space-8:  32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;

  /* RADIUS */
  --radius-sm:  4px;  --radius-md: 8px;  --radius-lg: 12px;
  --radius-xl:  16px; --radius-2xl: 24px; --radius-full: 9999px;

  /* OMBRES */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.09);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.11);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.18);
  --shadow-green: 0 4px 20px rgba(0,146,80,0.25);

  /* TRANSITIONS */
  --transition-fast:   0.12s ease;
  --transition-normal: 0.2s ease;
  --transition-slow:   0.35s ease;

  /* LINE HEIGHT */
  --leading-tight:  1.15;
  --leading-snug:   1.35;
  --leading-normal: 1.55;
  --leading-relaxed:1.75;

  /* LETTER SPACING */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.05em;
  --tracking-wider:  0.1em;
  --tracking-widest: 0.18em;
}

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent; /* mobile : retire le flash bleu/gris au tap */
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* empêche iOS d'auto-grossir le texte en landscape */
}
html, body { overflow-x: hidden; } /* protection contre tout débordement horizontal mobile */
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ═══ UTILITIES ═══ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-24) 0;
}

.section-dark {
  background: var(--noir-0);
  color: var(--creme-100);
}

.section-white {
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-dark .section-chip {
  background: rgba(0,146,80,0.15);
  border: 1px solid rgba(0,146,80,0.3);
  color: var(--vert-300);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--noir-0);
}

.section-dark .section-title {
  color: white;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: var(--space-4) auto 0;
  font-weight: 300;
  line-height: var(--leading-relaxed);
}

.section-dark .section-subtitle {
  color: var(--noir-700);
}

/* ═══════════════════════════════════════════════════
   NAVBAR — Floating Pill Light
   ═══════════════════════════════════════════════════ */
.navbar-wrap {
  position: fixed;
  top: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1100px;
}

.navbar {
  background: rgba(255,253,248,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(235,224,194,0.6);
  padding: 8px 8px 8px 28px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: box-shadow var(--transition-slow), background var(--transition-slow), border-color var(--transition-slow);
}

.navbar.scrolled {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
  background: rgba(255,253,248,0.97);
  border-color: rgba(235,224,194,0.9);
}

.navbar-logo img {
  height: 52px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.navbar-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--noir-400);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  letter-spacing: 0.01em;
}

.navbar-link:hover {
  color: var(--primary-dark);
  background: rgba(0,146,80,0.07);
}

.navbar-link.active {
  color: var(--primary-dark);
  font-weight: 600;
  background: var(--primary-light);
}

.navbar-social {
  display: flex;
  gap: 4px;
}

.navbar-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--noir-500);
  transition: all var(--transition-fast);
}

.navbar-social-link:hover {
  color: var(--primary);
  background: rgba(0,146,80,0.07);
}

.navbar-cta {
  background: var(--primary);
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,146,80,0.25);
  letter-spacing: 0.01em;
}

.navbar-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0,146,80,0.35);
}

/* Burger */
.navbar-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px; /* touch target ≥44px (Apple HIG / WCAG) */
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding: 8px;
  margin-left: auto;
}

.navbar-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--noir-0);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.navbar-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-burger.active span:nth-child(2) {
  opacity: 0;
}
.navbar-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.navbar-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--creme-50);
  padding: 100px var(--space-6) var(--space-8);
  flex-direction: column;
  gap: var(--space-2);
  z-index: 998;
}

.navbar-mobile.open {
  display: flex;
}

.navbar-mobile a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--noir-0);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--creme-300);
}

.navbar-mobile .btn {
  margin-top: var(--space-6);
}

/* ═══════════════════════════════════════════════════
   BOUTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  white-space: nowrap;
  outline: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(0,146,80,0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--noir-0);
  color: white;
}
.btn-secondary:hover {
  background: var(--noir-300);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--creme-400);
}

.btn-sm  { font-size: 13px; padding: 7px 16px;  border-radius: var(--radius-md); }
.btn-md  { font-size: 15px; padding: 10px 22px; border-radius: var(--radius-md); }
.btn-lg  { font-size: 17px; padding: 13px 28px; border-radius: var(--radius-lg); }
.btn-xl  { font-size: 19px; padding: 16px 36px; border-radius: var(--radius-lg); font-weight: 700; }
.btn-pill { border-radius: var(--radius-full) !important; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════════════════
   BADGES
   ═══════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.badge-green { background: var(--vert-100); color: var(--vert-700); }
.badge-black { background: var(--noir-200); color: var(--creme-100); }

/* ═══════════════════════════════════════════════════
   HERO — Full Image + Overlay + Form
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px var(--space-6) var(--space-20);
  width: 100%;
  max-width: 900px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: var(--tracking-tight);
  line-height: 1.04;
  color: white;
  margin-bottom: var(--space-4);
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto var(--space-12);
  line-height: var(--leading-relaxed);
  font-weight: 400;
}

/* Hero form bar */
.hero-form {
  background: rgba(255,253,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(235,224,194,0.6);
  border-radius: var(--radius-2xl);
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-end;
  gap: var(--space-3);
  max-width: 820px;
  margin: 0 auto;
}

.hero-form-field {
  flex: 1;
  text-align: left;
}

.hero-form-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--noir-500);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.hero-form-field select,
.hero-form-field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--noir-200);
  background: var(--creme-50);
  border: 1.5px solid var(--creme-300);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition-fast);
  appearance: none;
}

.hero-form-field select:focus,
.hero-form-field input:focus {
  border-color: var(--primary);
}

.hero-form-field .select-wrap {
  position: relative;
}

.hero-form-field .select-wrap::after {
  content: '▾';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--noir-600);
  pointer-events: none;
  font-size: 12px;
}

.hero-form-submit {
  background: var(--primary);
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  box-shadow: var(--shadow-green);
  flex-shrink: 0;
  height: 44px;
}

.hero-form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0,146,80,0.35);
}

/* Hero bottom trust + phone */
.hero-bottom {
  max-width: 820px;
  margin: var(--space-6) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-trust {
  display: flex;
  gap: var(--space-6);
}

.hero-trust-item {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

.hero-trust-item strong {
  color: white;
  font-weight: 700;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.hero-phone svg {
  color: var(--primary);
}

.hero-phone:hover {
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════
   ILS NOUS FONT CONFIANCE — Logo Cloud
   ═══════════════════════════════════════════════════ */
.trust-section {
  padding-bottom: var(--space-16);
}

.trust-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.trust-sub {
  display: block;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-muted);
}

.trust-title {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--noir-0);
  letter-spacing: var(--tracking-tight);
}

.trust-title em {
  font-style: normal;
  color: var(--primary);
}

.logo-cloud {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-cloud-track {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  animation: logo-scroll 35s linear infinite;
}

@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.logo-cloud-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-10);
  flex-shrink: 0;
}

.logo-cloud-item img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.3s;
}

.logo-cloud-item:hover img {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════ */

/* Page hero (compact) */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px var(--space-6) var(--space-16);
  max-width: 750px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: var(--tracking-tight);
  line-height: 1.06;
  color: white;
  margin-bottom: var(--space-4);
}

.page-hero h1 em {
  font-style: normal;
  color: var(--primary);
}

/* Sticky service nav */
.svc-nav-wrap {
  position: fixed;
  left: var(--space-5);
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background: rgba(255,253,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(235,224,194,0.6);
  border-radius: var(--radius-xl);
  padding: var(--space-3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.svc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.svc-nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--noir-500);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.svc-nav-link:hover {
  color: var(--primary);
  background: rgba(0,146,80,0.06);
}

.svc-nav-link.active {
  color: white;
  font-weight: 600;
  background: var(--primary);
}

/* Service split layout */
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: center;
}

.svc-split-reverse {
  grid-template-columns: 1.2fr 1fr;
}

.svc-split-reverse .svc-text {
  order: 2;
}

.svc-split-reverse .svc-visuals {
  order: 1;
}

.svc-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--noir-0);
  margin-bottom: var(--space-4);
}

.svc-text h2 em {
  font-style: normal;
  color: var(--primary);
}

.section-dark .svc-text h2 {
  color: white;
}

.svc-text > p {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.section-dark .svc-text > p {
  color: var(--noir-700);
}

.svc-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

/* Service images */
.svc-img-main {
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.svc-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.svc-img-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.svc-img-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.svc-img-thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.svc-img-thumb:hover img {
  transform: scale(1.08);
}

/* CPAM mini process */
.svc-mini-process {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.svc-mini-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.svc-mini-num {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  flex-shrink: 0;
}

.svc-mini-step strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
}

.svc-mini-step span {
  display: block;
  font-size: var(--text-xs);
  color: var(--noir-600);
  margin-top: 2px;
}

/* Transferts destinations */
.svc-destinations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.svc-dest {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--noir-400);
}

.svc-dest svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Événementiel hero banner */
.svc-event-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.svc-event-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-20) var(--space-6);
  max-width: 650px;
}

.svc-event-hero-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: white;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.svc-event-hero-content h2 em {
  font-style: normal;
  color: var(--primary);
}

.svc-event-hero-content p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
}

.svc-event-hero .section-chip {
  background: rgba(0,146,80,0.15);
  border: 1px solid rgba(0,146,80,0.3);
  color: var(--vert-300);
  margin-bottom: var(--space-4);
}

/* Event cards */
.svc-event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.svc-event-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.svc-event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.svc-event-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: var(--space-5);
}

.svc-event-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--noir-0);
  margin-bottom: var(--space-2);
}

.svc-event-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

/* Blockquote */
.svc-quote {
  border-left: 3px solid var(--primary);
  padding: var(--space-4) var(--space-5);
  margin: var(--space-6) 0 0;
  background: rgba(255,255,255,0.03);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.svc-quote p {
  font-size: var(--text-sm) !important;
  font-style: italic;
  color: var(--noir-700) !important;
  margin-bottom: var(--space-2) !important;
}

.svc-quote cite {
  font-size: var(--text-xs);
  color: var(--noir-600);
  font-style: normal;
  font-weight: 600;
}

/* Final CTA */
.svc-final-cta {
  padding: var(--space-20) 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   À PROPOS PAGE
   ═══════════════════════════════════════════════════ */

/* Story split */
.about-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-story-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--noir-0);
  margin-bottom: var(--space-6);
}

.about-story-text h2 em {
  font-style: normal;
  color: var(--primary);
}

.about-lead {
  font-size: var(--text-lg);
  color: var(--noir-400);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  font-weight: 400;
}

.about-story-text p {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.about-story-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.about-story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Timeline */
.about-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.about-tl-line {
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--noir-300);
}

.about-tl-item {
  position: relative;
  padding-bottom: var(--space-12);
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
}

.about-tl-item:last-child {
  padding-bottom: 0;
}

.about-tl-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 4px var(--noir-0), 0 0 0 6px var(--primary);
}

.about-tl-year {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--primary);
  min-width: 70px;
  line-height: 1;
}

.about-tl-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-1);
}

.about-tl-content p {
  font-size: var(--text-sm);
  color: var(--noir-600);
  line-height: var(--leading-normal);
}

/* Values */
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.about-values-left h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--noir-0);
  margin-bottom: var(--space-4);
}

.about-values-left h2 em {
  font-style: normal;
  color: var(--primary);
}

.about-values-left p {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

.about-values-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.about-value-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.about-value-num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--primary);
  min-width: 28px;
  padding-top: 2px;
}

.about-value-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--noir-0);
  margin-bottom: var(--space-1);
}

.about-value-item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

/* Zone d'intervention */
.about-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-zone-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--noir-0);
  margin-bottom: var(--space-4);
}

.about-zone-text h2 em {
  font-style: normal;
  color: var(--primary);
}

.about-zone-text > p {
  font-size: var(--text-md);
  color: var(--noir-700);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.about-zone-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.about-zone-item {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--noir-600);
  padding-left: 16px;
  position: relative;
}

.about-zone-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.about-zone-map {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 400px;
}

.about-zone-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Numbers */
.about-numbers {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: var(--space-8) 0;
}

.about-number-val {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--noir-0);
  line-height: 1;
}

.section-dark .about-number-val { color: var(--creme-100); }

.about-number-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-2);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   PRO PAGE
   ═══════════════════════════════════════════════════ */
.pro-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.section-dark .svc-event-card {
  background: var(--noir-200);
  border-color: var(--noir-300);
}

.section-dark .svc-event-card h3 {
  color: white;
}

.section-dark .svc-event-card p {
  color: var(--noir-600);
}

.section-dark .svc-event-card-icon {
  background: rgba(0,146,80,0.12);
}

.section-dark .svc-event-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Logo grid (pro page) */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--noir-300);
  border: 1px solid var(--noir-300);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-16);
}

.logo-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-6);
  background: white;
  min-height: 120px;
  transition: background 0.2s;
}

.logo-grid-item img {
  max-height: 70px;
  max-width: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.logo-grid-item:hover img {
  transform: scale(1.05);
}

.pro-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.pro-testimonials .testimonial-card {
  background: var(--noir-200);
  border: 1px solid var(--noir-300);
}

.pro-testimonials .testimonial-card p {
  color: var(--creme-200);
}

.pro-testimonials .testimonial-author strong { color: white; }
.pro-testimonials .testimonial-author span   { color: var(--creme-300); }

/* ═══════════════════════════════════════════════════
   RESERVATION PAGE
   ═══════════════════════════════════════════════════ */
.resa-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-12);
  align-items: start;
}

/* Progress stepper */
.resa-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-10);
}

.resa-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.resa-step-indicator span {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--noir-600);
}

.resa-step-indicator.active span,
.resa-step-indicator.completed span {
  color: var(--primary);
  font-weight: 600;
}

.resa-step-dot {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 2px solid var(--creme-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--noir-600);
  background: white;
  transition: all 0.3s ease;
}

.resa-step-indicator.active .resa-step-dot {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.resa-step-indicator.completed .resa-step-dot {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.resa-step-line {
  flex: 1;
  height: 2px;
  background: var(--creme-300);
  margin: 0 var(--space-2);
  margin-bottom: 22px;
  border-radius: 2px;
  overflow: hidden;
}

.resa-step-line-fill {
  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Steps */
.resa-step {
  display: none;
}

.resa-step.active {
  display: block;
  animation: stepIn 0.35s ease forwards;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.resa-step h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--noir-0);
  margin-bottom: var(--space-6);
}

/* Service selector cards */
.resa-services-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.resa-service-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  font-family: var(--font-body);
  width: 100%;
}

.resa-service-card:hover {
  border-color: var(--vert-200);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.resa-service-card.selected {
  border-color: var(--primary);
  background: var(--vert-50);
  box-shadow: 0 4px 20px rgba(0,146,80,0.1);
}

.resa-service-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.resa-service-text {
  flex: 1;
}

.resa-service-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--noir-0);
}

.resa-service-text p {
  font-size: var(--text-xs);
  color: var(--noir-500);
  margin-top: 2px;
}

.resa-service-check {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--creme-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.resa-service-card.selected .resa-service-check {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1);
}

/* Conditional fields */
.resa-conditional {
  display: none;
}

.resa-conditional.visible {
  display: block;
  animation: stepIn 0.3s ease forwards;
}

/* Form fields on reservation page */
.resa-fields .field {
  margin-bottom: var(--space-5);
}

.resa-fields .field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--noir-400);
  margin-bottom: 6px;
}

.resa-fields .required {
  color: var(--danger);
  margin-left: 2px;
}

.resa-fields .input,
.resa-fields .select,
.resa-fields .textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--noir-200);
  background: white;
  border: 1.5px solid var(--creme-300);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition-fast);
  appearance: none;
}

.resa-fields .input:focus,
.resa-fields .select:focus,
.resa-fields .textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,146,80,0.08);
}

.resa-fields .textarea {
  resize: vertical;
  min-height: 80px;
}

.resa-fields .select-wrap {
  position: relative;
}

.resa-fields .select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--noir-600);
  pointer-events: none;
  font-size: 12px;
}

.resa-fields .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

/* Buttons row */
.resa-btns {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.resa-btns .resa-next-btn {
  flex: 1;
}

.resa-next-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Success state */
.resa-success-content {
  text-align: center;
  padding: var(--space-16) 0;
}

.resa-success-check {
  margin-bottom: var(--space-6);
}

.resa-success-check svg {
  width: 80px;
  height: 80px;
}

.resa-check-path {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: drawCheck 0.6s ease forwards 0.2s;
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.resa-success-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-3);
}

.resa-success-content > p {
  font-size: var(--text-md);
  color: var(--text-muted);
}

/* Sidebar */
.resa-sidebar {
  position: sticky;
  top: 120px;
}

.resa-sidebar-card {
  background: var(--noir-100);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin-bottom: var(--space-4);
}

.resa-sidebar-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-1);
}

.resa-sidebar-card > p {
  font-size: var(--text-sm);
  color: var(--noir-600);
  margin-bottom: var(--space-6);
}

.resa-sidebar-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  transition: opacity 0.2s;
}

.resa-sidebar-item:hover {
  opacity: 0.85;
}

.resa-sidebar-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,146,80,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.resa-sidebar-icon-wa {
  background: rgba(37,211,102,0.15);
  color: #25D366;
}

.resa-sidebar-item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
}

.resa-sidebar-item span {
  display: block;
  font-size: var(--text-xs);
  color: var(--noir-600);
}

.resa-sidebar-divider {
  height: 1px;
  background: var(--noir-300);
  margin: var(--space-3) 0;
}

.resa-sidebar-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 200px;
  margin-bottom: var(--space-4);
}

.resa-sidebar-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.resa-sidebar-trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
}

.resa-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--noir-400);
}

/* ═══════════════════════════════════════════════════
   FLATPICKR CUSTOM THEME
   ═══════════════════════════════════════════════════ */
.flatpickr-calendar {
  background: var(--creme-50) !important;
  border: 1px solid var(--creme-300) !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12) !important;
  font-family: var(--font-body) !important;
  padding: 8px !important;
}

.flatpickr-months {
  padding: 8px 4px 4px !important;
}

.flatpickr-months .flatpickr-month {
  background: transparent !important;
  color: var(--noir-0) !important;
  fill: var(--noir-0) !important;
}

.flatpickr-current-month {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: var(--noir-400) !important;
  padding: 8px !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  fill: var(--primary) !important;
}

span.flatpickr-weekday {
  background: transparent !important;
  color: var(--noir-500) !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}

.flatpickr-day {
  color: var(--noir-200) !important;
  border-radius: var(--radius-md) !important;
  font-weight: 500 !important;
  border: none !important;
  max-width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
}

.flatpickr-day:hover {
  background: var(--primary-light) !important;
  color: var(--primary-dark) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--primary) !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(0,146,80,0.3) !important;
}

.flatpickr-day.today {
  border: 2px solid var(--primary) !important;
}

.flatpickr-day.today:hover {
  background: var(--primary-light) !important;
  color: var(--primary-dark) !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: var(--noir-700) !important;
}

.flatpickr-innerContainer {
  border-bottom: none !important;
}

.flatpickr-rContainer {
  padding: 0 4px !important;
}

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════ */
.phone-float {
  position: fixed;
  bottom: calc(var(--space-6) + env(safe-area-inset-bottom));
  left: var(--space-6);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: white;
  padding: 12px 20px 12px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--shadow-green);
  transition: all var(--transition-normal);
}

.phone-float:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,146,80,0.35);
}

/* ═══════════════════════════════════════════════════
   PRÉSENTATION
   ═══════════════════════════════════════════════════ */
.presentation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.presentation-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--noir-0);
  margin-bottom: var(--space-6);
}

.presentation-text h2 em {
  font-style: normal;
  color: var(--primary);
}

.presentation-text p {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.presentation-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.presentation-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════
   SERVICES — Tabs interactifs
   ═══════════════════════════════════════════════════ */
.section-title em {
  font-style: normal;
  color: var(--primary);
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.services-tab {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--noir-500);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.services-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.services-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  font-weight: 600;
}

.services-panel {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: center;
}

.services-panel.active {
  display: grid;
}

.services-panel-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--noir-0);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.services-panel-text p {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.services-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.services-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--noir-400);
}

.services-check {
  width: 22px;
  height: 22px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.services-panel-visual {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.services-panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════
   RÉASSURANCE
   ═══════════════════════════════════════════════════ */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
}

.reassurance-item {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.reassurance-icon {
  width: 64px;
  height: 64px;
  background: rgba(0,146,80,0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 28px;
  color: var(--vert-400);
}

.reassurance-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-2);
}

.reassurance-item p {
  font-size: var(--text-sm);
  color: var(--noir-600);
  line-height: var(--leading-normal);
}

/* ═══════════════════════════════════════════════════
   PROCESSUS — Horizontal avec ligne
   ═══════════════════════════════════════════════════ */
.process-steps {
  display: flex;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 48px;
  right: 48px;
  height: 2px;
  background: var(--border);
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step:nth-child(2) { transition-delay: 0.15s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.45s; }

.process-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--primary);
  z-index: 2;
  transition: all var(--transition-normal);
}

.process-step:hover .process-num {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-green);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--noir-0);
  margin-bottom: var(--space-2);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  max-width: 220px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   FORMULAIRE SIMPLIFIÉ
   ═══════════════════════════════════════════════════ */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.form-section-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: white;
  margin-bottom: var(--space-5);
}

.form-section-text h2 em {
  font-style: normal;
  color: var(--primary);
}

.form-section-text p {
  font-size: var(--text-md);
  color: var(--noir-700);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.form-card {
  background: var(--noir-200);
  border: 1px solid var(--noir-300);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
}

.field {
  margin-bottom: var(--space-5);
}

.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--creme-100);
  margin-bottom: 6px;
}

.field label .required {
  color: var(--danger);
  margin-left: 3px;
}

.input, .select, .textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px; /* ≥16px : empêche iOS Safari de zoomer au focus */
  color: var(--creme-100);
  background: var(--noir-300);
  border: 1.5px solid var(--noir-400);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}

.input::placeholder, .textarea::placeholder {
  color: var(--noir-600);
}

.input:focus, .select:focus, .textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,146,80,0.15);
}

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

.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--noir-600);
  pointer-events: none;
  font-size: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

/* ═══════════════════════════════════════════════════
   PARTENAIRES PRO
   ═══════════════════════════════════════════════════ */
.pro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.pro-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--noir-0);
  margin-bottom: var(--space-5);
}

.pro-text h2 em {
  font-style: normal;
  color: var(--primary);
}

.pro-text p {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.pro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.pro-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
}

.pro-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.pro-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pro-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════
   À PROPOS (court)
   ═══════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--space-6);
}

.about-value {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.about-value:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-value-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 24px;
  color: var(--primary);
}

.about-value h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--noir-0);
  margin-bottom: var(--space-2);
}

.about-value p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

/* ═══════════════════════════════════════════════════
   TÉMOIGNAGES — Colonnes scrollantes
   ═══════════════════════════════════════════════════ */
.testimonials-mask {
  max-height: 740px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.testimonials-columns {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
}

.testimonials-col {
  flex: 1;
  max-width: 360px;
  overflow: hidden;
}

.testimonials-col-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  animation: scroll-up var(--duration, 15s) linear infinite;
}

@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.testimonial-stars {
  color: #F5B731;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}

.google-g-mini {
  flex-shrink: 0;
  opacity: 0.85;
}

/* Google rating header */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.google-rating-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--noir-0);
}

.google-rating-stars {
  color: #F5B731;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1;
}

.google-rating-count {
  color: var(--text-muted);
  font-weight: 500;
}

/* Bouton "Voir tous les avis" */
.testimonials-cta {
  text-align: center;
  margin-top: var(--space-8);
}

.testimonial-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

/* Variantes de couleurs pour avatars (palette type Google Material) */
.testimonial-avatar--blue   { background: #4285F4; }
.testimonial-avatar--red    { background: #EA4335; }
.testimonial-avatar--green  { background: #34A853; }
.testimonial-avatar--orange { background: #F59E0B; }
.testimonial-avatar--purple { background: #7C3AED; }
.testimonial-avatar--pink   { background: #EC4899; }
.testimonial-avatar--teal   { background: #14B8A6; }
.testimonial-avatar--indigo { background: #6366F1; }

.testimonial-author strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--noir-200);
}

.testimonial-author span {
  display: block;
  font-size: var(--text-xs);
  color: var(--noir-600);
}

.testimonials-col-md {
  display: none;
}

.testimonials-col-lg {
  display: none;
}

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--noir-0);
  text-align: left;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-normal), background var(--transition-normal);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-light);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer p {
  padding-bottom: var(--space-5);
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  max-width: 680px;
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--noir-0);
  margin-bottom: 2px;
}

.contact-info-item p, .contact-info-item a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

.contact-info-item a:hover {
  color: var(--primary);
}

.contact-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.contact-social a {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.contact-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.contact-map {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 350px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--noir-0);
  color: var(--creme-100);
  padding: var(--space-20) 0 var(--space-8);
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand img {
  width: auto;
  height: auto;
  max-height: 40px;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: var(--space-5);
  display: block;
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--noir-600);
  line-height: var(--leading-relaxed);
  max-width: 300px;
  margin-bottom: var(--space-5);
}

.footer-social {
  display: flex;
  gap: var(--space-2);
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--noir-300);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--noir-700);
  font-size: 16px;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--creme-100);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--noir-600);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--noir-300);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--noir-600);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-5);
}

.footer-bottom-links a {
  font-size: var(--text-xs);
  color: var(--noir-600);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--noir-0);
  border-top: 1px solid var(--noir-300);
  padding: var(--space-3) var(--space-4);
  padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom)); /* iPhone home bar */
}

.sticky-cta .btn {
  width: 100%;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (min-width: 769px) {
  .testimonials-col-md {
    display: block;
  }
}

@media (min-width: 1025px) {
  .testimonials-col-lg {
    display: block;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: var(--space-20) 0;
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .section-header {
    margin-bottom: var(--space-12);
  }

  .services-tabs {
    gap: 6px;
  }
  .services-tab {
    font-size: 13px;
    padding: 8px 14px;
  }

  .services-panel.active {
    gap: var(--space-10);
  }

  .svc-text h2 {
    font-size: var(--text-3xl);
  }

  .svc-split {
    gap: var(--space-10);
  }

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

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

  .about-story {
    gap: var(--space-10);
  }

  .about-values {
    gap: var(--space-10);
  }

  .about-zone {
    gap: var(--space-10);
  }

  .about-values-left h2,
  .about-zone-text h2,
  .about-story-text h2 {
    font-size: var(--text-3xl);
  }

  .resa-layout {
    grid-template-columns: 1fr 320px;
    gap: var(--space-8);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .presentation {
    gap: var(--space-10);
  }

  .presentation-text h2 {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 768px) {
  /* ── Global ── */
  .section {
    padding: var(--space-16) 0;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .section-header {
    margin-bottom: var(--space-10);
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .section-subtitle {
    font-size: var(--text-base);
  }

  /* ── Navbar ── */
  .navbar-wrap {
    width: calc(100% - 32px);
    top: var(--space-3);
  }
  .navbar {
    padding: 6px 8px 6px 16px;
  }
  .navbar-logo img {
    height: 38px;
  }
  .navbar-links, .navbar-cta, .navbar-social {
    display: none;
  }
  .navbar-burger {
    display: flex;
  }

  /* ── Hero (index) ── */
  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding: 100px var(--space-4) var(--space-16);
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-sub {
    font-size: var(--text-base);
    margin-bottom: var(--space-8);
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-content {
    padding: 100px var(--space-5) var(--space-10);
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 44px);
    margin-bottom: var(--space-3);
  }

  .hero-sub {
    font-size: var(--text-sm);
    margin-bottom: var(--space-6);
    max-width: 100%;
  }

  .hero-form {
    flex-direction: column;
    border-radius: var(--radius-2xl);
    padding: 24px 20px;
    gap: 0;
    background: rgba(255,253,248,0.96);
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
    border: none;
  }

  .hero-form-field {
    width: 100%;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--creme-300);
  }

  .hero-form-field:last-of-type {
    border-bottom: none;
    padding-bottom: var(--space-1);
  }

  .hero-form-field label {
    font-size: 11px;
    margin-bottom: 6px;
    color: var(--noir-400);
    letter-spacing: 0.08em;
  }

  .hero-form-field select,
  .hero-form-field input {
    padding: 12px 14px;
    font-size: var(--text-base);
    border-radius: var(--radius-md);
    background: white;
    border: 1.5px solid var(--creme-300);
  }

  .hero-form-field select:focus,
  .hero-form-field input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,146,80,0.08);
  }

  .hero-form-submit {
    width: 100%;
    height: 52px;
    font-size: var(--text-md);
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-top: var(--space-5);
    box-shadow: 0 4px 20px rgba(0,146,80,0.3);
  }

  .hero-bottom {
    flex-direction: column;
    gap: var(--space-5);
    text-align: center;
    margin-top: var(--space-6);
    padding: var(--space-5) 0;
    border-top: none;
  }

  .hero-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-5);
  }

  .hero-trust-item {
    font-size: 12px;
  }

  .hero-trust-item strong {
    display: block;
    font-size: 15px;
    color: white;
  }

  .hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: white;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
  }

  .hero-phone:hover {
    background: rgba(255,255,255,0.15);
    color: white;
  }

  .hero-trust-item {
    font-size: var(--text-xs);
  }

  /* ── Page Hero (sub pages) ── */
  .page-hero {
    min-height: 40vh;
  }

  .page-hero-content {
    padding: 100px var(--space-4) var(--space-10);
  }

  .page-hero h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .hero-sub {
    font-size: var(--text-base);
  }

  /* ── Services tabs (index) ── */
  .services-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 6px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: var(--space-2);
    margin-left: calc(-1 * var(--space-4));
    margin-right: calc(-1 * var(--space-4));
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .services-tabs::-webkit-scrollbar {
    display: none;
  }

  .services-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
    font-size: 13px;
    padding: 8px 16px;
  }

  /* ── Services panels (index) ── */
  .services-panel.active {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .services-panel-visual {
    order: -1;
  }

  .services-panel-text h3 {
    font-size: var(--text-2xl);
  }

  /* ── Presentation ── */
  .presentation {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .presentation-image {
    order: -1;
  }

  .presentation-image img {
    height: 250px;
  }

  .presentation-text h2 {
    font-size: var(--text-2xl);
  }

  /* ── Process steps ── */
  .process-steps {
    flex-wrap: wrap;
    gap: var(--space-8);
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    flex: 1 1 40%;
  }

  /* ── Testimonials ── */
  .testimonials-mask {
    max-height: 500px;
  }

  .testimonials-columns {
    gap: 0;
  }

  .testimonials-col {
    max-width: 100%;
  }

  /* ── Logo cloud ── */
  .logo-cloud-item {
    padding: var(--space-3) var(--space-6);
  }
  .logo-cloud-item img {
    height: 50px;
    max-width: 150px;
  }

  /* ── FAQ ── */
  .faq-list {
    max-width: 100%;
  }

  .faq-question {
    font-size: var(--text-lg);
    padding: var(--space-4) 0;
  }

  .faq-answer p {
    font-size: var(--text-sm);
  }

  /* ── Services page: svc-split ── */
  .svc-split,
  .svc-split-reverse {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .svc-split-reverse .svc-text { order: 1; }
  .svc-split-reverse .svc-visuals { order: -1; }

  .svc-text h2 {
    font-size: var(--text-2xl);
  }

  .svc-img-main img { height: 250px; }
  .svc-img-gallery { display: none; }

  .svc-event-grid { grid-template-columns: 1fr; }
  .svc-event-hero { min-height: 35vh; }
  .svc-event-hero-content { padding: var(--space-12) var(--space-4); }

  .svc-destinations { grid-template-columns: 1fr; }

  .svc-nav-wrap { display: none; }

  .svc-ctas {
    flex-direction: column;
  }

  .svc-ctas .btn {
    width: 100%;
    text-align: center;
  }

  /* ── Pro page ── */
  .pro-audience-grid { grid-template-columns: 1fr 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-grid-item {
    padding: var(--space-5) var(--space-4);
    min-height: 100px;
  }
  .logo-grid-item img {
    max-height: 55px;
  }
  .pro-testimonials { grid-template-columns: 1fr; }

  /* ── Reservation page ── */
  .resa-layout { grid-template-columns: 1fr; }
  .resa-sidebar { position: static; }
  .resa-fields .form-row { grid-template-columns: 1fr; }
  .resa-step-indicator span { font-size: 10px; }
  .resa-step h2 { font-size: var(--text-xl); }

  .resa-btns {
    flex-direction: column;
  }

  .resa-btns .btn {
    width: 100%;
  }

  /* ── About page ── */
  .about-story { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-story-image { order: -1; }
  .about-story-image img { height: 280px; }
  .about-story-text h2 { font-size: var(--text-2xl); }

  .about-values { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-values-left h2 { font-size: var(--text-2xl); }

  .about-zone { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-zone-text h2 { font-size: var(--text-2xl); }
  .about-zone-map { height: 260px; }

  .about-timeline {
    padding-left: 32px;
  }

  .about-tl-dot {
    left: -32px;
    width: 14px;
    height: 14px;
  }

  .about-tl-year {
    font-size: var(--text-xl);
    min-width: 56px;
  }

  .about-tl-content h3 {
    font-size: var(--text-lg);
  }

  .about-numbers { flex-wrap: wrap; gap: var(--space-8); }
  .about-number { flex: 1 1 40%; }
  .about-number-val { font-size: var(--text-4xl); }

  /* ── Reassurance ── */
  .reassurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  /* ── Forms (generic) ── */
  .form-section {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

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

  /* ── Pro section ── */
  .pro-section {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .pro-image {
    order: -1;
  }

  .pro-image img {
    height: 280px;
  }

  /* ── About grid ── */
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* ── Contact ── */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  /* ── Footer ── */
  .footer {
    padding: var(--space-16) 0 var(--space-20);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-brand img {
    max-height: 36px;
    max-width: 160px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-3);
  }

  /* ── Phone float: hide text on mobile ── */
  .phone-float {
    padding: 12px;
    border-radius: var(--radius-full);
  }

  .phone-float svg {
    flex-shrink: 0;
  }

  /* ── Sticky CTA ── */
  .sticky-cta {
    display: block;
  }

  /* ── Buttons full-width where appropriate ── */
  .btn-xl {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* ── Global ── */
  .section {
    padding: var(--space-12) 0;
  }

  .container {
    padding: 0 var(--space-3);
  }

  .section-header {
    margin-bottom: var(--space-8);
  }

  .section-title {
    font-size: var(--text-xl);
  }

  .section-subtitle {
    font-size: var(--text-sm);
  }

  /* ── Navbar ── */
  .navbar-wrap {
    width: calc(100% - 24px);
    top: var(--space-2);
  }

  .navbar {
    padding: 5px 6px 5px 12px;
  }

  .navbar-logo img {
    height: 32px;
  }

  /* ── Hero ── */
  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding: 90px var(--space-3) var(--space-12);
  }

  .hero h1 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero-sub {
    font-size: var(--text-sm);
    margin-bottom: var(--space-6);
  }

  .hero-content {
    padding: 90px var(--space-4) var(--space-8);
  }

  .hero-form {
    padding: 20px 16px;
    border-radius: var(--radius-xl);
  }

  .hero-form-field select,
  .hero-form-field input {
    padding: 11px 12px;
    font-size: var(--text-sm);
  }

  .hero-form-submit {
    height: 48px;
    font-size: var(--text-base);
    margin-top: var(--space-4);
  }

  .hero-trust {
    gap: var(--space-4);
  }

  .hero-trust-item strong {
    font-size: 14px;
  }

  .hero-trust-item {
    font-size: 11px;
  }

  .hero-phone {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero-trust {
    gap: var(--space-3);
  }

  .hero-trust-item {
    font-size: 11px;
  }

  .hero-phone {
    font-size: var(--text-xs);
  }

  /* ── Page Hero ── */
  .page-hero {
    min-height: 35vh;
  }

  .page-hero-content {
    padding: 80px var(--space-3) var(--space-8);
  }

  .page-hero h1 {
    font-size: clamp(24px, 7vw, 32px);
  }

  /* ── Services tabs ── */
  .services-tab {
    font-size: 12px;
    padding: 7px 12px;
  }

  /* ── Services panels ── */
  .services-panel-text h3 {
    font-size: var(--text-xl);
  }

  .services-panel-text p {
    font-size: var(--text-sm);
  }

  /* ── Process ── */
  .process-step {
    flex: 1 1 100%;
  }

  .process-num {
    width: 40px;
    height: 40px;
    font-size: var(--text-base);
  }

  .process-step {
    padding-top: 52px;
  }

  .process-step h3 {
    font-size: var(--text-lg);
  }

  /* ── Testimonials ── */
  .testimonials-mask {
    max-height: 400px;
  }

  .testimonial-card {
    padding: var(--space-4);
  }

  .testimonial-card p {
    font-size: var(--text-xs);
  }

  /* ── Logo cloud ── */
  .logo-cloud-item {
    padding: var(--space-2) var(--space-4);
  }
  .logo-cloud-item img {
    height: 40px;
    max-width: 120px;
  }

  .trust-header {
    margin-bottom: var(--space-5);
  }

  .trust-sub {
    font-size: var(--text-base);
  }

  .trust-title {
    font-size: var(--text-xl);
  }

  /* ── FAQ ── */
  .faq-question {
    font-size: var(--text-base);
    gap: var(--space-3);
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .faq-answer p {
    font-size: var(--text-xs);
  }

  /* ── Services page ── */
  .svc-text h2 {
    font-size: var(--text-xl);
  }

  .svc-text > p {
    font-size: var(--text-sm);
  }

  .svc-img-main img {
    height: 200px;
  }

  .svc-event-hero {
    min-height: 30vh;
  }

  .svc-event-hero-content {
    padding: var(--space-10) var(--space-3);
  }

  .svc-event-hero-content p {
    font-size: var(--text-base);
  }

  .svc-event-card {
    padding: var(--space-5);
  }

  .svc-event-card h3 {
    font-size: var(--text-lg);
  }

  .svc-destinations {
    gap: var(--space-2);
  }

  .svc-dest {
    font-size: var(--text-xs);
  }

  .svc-mini-step strong {
    font-size: var(--text-xs);
  }

  .svc-mini-step span {
    font-size: 10px;
  }

  /* ── Pro page ── */
  .pro-audience-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo-grid-item {
    padding: var(--space-4) var(--space-3);
    min-height: 80px;
  }
  .logo-grid-item img {
    max-height: 45px;
  }

  .pro-features {
    grid-template-columns: 1fr;
  }

  /* ── Reservation page ── */
  .resa-progress {
    gap: 0;
  }

  .resa-step-dot {
    width: 30px;
    height: 30px;
    font-size: var(--text-xs);
  }

  .resa-step-indicator span {
    font-size: 9px;
  }

  .resa-step-line {
    margin: 0 var(--space-1);
    margin-bottom: 18px;
  }

  .resa-step h2 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
  }

  .resa-service-card {
    padding: var(--space-3) var(--space-4);
    gap: var(--space-3);
  }

  .resa-service-icon {
    width: 40px;
    height: 40px;
  }

  .resa-service-text h3 {
    font-size: var(--text-base);
  }

  .resa-service-text p {
    font-size: 10px;
  }

  .resa-sidebar-card {
    padding: var(--space-5);
  }

  .resa-sidebar-map {
    height: 160px;
  }

  /* ── About page ── */
  .about-story-text h2 {
    font-size: var(--text-xl);
  }

  .about-lead {
    font-size: var(--text-base);
  }

  .about-story-text p {
    font-size: var(--text-sm);
  }

  .about-story-image img {
    height: 220px;
  }

  .about-values-left h2 {
    font-size: var(--text-xl);
  }

  .about-values-left p {
    font-size: var(--text-sm);
  }

  .about-value-item h3 {
    font-size: var(--text-lg);
  }

  .about-zone-text h2 {
    font-size: var(--text-xl);
  }

  .about-zone-text > p {
    font-size: var(--text-sm);
  }

  .about-zone-list {
    grid-template-columns: 1fr;
  }

  .about-zone-map {
    height: 220px;
  }

  .about-tl-item {
    padding-bottom: var(--space-8);
    gap: var(--space-3);
  }

  .about-tl-year {
    font-size: var(--text-lg);
    min-width: 48px;
  }

  .about-tl-content h3 {
    font-size: var(--text-base);
  }

  .about-tl-content p {
    font-size: var(--text-xs);
  }

  .about-numbers {
    gap: var(--space-5);
  }

  .about-number {
    flex: 1 1 40%;
  }

  .about-number-val {
    font-size: var(--text-3xl);
  }

  .about-number-label {
    font-size: var(--text-xs);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  /* ── Reassurance ── */
  .reassurance-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }

  /* ── Forms ── */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: var(--space-6);
  }

  /* ── Footer ── */
  .footer {
    padding: var(--space-12) 0 var(--space-20);
  }

  .footer-brand img {
    max-height: 32px;
    max-width: 140px;
  }

  .footer-brand p {
    font-size: var(--text-xs);
  }

  .footer-col h4 {
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
  }

  .footer-col a {
    font-size: var(--text-xs);
  }

  .footer-bottom p {
    font-size: 10px;
  }

  .footer-bottom-links a {
    font-size: 10px;
  }

  /* ── Phone float ── */
  .phone-float {
    padding: 10px;
    font-size: 0;
    bottom: calc(var(--space-4) + env(safe-area-inset-bottom));
    left: var(--space-4);
  }

  .phone-float svg {
    width: 18px;
    height: 18px;
  }

  /* ── Buttons ── */
  .btn-xl {
    font-size: 16px;
    padding: 14px 28px;
  }

  .btn-lg {
    font-size: 15px;
    padding: 12px 24px;
  }

  /* ── SVC Final CTA ── */
  .svc-final-cta {
    padding: var(--space-12) 0;
  }
}
