/* ═══════════════════════════════════════════════════════════════════
   MT BÂTIMENT — style.css v7.0 | Pro Bâtiment Light
   Blanc · Gris béton · Bleu MT · Orange accent
   Mobile-first · Hover · Carousels · Animations subtiles
═══════════════════════════════════════════════════════════════════ */

/* ─── RESET ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 5px;
}
::selection {
  background: var(--blue);
  color: #fff;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
input,
select,
textarea,
button {
  font-family: var(--font-body);
}

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --blue: #1a56db;
  --blue-dark: #1240a8;
  --blue-light: #ebf1ff;
  --blue-mid: #3b82f6;
  --orange: #f97316;
  --orange-dk: #ea6c0a;
  --orange-lt: #fff4ee;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f4f5f7;
  --gray-100: #e8eaee;
  --gray-200: #d1d5db;
  --gray-300: #9ca3af;
  --text: #1a1d23;
  --text-soft: #4b5563;
  --text-muted: #9ca3af;
  --green: #22c55e;
  --red: #ef4444;
  --gold: #f59e0b;
  --border: #e8eaee;
  --border-blue: rgba(26, 86, 219, 0.18);
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 28px 80px rgba(0, 0, 0, 0.14);
  --shadow-blue: 0 8px 24px rgba(26, 86, 219, 0.28);
  --shadow-org: 0 8px 24px rgba(249, 115, 22, 0.3);
  --r-xs: 4px;
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 36px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t: all 0.32s var(--ease);
  --t-fast: all 0.18s var(--ease);
  --nav-h: 72px;
  --w: 1240px;
  --gutter: clamp(18px, 5vw, 48px);
}

/* ─── TYPO ───────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--text);
}
h1 {
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(19px, 3vw, 32px);
  font-weight: 700;
}
h4 {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
}
h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
p {
  color: var(--text-soft);
  line-height: 1.8;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(60px, 9vw, 120px) 0;
}
.section-sm {
  padding: clamp(40px, 6vw, 80px) 0;
}
.bg-gray {
  background: var(--gray-50);
}
.bg-dark {
  background: var(--text);
}
.bg-blue {
  background: var(--blue);
}

/* ─── UTILS ──────────────────────────────────────────────────── */
.text-center {
  text-align: center;
}
.text-blue {
  color: var(--blue);
}
.text-orange {
  color: var(--orange);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
  font-weight: 700;
}
.tag-orange {
  color: var(--orange);
  background: var(--orange-lt);
}
.section-header {
  margin-bottom: clamp(36px, 6vw, 64px);
}
.section-header.center {
  text-align: center;
}
.section-header.center p {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 17px;
}
.section-header p {
  margin-top: 16px;
  font-size: 16px;
  max-width: 600px;
}
.underline-accent {
  display: inline;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-repeat: no-repeat;
  background-position: 0 95%;
  background-size: 100% 4px;
}

