/* =========================================================
   SÉNCLIM — Design System v2
   Palette: Bleu profond + Orange chaud
   Fonts: Poppins (titres) + Inter (corps)
   ========================================================= */

:root {
  /* Couleurs principales */
  --blue: #0B5394;
  --blue-dark: #073D70;
  --blue-light: #1B6BB8;
  --blue-bg: #EFF6FC;

  /* Accent */
  --orange: #F26B1F;
  --orange-dark: #D25613;
  --orange-light: #FF8845;

  /* Neutres */
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #1F2937;

  /* Sémantique */
  --green: #16A34A;

  /* Layout */
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  /* Ombres */
  --shadow-sm: 0 1px 3px rgba(15,37,68,.06), 0 1px 2px rgba(15,37,68,.04);
  --shadow: 0 4px 16px rgba(15,37,68,.08), 0 2px 4px rgba(15,37,68,.04);
  --shadow-lg: 0 12px 40px rgba(15,37,68,.12), 0 4px 12px rgba(15,37,68,.06);
  --shadow-xl: 0 24px 60px rgba(15,37,68,.18);

  /* Transitions */
  --t: .25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ===== TYPO ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--gray-600); line-height: 1.7; }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 112px 0; }
.section-bg { background: var(--off-white); }
.section-blue { background: var(--blue); color: #fff; }
.section-blue h1, .section-blue h2, .section-blue h3 { color: #fff; }
.section-blue p { color: rgba(255,255,255,.85); }

.text-center { text-align: center; }
.muted { color: var(--gray-500); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(242,107,31,.3);
}
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); box-shadow: 0 8px 24px rgba(242,107,31,.4); }
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-white-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { padding: 10px 20px; font-size: .88rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--orange-light); }
@media (max-width: 700px) {
  .topbar-zones { display: none; }
}

/* ===== NAVBAR ===== */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}
.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform .2s ease;
}
.nav-logo .wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--blue);
  letter-spacing: -.02em;
}
.nav-logo .wordmark .accent { color: var(--orange); }
.nav-logo:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
  .nav-logo img { height: 48px; }
  .nav-logo .wordmark { font-size: 1.4rem; }
}
@media (max-width: 600px) {
  .nav-logo img { height: 40px; }
  .nav-logo .wordmark { font-size: 1.2rem; }
  .nav-logo { gap: 8px; }
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-weight: 500; font-size: .94rem; color: var(--gray-700);
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--orange);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--blue); font-weight: 600; }

/* ── Nav dropdown ── */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-toggle {
  font-family: inherit;
  font-weight: 500; font-size: .94rem; color: var(--gray-700);
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 0;
  position: relative;
}
.nav-dropdown-toggle::before {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--orange);
  transition: width var(--t);
}
.nav-dropdown-toggle::after {
  content: '▾';
  font-size: .7em;
  transition: transform var(--t);
}
.nav-dropdown-toggle:hover { color: var(--blue); }
.nav-dropdown-toggle:hover::before,
.nav-dropdown.active .nav-dropdown-toggle::before { width: 100%; }
.nav-dropdown.active .nav-dropdown-toggle { color: var(--blue); font-weight: 600; }
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 48px -12px rgba(11,83,148,.22);
  border: 1px solid var(--gray-100);
  padding: 10px;
  min-width: 290px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--gray-700);
  font-weight: 500;
  font-size: .92rem;
  transition: background var(--t), color var(--t);
}
.nav-dropdown-menu a:hover { background: var(--blue-bg); color: var(--blue); }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a.dropdown-all {
  color: var(--orange);
  font-weight: 600;
}
.nav-dropdown-menu a.dropdown-all:hover { background: rgba(242,107,31,.08); color: var(--orange-dark); }
.nav-dropdown-menu .dropdown-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 6px 8px;
}

