/* ===========================================================
   CDTS, CDISTRIB TAPIS SOLUTIONS
   Shared design system
   =========================================================== */

:root {
  /* Brand */
  --c-ink: #0A2540;          /* deep navy */
  --c-ink-soft: #122E50;
  --c-blue: #0EA5E9;         /* primary blue from logo */
  --c-cyan: #2DD4BF;         /* turquoise from logo */
  --c-cta: #2563EB;          /* CTA — saturated royal blue, distinct from sky --c-blue */
  --c-cta-deep: #1D4ED8;     /* CTA hover */
  --c-white: #FFFFFF;
  --c-cream: #F8FAFC;        /* alt section bg */
  --c-mist:  #EEF4F8;
  --c-line:  #E2E8F0;
  --c-mute:  #64748B;
  --c-text:  #0F172A;

  /* Gradients */
  --g-brand: linear-gradient(135deg, #0EA5E9 0%, #2DD4BF 100%);
  --g-ink:   linear-gradient(155deg, #0A2540 0%, #0E3A6B 60%, #0EA5E9 130%);

  /* Type */
  --f-display: "Outfit", "DM Sans", system-ui, sans-serif;
  --f-body:    "DM Sans", "Outfit", system-ui, sans-serif;

  /* Radius + shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --sh-1: 0 2px 8px rgba(10, 37, 64, 0.06);
  --sh-2: 0 12px 36px -12px rgba(10, 37, 64, 0.18);
  --sh-3: 0 30px 60px -20px rgba(10, 37, 64, 0.25);

  /* Spacing helpers */
  --container: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  color: var(--c-ink);
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: clamp(40px, 5.6vw, 76px); line-height: 1.02; letter-spacing: -0.035em;}
h2 { font-size: clamp(30px, 3.4vw, 48px); line-height: 1.08; }
h3 { font-size: clamp(20px, 1.6vw, 26px); line-height: 1.2; }
h4 { font-size: 18px; line-height: 1.3; }

p { line-height: 1.6; color: var(--c-text); margin: 0 0 1em; }
p.muted { color: var(--c-mute); }

/* ====== Layout ====== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section-tight { padding: clamp(56px, 7vw, 96px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--c-cyan); }

/* ====== Navigation ====== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-ink);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav-logo img { height: 56px; width: auto; }
.nav-logo .nav-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--c-mute);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-weight: 500;
  font-size: 15px;
  color: var(--c-ink);
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color .2s;
}
.nav-links a.active { color: var(--c-blue); }
.nav-links a:hover { color: var(--c-blue); }
.nav-links a.active::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--g-brand); border-radius: 2px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-cta);
  color: white;
  padding: 11px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: .2s;
  box-shadow: 0 6px 18px -6px rgba(37, 99, 235, 0.6);
}
.nav-cta:hover { background: var(--c-cta-deep); transform: translateY(-1px); }

/* ====== Dropdown (Prestations) ====== */
.has-dropdown {
  position: relative;
}
.has-dropdown > .nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 0;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  font-weight: 500;
  font-size: 15px;
  font-family: var(--f-body);
}
.has-dropdown > .nav-toggle .caret {
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s;
  display: inline-block;
}
.has-dropdown[aria-expanded="true"] > .nav-toggle .caret {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.has-dropdown > .nav-toggle:hover,
.has-dropdown[aria-expanded="true"] > .nav-toggle { color: var(--c-blue); }
.has-dropdown.is-active > .nav-toggle { color: var(--c-blue); }
.has-dropdown.is-active > .nav-toggle::after {
  content: "";
  position: absolute;
  left: 0; right: 18px; bottom: 0;
  height: 2px; background: var(--g-brand); border-radius: 2px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 320px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-2);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 110;
}
.has-dropdown[aria-expanded="true"] .dropdown-menu,
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* hover bridge so the cursor can travel into the menu without it closing */
.has-dropdown::before {
  content: "";
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 16px;
}
.dropdown-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  color: var(--c-ink);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--f-display);
  transition: .15s;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible { background: var(--c-cream); color: var(--c-blue); outline: none; }
.dropdown-menu a.active { background: rgba(14, 165, 233, 0.08); color: var(--c-blue); }
.dropdown-menu a .num {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--c-mute);
  text-transform: uppercase;
}
.dropdown-menu a:hover .num,
.dropdown-menu a:focus-visible .num,
.dropdown-menu a.active .num { color: var(--c-blue); }

/* ====== Burger menu (mobile) ====== */
.nav-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px; height: 42px;
  padding: 10px;
  border-radius: var(--r-sm);
  color: var(--c-ink);
  align-items: center;
  justify-content: center;
}
.nav-burger:hover { background: var(--c-cream); }
.nav-burger .bars {
  display: block;
  width: 22px; height: 16px;
  position: relative;
}
.nav-burger .bars span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: .25s;
}
.nav-burger .bars span:nth-child(1) { top: 0; }
.nav-burger .bars span:nth-child(2) { top: 7px; }
.nav-burger .bars span:nth-child(3) { bottom: 0; }
body.nav-open .nav-burger .bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
body.nav-open .nav-burger .bars span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger .bars span:nth-child(3) { bottom: 7px; transform: rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 72px 0 0 0;
  background: white;
  z-index: 90;
  padding: 24px 28px 48px;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s, transform .22s, visibility .22s;
}
body.nav-open .mobile-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-panel .mp-link,
.mobile-panel .mp-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 4px;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-ink);
  text-decoration: none;
  background: none;
  border-top: 0; border-left: 0; border-right: 0;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.mobile-panel .mp-link.active,
.mobile-panel .mp-toggle.active-parent { color: var(--c-blue); }
.mobile-panel .mp-toggle .caret {
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s;
  display: inline-block;
}
.mobile-panel .mp-group[data-open="true"] .mp-toggle .caret {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.mobile-panel .mp-sublist {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.mobile-panel .mp-sublist > div { overflow: hidden; }
.mobile-panel .mp-group[data-open="true"] .mp-sublist { grid-template-rows: 1fr; }
.mobile-panel .mp-sublist a {
  display: block;
  padding: 14px 8px 14px 24px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--c-text);
  font-family: var(--f-body);
  border-bottom: 1px solid var(--c-line);
}
.mobile-panel .mp-sublist a:first-child { border-top: 0; }
.mobile-panel .mp-sublist a:last-child { border-bottom: 0; }
.mobile-panel .mp-sublist a.active { color: var(--c-blue); font-weight: 600; }
.mobile-panel .mp-sublist a .mp-num {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-mute);
  font-family: var(--f-display);
  font-weight: 600;
  margin-right: 10px;
}
.mobile-panel .mp-cta {
  display: block;
  margin-top: 32px;
  text-align: center;
  background: var(--c-cta);
  color: white;
  padding: 16px 22px;
  border-radius: 100px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
}
.mobile-panel .mp-cta:hover { background: var(--c-cta-deep); }

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: .2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-cta);
  color: white;
  box-shadow: 0 14px 32px -10px rgba(37, 99, 235, 0.6);
}
.btn-primary:hover {
  background: var(--c-cta-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(37, 99, 235, 0.7);
}
.btn-outline {
  background: var(--c-cream);
  color: var(--c-ink);
  border: 1.5px solid var(--c-line);
}
.btn-outline:hover { background: var(--c-line); color: var(--c-ink); border-color: var(--c-mute); }
.btn-outline.on-dark { background: rgba(255,255,255,0.06); color: white; border-color: rgba(255,255,255,0.22); }
.btn-outline.on-dark:hover { background: rgba(255,255,255,0.14); color: white; border-color: rgba(255,255,255,0.4); }
.btn-ghost {
  color: var(--c-blue);
  padding: 14px 0;
}
.btn-ghost:hover { color: var(--c-ink); gap: 14px; }

/* ====== Hero ====== */
.hero {
  position: relative;
  background: var(--g-ink);
  color: white;
  padding: clamp(60px, 8vw, 110px) 0 clamp(120px, 14vw, 180px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% 0%, rgba(45, 212, 191, 0.22), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(14, 165, 233, 0.28), transparent 50%);
  z-index: -1;
}
.hero h1 { color: white; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #2DD4BF 0%, #0EA5E9 50%, #7DD3FC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-sub {
  font-size: clamp(17px, 1.3vw, 20px);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-trust span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 100px;
  background: var(--c-cyan);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.18);
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.08) 14px 28px),
    linear-gradient(140deg, rgba(45, 212, 191, 0.18), rgba(14, 165, 233, 0.25));
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.hero-visual .placeholder-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.32);
  padding: 8px 14px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}