/* ─── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes loaderFill {
  to {
    width: 100%;
  }
}
@keyframes livePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  60% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}
@keyframes scrollHint {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(9px);
    opacity: 0.2;
  }
}
@keyframes scrollBg {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}
@keyframes shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
@keyframes borderPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ─── REVEAL (scroll animations) ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.42s;
}
.delay-5 {
  transition-delay: 0.54s;
}

/* ─── LOADER ─────────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition:
    opacity 0.6s,
    visibility 0.6s;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  height: 56px;
  width: auto;
}
.loader-track {
  width: 200px;
  height: 3px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 3px;
  animation: loaderFill 2.2s var(--ease-out) forwards;
}
.loader-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: clamp(30px, 4vw, 42px);
  width: auto;
  display: block;
  object-fit: contain;
  transition:
    opacity 0.2s,
    transform 0.3s var(--ease-bounce);
}
.nav-logo:hover .logo-img {
  opacity: 0.85;
  transform: scale(1.04);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 8px;
  transition: var(--t-fast);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-devis-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  background: var(--blue);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
  text-decoration: none;
}
.nav-devis-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 86, 219, 0.38);
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--t-fast);
}
.hamburger:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 850;
  background: white;
  display: flex;
  flex-direction: column;
  padding: 24px var(--gutter) 32px;
  gap: 0;
  transform: translateY(-105%);
  opacity: 0;
  transition:
    transform 0.4s var(--ease-out),
    opacity 0.35s ease;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 700;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a::after {
  content: "→";
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--blue);
  opacity: 0;
  transition: opacity 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--blue);
}
.mobile-nav a:hover::after,
.mobile-nav a.active::after {
  opacity: 1;
}
.mobile-nav a:last-of-type {
  border-bottom: none;
}
.mobile-nav-footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav.open a:nth-child(1) {
  animation: fadeUp 0.3s 0.05s both;
}
.mobile-nav.open a:nth-child(2) {
  animation: fadeUp 0.3s 0.1s both;
}
.mobile-nav.open a:nth-child(3) {
  animation: fadeUp 0.3s 0.15s both;
}
.mobile-nav.open a:nth-child(4) {
  animation: fadeUp 0.3s 0.2s both;
}
.mobile-nav.open a:nth-child(5) {
  animation: fadeUp 0.3s 0.25s both;
}
.mobile-nav-footer {
  animation: fadeUp 0.3s 0.32s both;
}

/* ─── BOUTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(26, 86, 219, 0.38);
}
.btn-orange {
  background: var(--orange);
  color: white;
  box-shadow: var(--shadow-org);
}
.btn-orange:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: white;
  color: var(--blue);
}
.btn-ghost {
  background: var(--gray-50);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
  box-shadow: var(--shadow-xs);
}
.btn-white {
  background: white;
  color: var(--blue);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}
.btn-lg {
  padding: 16px 34px;
  font-size: 16px;
}
.btn-full {
  width: 100%;
}

/* ─── FORMS ──────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 14px;
  transition: var(--t-fast);
  outline: none;
}
.form-control::placeholder {
  color: var(--text-muted);
}
.form-control:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.08);
}
.form-control option {
  background: white;
  color: var(--text);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* ─── PHOTO PLACEHOLDER ──────────────────────────────────────── */