/* Mobile services group */
.mobile-services-group { padding: 6px 0 14px; border-bottom: 1px solid var(--gray-100); }
.mobile-services-group .mobile-services-title {
  font-weight: 700; color: var(--blue); padding: 14px 0 6px;
  font-size: .95rem;
}
.mobile-services-group a {
  display: block; padding: 10px 14px;
  font-size: .92rem; color: var(--gray-700);
  border-bottom: none;
}
.mobile-services-group a:hover { color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

/* ── Lang toggle ── */
.lang-toggle { display: flex; align-items: center; gap: 0; }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(11,83,148,.3);
  color: var(--gray-600);
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 11px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  line-height: 1;
}
.lang-btn:first-child { border-radius: var(--radius-pill) 0 0 var(--radius-pill); }
.lang-btn:last-child  { border-radius: 0 var(--radius-pill) var(--radius-pill) 0; border-left: none; }
.lang-btn.active      { background: var(--blue); color: #fff; border-color: var(--blue); }
.lang-btn:not(.active):hover { background: var(--gray-100); color: var(--blue); }
.hamburger { display: none; width: 28px; height: 28px; flex-direction: column; justify-content: center; gap: 6px; }
.hamburger span { display: block; width: 100%; height: 2.5px; background: var(--blue); border-radius: 2px; transition: all var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--gray-100);
  padding: 24px; z-index: 999;
  max-height: calc(100vh - 72px); overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 0; font-weight: 500; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { width: 100%; margin-top: 16px; }

/* ── Language visibility toggle ── */
.lang-en { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  color: #fff;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.06), transparent 50%),
                    radial-gradient(circle at 80% 30%, rgba(242,107,31,.12), transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: .5;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p.lead { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 620px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; color: rgba(255,255,255,.85); font-size: .9rem; }
.hero-trust span::before { content: '✓ '; color: var(--orange-light); font-weight: 700; }

.hero-compact {
  padding: 60px 0 70px;
}
.hero-compact h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }

/* ===== HERO SPLIT (homepage with form) ===== */
.hero-split { padding: 80px 0 100px; }
.hero-split .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-split .hero-copy h1 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 18px; }
.hero-split .hero-copy p.lead { font-size: 1.05rem; margin-bottom: 28px; }
.hero-split .hero-ctas { margin-bottom: 22px; }
.hero-split .hero-trust { font-size: .88rem; gap: 18px; }

.hero-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 30px 80px rgba(7, 30, 60, .35), 0 8px 24px rgba(7, 30, 60, .18);
  position: relative;
  overflow: hidden;
}
.hero-form-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 50%, var(--blue-light) 100%);
}
.hero-form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--blue-dark);
  margin: 8px 0 6px;
}
.hero-form-sub {
  color: var(--gray-500);
  font-size: .92rem;
  margin-bottom: 22px;
}
.hero-form-card .form-field { margin-bottom: 14px; }
.hero-form-card .form-field input,
.hero-form-card .form-field select,
.hero-form-card .form-field textarea {
  padding: 11px 14px;
  font-size: .95rem;
}
.hero-form-card .form-field textarea { min-height: 80px; }
.hero-form-card .form-row { margin-bottom: 14px; }
.hero-form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: 12px;
}

@media (max-width: 980px) {
  .hero-split { padding: 60px 0 70px; }
  .hero-split .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-form-card { padding: 26px; }
}
@media (max-width: 600px) {
  .hero-form-card { padding: 22px; }
  .hero-form-title { font-size: 1.25rem; }
}

/* ===== REASSURANCE BAND ===== */
.reassurance {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.reassurance-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px 32px; box-shadow: var(--shadow-lg);
}
.reassurance-item { display: flex; gap: 14px; align-items: flex-start; }
.reassurance-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-bg); color: var(--blue);
  border-radius: 12px; display: grid; place-items: center;
  font-size: 1.4rem;
}
.reassurance-item h4 { font-size: .98rem; margin-bottom: 2px; }
.reassurance-item p { font-size: .82rem; color: var(--gray-500); margin: 0; }
@media (max-width: 900px) { .reassurance-grid { grid-template-columns: repeat(2, 1fr); padding: 20px; } }
@media (max-width: 540px) { .reassurance-grid { grid-template-columns: 1fr; } }