.hero-visual .placeholder-tag::before {
  content: "📸";
  font-size: 13px;
}
.hero-visual .water-drop {
  position: absolute;
  width: 90%;
  top: 8%;
  left: 5%;
  opacity: 0.18;
}
.hero-visual .float-card {
  position: absolute;
  background: white;
  color: var(--c-ink);
  padding: 16px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-2);
  font-size: 13px;
  line-height: 1.4;
}
.hero-visual .float-card strong { display: block; font-family: var(--f-display); font-size: 16px; }
.hero-visual .float-card.fc-1 { top: 32px; right: 24px; }
.hero-visual .float-card.fc-2 { bottom: 80px; left: 24px; }
.hero-visual .float-card .ico {
  width: 36px; height: 36px; border-radius: 100px;
  background: var(--g-brand);
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-weight: 700;
  font-family: var(--f-display);
  margin-bottom: 10px;
}

/* ====== Stat strip ====== */
.stat-strip {
  position: relative;
  margin-top: -70px;
  margin-bottom: 0;
  z-index: 5;
}
.stat-strip-inner {
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 16px;
  border: 1px solid var(--c-line);
}
.stat-strip-inner .stat {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid var(--c-line);
}
.stat-strip-inner .stat:last-child { border-right: 0; }
.stat-strip-inner .stat-num {
  font-family: var(--f-display);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-strip-inner .stat-num em {
  font-style: normal;
  background: var(--g-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.stat-strip-inner .stat-label {
  display: block;
  margin-top: 8px;
  color: var(--c-mute);
  font-size: 13px;
  font-weight: 500;
}

/* ====== Service cards (4 univers) ====== */
.section-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head h2 { margin: 0; }
.section-head p { color: var(--c-mute); font-size: 17px; max-width: 460px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  padding: 36px;
  border-radius: var(--r-lg);
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  overflow: hidden;
  transition: .35s ease;
  isolation: isolate;
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--g-ink);
  opacity: 0;
  transition: .35s;
  z-index: -1;
}
.service-card:hover { transform: translateY(-4px); border-color: transparent; color: white; }
.service-card:hover::before { opacity: 1; }
.service-card:hover h3, .service-card:hover .sc-num { color: white; }
.service-card:hover .sc-desc { color: rgba(255,255,255,0.75); }
.service-card:hover .sc-bullets li { color: rgba(255,255,255,0.75); }
.service-card:hover .sc-bullets li::before { background: var(--c-cyan); }
.service-card:hover .sc-arrow {
  background: var(--c-cta); color: white; border-color: var(--c-cta);
}

.service-card .sc-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 24px;
}
.service-card .sc-num {
  font-family: var(--f-display);
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--c-mute);
  font-weight: 600;
  transition: .35s;
}
.service-card .sc-arrow {
  width: 44px; height: 44px;
  border-radius: 100px;
  border: 1.5px solid var(--c-line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: .35s;
  font-size: 18px;
}
.service-card .sc-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  background: white;
  border: 1px solid var(--c-line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 28px;
}
.service-card h3 { margin-bottom: 12px; transition: .35s; }
.service-card .sc-desc {
  color: var(--c-mute);
  font-size: 15px; line-height: 1.55;
  margin-bottom: 22px;
  transition: .35s;
}
.service-card .sc-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.service-card .sc-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--c-mute);
  transition: .35s;
}
.service-card .sc-bullets li::before {
  content: ""; position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 100px;
  background: var(--c-blue);
  transition: .35s;
}
.service-card .sc-badge {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 11px;
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(45, 212, 191, 0.18);
  color: var(--c-cyan);
  padding: 5px 10px;
  border-radius: 100px;
}

/* ====== 8 Steps timeline ====== */

/* ====== About / Qui sommes-nous ====== */
.about-section {
  background: var(--g-ink);
  color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.about-section::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(45, 212, 191, 0.16), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(14, 165, 233, 0.2), transparent 55%);
}
.about-section h2 { color: white; }
.about-section .section-head p { color: rgba(255,255,255,0.74); font-size: 16px; }
.about-lede {
  max-width: 880px;
  margin: 40px 0 0;
  color: rgba(255,255,255,0.85);
  font-size: 19px;
  line-height: 1.6;
  text-wrap: pretty;
}
.eng-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.eng-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  transition: .25s;
}
.eng-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(45, 212, 191, 0.4);
  transform: translateY(-3px);
}
.eng-card .eng-num {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--c-cyan);
  margin-bottom: 18px;
  display: block;
}
.eng-card h4 {
  font-size: 16px;
  margin: 0 0 10px;
  line-height: 1.25;
  color: white;
  letter-spacing: -0.01em;
}
.eng-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
}

.steps-section { background: var(--c-cream); }
.steps-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 22px;
}
.step-card {
  position: relative;
  background: white;
  border-radius: var(--r-md);
  padding: 26px 22px 24px;
  border: 1px solid var(--c-line);
  transition: .25s;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: transparent;
}
.step-num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  background: var(--g-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  display: block;
}
.step-card h4 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--c-ink);
}
.step-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--c-mute);
  line-height: 1.5;
}
.step-card .step-icon {
  position: absolute;
  top: 22px; right: 22px;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 100px;
  background: var(--c-mist);
  color: var(--c-blue);
}

/* ====== Before/After slider ====== */
.ba-section { background: white; }
.ba-frame {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  background: #0F1B2D;
  user-select: none;
  cursor: ew-resize;
}
.ba-pane {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.ba-before {
  background:
    repeating-linear-gradient(45deg, #2C3447 0 14px, #38445C 14px 28px);
  color: rgba(255,255,255,0.6);
}
.ba-after {
  background:
    repeating-linear-gradient(45deg, #DDE9F1 0 14px, #EFF6FB 14px 28px);
  color: var(--c-mute);
  clip-path: inset(0 50% 0 0);
}
.ba-pane .pane-tag {
  position: absolute;
  top: 18px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px; letter-spacing: 0.18em; font-weight: 600;
  text-transform: uppercase;
  font-family: var(--f-display);
}
.ba-before .pane-tag { left: 18px; background: rgba(0,0,0,0.4); color: white; }
.ba-after .pane-tag { right: 18px; background: white; color: var(--c-ink); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.ba-handle::before {
  content: "↔";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 100px;
  background: white;
  color: var(--c-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
  box-shadow: var(--sh-2);
}

/* ====== Map / Zone ====== */
.zone-section { background: var(--c-ink); color: white; }
.zone-section h2 { color: white; }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.zone-grid p { color: rgba(255,255,255,0.72); font-size: 17px; }
.zone-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 28px 0 36px;
}
.zone-tags span {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--f-display);
  color: white;
}
.zone-tags span.primary {
  background: var(--g-brand);
  border-color: transparent;
  color: white;
}
.zone-map {
  aspect-ratio: 5/4;
  background:
    radial-gradient(circle at 30% 35%, rgba(14, 165, 233, 0.18), transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(45, 212, 191, 0.14), transparent 55%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.zone-map .grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.zone-map .pin {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: white;
  font-family: var(--f-display);
}
.zone-map .pin .dot {
  width: 12px; height: 12px;
  border-radius: 100px;
  background: var(--c-cyan);
  box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.25), 0 0 0 12px rgba(45, 212, 191, 0.12);
}
.zone-map .pin.main .dot {
  width: 18px; height: 18px;
  background: var(--c-cta);
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.3), 0 0 0 18px rgba(37, 99, 235, 0.12);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.3), 0 0 0 18px rgba(37, 99, 235, 0.12); }
  50% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0.4), 0 0 0 26px rgba(37, 99, 235, 0.06); }
}