.photo-placeholder {
  position: relative;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  background-size: 200%;
  animation: shimmer 2s infinite;
}
.photo-placeholder::after {
  content: attr(data-label);
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: white;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.photo-wrap:hover img {
  transform: scale(1.05);
}

/* ─── SCROLL HINT ────────────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 0.8s 1.8s forwards;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::after {
  content: "";
  width: 3px;
  height: 7px;
  background: var(--blue);
  border-radius: 2px;
  animation: scrollHint 2.2s ease-in-out infinite;
}
.scroll-hint span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}
.breadcrumb a {
  color: var(--blue);
  transition: var(--t-fast);
}
.breadcrumb a:hover {
  color: var(--blue-dark);
}
.breadcrumb .sep {
  opacity: 0.4;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h)+24px) 0 60px;
  background: linear-gradient(
    160deg,
    white 0%,
    var(--off-white) 55%,
    var(--blue-light) 100%
  );
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: min(600px, 60vw);
  height: min(600px, 60vw);
  background: radial-gradient(
    circle,
    rgba(26, 86, 219, 0.07) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: min(400px, 45vw);
  height: min(400px, 45vw);
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 70px);
  align-items: center;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
  animation: fadeUp 0.7s 0.1s both;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.hero-title {
  font-size: clamp(36px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 22px;
  animation: fadeUp 0.8s 0.25s both;
}
.hero-title .accent {
  color: var(--blue);
}
.hero-title .accent-line {
  position: relative;
  display: inline-block;
}
.hero-title .accent-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 5px;
  background: var(--orange);
  border-radius: 3px;
  opacity: 0.7;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-soft);
  line-height: 1.78;
  max-width: 520px;
  margin: 0 auto 36px;
  animation: fadeUp 0.8s 0.4s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.55s both;
}
.hero-kpis {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.7s both;
}
.hero-kpis > div {
  flex: 1;
  max-width: 160px;
  text-align: center;
  padding: 0 clamp(14px, 3vw, 32px);
  border-right: 1px solid var(--border);
}
.hero-kpis > div:last-child {
  border-right: none;
}
.kpi-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.kpi-num sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--orange);
}
.kpi-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}
.hero-visual {
  position: relative;
  animation: scaleIn 1s 0.4s both;
}
.hero-photo-area {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
}
.hero-photo-area img,
.hero-photo-area .photo-placeholder {
  width: 100%;
  height: 100%;
}
.hero-photo-area img {
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.hero-photo-area:hover img {
  transform: scale(1.04);
}
.hero-badge {
  position: absolute;
  background: white;
  border-radius: var(--r);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 11px;
}
.hero-badge-live {
  bottom: 20px;
  left: -12px;
  animation: fadeUp 0.6s 1s both;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: livePulse 2.2s infinite;
  flex-shrink: 0;
}
.live-text {
  font-size: 12px;
  color: var(--text-soft);
}
.live-text strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 1px;
}
.hero-badge-rating {
  top: 16px;
  right: -12px;
  text-align: center;
  animation: fadeUp 0.6s 1.1s both;
  flex-direction: column;
  gap: 4px;
}
.rating-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}
.rating-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
}
.rating-label {
  font-size: 11px;
  color: var(--text-muted);
}

/* ─── TRUSTED STRIP ──────────────────────────────────────────── */
.trusted-strip {
  background: var(--text);
  padding: clamp(16px, 2.5vw, 22px) 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
.trusted-track {
  display: flex;
  width: max-content;
  animation: scrollBg 28s linear infinite;
}
.trusted-track:hover {
  animation-play-state: paused;
}
.trusted-reel {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 44px);
  padding-right: clamp(20px, 4vw, 44px);
  flex-shrink: 0;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: var(--t-fast);
}
.cert-badge:hover {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  transform: translateY(-2px);
}
.cert-icon {
  font-size: 14px;
}
@media (prefers-reduced-motion: reduce) {
  .trusted-track {
    animation: none;
  }
  .trusted-reel:not(:first-child) {
    display: none;
  }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.about-visual-wrap {
  display: none;
  position: relative;
  padding-bottom: 24px;
  padding-right: 24px;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 580px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-photo img,
.about-photo .photo-placeholder {
  width: 100%;
  height: 100%;
}
.about-photo img {
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-photo:hover img {
  transform: scale(1.04);
}
.about-photo-frame {
  position: absolute;
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  border: 2px solid var(--blue-light);
  border-radius: var(--r-xl);
  z-index: -1;
}
.about-stat-card {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--blue);
  border-radius: var(--r);
  padding: 20px 26px;
  box-shadow: var(--shadow-blue);
  min-width: 155px;
  z-index: 2;
  color: white;
}
.about-stat-card .big {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}
.about-stat-card .lbl {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 5px;
}
.about-rating-card {
  position: absolute;
  top: 20px;
  right: -20px;
  background: white;
  border-radius: var(--r);
  padding: 14px 18px;
  min-width: 148px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-rating-card .stars {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 4px;
}
.about-rating-card .num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
}
.about-rating-card .sub {
  font-size: 11px;
  color: var(--text-muted);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}
.feature-item {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  transition: var(--t);
  cursor: default;
}
.feature-item:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xs);
}
.feature-icon {
  font-size: 22px;
  margin-bottom: 9px;
}
.feature-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}
.feature-desc {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ─── STATS ──────────────────────────────────────────────────── */
.stats-strip {
  background: var(--blue);
  padding: clamp(40px, 6vw, 70px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stat-cell {
  text-align: center;
  padding: clamp(24px, 4vw, 50px) clamp(14px, 2.5vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  transition: var(--t);
  cursor: default;
}
.stat-cell:nth-child(2) {
  border-right: none;
}
.stat-cell:nth-child(3) {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-cell:nth-child(4) {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
}
.stat-cell:hover {
  background: rgba(255, 255, 255, 0.06);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  color: white;
  line-height: 1;
}
.stat-num sup {
  font-size: 0.44em;
  color: var(--orange);
  vertical-align: super;
}
.stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 7px;
}

/* ─── CAROUSELS COMMUNS ──────────────────────────────────────── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}
.c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: var(--t-fast);
}
.c-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--blue);
}

/* ─── SERVICES ───────────────────────────────────────────────── */
/* Mobile carousel */
.services-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.services-carousel::-webkit-scrollbar {
  display: none;
}
/* Desktop grid */
.services-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
/* Card */
.service-card {
  min-width: min(280px, 82vw);
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--t);
  position: relative;
  flex-shrink: 0;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card-photo {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.service-card-photo img,
.service-card-photo .photo-placeholder {
  width: 100%;
  height: 100%;
}
.service-card-photo img {
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card-photo img {
  transform: scale(1.08);
}
.service-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 1;
}
.service-num {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 8px;
  border-radius: 100px;
}
.service-card-body {
  padding: 20px 20px 22px;
}
.service-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: var(--t);
}
.service-card:hover .service-icon-wrap {
  background: var(--blue);
  transform: rotate(5deg) scale(1.1);
}
.service-card-title {
  font-size: clamp(16px, 2.5vw, 19px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: 13px;
  line-height: 1.72;
  margin-bottom: 16px;
  color: var(--text-soft);
}
.service-card-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.25s;
}
.service-card:hover .service-card-link {
  gap: 13px;
}
/* Services page full grid */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-full-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}
.service-full-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.sfc-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.sfc-img img,
.sfc-img .photo-placeholder {
  width: 100%;
  height: 100%;
}
.sfc-img img {
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-full-card:hover .sfc-img img {
  transform: scale(1.06);
}
.sfc-body {
  padding: 24px;
}
.sfc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.sfc-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.sfc-desc {
  font-size: 13px;
  line-height: 1.78;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.sfc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sfc-list li {
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  gap: 8px;
}
.sfc-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── RÉALISATIONS ───────────────────────────────────────────── */
.real-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.real-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: var(--gray-50);
  border: 1px solid var(--border);
  color: var(--text-soft);
  cursor: pointer;
  transition: var(--t-fast);
}
.real-tab.active,
.real-tab:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
/* Carousel mobile */
.real-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.real-carousel::-webkit-scrollbar {
  display: none;
}
.real-item-mobile {
  min-width: min(300px, 80vw);
  scroll-snap-align: start;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  height: 220px;
  flex-shrink: 0;
  cursor: pointer;
}
.real-item-mobile img,
.real-item-mobile .photo-placeholder {
  width: 100%;
  height: 100%;
}
.real-item-mobile img {
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.real-item-mobile:hover img {
  transform: scale(1.06);
}
.real-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(0, 0, 0, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 1;
  transition: opacity 0.35s;
}
/* Grille desktop */
.real-grid {
  display: none;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}
.real-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}
.real-item:nth-child(2) {
  grid-column: span 5;
}
.real-item:nth-child(3) {
  grid-column: span 5;
}
.real-item:nth-child(4) {
  grid-column: span 4;
}
.real-item:nth-child(5) {
  grid-column: span 4;
}
.real-item:nth-child(6) {
  grid-column: span 4;
}
.real-item {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--t);
}
.real-item img,
.real-item .photo-placeholder {
  width: 100%;
  height: 100%;
}
.real-item img {
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.real-item:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.real-item:hover img {
  transform: scale(1.07);
}
.real-item .real-overlay {
  opacity: 0;
}
.real-item:hover .real-overlay {
  opacity: 1;
}
.real-tag-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}
.real-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: white;
}
/* Before/After */
.ba-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  user-select: none;
  cursor: ew-resize;
  height: clamp(240px, 38vw, 460px);
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before .photo-placeholder,
.ba-after .photo-placeholder {
  width: 100%;
  height: 100%;
}
.ba-after {
  clip-path: inset(0 50% 0 0);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: white;
  z-index: 10;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}
.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  transition: transform 0.2s var(--ease-bounce);
}
.ba-wrap:hover .ba-handle-btn {
  transform: translate(-50%, -50%) scale(1.14);
}
.ba-label {
  position: absolute;
  top: 12px;
  z-index: 5;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ba-label-before {
  left: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
}
.ba-label-after {
  right: 12px;
  background: var(--blue);
  color: white;
}

/* ─── TÉMOIGNAGES — carousel mobile ─────────────────────────── */
.testi-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.testi-carousel::-webkit-scrollbar {
  display: none;
}
.testi-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  min-width: min(300px, 84vw);
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 24px 22px;
  position: relative;
  overflow: hidden;
  transition: var(--t);
  flex-shrink: 0;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--blue);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.testi-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.testi-card:hover::after {
  transform: scaleX(1);
}
.testi-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 13px;
}
.testi-text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: white;
}
.testi-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.testi-role {
  font-size: 12px;
  color: var(--text-muted);
}
.testi-city {
  font-size: 11px;
  color: var(--blue);
  margin-top: 2px;
}

