/* =========================================================
   URGENCE PLOMBERIE PRO — Design System
   Identite : "Urgence Punchy" — rouge urgence + anthracite
   Palette : #E11D2A / #141414 / #FFFFFF / #2B2F36
   Typo : Archivo (titres) / Barlow (corps)
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Couleurs de base imposees */
  --c-primary: #E11D2A;
  --c-dark: #141414;
  --c-light: #FFFFFF;
  --c-accent: #2B2F36;

  /* Nuances primaire */
  --c-primary-700: #A6121C;
  --c-primary-600: #C2151F;
  --c-primary-500: #E11D2A;
  --c-primary-400: #ED3B47;
  --c-primary-300: #F4707A;
  --c-primary-100: #FCDDDF;
  --c-primary-050: #FDEEEF;

  /* Nuances sombres / anthracite */
  --c-dark-900: #0C0C0C;
  --c-dark-800: #141414;
  --c-dark-700: #1C1D1F;
  --c-accent-700: #23262C;
  --c-accent-600: #2B2F36;
  --c-accent-500: #3A3F47;
  --c-accent-400: #565C66;

  /* Gris / neutres derives */
  --c-ink: #141414;
  --c-muted: #5A5F66;
  --c-line: #E6E7E9;
  --c-line-soft: #F1F2F3;
  --c-surface: #FFFFFF;
  --c-surface-alt: #F6F6F7;
  --c-surface-warm: #FBF7F6;

  /* Typo fluide */
  --font-title: "Archivo", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;

  --fs-900: clamp(2.6rem, 1.6rem + 4.4vw, 5.2rem);
  --fs-800: clamp(2.1rem, 1.4rem + 3vw, 3.6rem);
  --fs-700: clamp(1.7rem, 1.25rem + 2vw, 2.6rem);
  --fs-600: clamp(1.35rem, 1.1rem + 1.1vw, 1.85rem);
  --fs-500: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  --fs-400: 1.05rem;
  --fs-300: 0.94rem;
  --fs-200: 0.82rem;

  /* Espacements */
  --sp-1: 0.4rem;
  --sp-2: 0.8rem;
  --sp-3: 1.2rem;
  --sp-4: 1.8rem;
  --sp-5: 2.6rem;
  --sp-6: 3.6rem;
  --sp-7: 5rem;
  --sp-8: 7rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --header-h: 78px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Ombres */
  --sh-sm: 0 2px 8px rgba(20, 20, 20, 0.08);
  --sh-md: 0 12px 32px rgba(20, 20, 20, 0.12);
  --sh-lg: 0 28px 64px rgba(20, 20, 20, 0.18);
  --sh-red: 0 16px 40px rgba(225, 29, 42, 0.32);
  --sh-red-sm: 0 8px 20px rgba(225, 29, 42, 0.28);

  /* Transitions */
  --t-fast: 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  --t-med: 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  --t-slow: 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-400);
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-title); line-height: 1.08; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: var(--fs-900); }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-600); }
p { text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--c-primary); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--c-primary); color: #fff; }

/* ---------- UTILS / LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3.4rem, 7vw, 6.4rem); position: relative; }
.section--dark { background: var(--c-dark-800); color: var(--c-light); }
.section--alt { background: var(--c-surface-alt); }
.section--warm { background: var(--c-surface-warm); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-title); font-weight: 700; font-size: var(--fs-200);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-primary-600);
}
.section--dark .eyebrow { color: var(--c-primary-300); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--c-primary); display: inline-block; }
.lead { font-size: var(--fs-500); color: var(--c-muted); max-width: 60ch; }
.section--dark .lead { color: #C9CBCF; }
.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 0.7rem; }
.text-primary { color: var(--c-primary); }

/* ---------- BUTTONS ---------- */
.btn {
  --btn-bg: var(--c-dark-800);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-title); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem;
  border: 2px solid transparent; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-primary { --btn-bg: var(--c-primary); --btn-fg: #fff; box-shadow: var(--sh-red-sm); }
.btn-primary:hover { background: var(--c-primary-600); box-shadow: var(--sh-red); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--c-dark-800); border-color: var(--c-dark-800); }
.section--dark .btn-ghost { --btn-fg: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: var(--c-dark-800); color: #fff; }
.section--dark .btn-ghost:hover { background: #fff; color: var(--c-dark-800); }
.btn-call { --btn-bg: var(--c-primary); --btn-fg: #fff; box-shadow: var(--sh-red-sm); }
.btn-call:hover { background: var(--c-primary-600); box-shadow: var(--sh-red); }
/* balayage rouge / lumiere au survol */
.btn-call::after, .btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn-call:hover::after, .btn-primary:hover::after { transform: translateX(120%); }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- BADGES / CHIPS ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-title); font-weight: 700; font-size: var(--fs-200);
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.45rem 0.9rem; border-radius: var(--r-pill);
  background: var(--c-primary-050); color: var(--c-primary-700);
  border: 1px solid var(--c-primary-100);
}
.chip--dark { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.18); }
.chip svg { width: 1em; height: 1em; }