/* ===== CARDS ===== */
.card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); transition: all var(--t);
  border: 1px solid var(--gray-100);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 56px; height: 56px;
  background: var(--blue-bg); color: var(--blue);
  border-radius: 14px; display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: .95rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; color: var(--orange); font-weight: 600; font-size: .92rem;
}
.card-link:hover { color: var(--orange-dark); gap: 10px; }

/* Service cards (avec icône orange) */
.card-service { position: relative; cursor: pointer; }
.card-service .card-icon { background: rgba(242,107,31,.1); color: var(--orange); }
.card-service .card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
}

/* Card avec photo en tête */
.card-photo {
  width: calc(100% + 64px);
  margin: -32px -32px 24px -32px;
  height: 190px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.card-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .4s ease;
}
.card:hover .card-photo img { transform: scale(1.04); }

/* ===== STEPS (3 étapes) ===== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.step { text-align: center; }
.step-num {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: var(--blue); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(11,83,148,.25);
}
.step h3 { margin-bottom: 10px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; gap: 24px; } }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--orange); margin-bottom: 14px; font-size: 1rem; letter-spacing: 2px; }
.testimonial p { font-size: .95rem; color: var(--gray-700); font-style: italic; margin-bottom: 16px; }
.testimonial-author { font-weight: 600; color: var(--gray-900); font-size: .92rem; }
.testimonial-meta { font-size: .82rem; color: var(--gray-500); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.google-banner {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  background: #fff; border-radius: var(--radius); padding: 18px 28px;
  box-shadow: var(--shadow); margin-bottom: 40px; flex-wrap: wrap;
}
.google-stars { color: var(--orange); font-size: 1.4rem; letter-spacing: 3px; }
.google-rating { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--blue); }

/* ===== ZONES (cities) ===== */
.zones-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 32px; }
.zone-card { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--gray-100); }
.zone-card h3 { color: var(--blue); margin-bottom: 10px; }
.zone-card p { font-size: .92rem; }
@media (max-width: 800px) { .zones-grid { grid-template-columns: 1fr; } }

/* ===== AVANT / APRÈS SLIDER ===== */
.section-avantapres { padding: 80px 0; background: var(--gray-900); }
.section-avantapres .section-header { margin-bottom: 40px; }
.section-avantapres .section-header h2,
.section-avantapres .section-header p { color: #fff; }
.section-avantapres .eyebrow { color: var(--orange-light); }

.compare-wrapper {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  aspect-ratio: 4 / 3;
  background: #000;
  user-select: none;
  cursor: ew-resize;
}
.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.compare-after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 50%);
}
.label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  border-radius: 6px;
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.label::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.label-before { left: 20px; background: rgba(220,38,38,.85); box-shadow: 0 6px 20px rgba(220,38,38,.4); }
.label-after  { right: 20px; background: rgba(11,83,148,.9); box-shadow: 0 6px 20px rgba(11,83,148,.5); }
.slider-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, transparent 0%, #fff 12%, #fff 88%, transparent 100%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 4;
  box-shadow: 0 0 20px rgba(255,255,255,.5);
}
.slider-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 0 5px rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
  transition: transform .15s ease;
  color: var(--blue-dark);
}
.compare-wrapper:hover .slider-handle { transform: translate(-50%,-50%) scale(1.08); }

@keyframes hintSlide {
  0%,100% { transform: translate(-50%,-50%); }
  50%      { transform: translate(calc(-50% - 28px),-50%); }
}
.compare-wrapper.hint .slider-handle { animation: hintSlide 1.6s ease-in-out .4s 2; }

@media (max-width: 700px) {
  .compare-wrapper { aspect-ratio: 3 / 4; border-radius: var(--radius); }
  .label { font-size: .68rem; padding: 6px 12px; top: 14px; }
  .label-before { left: 14px; }
  .label-after  { right: 14px; }
  .slider-handle { width: 42px; height: 42px; }
}