/* ─── CALCULATEUR ────────────────────────────────────────────── */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.calc-field {
  margin-bottom: 22px;
}
.calc-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.calc-label span {
  color: var(--blue);
  font-family: var(--font-mono);
}
.range-input {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 4px;
  background: var(--gray-100);
  outline: none;
  cursor: pointer;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.15);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.range-input::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(26, 86, 219, 0.12);
  transform: scale(1.15);
}
.calc-type-btn,
.calc-gamme-btn,
.calc-zone-btn {
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 600;
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  color: var(--text-soft);
  cursor: pointer;
  transition: var(--t-fast);
  text-align: center;
  line-height: 1.35;
  font-family: var(--font-body);
}
.calc-type-btn:hover,
.calc-gamme-btn:hover,
.calc-zone-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.calc-type-btn.active,
.calc-gamme-btn.active,
.calc-zone-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.calc-result {
  background: var(--blue);
  border-radius: var(--r-xl);
  padding: clamp(26px, 4vw, 44px);
  color: white;
  position: relative;
  overflow: hidden;
}
.calc-result::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.calc-result-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}
.calc-price-range {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: white;
}
.calc-price-range .unit {
  font-size: 0.52em;
  color: var(--orange);
}
.calc-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 7px;
}
.calc-breakdown {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
}
.cb-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}
.cb-row:last-child {
  border-bottom: none;
  color: white;
  font-weight: 700;
  font-family: var(--font-mono);
}