/* ====== Final CTA ====== */
.cta-section {
  padding: clamp(72px, 9vw, 130px) 0;
  background: var(--c-cream);
}
.cta-card {
  background: var(--g-ink);
  color: white;
  border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  right: -120px; top: -160px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.4), transparent 60%);
  border-radius: 100%;
}
.cta-card::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  left: 30%; bottom: -120px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.32), transparent 65%);
  border-radius: 100%;
}
.cta-card .cta-inner { position: relative; z-index: 2; max-width: 720px;}
.cta-card h2 { color: white; }
.cta-card p { color: rgba(255,255,255,0.78); font-size: 18px; margin-bottom: 32px; }
.cta-card .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ====== Footer ====== */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { color: white; margin-bottom: 18px; }
.footer-brand .nav-tag { color: rgba(255,255,255,0.5); }
.footer-brand p { color: rgba(255,255,255,0.62); max-width: 320px; font-size: 14.5px; }
.footer h5 {
  color: white;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a:hover { color: var(--c-cyan); }
.footer-meta {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-meta a { color: rgba(255,255,255,0.7); }
.footer-meta a:hover { color: var(--c-cyan); }

/* ====== WhatsApp floating button ====== */
.fab-wa {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 100px;
  background: #25D366;
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 18px 36px -10px rgba(37, 211, 102, 0.6);
  transition: .2s;
  cursor: pointer;
  border: none;
}
.fab-wa:hover { transform: scale(1.06); }
.fab-wa::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 100px;
  border: 2px solid #25D366;
  opacity: 0.4;
  animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ====== Pricing tables ====== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  transition: .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.price-card.featured {
  background: var(--c-ink);
  color: white;
  border: none;
  box-shadow: var(--sh-3);
}
.price-card.featured h3 { color: white; }
.price-card.featured .price-amount { color: white; }
.price-card.featured ul li { color: rgba(255,255,255,0.78); }
.price-card.featured ul li.no { color: rgba(255,255,255,0.32); text-decoration: line-through; }
.price-card.featured .price-eyebrow { color: var(--c-cyan); }
.price-card .price-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--f-display);
  color: var(--c-blue);
}
.price-card .badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--c-cta);
  color: white;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}
.price-card h3 { margin: 12px 0 18px; }
.price-amount {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--c-ink);
}
.price-amount small {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-mute);
  margin-left: 6px;
}
.price-card.featured .price-amount small { color: rgba(255,255,255,0.6); }
.price-card hr { border: 0; border-top: 1px solid var(--c-line); margin: 24px 0; }
.price-card.featured hr { border-color: rgba(255,255,255,0.1); }
.price-card ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.price-card ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px;
  color: var(--c-text);
}
.price-card ul li::before {
  content: "✓";
  color: var(--c-cyan);
  font-weight: 700;
  flex-shrink: 0;
}
.price-card ul li.no::before { content: ","; color: var(--c-mute); }
.price-card .btn { width: 100%; justify-content: center; }

/* ====== Sub-page hero (Prestations, Spécialités, Contact, sub-pages) ====== */
.page-hero {
  background: var(--g-ink);
  color: white;
  padding: clamp(80px, 9vw, 130px) 0 clamp(60px, 7vw, 90px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(ellipse at 90% 20%, rgba(45,212,191,0.18), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(14,165,233,0.22), transparent 55%);
}
.page-hero h1 { color: white; }
.page-hero .crumb {
  font-size:13px; letter-spacing:0.18em; font-weight:600; text-transform:uppercase;
  color: var(--c-cyan); margin-bottom: 18px; font-family: var(--f-display);
}
.page-hero .crumb a {
  color: rgba(255,255,255,0.55);
  margin-right: 6px;
}
.page-hero .crumb a:hover { color: var(--c-cyan); }
.page-hero p {
  color: rgba(255,255,255,0.78); font-size: 18px; max-width: 660px;
}

/* ====== Alt section (cream background) ====== */
.alt { background: var(--c-cream); }
section[id] { scroll-margin-top: 90px; }

/* ====== Pricing extras (special cards, sizes table, options pills) ====== */
.price-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px;
}
.special-card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px 26px;
}
.alt .special-card { background: white; }
.special-card .lbl {
  font-size:12px; letter-spacing:0.16em; text-transform:uppercase; font-weight:600;
  color: var(--c-blue); font-family: var(--f-display); margin-bottom: 10px; display: block;
}
.special-card h4 { margin: 0 0 12px; font-size: 18px; }
.special-card .px {
  font-family: var(--f-display); font-size: 32px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--c-ink);
}
.special-card .px small { font-size: 14px; font-weight: 500; color: var(--c-mute); }

.sizes-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: white; border: 1px solid var(--c-line);
  border-radius: var(--r-md); overflow: hidden;
  margin-top: 32px;
}
.sizes-table th, .sizes-table td {
  padding: 18px 22px; text-align: left;
  border-bottom: 1px solid var(--c-line);
  font-size: 15px;
}
.sizes-table th {
  background: var(--c-cream);
  font-family: var(--f-display); font-weight: 600;
  color: var(--c-ink);
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
}
.sizes-table tr:last-child td { border-bottom: 0; }
.sizes-table td.px { font-family: var(--f-display); font-weight: 600; color: var(--c-ink); }

.opts-row {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px;
}
.opt-pill {
  background: white; border: 1px dashed var(--c-blue);
  color: var(--c-ink); padding: 10px 18px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
}
.opt-pill strong { color: var(--c-blue); margin-left: 6px; font-family: var(--f-display); }