/* ===== PROOF / PHOTO SECTION ===== */
.section-proof {
  padding: 80px 0;
  background: var(--off-white);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.proof-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.proof-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.proof-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(242,107,31,.45);
}
.proof-badge-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}
.proof-badge-label {
  font-size: .8rem;
  font-weight: 600;
  opacity: .9;
}
.proof-content h2 { margin-bottom: 16px; }
.proof-lead {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.proof-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-list li {
  color: var(--gray-700);
  font-size: .97rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; gap: 36px; }
  .proof-img { height: 340px; }
}

/* ===== FORM ===== */
.form-card {
  background: #fff; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-lg); max-width: 640px; margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: .88rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  background: var(--off-white); color: var(--gray-900);
  transition: border-color var(--t), background var(--t);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--gray-600); margin-bottom: 20px; }
.form-checkbox input { margin-top: 3px; }
.form-card .btn { width: 100%; }
.form-note { text-align: center; font-size: .82rem; color: var(--gray-500); margin-top: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } .form-card { padding: 28px; } }

/* ===== FAQ (accordéon) ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-cat { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--orange); margin: 32px 0 14px; text-transform: uppercase; letter-spacing: .08em; }
.faq-item {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  font-weight: 600; color: var(--gray-900); font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q::after { content: '+'; font-size: 1.6rem; color: var(--orange); transition: transform var(--t); flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all .3s ease; color: var(--gray-600); }
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 600px; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--t); border: 1px solid var(--gray-100);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: grid; place-items: center; color: #fff; font-size: 3rem;
}
.blog-card-img.orange { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%); }
.blog-card-img.green  { background: linear-gradient(135deg, #16A34A 0%, #4ADE80 100%); }
.blog-card-img.purple { background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%); }
.blog-card-body { padding: 24px; }
.blog-tag { font-size: .76rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; }
.blog-card h3 { font-size: 1.1rem; margin: 8px 0 10px; }
.blog-card p { font-size: .92rem; color: var(--gray-600); margin-bottom: 14px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* Article post */
.article {
  max-width: 760px; margin: 0 auto; padding: 60px 24px;
}
.article .meta { color: var(--gray-500); font-size: .9rem; margin-bottom: 12px; }
.article h1 { margin-bottom: 24px; }
.article h2 { margin: 40px 0 16px; color: var(--blue); }
.article h3 { margin: 28px 0 12px; }
.article p { font-size: 1.05rem; margin-bottom: 18px; line-height: 1.75; }
.article ul, .article ol { padding-left: 24px; margin-bottom: 20px; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li { margin-bottom: 8px; color: var(--gray-700); }
.article blockquote {
  border-left: 4px solid var(--orange);
  background: var(--off-white);
  padding: 20px 24px; margin: 24px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic; color: var(--gray-700);
}
.article table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.article th, .article td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--gray-100); }
.article th { background: var(--blue-bg); color: var(--blue); font-weight: 600; }
.article-cta {
  background: var(--blue-bg); border-radius: var(--radius-lg); padding: 28px;
  margin: 40px 0; text-align: center;
}
.article-cta p { color: var(--gray-700); margin-bottom: 16px; }