/* Badge 24/7 pulsant */
.badge-247 {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-title); font-weight: 800; font-size: var(--fs-200);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.55rem 1.05rem; border-radius: var(--r-pill);
  background: var(--c-primary); color: #fff; position: relative;
}
.badge-247 .dot {
  width: 9px; height: 9px; border-radius: 50%; background: #fff; position: relative;
}
.badge-247 .dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  background: rgba(255,255,255,0.55);
  animation: pulse247 1.8s ease-out infinite;
}
@keyframes pulse247 {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow var(--t-med), background var(--t-med);
}
.site-header.scrolled { box-shadow: var(--sh-sm); }
.nav { display: flex; align-items: center; gap: 1rem; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-title); font-weight: 900; letter-spacing: -0.02em; }
.brand .brand-mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand .brand-name { font-size: 1.15rem; line-height: 1; }
.brand .brand-name small { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; color: var(--c-primary-600); text-transform: uppercase; }
.nav-list { display: flex; align-items: center; gap: 0.2rem; margin-left: auto; }
.nav-list a {
  font-family: var(--font-title); font-weight: 600; font-size: 0.94rem;
  padding: 0.5rem 0.7rem; border-radius: var(--r-sm); color: var(--c-accent-600);
  position: relative; transition: color var(--t-fast);
}
.nav-list a::after {
  content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.25rem; height: 2px;
  background: var(--c-primary); transform: scaleX(0); transform-origin: left; transition: transform var(--t-fast);
}
.nav-list a:hover { color: var(--c-dark-800); }
.nav-list a:hover::after, .nav-list a.active::after { transform: scaleX(1); }
.nav-list a.active { color: var(--c-primary-700); }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; margin-left: 0.6rem; }
.nav-call { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--font-title); font-weight: 800; }
.nav-call .num { font-size: 1.02rem; color: var(--c-dark-800); white-space: nowrap; }
.nav-call .ic { width: 38px; height: 38px; display: grid; place-items: center; border-radius: var(--r-pill); background: var(--c-primary); color: #fff; }
.nav-call .ic svg { width: 1.05rem; height: 1.05rem; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border: 1px solid var(--c-line); border-radius: var(--r-sm);
  background: #fff; cursor: pointer; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; width: 22px; height: 2px; background: var(--c-dark-800);
  transform: translateX(-50%); transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateX(-50%) rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] span::after { transform: translateX(-50%) rotate(-45deg); top: 0; }

/* ---------- HERO ---------- */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(12,12,12,0.55) 0%, rgba(12,12,12,0.35) 35%, rgba(20,20,20,0.92) 100%),
    linear-gradient(100deg, rgba(166,18,28,0.5) 0%, rgba(20,20,20,0.15) 55%);
}
.hero-inner { padding-block: clamp(3.6rem, 9vw, 7.5rem); max-width: 720px; }
.hero h1 { margin: 1.1rem 0 1.2rem; }
.hero h1 .hl { color: var(--c-primary-300); }
.hero-sub { font-size: var(--fs-500); color: #EDEDED; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.3rem; margin-top: 2.4rem; }
.hero-badge { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.95rem; color: #EDEDED; }
.hero-badge svg { width: 1.3rem; height: 1.3rem; color: var(--c-primary-300); flex: 0 0 auto; }

/* ---------- REASSURANCE BAND ---------- */
.reassure { background: var(--c-primary); color: #fff; }
.reassure .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; padding-block: 1.6rem; }
.reassure-item { display: flex; align-items: center; gap: 0.8rem; }
.reassure-item svg { width: 1.7rem; height: 1.7rem; flex: 0 0 auto; }
.reassure-item b { font-family: var(--font-title); font-weight: 800; display: block; line-height: 1.1; }
.reassure-item span { font-size: 0.86rem; opacity: 0.9; }

/* ---------- GRIDS / CARDS ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: 1.7rem; position: relative; overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--c-primary);
  transform: scaleY(0); transform-origin: top; transition: transform var(--t-med);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.card:hover::before { transform: scaleY(1); }
.card .card-ic {
  width: 54px; height: 54px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--c-primary-050); color: var(--c-primary-600); margin-bottom: 1.1rem;
  transition: background var(--t-med), color var(--t-med);
}
.card:hover .card-ic { background: var(--c-primary); color: #fff; }
.card .card-ic svg { width: 1.6rem; height: 1.6rem; }
.card h3 { font-size: var(--fs-500); margin-bottom: 0.5rem; }
.card p { color: var(--c-muted); font-size: 0.97rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem;
  font-family: var(--font-title); font-weight: 700; font-size: 0.92rem; color: var(--c-primary-700);
}
.card-link svg { width: 1em; height: 1em; transition: transform var(--t-fast); }
.card:hover .card-link svg { transform: translateX(4px); }

/* feature card (compact) */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .f-ic { width: 46px; height: 46px; flex: 0 0 auto; border-radius: var(--r-md); display: grid; place-items: center; background: var(--c-primary-050); color: var(--c-primary-600); }
.feature .f-ic svg { width: 1.4rem; height: 1.4rem; }
.feature h3 { font-size: 1.12rem; margin-bottom: 0.25rem; }
.feature p { color: var(--c-muted); font-size: 0.95rem; }
.section--dark .feature .f-ic { background: rgba(225,29,42,0.18); color: var(--c-primary-300); }
.section--dark .feature p { color: #B9BBBF; }

/* ---------- BULLET LIST (SVG check) ---------- */
.ticks { display: grid; gap: 0.85rem; }
.ticks li { display: flex; gap: 0.7rem; align-items: flex-start; }
.ticks li svg { width: 1.35rem; height: 1.35rem; flex: 0 0 auto; color: var(--c-primary); margin-top: 0.1rem; }
.section--dark .ticks li svg { color: var(--c-primary-300); }

/* ---------- IMAGE BLOCKS ---------- */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; }
.media-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.media-frame:hover img { transform: scale(1.05); }
.media-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(225,29,42,0.18) 0%, transparent 45%, rgba(20,20,20,0.22) 100%);
  mix-blend-mode: multiply; pointer-events: none;
}
.media-frame.tall { aspect-ratio: 3/4; }
.media-frame.wide { aspect-ratio: 3/2; }
.media-tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(20,20,20,0.78); color: #fff; backdrop-filter: blur(4px);
  padding: 0.6rem 1rem; border-radius: var(--r-pill); font-family: var(--font-title);
  font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.5rem;
  border-left: 3px solid var(--c-primary);
}
.media-stat {
  position: absolute; right: -14px; top: 1.4rem; z-index: 3;
  background: var(--c-primary); color: #fff; padding: 0.9rem 1.2rem; border-radius: var(--r-md);
  box-shadow: var(--sh-red); font-family: var(--font-title);
}
.media-stat b { display: block; font-size: 1.6rem; font-weight: 900; line-height: 1; }
.media-stat span { font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- PROCESS STEPS ---------- */
.steps { display: grid; gap: 1.4rem; counter-reset: step; }
.steps.cols { grid-template-columns: repeat(4, 1fr); }
.step {
  position: relative; background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: 2.2rem 1.5rem 1.5rem; counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: -18px; left: 1.4rem;
  font-family: var(--font-title); font-weight: 900; font-size: 1.5rem;
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: var(--r-md);
  background: var(--c-dark-800); color: #fff;
  box-shadow: var(--sh-sm);
}
.step h3 { font-size: 1.12rem; margin: 0.4rem 0 0.4rem; }
.step p { color: var(--c-muted); font-size: 0.95rem; }
.section--dark .step { background: var(--c-accent-700); border-color: var(--c-accent-500); }
.section--dark .step::before { background: var(--c-primary); }
.section--dark .step p { color: #B9BBBF; }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat { text-align: center; padding: 1.4rem 1rem; border-radius: var(--r-lg); background: var(--c-accent-700); border: 1px solid var(--c-accent-500); }
.stat .num { font-family: var(--font-title); font-weight: 900; font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem); color: var(--c-primary-300); line-height: 1; letter-spacing: -0.03em; }
.stat .num .suffix { color: #fff; }
.stat .label { margin-top: 0.5rem; font-size: 0.92rem; color: #C9CBCF; }

/* ---------- TARIFS TABLE ---------- */
.tarifs-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid var(--c-line); }
.tarifs-table caption { text-align: left; font-family: var(--font-title); font-weight: 700; color: var(--c-muted); padding-bottom: 0.8rem; }
.tarifs-table th, .tarifs-table td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--c-line-soft); }
.tarifs-table thead th { background: var(--c-dark-800); color: #fff; font-family: var(--font-title); font-weight: 700; letter-spacing: 0.02em; }
.tarifs-table tbody tr:hover { background: var(--c-primary-050); }
.tarifs-table td:last-child, .tarifs-table th:last-child { text-align: right; font-family: var(--font-title); font-weight: 700; white-space: nowrap; }
.tarifs-table .price { color: var(--c-primary-700); }
.tarifs-note { font-size: 0.86rem; color: var(--c-muted); margin-top: 0.9rem; }

/* pricing cards */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.price-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 1.8rem; position: relative; transition: transform var(--t-med), box-shadow var(--t-med); }
.price-card.featured { border-color: var(--c-primary); box-shadow: var(--sh-red-sm); }
.price-card.featured::after { content: "Le + demande"; position: absolute; top: -12px; right: 1.4rem; background: var(--c-primary); color: #fff; font-family: var(--font-title); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: var(--r-pill); }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.price-card h3 { font-size: 1.2rem; }
.price-card .amount { font-family: var(--font-title); font-weight: 900; font-size: 2.4rem; color: var(--c-dark-800); margin: 0.6rem 0; letter-spacing: -0.03em; }
.price-card .amount small { font-size: 1rem; color: var(--c-muted); font-weight: 600; }

/* ---------- FAQ (details) ---------- */
.faq { display: grid; gap: 0.8rem; }
.faq details { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); overflow: hidden; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.faq details[open] { border-color: var(--c-primary-300); box-shadow: var(--sh-sm); }
.faq summary { cursor: pointer; list-style: none; padding: 1.15rem 1.3rem; font-family: var(--font-title); font-weight: 700; font-size: 1.05rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { width: 28px; height: 28px; flex: 0 0 auto; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--c-primary-050); color: var(--c-primary-600); transition: transform var(--t-fast), background var(--t-fast); }
.faq details[open] summary .ic { transform: rotate(45deg); background: var(--c-primary); color: #fff; }
.faq summary .ic svg { width: 1rem; height: 1rem; }
.faq .faq-body { padding: 0 1.3rem 1.25rem; color: var(--c-muted); }

/* ---------- TESTIMONIALS ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 1.7rem; position: relative; }
.review .stars { display: flex; gap: 0.15rem; color: var(--c-primary); margin-bottom: 0.8rem; }
.review .stars svg { width: 1.05rem; height: 1.05rem; }
.review p { font-size: 1rem; }
.review .who { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.1rem; }
.review .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--c-dark-800); color: #fff; display: grid; place-items: center; font-family: var(--font-title); font-weight: 800; }
.review .who b { font-family: var(--font-title); display: block; font-size: 0.96rem; }
.review .who span { font-size: 0.82rem; color: var(--c-muted); }

/* ---------- ZONES GRID ---------- */
.zones-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.7rem; }
.zone-pill {
  display: flex; align-items: center; gap: 0.55rem; padding: 0.8rem 1rem;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
  font-family: var(--font-title); font-weight: 600; font-size: 0.94rem;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.zone-pill svg { width: 1.05rem; height: 1.05rem; color: var(--c-primary); flex: 0 0 auto; }
.zone-pill:hover { transform: translateY(-2px); border-color: var(--c-primary-300); box-shadow: var(--sh-sm); }

/* ---------- CTA BAND ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--c-primary); color: #fff; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.18), transparent 45%),
              linear-gradient(120deg, var(--c-primary-700), var(--c-primary) 60%);
}
.cta-band .container { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem; padding-block: clamp(2.6rem, 5vw, 3.8rem); }
.cta-band h2 { font-size: var(--fs-700); max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,0.9); margin-top: 0.4rem; }
.cta-band .btn-ghost { border-color: #fff; color: #fff; }
.cta-band .btn-ghost:hover { background: #fff; color: var(--c-primary-700); }
.cta-band .btn.btn-call { background: var(--c-dark-800); }
.cta-band .btn.btn-call:hover { background: var(--c-dark-900); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb { background: var(--c-surface-alt); border-bottom: 1px solid var(--c-line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; padding-block: 0.9rem; font-size: 0.88rem; color: var(--c-muted); }
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--c-line); }
.breadcrumb a:hover { color: var(--c-primary-700); }
.breadcrumb [aria-current="page"] { color: var(--c-dark-800); font-weight: 600; }

/* ---------- PAGE HERO (internal) ---------- */
.page-hero { background: var(--c-dark-800); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 0%, rgba(225,29,42,0.25), transparent 50%); }
.page-hero .container { position: relative; padding-block: clamp(2.8rem, 6vw, 4.6rem); }
.page-hero h1 { margin: 0.8rem 0 0.8rem; max-width: 18ch; }
.page-hero p { color: #C9CBCF; max-width: 56ch; font-size: var(--fs-500); }

/* ---------- FORM ---------- */
.form { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--sh-sm); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-title); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--c-line); border-radius: var(--r-md);
  background: var(--c-surface-alt); transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--c-primary); background: #fff; box-shadow: 0 0 0 4px var(--c-primary-050); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--c-dark-900); color: #C9CBCF; padding-top: clamp(3rem, 6vw, 4.6rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