/* ─── DEVIS WIZARD ───────────────────────────────────────────── */
.devis-box {
  max-width: 880px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.devis-head {
  background: var(--blue);
  padding: clamp(24px, 4vw, 44px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.devis-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(255, 255, 255, 0.06),
    transparent
  );
  pointer-events: none;
}
.devis-head h3 {
  font-size: clamp(18px, 3vw, 28px);
  margin-bottom: 7px;
  color: white;
  position: relative;
}
.devis-head p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  position: relative;
}
.devis-steps {
  display: flex;
  align-items: center;
  padding: 18px clamp(14px, 4vw, 44px);
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  gap: 0;
}
.d-step {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}
.d-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: var(--border);
  z-index: 0;
  transition: background 0.4s;
}
.d-step.done:not(:last-child)::after,
.d-step.active:not(:last-child)::after {
  background: var(--blue);
}
.d-step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  z-index: 1;
  position: relative;
  transition: var(--t);
}
.d-step.active .d-step-circle {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  box-shadow: 0 0 0 5px rgba(26, 86, 219, 0.15);
}
.d-step.done .d-step-circle {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.devis-body {
  padding: clamp(20px, 4vw, 48px);
}
.devis-step {
  display: none;
}
.devis-step.active {
  display: block;
  animation: fadeUp 0.38s var(--ease-out) both;
}
.devis-step > h4 {
  font-size: clamp(17px, 2.8vw, 24px);
  margin-bottom: 6px;
  color: var(--text);
}
.devis-step > .sub {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 26px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.work-card {
  background: var(--gray-50);
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--t);
}
.work-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-2px);
}
.work-card.selected {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}
.work-emoji {
  font-size: 26px;
  margin-bottom: 8px;
}
.work-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.budget-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 9px;
}
.budget-card {
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 9px;
  text-align: center;
  cursor: pointer;
  transition: var(--t-fast);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.budget-card:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.budget-card.selected {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}
.upload-area {
  border: 2px dashed var(--gray-200);
  border-radius: var(--r);
  padding: clamp(22px, 4vw, 44px) 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--t);
}
.upload-area:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.upload-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.upload-hint {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.75;
}
.upload-hint strong {
  color: var(--blue);
}
.upload-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}
.upload-pill {
  background: var(--blue-light);
  border: 1px solid var(--blue);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--blue);
}
.devis-summary {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  margin-bottom: 22px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.summary-row:last-child {
  border-bottom: none;
}
.summary-row .key {
  color: var(--text-muted);
}
.summary-row .val {
  font-weight: 600;
  color: var(--text);
}
.devis-confirm-note {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--r-sm);
  padding: 15px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.82;
}
.devis-footer-nav {
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  text-align: center;
  gap: 10px;
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid var(--border);
}
.step-counter {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.devis-success {
  display: none;
  text-align: center;
  padding: 44px 24px;
}
.devis-success.show {
  display: block;
  animation: fadeUp 0.5s var(--ease-out) both;
}
.success-emoji {
  font-size: 64px;
  margin-bottom: 18px;
}

/* ─── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: var(--text);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.15),
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(26px, 5vw, 54px);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  color: white;
}
.cta-band p {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
}

/* ─── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h)+clamp(44px, 7vw, 80px)) 0 clamp(40px, 7vw, 80px);
  overflow: hidden;
  background: linear-gradient(160deg, white 0%, var(--blue-light) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: min(500px, 55vw);
  height: min(500px, 55vw);
  background: radial-gradient(circle, rgba(26, 86, 219, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(32px, 6vw, 68px);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: clamp(14px, 2vw, 18px);
  max-width: 580px;
  color: var(--text-soft);
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-detail {
  margin-bottom: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--blue-light);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--t);
}
.contact-detail:hover .contact-icon {
  background: var(--blue);
  transform: scale(1.06);
}
.contact-detail-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-family: var(--font-mono);
}
.contact-detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  user-select: none;
}
.faq-q:hover {
  color: var(--blue);
}
.faq-q::after {
  content: "+";
  font-size: 22px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-a-inner {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.82;
}

/* ─── BLOG — carousel mobile ─────────────────────────────────── */
.blog-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.blog-carousel::-webkit-scrollbar {
  display: none;
}
.blog-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  min-width: min(300px, 84vw);
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img,
.blog-card-img .photo-placeholder {
  width: 100%;
  height: 100%;
}
.blog-card-img img {
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.07);
}
.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.blog-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.38;
  color: var(--text);
}
.blog-excerpt {
  font-size: 13px;
  line-height: 1.78;
  flex: 1;
  margin-bottom: 18px;
  color: var(--text-soft);
}
.blog-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}
.blog-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-200);
}