/* ====== Compare table (3 formulas — Lavage industriel) ====== */
.compare-wrap {
  margin-top: 32px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: white;
  overflow: visible;
}
.compare-table thead th:first-child { border-top-left-radius: var(--r-md); }
.compare-table thead th:last-child { border-top-right-radius: var(--r-md); }
.compare-table tfoot td:first-child { border-bottom-left-radius: var(--r-md); }
.compare-table tfoot td:last-child { border-bottom-right-radius: var(--r-md); }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
  font-size: 14.5px;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table thead th {
  background: var(--c-cream);
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-ink);
  padding-top: 22px; padding-bottom: 22px;
  text-align: center;
  vertical-align: top;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th .ct-name {
  display: block;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 4px;
  color: var(--c-ink);
}
.compare-table thead th .ct-price {
  display: block;
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--g-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 4px;
  text-transform: none;
}
.compare-table thead th.featured {
  background: var(--c-ink);
  color: white;
  position: relative;
}
.compare-table thead th.featured .ct-name { color: white; }
.compare-table thead th.featured .ct-price {
  background: linear-gradient(120deg, #fff 20%, #2DD4BF 80%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.compare-table thead th.featured::after {
  content: "Le plus choisi";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-cta);
  color: white;
  font-size: 10px; letter-spacing: 0.1em; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase;
}
.compare-table tbody th {
  font-family: var(--f-body);
  font-weight: 500;
  color: var(--c-text);
  font-size: 14.5px;
  text-transform: none;
  letter-spacing: 0;
  background: white;
}
.compare-table tbody td {
  text-align: center;
  vertical-align: middle;
}
.compare-table tbody td.featured-col { background: rgba(10, 37, 64, 0.03); }
.compare-table .ck, .compare-table .no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
}
.compare-table .ck { background: rgba(45, 212, 191, 0.18); color: var(--c-cyan); }
.compare-table .no { color: var(--c-line); font-size: 18px; font-weight: 400; }
.compare-table tfoot td {
  background: var(--c-cream);
  text-align: center;
  padding: 18px;
  border-top: 1px solid var(--c-line);
}
.compare-table tfoot .ct-cta {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--c-cta);
}
.compare-table tfoot .ct-cta:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .compare-wrap {
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 14px;
    -webkit-overflow-scrolling: touch;
  }
  .compare-table { min-width: 560px; }
  .compare-table th, .compare-table td { padding: 12px 12px; font-size: 13.5px; }
  .compare-table thead th .ct-price { font-size: 20px; }
}

/* ====== Callout — info badge with note ====== */
.callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: var(--r-md);
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.32);
  margin-top: 24px;
}
.callout .callout-ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 100px;
  background: var(--c-cyan);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}
.callout h4 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--c-ink);
}
.callout p {
  margin: 0;
  color: var(--c-text);
  font-size: 14.5px;
  line-height: 1.55;
}
.callout.callout-alt {
  background: rgba(14, 165, 233, 0.07);
  border-color: rgba(14, 165, 233, 0.32);
}
.callout.callout-alt .callout-ico { background: var(--c-blue); }

/* ====== Placeholder zone (photos, logos, content TBD) ====== */
.ph-zone {
  border: 2px dashed var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-cream);
  color: var(--c-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  text-align: center;
  padding: 28px 22px;
  letter-spacing: 0.02em;
  min-height: 120px;
}
.ph-zone .ph-ico { font-size: 22px; opacity: 0.45; }
.ph-zone strong {
  display: block;
  color: var(--c-ink);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.ph-zone .ph-status {
  display: inline-block;
  background: rgba(14, 165, 233, 0.12);
  color: var(--c-blue);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--f-display);
  font-weight: 700;
  margin-top: 4px;
}
.ph-inline {
  display: inline-block;
  background: rgba(14, 165, 233, 0.12);
  color: var(--c-blue);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--f-display);
  font-weight: 700;
}

/* ====== FAQ accordion (shared) ====== */
.faq-list {
  max-width: 920px;
  margin: 40px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: .25s;
}
.faq-item[open] { border-color: var(--c-blue); box-shadow: var(--sh-1); }
.faq-item summary {
  list-style: none;
  padding: 22px 28px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--f-display); font-weight: 600;
  color: var(--c-ink);
  font-size: 17px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  width: 36px; height: 36px;
  border-radius: 100px;
  background: var(--c-cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 22px;
  color: var(--c-ink);
  transition: .25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; background: var(--g-brand); color: white; }
.faq-item .answer {
  padding: 0 28px 24px;
  color: var(--c-mute);
  line-height: 1.65;
  font-size: 15px;
}
.faq-item .answer p { margin: 0 0 12px; }
.faq-item .answer p:last-child { margin: 0; }
@media (max-width: 600px) {
  .faq-list { margin-top: 32px; gap: 10px; }
  .faq-item summary { padding: 18px 22px; font-size: 15px; gap: 14px; }
  .faq-item summary::after { width: 30px; height: 30px; font-size: 18px; }
  .faq-item .answer { padding: 0 22px 18px; font-size: 14px; line-height: 1.55; }
}

/* ====== Avant / Après (shared slider) ====== */
.ba-slider {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) { .ba-slider { grid-template-columns: 1fr; } }
.ba-slider .ba-frame { aspect-ratio: 4/3; }

/* ====== Avis Google ====== */
.reviews {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .reviews { grid-template-columns: 1fr; gap: 28px; }
}
.reviews-summary {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  text-align: center;
}
.reviews-summary .rating-num {
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--g-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reviews-summary .rating-num small {
  font-size: 24px;
  color: var(--c-mute);
  -webkit-text-fill-color: var(--c-mute);
}
.reviews-summary .stars {
  margin: 12px 0;
  color: #FBBF24;
  letter-spacing: 4px;
  font-size: 20px;
}
.reviews-summary .stars-label {
  color: var(--c-mute);
  font-size: 13.5px;
  margin: 8px 0 20px;
}
.reviews-summary .btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 100px;
  background: white;
  border: 1.5px solid var(--c-line);
  color: var(--c-ink);
  transition: .2s;
}
.reviews-summary .btn-google:hover { border-color: var(--c-blue); color: var(--c-blue); }
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 24px 26px;
}
.review-card .rv-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.review-card .rv-avatar {
  width: 38px; height: 38px;
  border-radius: 100px;
  background: var(--g-brand);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--f-display);
  font-size: 14px;
}
.review-card .rv-name { font-family: var(--f-display); font-weight: 600; color: var(--c-ink); font-size: 14.5px; }
.review-card .rv-meta { font-size: 12px; color: var(--c-mute); }
.review-card .rv-stars { color: #FBBF24; font-size: 14px; letter-spacing: 2px; margin-left: auto; }
.review-card .rv-text { color: var(--c-text); line-height: 1.6; font-size: 14.5px; margin: 0; }
.review-card.placeholder {
  background: var(--c-cream);
  border-style: dashed;
  color: var(--c-mute);
  font-family: ui-monospace, monospace;
  font-size: 13px;
  text-align: center;
}

/* ====== Galerie masonry ====== */
.gallery-grid {
  columns: 3 280px;
  column-gap: 16px;
  margin-top: 32px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px dashed var(--c-line);
  background: var(--c-cream);
  color: var(--c-mute);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  padding: 24px 16px;
  text-align: center;
}
.gallery-item.g-tall { aspect-ratio: 3/4; }
.gallery-item.g-wide { aspect-ratio: 4/3; }
.gallery-item.g-square { aspect-ratio: 1/1; }
.gallery-item .g-lbl {
  display: flex; flex-direction: column; gap: 6px;
  align-items: center;
}
.gallery-item .g-cat {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--c-blue);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .gallery-grid { columns: 2 160px; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; padding: 18px 12px; }
}

/* ====== Logos clients (Ils nous font confiance) ====== */
.clients-strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .clients-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .clients-strip { grid-template-columns: repeat(2, 1fr); } }
.client-logo {
  aspect-ratio: 5/3;
  border: 1px dashed var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-mute);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  text-align: center;
  padding: 8px;
  filter: grayscale(1) opacity(0.7);
  transition: .25s;
}
.client-logo:hover { filter: grayscale(0) opacity(1); border-color: var(--c-blue); }