.site-footer .brand .brand-name { color: #fff; }
.footer-col h4 { font-family: var(--font-title); color: #fff; font-size: 1rem; letter-spacing: 0.03em; margin-bottom: 1rem; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { color: #C9CBCF; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--c-primary-300); }
.footer-about p { margin: 1rem 0; max-width: 38ch; font-size: 0.94rem; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.6rem; font-size: 0.94rem; }
.footer-contact svg { width: 1.15rem; height: 1.15rem; color: var(--c-primary-300); flex: 0 0 auto; margin-top: 0.15rem; }
.footer-call { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-title); font-weight: 800; font-size: 1.25rem; color: #fff; margin-top: 0.3rem; }
.footer-call:hover { color: var(--c-primary-300); }
.footer-bottom { border-top: 1px solid var(--c-accent-600); margin-top: 2.6rem; padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between; font-size: 0.84rem; }
.footer-bottom a:hover { color: var(--c-primary-300); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- STICKY MOBILE CALL BAR ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 0.6rem; padding: 0.6rem clamp(0.7rem, 3vw, 1rem);
  background: rgba(20,20,20,0.96); backdrop-filter: blur(8px);
  border-top: 2px solid var(--c-primary);
  transform: translateY(110%); transition: transform var(--t-med);
}
.callbar.show { transform: translateY(0); }
.callbar .btn { flex: 1; }
.callbar .btn-call { font-size: 1.05rem; }
.callbar .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); flex: 0 0 auto; }