/* ─── TIMELINE ───────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: clamp(40px, 7vw, 70px);
}
.timeline::before {
  content: "";
  position: absolute;
  left: clamp(14px, 3vw, 24px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--border) 100%);
}
.tl-item {
  position: relative;
  padding-bottom: clamp(32px, 5vw, 52px);
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-dot {
  position: absolute;
  left: calc(-1 * clamp(40px, 7vw, 70px) + clamp(4px, 1.5vw, 10px));
  top: 4px;
  width: clamp(34px, 5vw, 50px);
  height: clamp(34px, 5vw, 50px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(10px, 1.5vw, 13px);
}
.tl-dot.main {
  background: var(--blue);
  color: white;
  box-shadow: var(--shadow-blue);
}
.tl-dot.past {
  background: white;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.tl-year {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 8px;
}
.tl-title {
  font-size: clamp(17px, 2.8vw, 26px);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.tl-text {
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-soft);
}
.tl-photo {
  margin-top: 18px;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--border);
}
.tl-photo img,
.tl-photo .photo-placeholder {
  width: 100%;
  height: 100%;
}
.tl-photo img {
  object-fit: cover;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.value-card:hover::after {
  transform: scaleX(1);
}
.value-emoji {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.38s var(--ease-bounce);
}
.value-card:hover .value-emoji {
  transform: scale(1.2) rotate(-5deg);
}
.value-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.value-text {
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-soft);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  border-top: 3px solid var(--blue);
  padding: clamp(56px, 8vw, 100px) 0 0;
  overflow: hidden;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.82;
  margin: 18px 0 22px;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  height: clamp(28px, 4vw, 38px);
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.social-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
  transition: var(--t);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}
.footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--t-fast);
}
.footer-col ul a:hover {
  color: white;
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}
.footer-bottom .rating {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* ─── MODALS ─────────────────────────────────────────────────── */
.modal-bg {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.modal-bg.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}
.modal-box {
  background: white;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  width: 100%;
  max-width: 460px;
  padding: clamp(24px, 4vw, 44px);
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: fadeUp 0.38s var(--ease-out);
  max-height: 94svh;
  overflow-y: auto;
}
.modal-box-lg {
  max-width: 620px;
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close-btn:hover {
  background: var(--gray-100);
}
.modal-err {
  color: var(--red);
  font-size: 13px;
  margin-bottom: 12px;
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--r-sm);
  padding: 10px 14px;
}