/* ====== Launch offer banner ====== */
.launch-banner {
  background: var(--g-ink);
  color: white;
  border-radius: var(--r-lg);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: 32px;
}
.launch-banner::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(45, 212, 191, 0.28), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(14, 165, 233, 0.32), transparent 55%);
}
.launch-banner .lb-badge {
  background: var(--c-cyan);
  color: var(--c-ink);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
  white-space: nowrap;
  align-self: start;
}
.launch-banner h3 {
  margin: 0 0 8px;
  color: white;
  font-size: clamp(20px, 2vw, 26px);
}
.launch-banner p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  line-height: 1.55;
}
.launch-banner .lb-tbd {
  display: inline-block;
  margin-top: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.78);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-family: ui-monospace, monospace;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .launch-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 24px;
    text-align: left;
  }
}

/* ====== Delivery / Déplacement tariff table ====== */
.delivery-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 24px;
}
.delivery-table th, .delivery-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
  font-size: 15px;
}
.delivery-table tr:last-child td { border-bottom: 0; }
.delivery-table th {
  background: var(--c-cream);
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-ink);
}
.delivery-table td.dist {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-ink);
}
.delivery-table td .free {
  display: inline-block;
  background: rgba(45, 212, 191, 0.18);
  color: var(--c-cyan);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-right: 8px;
}
@media (max-width: 600px) {
  .delivery-table th, .delivery-table td { padding: 14px 16px; font-size: 14px; }
}

/* ====== Pricing list (ameublement) ====== */
.price-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
@media (max-width: 900px) { .price-list { grid-template-columns: 1fr; } }
.price-list .pl-card {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px 26px;
}
.alt .price-list .pl-card { background: var(--c-cream); }
.price-list .pl-card h4 {
  margin: 0 0 18px;
  font-size: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}
.price-list ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  font-size: 14.5px;
}
.price-list li .pl-name { color: var(--c-text); }
.price-list li .pl-price {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-ink);
  white-space: nowrap;
}
.price-list .pl-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--c-mute);
}

/* ====== Reused subs styles enhancement: nav for galerie/clients filtering ====== */

/* ====== Plain content blocks ====== */
.lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--c-ink);
  max-width: 760px;
  text-wrap: pretty;
}

/* feature 3-up */
.feat-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.feat-3.is-2col { grid-template-columns: repeat(2, 1fr); }
.feat-3 .feat {
  padding: 28px;
  background: var(--c-cream);
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
}
.feat-3 .feat .ico {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: white;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-line);
  margin-bottom: 18px;
  color: var(--c-blue);
}
.feat-3 .feat h4 { margin: 0 0 8px; font-size: 17px; }
.feat-3 .feat p { margin: 0; color: var(--c-mute); font-size: 14.5px; }

/* benefits 8-grid */
.bn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bn {
  padding: 26px 24px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: .25s;
}
.bn:hover { background: var(--c-cream); border-color: var(--c-blue); }
.bn .ck {
  width: 32px; height: 32px;
  border-radius: 100px;
  background: var(--g-brand);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-bottom: 14px;
}
.bn h4 { margin: 0; font-size: 15.5px; line-height: 1.35; color: var(--c-ink); }
.bn p { margin: 6px 0 0; font-size: 13.5px; color: var(--c-mute); line-height: 1.45; }

/* Sub-services pill grid (Prestations universes) */
.subs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 0;
}
.subs > span,
.subs > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--c-line);
  padding: 11px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--f-display);
  color: var(--c-ink);
  transition: .2s;
}
.subs > span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 100px;
  background: var(--c-blue);
}
.subs > a.sub-link {
  border-style: dashed;
  border-color: var(--c-blue);
  color: var(--c-blue);
}
.subs > a.sub-link:hover {
  background: var(--c-blue);
  color: white;
  border-style: solid;
}
.subs > a .sub-ext {
  font-size: 12px;
  opacity: 0.7;
}
/* On cream/alt section bg, give the pills a subtle lift */
.alt .subs > span { background: white; }

/* responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 5/4; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 8px 0; }
  .stat-strip-inner .stat:nth-child(2) { border-right: 0; }
  .stat-strip-inner .stat { border-bottom: 1px solid var(--c-line); padding-bottom: 24px; }
  .stat-strip-inner .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .section-head { grid-template-columns: 1fr; gap: 14px; }
  .service-grid { grid-template-columns: 1fr; }
  .steps-rail { grid-template-columns: repeat(2, 1fr); }
  .zone-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .feat-3 { grid-template-columns: 1fr; }
  .bn-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta { display: none; }

  /* Prestations */
  .price-row { grid-template-columns: 1fr; }
  .sizes-table th, .sizes-table td { padding: 12px 14px; font-size: 14px; }

  /* Engagements grid */
  .eng-grid { grid-template-columns: repeat(2, 1fr); }

  /* Spécialités */
  .spec { grid-column: span 12; }
  .spec.s6 { flex-direction: column; }
  .spec.s6 .spec-img { width: 100%; flex: 1; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .stepper { gap: 6px; }
  .step-pill { padding: 10px 4px 12px; font-size: 11px; }
}

/* ====================================================
   MOBILE (≤ 600px) — phone-first tightening
   ==================================================== */