/* ===== AVANT/APRÈS GALLERY ===== */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.gallery-item {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--gray-100);
  height: 180px;
}
.gallery-imgs > div { display: grid; place-items: center; color: #fff; font-weight: 600; font-size: .85rem; }
.gallery-before { background: linear-gradient(135deg, #6B7280, #4B5563); }
.gallery-after { background: linear-gradient(135deg, #10B981, #059669); }
.gallery-caption { padding: 14px 16px; font-size: .88rem; color: var(--gray-700); }
@media (max-width: 800px) { .gallery { grid-template-columns: 1fr; } }

/* ===== SERVICE PAGE ===== */
.service-detail { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .service-detail { grid-template-columns: 1fr; } }
.service-content h2 { color: var(--blue); margin: 40px 0 16px; }
.service-content h2:first-child { margin-top: 0; }
.service-content p { margin-bottom: 16px; }
.service-content ul { padding-left: 20px; margin-bottom: 20px; list-style: none; }
.service-content ul li { padding: 6px 0; padding-left: 28px; position: relative; color: var(--gray-700); }
.service-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.service-sidebar {
  background: var(--blue-bg); border-radius: var(--radius-lg); padding: 28px;
  position: sticky; top: 96px;
}
.service-sidebar h3 { color: var(--blue); margin-bottom: 12px; }
.service-sidebar .price { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 1.6rem; color: var(--blue); margin: 14px 0 4px; }
.service-sidebar .price-note { font-size: .82rem; color: var(--gray-500); margin-bottom: 18px; }
.service-sidebar .btn { width: 100%; margin-bottom: 8px; }

.method-steps { counter-reset: step; }
.method-step { padding: 20px 0; border-bottom: 1px solid var(--gray-100); display: flex; gap: 20px; }
.method-step:last-child { border-bottom: none; }
.method-step::before {
  counter-increment: step; content: counter(step);
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--orange); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-family: 'Poppins',sans-serif; font-weight: 700;
}
.method-step h4 { color: var(--gray-900); margin-bottom: 4px; }
.method-step p { color: var(--gray-600); font-size: .94rem; margin: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-dark); color: #ffffff;
  padding: 60px 0 24px;
  font-size: .9rem;
}
.footer p { color: #ffffff; }
.footer h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 0; padding-bottom: 40px; }
.footer a { display: block; color: #ffffff; padding: 4px 0; }
.footer a:hover { color: var(--orange-light); }
.footer-logo {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.footer-logo img {
  height: 64px;
  width: auto;
  display: block;
}
.footer-logo .wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: #ffffff;
  letter-spacing: -.02em;
}
.footer-logo .wordmark .accent { color: var(--orange-light); }
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s;
}
.footer-contact-link:hover { opacity: 1; }
.footer-contact-link svg { flex-shrink: 0; opacity: .7; }

.footer-social { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: background var(--t), transform var(--t);
  width: fit-content;
}
.social-link:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
  color: #fff;
}
.social-fb:hover { background: #1877F2; border-color: #1877F2; }
.social-ig:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.social-li:hover { background: #0A66C2; border-color: #0A66C2; }


.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,.5); font-size: .82rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE NAV FIXES ===== */
@media (max-width: 600px) {
  /* Cacher le bouton CTA dans la nav — déjà dans le menu hamburger */
  .nav-cta .btn-sm { display: none; }
  /* Réduire le gap pour que le wordmark soit visible */
  .nav-inner { padding: 0 16px; }
  .nav-cta { gap: 10px; }
  /* Réduire la taille du lang toggle */
  .lang-btn { padding: 4px 8px; font-size: .78rem; }
}

/* ===== FLOATING CTA (mobile) ===== */
.float-cta {
  display: none;
  position: fixed; bottom: 16px; right: 16px; z-index: 100;
  background: var(--orange); color: #fff;
  width: 60px; height: 60px; border-radius: 50%;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(242,107,31,.4);
  font-size: 1.5rem;
  transition: transform var(--t);
}
.float-cta:hover { transform: scale(1.1); }
@media (max-width: 700px) { .float-cta { display: flex; } }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 14px; }

/* ===== CTA SECTION ===== */
.cta-final {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff; text-align: center;
  padding: 80px 0;
}
.cta-final h2 { color: #fff; margin-bottom: 14px; }
.cta-final p { color: rgba(255,255,255,.9); margin-bottom: 28px; font-size: 1.1rem; }

/* ===== UTILITIES ===== */
.mt-0 { margin-top: 0; } .mt-16 { margin-top: 16px; } .mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; } .mb-16 { margin-bottom: 16px; } .mb-32 { margin-bottom: 32px; }
.text-orange { color: var(--orange); }
.text-blue { color: var(--blue); }
.bg-orange { background: var(--orange); }