/* ─── PAGES LÉGALES ──────────────────────────────────────────── */
.legal-body {
  max-width: 820px;
  margin: 0 auto;
}
.legal-body h2 {
  font-size: clamp(19px, 3vw, 28px);
  margin: 44px 0 16px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
  color: var(--text);
}
.legal-body h2:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.legal-body h3 {
  font-size: clamp(15px, 2vw, 19px);
  margin: 22px 0 9px;
  color: var(--blue);
}
.legal-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 13px;
}
.legal-body ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 13px;
}
.legal-body ul li {
  margin-bottom: 5px;
}
.legal-body ol {
  padding-left: 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 13px;
}
.info-box {
  background: var(--blue-light);
  border: 1px solid var(--border-blue);
  border-radius: var(--r);
  padding: 20px 24px;
  margin: 18px 0;
}
.info-box p {
  margin: 0;
  font-size: 14px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}
.legal-table th {
  background: var(--blue);
  color: white;
  padding: 11px 15px;
  text-align: left;
  font-weight: 700;
}
.legal-table td {
  padding: 10px 15px;
  border: 1px solid var(--border);
  color: var(--text-soft);
  vertical-align: top;
}
.legal-table tr:nth-child(even) td {
  background: var(--gray-50);
}
.legal-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}
.right-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
}
.right-card .icon {
  font-size: 22px;
  margin-bottom: 8px;
}
.right-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
}
.right-card p {
  font-size: 12px;
  margin: 0;
  color: var(--text-soft);
}
/* Toggles cookies */
.cookie-pref {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-pref:last-child {
  border-bottom: none;
}
.cookie-pref-info {
  flex: 1;
}
.cookie-pref-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.cookie-pref-info p {
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}
.toggle-wrap {
  flex-shrink: 0;
  margin-top: 3px;
}
.toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--gray-200);
  border-radius: 24px;
  transition: 0.3s;
}
.toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}
.toggle input:checked + .toggle-slider {
  background: var(--blue);
}
.toggle input:checked + .toggle-slider::before {
  transform: translateX(20px);
}
.toggle input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}
/* Politiques nav */
.policy-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 44px;
}
.policy-nav-card {
  display: flex;
  align-items: center;
  gap: 13px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 18px;
  text-decoration: none;
  color: var(--text-soft);
  transition: var(--t);
  font-size: 14px;
  font-weight: 600;
}
.policy-nav-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xs);
}
.policy-nav-card .icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* ─── 404 ────────────────────────────────────────────────────── */
.notfound-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px var(--gutter);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.notfound-bg {
  position: absolute;
  inset: 0;
  font-family: var(--font-display);
  font-size: clamp(130px, 24vw, 260px);
  font-weight: 900;
  line-height: 1;
  color: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.notfound-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}