@media (max-width: 600px) {
  :root {
    --container: 100%;
  }

  /* Layout, spacing */
  .container { padding: 0 18px; }
  section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
  .section-head { margin-bottom: 32px; gap: 10px; }

  /* Type — explicit overrides because clamp upper bounds were
     too generous on small screens */
  h1 { font-size: 34px; line-height: 1.06; letter-spacing: -0.025em; overflow-wrap: break-word; word-break: normal; hyphens: auto; }
  h2 { font-size: 26px; line-height: 1.12; overflow-wrap: break-word; hyphens: auto; }
  h3 { font-size: 18px; }
  .lede { font-size: 16px; }
  p { font-size: 15px; }

  .eyebrow {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .eyebrow::before { width: 18px; }

  /* Nav */
  .nav-inner {
    padding: 12px 18px;
    gap: 10px;
  }
  .nav-logo img { height: 42px; }
  .nav-logo span { display: none; }
  .nav-cta {
    padding: 9px 14px;
    font-size: 13px;
  }

  /* Buttons */
  .btn { padding: 14px 22px; font-size: 14.5px; }
  .hero-ctas .btn,
  .cta-row .btn { width: 100%; justify-content: center; }
  .hero-ctas, .cta-row { flex-direction: column; gap: 10px; }

  /* Hero */
  .hero { padding: 40px 0 80px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-grid { gap: 32px; }
  .hero-visual {
    aspect-ratio: 4/5;
    border-radius: var(--r-lg);
  }
  .hero-visual .float-card { padding: 12px 14px; font-size: 12px; border-radius: var(--r-sm); }
  .hero-visual .float-card strong { font-size: 14px; }
  .hero-visual .float-card .ico {
    width: 30px; height: 30px;
    font-size: 13px;
    margin-bottom: 6px;
  }
  .hero-visual .float-card.fc-1 { top: 16px; right: 16px; }
  .hero-visual .float-card.fc-2 { bottom: 60px; left: 16px; }
  .hero-visual .placeholder-tag { font-size: 10px; bottom: 14px; left: 14px; }
  .hero-trust { gap: 12px; font-size: 13px; }

  /* Stat strip */
  .stat-strip { margin-top: -50px; }
  .stat-strip-inner { padding: 22px 8px; }
  .stat-strip-inner .stat { padding: 6px 12px; padding-bottom: 18px; }
  .stat-strip-inner .stat-num { font-size: 26px; }
  .stat-strip-inner .stat-label { font-size: 12px; margin-top: 6px; }

  /* Service cards */
  .service-card { padding: 26px 22px; }
  .service-card .sc-head { margin-bottom: 18px; }
  .service-card .sc-icon { width: 48px; height: 48px; font-size: 22px; border-radius: var(--r-sm); margin-bottom: 18px; }
  .service-card h3 { margin-bottom: 10px; }
  .service-card .sc-desc { font-size: 14px; margin-bottom: 16px; }
  .service-card .sc-bullets li { font-size: 13.5px; }
  .service-card .sc-arrow { width: 38px; height: 38px; font-size: 16px; }
  .service-card .sc-num { font-size: 11px; }
  .service-card .sc-badge { top: 18px; right: 18px; font-size: 10px; padding: 4px 8px; }

  /* 8 steps */
  .steps-rail { gap: 12px; }
  .step-card { padding: 20px 18px; }
  .step-num { font-size: 40px; margin-bottom: 8px; }
  .step-card h4 { font-size: 15px; margin-bottom: 6px; }
  .step-card p { font-size: 12.5px; line-height: 1.45; }
  .step-card .step-icon { top: 16px; right: 16px; width: 26px; height: 26px; font-size: 13px; }

  /* Before/After */
  .ba-frame { aspect-ratio: 4/5; border-radius: var(--r-md); }
  .ba-pane { font-size: 11px; }
  .ba-pane .pane-tag { font-size: 10px; padding: 4px 8px; top: 12px; }
  .ba-before .pane-tag { left: 12px; }
  .ba-after .pane-tag { right: 12px; }
  .ba-handle::before { width: 36px; height: 36px; font-size: 16px; }

  /* Zone section */
  .zone-tags { gap: 8px; margin: 22px 0 28px; }
  .zone-tags span { font-size: 12px; padding: 6px 10px; }
  .zone-map { aspect-ratio: 4/3; }
  .zone-map .pin { font-size: 11px; }
  .zone-map .pin .dot { width: 8px; height: 8px; box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.25), 0 0 0 8px rgba(45, 212, 191, 0.12); }
  .zone-map .pin.main .dot { width: 12px; height: 12px; }

  /* CTA card */
  .cta-card { padding: 36px 26px; border-radius: var(--r-lg); }
  .cta-card p { font-size: 16px; margin-bottom: 24px; }
  .cta-card::before { width: 320px; height: 320px; right: -160px; top: -120px; }
  .cta-card::after { display: none; }

  /* Footer */
  .footer { padding: 56px 0 28px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-brand .nav-logo img { height: 56px; }
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 22px;
    font-size: 12px;
  }
  .footer h5 { margin-bottom: 14px; }
  .footer ul { gap: 10px; }

  /* WhatsApp FAB */
  .fab-wa { width: 54px; height: 54px; right: 16px; bottom: 16px; }

  /* Pricing */
  .price-card { padding: 28px 24px; border-radius: var(--r-md); }
  .price-amount { font-size: 44px; }
  .price-card .badge { right: 18px; top: -10px; font-size: 10px; }
  .price-card hr { margin: 20px 0; }
  .price-card ul { margin-bottom: 22px; }
  .price-card ul li { font-size: 14px; }
  .opts-row { gap: 8px; margin-top: 22px; }
  .opt-pill { font-size: 13px; padding: 8px 14px; }

  /* Special cards */
  .special-card { padding: 22px 20px; }
  .special-card .px { font-size: 28px; }

  /* Sizes table */
  .sizes-table th, .sizes-table td { padding: 12px 14px; font-size: 13px; }
  .sizes-table th { font-size: 11px; letter-spacing: 0.06em; }

  /* Benefits 8-grid */
  .bn { padding: 22px 20px; }
  .bn h4 { font-size: 14.5px; }
  .bn .ck { width: 28px; height: 28px; font-size: 14px; margin-bottom: 10px; }

  /* feat-3 */
  .feat-3 { gap: 14px; margin-top: 32px; }
  .feat-3 .feat { padding: 24px; }
  .feat-3 .feat .ico { width: 40px; height: 40px; margin-bottom: 14px; }

  /* Page hero */
  .page-hero { padding: 56px 0 40px !important; }
  .page-hero .crumb { font-size: 11px; margin-bottom: 14px !important; }
  .page-hero h1 { font-size: 36px !important; }
  .page-hero p { font-size: 15px !important; }

  /* Anchor strip (prestations) */
  .anchor-strip { padding: 12px 0; top: 64px; }
  .anchor-strip .container {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .anchor-strip .container::-webkit-scrollbar { display: none; }
  .anchor-strip a {
    flex: 0 0 auto;
    font-size: 12px;
    padding: 8px 12px;
    white-space: nowrap;
  }

  /* Spec grid (specialites) */
  .spec, .spec.s1, .spec.s2, .spec.s3, .spec.s4, .spec.s5, .spec.s6 { grid-column: span 12; }
  .spec { padding: 28px 24px; }
  .spec.s6 { flex-direction: column; gap: 28px; padding: 32px 24px; }
  .spec.s6 .spec-img { flex: 1 1 auto; width: 100%; min-height: 200px; }
  .spec .num { font-size: 44px; margin-bottom: 10px; }
  .spec h3 { font-size: 20px; }
  .spec .desc { font-size: 14px; margin-bottom: 18px; }
  .spec .tag { font-size: 11px; padding: 5px 10px; }
  .spec-img { min-height: 140px; font-size: 11px; }

  /* FAQ */
  .faq-list { margin-top: 32px; gap: 10px; }
  .faq-item summary { padding: 18px 22px; font-size: 15px; gap: 14px; }
  .faq-item summary::after { width: 30px; height: 30px; font-size: 18px; }
  .faq-item .answer { padding: 0 22px 18px; font-size: 14px; line-height: 1.55; }

  /* Contact form */
  .form-card { padding: 22px 20px; border-radius: var(--r-md); }
  .stepper {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 28px;
  }
  .step-pill {
    padding: 10px 2px 12px;
    font-size: 0;
    border-radius: var(--r-sm);
  }
  .step-pill .num {
    width: 26px;
    height: 26px;
    font-size: 12px;
    margin-bottom: 0;
  }
  .step-pill .lbl { display: none; }
  .field { margin-bottom: 16px; }
  .field label { font-size: 12px; }
  .field input, .field textarea, .field select { padding: 12px 14px; font-size: 14.5px; }
  .field textarea { min-height: 100px; }
  .step-pane h3 { font-size: 20px; }
  .step-pane .help { font-size: 14px; margin-bottom: 20px; }
  .choice { padding: 18px 18px 18px 56px; }
  .choice .ico { width: 28px; height: 28px; font-size: 14px; left: 16px; top: 16px; }
  .choice strong { font-size: 15px; }
  .choice span.sub { font-size: 12.5px; }
  .form-actions { margin-top: 24px; flex-direction: column-reverse; gap: 8px; }
  .form-actions .btn,
  .form-actions .btn-back { width: 100%; justify-content: center; }
  .btn-back { padding: 10px 0; }
  .success-pane .check { width: 72px; height: 72px; font-size: 36px; margin-bottom: 20px; }
  .success-pane h3 { font-size: 24px; }

  /* Info cards (contact) */
  .info-card { padding: 22px 20px; }
  .info-card h4 { font-size: 11px; margin-bottom: 12px; }
  .info-card .row { gap: 12px; font-size: 14.5px; padding: 12px 0; }
  .info-card .row .ico { width: 32px; height: 32px; font-size: 14px; }
  .info-card .row .sub { font-size: 12.5px; }
  .contact-map { aspect-ratio: 16/10; }
  .contact-map .pin-main .label { font-size: 12px; padding: 6px 10px; }
  .contact-map .openin { font-size: 11px; padding: 6px 10px; right: 10px; bottom: 10px; }

  /* Price-row (prestations special formulas) */
  .price-row { grid-template-columns: 1fr; gap: 12px; }

  /* Engagements grid (about) */
  .eng-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 36px; }
  .eng-card { padding: 22px 20px; }
  .eng-card .eng-num { margin-bottom: 12px; font-size: 11px; }
  .eng-card h4 { font-size: 15.5px; }
  .eng-card p { font-size: 13px; }
  .about-lede { font-size: 16px; margin-top: 24px; line-height: 1.55; }

  /* Subs pills */
  .subs { gap: 8px; margin-top: 28px; }
  .subs > span,
  .subs > a { padding: 9px 14px; font-size: 13px; }
}

/* Extra-small phones (≤ 380px) */
@media (max-width: 380px) {
  h1 { font-size: 30px; }
  .page-hero h1 { font-size: 32px !important; }
  .price-amount { font-size: 38px; }
  .stat-strip-inner .stat-num { font-size: 23px; }
  .container { padding: 0 14px; }
  .service-card { padding: 22px 18px; }
}

/* ===========================================================
   PALETTE PAR DÉFAUT — Variante A : fond clair, navy en accent
   Backgrounds : blanc / bleu pâle alternés
   Accents navy : titres, CTA, header texte, footer
   Accents bleu/cyan : labels, numéros, eyebrows
   =========================================================== */

:root {
  --c-cream: #f5f9fc;
  --c-mist:  #eef4fa;
  --c-label: #0284C7;  /* darker than --c-blue for AA readability on white */
}

body { background: #ffffff; }

/* ====== HERO (Accueil) ====== */
.hero {
  background: linear-gradient(155deg, #eef4fa 0%, #d8e8f5 100%);
  color: var(--c-ink);
}
.hero::before { display: none; }
.hero h1 { color: var(--c-ink); }
.hero h1 em {
  background: linear-gradient(120deg, #0369A1 0%, #0EA5E9 50%, #14B8A6 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-sub { color: var(--c-mute); }
.hero-trust { color: var(--c-mute); }
.hero-trust span::before { box-shadow: 0 0 0 4px rgba(45,212,191,0.18); }
.hero .eyebrow.on-dark { color: var(--c-label); }
.hero .btn-outline.on-dark {
  color: var(--c-ink);
  border-color: rgba(10,37,64,0.22);
  background: white;
}
.hero .btn-outline.on-dark:hover {
  background: var(--c-ink);
  color: white;
  border-color: var(--c-ink);
}
.hero-visual {
  background:
    repeating-linear-gradient(45deg, rgba(14,165,233,0.04) 0 14px, rgba(14,165,233,0.08) 14px 28px),
    linear-gradient(140deg, rgba(45,212,191,0.12), rgba(14,165,233,0.18));
  border: 1px solid rgba(10,37,64,0.12);
}
.hero-visual .placeholder-tag { background: rgba(10,37,64,0.65); color: white; }
.hero-visual .water-drop { opacity: 0.32; }

/* ====== PAGE HERO (sub-pages) ====== */
.page-hero {
  background: linear-gradient(155deg, #eef4fa 0%, #d8e8f5 100%);
  color: var(--c-ink);
}
.page-hero::before { display: none; }
.page-hero h1 { color: var(--c-ink); }
.page-hero p { color: var(--c-mute); }
.page-hero .crumb { color: var(--c-label); }
.page-hero .crumb a { color: var(--c-mute); }
.page-hero .crumb a:hover { color: var(--c-label); }

/* ====== ABOUT (Qui sommes-nous) ====== */
.about-section {
  background: white;
  color: var(--c-ink);
}
.about-section::before { display: none; }
.about-section h2 { color: var(--c-ink); }
.about-section .section-head p { color: var(--c-mute); }
.about-section .eyebrow.on-dark { color: var(--c-label); }
.about-lede { color: var(--c-text); }
.eng-card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
}
.eng-card:hover { background: white; border-color: var(--c-blue); }
.eng-card .eng-num { color: var(--c-label); }
.eng-card h4 { color: var(--c-ink); }
.eng-card p { color: var(--c-mute); }

/* ====== STEPS section ====== */
.steps-section { background: var(--c-cream); }

/* ====== ZONE D'INTERVENTION ====== */
.zone-section { background: var(--c-cream); color: var(--c-ink); }
.zone-section h2 { color: var(--c-ink); }
.zone-section p { color: var(--c-mute); }
.zone-section .eyebrow.on-dark { color: var(--c-label); }
.zone-section .btn-outline.on-dark {
  color: var(--c-ink);
  border-color: rgba(10,37,64,0.2);
  background: white;
}
.zone-section .btn-outline.on-dark:hover { background: var(--c-ink); color: white; }
.zone-tags span {
  background: white;
  border: 1px solid var(--c-line);
  color: var(--c-ink);
}
.zone-tags span.primary {
  background: var(--g-brand);
  border-color: transparent;
  color: white;
}
.zone-map {
  background:
    radial-gradient(circle at 30% 35%, rgba(14,165,233,0.12), transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(45,212,191,0.1), transparent 55%),
    white;
  border-color: var(--c-line);
}
.zone-map .grid-lines {
  background-image:
    linear-gradient(to right, rgba(10,37,64,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,37,64,0.06) 1px, transparent 1px);
}
.zone-map .pin { color: var(--c-ink); }

/* ====== CTA card — KEEP navy as a strong CTA accent (per brief : navy on CTA) ====== */
.cta-section { background: white; }

/* ====== Eyebrow contrast on light backgrounds ====== */
.eyebrow { color: var(--c-label); }
.eyebrow::before { background: currentColor; }

/* ====== Service cards — soften the hover navy fill ====== */
.service-card {
  background: white;
  border: 1px solid var(--c-line);
}
.service-card .sc-icon { background: var(--c-cream); }

/* ====== Spec cards (Spécialités) — soften the .dark variant on light page ====== */
.spec.dark {
  background: var(--c-ink);  /* keep one card dark for visual punch — it's the 01 lead card */
}
/* (others remain light by default) */

/* ====== Step cards — already white, ensure border ====== */
.step-card { background: white; }

/* ====== Stat strip on accueil — already on white container ====== */

/* ============================================================
   Ajouts thème CDTS — système de cartes Spécialités (bento)
   (ces règles étaient inline dans specialites.html)
   ============================================================ */

/* Page-hero variante claire (pages Spécialités, Galerie, Contact) */
.page-hero--light,
body.page-template-page-specialites .page-hero,
body.page-template-page-galerie .page-hero,
body.page-template-page-contact .page-hero {
	background: linear-gradient(155deg, #eef4fa 0%, #d8e8f5 100%);
	color: var(--c-ink);
}
body.page-template-page-specialites .page-hero h1,
body.page-template-page-galerie .page-hero h1,
body.page-template-page-contact .page-hero h1,
.page-hero--light h1 { color: var(--c-ink); }
body.page-template-page-specialites .page-hero .crumb,
body.page-template-page-galerie .page-hero .crumb,
body.page-template-page-contact .page-hero .crumb,
.page-hero--light .crumb { color: var(--c-mute); }
body.page-template-page-specialites .page-hero p,
body.page-template-page-galerie .page-hero p,
body.page-template-page-contact .page-hero p,
.page-hero--light p { color: var(--c-mute); }
body.page-template-page-specialites .page-hero::before,
body.page-template-page-galerie .page-hero::before,
body.page-template-page-contact .page-hero::before,
.page-hero--light::before {
	background:
		radial-gradient(ellipse at 90% 20%, rgba(45,212,191,0.14), transparent 55%),
		radial-gradient(ellipse at 0% 100%, rgba(14,165,233,0.12), transparent 55%);
}

/* Grille bento des Spécialités */
.spec-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 22px;
}
.spec {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--c-cream);
	border: 1px solid var(--c-line);
	padding: 36px;
	transition: .3s;
	display: flex; flex-direction: column;
}
.spec:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }

/* Variante « lead » (liseré cyan) */
.spec.dark {
	background: var(--c-cream);
	color: var(--c-ink);
	border: 1px solid var(--c-line);
	border-left: 4px solid var(--c-cyan);
}
.spec.dark h3 { color: var(--c-ink); }
.spec.dark .desc { color: var(--c-mute); }
.spec.dark .tag { background: white; border: 1px solid var(--c-line); color: var(--c-ink); }
.spec.dark .spec-args li strong { color: var(--c-ink); }
.spec.dark .spec-args li span { color: var(--c-mute); }
.spec.dark .spec-img {
	background: repeating-linear-gradient(45deg, rgba(14,165,233,0.06) 0 14px, rgba(14,165,233,0.12) 14px 28px);
	border-color: var(--c-line);
	color: var(--c-mute);
}

.spec .num {
	font-family: var(--f-display); font-size: 56px; font-weight: 700;
	background: var(--g-brand);
	-webkit-background-clip: text; background-clip: text; color: transparent;
	line-height: 1; letter-spacing: -0.04em; margin-bottom: 14px;
}
.spec h3 { font-size: clamp(22px, 1.8vw, 28px); margin: 0 0 12px; }
.spec .desc { color: var(--c-mute); font-size: 15px; line-height: 1.6; margin-bottom: 22px; }
.spec .tag {
	display: inline-flex; align-items: center; gap: 6px;
	background: white; border: 1px solid var(--c-line);
	padding: 6px 12px; border-radius: 100px;
	font-size: 12px; font-weight: 600; font-family: var(--f-display);
	color: var(--c-ink);
	align-self: flex-start;
	margin-bottom: 14px;
}
.spec .tag::before { content: "●"; color: var(--c-cyan); }

.spec-img {
	flex: 1;
	margin-top: auto;
	background: repeating-linear-gradient(45deg, rgba(14,165,233,0.06) 0 14px, rgba(14,165,233,0.12) 14px 28px);
	border: 1px dashed var(--c-line);
	border-radius: var(--r-md);
	min-height: 160px;
	display: flex; align-items: center; justify-content: center;
	font-family: ui-monospace, monospace; font-size: 12px;
	color: var(--c-mute);
	overflow: hidden;
}
.spec-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Largeurs (mappées depuis le champ Carbon `largeur`) */
.spec--pleine { grid-column: span 12; }
.spec--grande { grid-column: span 7; }
.spec--moyenne { grid-column: span 5; }
.spec--petite { grid-column: span 4; }

/* Variante « ligne-image » (texte + image côte à côte) */
.spec--ligne-image {
	grid-column: span 12;
	flex-direction: row;
	align-items: center;
	gap: 40px;
	padding: 48px;
}
.spec--ligne-image .left { flex: 1; }
.spec--ligne-image .spec-img { flex: 0 0 380px; min-height: 240px; margin: 0; }

/* Spec-args : liste 3 arguments */
.spec-args {
	list-style: none;
	padding: 0;
	margin: 22px 0 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.spec-args li {
	padding-left: 18px;
	position: relative;
}
.spec-args li::before {
	content: "";
	position: absolute;
	left: 0; top: 9px;
	width: 8px; height: 8px;
	border-radius: 100px;
	background: var(--c-cyan);
}
.spec-args li strong {
	display: block;
	font-family: var(--f-display);
	font-size: 15px;
	font-weight: 600;
	color: var(--c-ink);
	margin-bottom: 3px;
	letter-spacing: -0.01em;
}
.spec-args li span {
	font-size: 13.5px;
	color: var(--c-mute);
	line-height: 1.5;
	display: block;
}

@media (max-width: 960px) {
	.spec, .spec--pleine, .spec--grande, .spec--moyenne, .spec--petite, .spec--ligne-image {
		grid-column: span 12;
	}
	.spec--ligne-image { flex-direction: column; gap: 22px; padding: 28px; }
	.spec--ligne-image .spec-img { flex: 1 1 auto; width: 100%; min-height: 200px; }
}

/* ============================================================
   Page Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }

.side-stack { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: white; border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 26px 28px; }
.info-card.dark { background: var(--c-cream); color: var(--c-ink); border: 1px solid var(--c-line); }
.info-card.dark h4 { color: var(--c-ink); }
.info-card.dark .row strong { color: var(--c-ink); }
.info-card.dark .row a { color: var(--c-ink); }
.info-card.dark .row span,
.info-card.dark .row p { color: var(--c-mute); }
.info-card.dark .row .ico { background: white; color: var(--c-blue); border: 1px solid var(--c-line); }
.info-card h4 { margin: 0 0 16px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--c-blue); }
.info-card.dark h4 { color: var(--c-cyan); }
.info-card .row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-top: 1px solid var(--c-line); font-size: 15px; }
.info-card.dark .row { border-top-color: rgba(255,255,255,0.1); }
.info-card .row:first-of-type { border-top: none; padding-top: 4px; }
.info-card .row .ico { width: 36px; height: 36px; border-radius: 100px; background: var(--c-cream); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.info-card .row strong { display: block; font-family: var(--f-display); }
.info-card .row a { color: inherit; }
.info-card .row .sub { color: var(--c-mute); font-size: 13.5px; }
.info-card.dark .row .sub { color: rgba(255,255,255,0.6); }

.contact-map {
	aspect-ratio: 4/3;
	border-radius: var(--r-md);
	background:
		radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.18), transparent 60%),
		repeating-linear-gradient(0deg, rgba(10, 37, 64, 0.04) 0 1px, transparent 1px 38px),
		repeating-linear-gradient(90deg, rgba(10, 37, 64, 0.04) 0 1px, transparent 1px 38px),
		var(--c-cream);
	border: 1px solid var(--c-line);
	position: relative;
	overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-map .pin-main { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact-map .pin-main .dot { width: 22px; height: 22px; border-radius: 100px; background: var(--c-cta); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.3), 0 0 0 18px rgba(37, 99, 235, 0.12); animation: pulse 2.5s infinite; }
.contact-map .pin-main .label { background: white; padding: 8px 14px; border-radius: 100px; font-family: var(--f-display); font-weight: 600; font-size: 13px; color: var(--c-ink); box-shadow: var(--sh-1); white-space: nowrap; }
@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.3), 0 0 0 18px rgba(37, 99, 235, 0.12); }
	50%      { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0.4), 0 0 0 26px rgba(37, 99, 235, 0.06); }
}
.contact-map .openin { position: absolute; bottom: 14px; right: 14px; background: white; border: 1px solid var(--c-line); border-radius: 100px; padding: 8px 14px; font-size: 12px; font-weight: 600; color: var(--c-ink); }

.form-card { background: white; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: clamp(28px, 3vw, 48px); box-shadow: var(--sh-1); }
.form-card .tally-embed { width: 100%; border: 0; display: block; }