/* ---------- REVEAL / ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal-left.in-view { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal-right.in-view { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.reveal-scale.in-view { opacity: 1; transform: none; }
/* stagger delays */
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* balayage rouge signature sur titres de section */
.swipe-title { position: relative; display: inline-block; }
.swipe-title::after {
  content: ""; position: absolute; left: 0; bottom: -0.35rem; height: 0.32rem; width: 100%;
  background: var(--c-primary); border-radius: 4px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s;
}
.in-view .swipe-title::after, .swipe-title.in-view::after { transform: scaleX(1); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  :root { --header-h: 68px; }
  .nav-list, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-list {
    display: flex; flex-direction: column; align-items: stretch; gap: 0.2rem;
    position: absolute; left: 0; right: 0; top: var(--header-h); margin: 0;
    background: #fff; padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.6rem; border-bottom: 1px solid var(--c-line);
    box-shadow: var(--sh-md);
  }
  .site-header.open .nav-list a { padding: 0.85rem 0.4rem; border-bottom: 1px solid var(--c-line-soft); }
  .site-header.open .nav-list a::after { display: none; }
  .site-header.open .nav-cta { display: flex; position: absolute; left: 0; right: 0; top: calc(var(--header-h) + 100%); }
  .grid-3, .grid-4, .steps.cols, .stats, .pricing, .reviews { grid-template-columns: repeat(2, 1fr); }
  .media-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reassure .container { grid-template-columns: repeat(2, 1fr); }
  .callbar { display: flex; }
  body { padding-bottom: 72px; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4, .steps.cols, .stats, .pricing, .reviews { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .reassure .container { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .tarifs-wrap { overflow-x: auto; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
  .swipe-title::after { transform: scaleX(1) !important; }
  .hero-media img { height: 100%; }
}