.notfound-icon {
  font-size: 60px;
  margin-bottom: 20px;
  display: block;
}

/* ─── DASHBOARD ──────────────────────────────────────────────── */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.s-pending {
  background: #fef3c7;
  color: #92400e;
}
.s-validated {
  background: #d1fae5;
  color: #065f46;
}
.s-refused {
  background: #fee2e2;
  color: #991b1b;
}
.s-modified {
  background: #dbeafe;
  color: #1e40af;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first (min-width)
   Base = mobile · 560 · 768 · 1024 · 1280
═══════════════════════════════════════════════════════════════ */

/* Base mobile */
.nav-links {
  display: none;
}
.hamburger {
  display: flex;
}

/* 560px ─────────────────────────────────────────────────────── */
@media (min-width: 560px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .budget-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .policy-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row,
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
  .cta-actions {
    flex-direction: row;
    align-items: center;
  }
  .cta-actions .btn {
    width: auto;
  }
}

/* 768px ─────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  :root {
    --nav-h: 72px;
    --gutter: clamp(22px, 4vw, 48px);
  }
  .nav-links {
    display: flex;
  }
  .hamburger {
    display: none;
  }

  /* Hero 2 cols */
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .hero-eyebrow {
    justify-content: flex-start;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-kpis {
    justify-content: flex-start;
  }
  .hero-sub {
    margin-left: 0;
    margin-right: 0;
  }

  /* Grilles */
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
  }
  .about-visual-wrap {
    display: block;
  }
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
  .calc-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-cell:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .stat-cell:nth-child(3) {
    border-top: none;
  }
  .stat-cell:nth-child(4) {
    border-top: none;
  }
  .stat-cell:last-child {
    border-right: none;
  }
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .policy-nav {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }

  /* Carousel → grille desktop */
  .services-carousel {
    display: none;
  }
  .services-grid {
    display: grid;
  }
  .testi-carousel {
    display: none;
  }
  .testi-grid {
    display: grid;
  }
  .blog-carousel {
    display: none;
  }
  .blog-grid {
    display: grid;
  }
  .real-carousel {
    display: none;
  }
  .real-grid {
    display: grid;
  }

  /* Devis */
  .devis-footer-nav {
    flex-direction: row;
    text-align: left;
  }

  /* Modal */
  .modal-bg {
    align-items: center;
    padding: 20px;
  }
  .modal-box {
    border-radius: var(--r-xl);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

/* 1024px ────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .services-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testi-grid {
    gap: 26px;
  }
  .blog-grid {
    gap: 26px;
  }
}

/* 1280px ────────────────────────────────────────────────────── */
@media (min-width: 1280px) {
  :root {
    --gutter: 48px;
  }
  .hero-inner {
    gap: 80px;
  }
}

/* prefers-reduced-motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
