/* ============================================================
   HSERVICES75 — Editorial-Industriel
   Design opinionated · Bento bold · Typography XXL
   ============================================================ */

/* Polices chargées via <link> dans le <head> HTML (non render-blocking en cascade) */

/* ===== SKIP LINK (accessibilité) ===== */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 1000;
  background: #1a1a1a;
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* ===== LIEN AVIS GOOGLE (footer) ===== */
.footer-review {
  margin-top: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-review { color: #f5a623; }
.footer-review:hover { color: #ffb733; text-decoration: underline; }

/* ===== TOKENS ===== */
:root {
  --orange: #EB6324;
  --orange-50: #FFF1E8;
  --orange-100: #FFE0CC;
  --orange-200: #FFC299;
  --orange-300: #FFA366;
  --orange-500: #EB6324;
  --orange-600: #C24A12;
  --orange-700: #8E3608;

  --blue: #1E5E8C;
  --blue-50: #E8F1F8;
  --blue-100: #C6DAEB;
  --blue-200: #8DB6D7;
  --blue-500: #1E5E8C;
  --blue-600: #0F3F65;
  --blue-700: #07294D;

  --ink: #0A0A0A;
  --ink-2: #1F1F1F;
  --ink-3: #4A4A4A;
  --ink-4: #707070;

  --paper: #FCFAF6;
  --paper-2: #F5F1E8;
  --paper-3: #EFEAE0;

  --line: #E5DFD3;
  --line-strong: #C9C2B0;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Menlo', monospace;

  --container: 1480px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --shadow-flat: 4px 4px 0 var(--ink);
  --shadow-flat-orange: 6px 6px 0 var(--orange);
  --shadow-flat-blue: 6px 6px 0 var(--blue);
  --shadow-soft: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.05);

  --t-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Compat aliases */
  --dark: var(--paper); --dark-2: #FFFFFF; --dark-3: var(--paper-2); --dark-4: var(--paper-3);
  --text: var(--ink); --text-2: var(--ink-2); --text-3: var(--ink-3); --text-muted: var(--ink-4);
  --orange-bg: var(--orange-50); --orange-light: var(--orange-300); --orange-dark: var(--orange-600);
  --blue-bg: var(--blue-50); --blue-light: var(--blue-200); --blue-dark: var(--blue-600);
  --gold: var(--orange); --gold-bg: var(--orange-50);
  --border: var(--line); --border-strong: var(--line-strong);
  --white: #FFFFFF; --grey: var(--ink-3); --grey-light: var(--ink-4);
  --light: var(--paper); --light-2: var(--paper-2);
  --radius: var(--r-md); --radius-lg: var(--r-lg);
  --transition: var(--t-base); --shadow: var(--shadow-soft);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-gold: var(--shadow-flat-orange); --shadow-orange: var(--shadow-flat-orange);
  --max-w: var(--container); --container-px: var(--gutter);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 { font-size: clamp(2.6rem, 7vw, 6rem); }
h2 { font-size: clamp(2.1rem, 5vw, 4.2rem); letter-spacing: -0.04em; line-height: 1.05; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); letter-spacing: -0.025em; line-height: 1.15; }

em { font-style: normal; color: var(--orange); }

/* ===== CONTAINERS ===== */
.container, .lp-hero-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0 0 22px 22px;
  padding: 0.7rem 1.25rem 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background var(--t-base), box-shadow var(--t-base), transform 0.32s ease;
}

header.scrolled {
  background: rgba(239, 234, 224, 0.92);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.logo span { color: var(--orange); }

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  transition: all var(--t-fast);
}

.main-nav a:hover { background: var(--ink); color: var(--paper); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.lp-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.6rem 0.9rem;
  border-radius: 100px;
  transition: all var(--t-fast);
}

.lp-header-phone:hover { background: var(--paper-2); }

.nav-toggle { display: none; }

@media (max-width: 950px) {
  .main-nav { display: none; }
  .lp-header-phone span { display: none; }
}

/* ===== MOBILE (toutes pages) : burger gauche, logo centré, menu déroulant ===== */
@media (max-width: 950px) {
  /* Burger à gauche */
  header .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    order: -1;
    width: 36px;
    height: 36px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
  }
  header .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  header .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  header .nav-toggle.open span:nth-child(2) { opacity: 0; }
  header .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Logo centré entre le burger et le bouton Devis */
  header .logo {
    flex: 1;
    justify-content: center;
  }

  /* Icône téléphone retirée du header */
  header .lp-header-phone { display: none; }

  /* Menu déroulant sous le header */
  header .main-nav {
    display: block;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    background: var(--paper);
    border: 1.5px solid var(--ink);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 14px 36px rgba(0,0,0,0.14);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  header .main-nav.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  header .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }
  header .main-nav a {
    padding: 0.8rem 1rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid var(--ink);
    border-radius: 12px;
    box-shadow: 2px 2px 0 var(--ink);
    transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.12s ease;
  }
  header .main-nav a:hover,
  header .main-nav a:active {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    box-shadow: 2px 2px 0 var(--orange);
    transform: translate(-1px, -1px);
  }
}

/* ===== Bouton téléphone flottant (mobile, toutes pages) ===== */
.float-phone { display: none; }
@media (max-width: 950px) {
  .float-phone {
    display: flex;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(235,99,36,0.45);
    z-index: 200;
    transition: transform 0.15s ease;
  }
  .float-phone:active { transform: scale(0.93); }
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary, .btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t-base);
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: #FFFFFF;
  padding: 1rem 1.7rem;
  font-size: 0.95rem;
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235,99,36,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 1rem 1.7rem;
  font-size: 0.95rem;
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1.25rem;
  font-size: 0.85rem;
}

.btn-nav:hover { background: var(--orange); }

.lp-cta-xl { padding: 1.1rem 1.9rem !important; font-size: 1rem !important; }

/* ===== SECTIONS ===== */
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.section-alt { background: var(--paper-2); }

.section-header { margin-bottom: clamp(3rem, 6vw, 5rem); max-width: 900px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-top: 0.85rem; margin-bottom: 1rem; }

.section-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 720px;
  font-weight: 400;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--orange);
}

/* ============================================================
   HERO — Editorial asymmetric
   ============================================================ */
.lp-hero {
  padding: 9rem 0 8rem;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

/* Bulle artisan flottante — home uniquement, défile avec le hero */
.hero-artisan-bubble { display: none; }

body.home .hero-artisan-bubble {
  display: block;
  position: absolute;
  border-radius: 50%;
  overflow: visible;
  z-index: 5;
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}

body.home .hero-artisan-bubble img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
  border: 3px solid var(--paper);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22), 0 0 0 1.5px var(--ink);
  box-sizing: border-box;
}

/* Au repos : ombre + 1.5px d'encre autour de l'image */
body.home .hero-artisan-bubble img {
  transition: box-shadow 0.32s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
/* Hover : trait orange autour, léger lift, ombre renforcée */
body.home .hero-artisan-bubble:hover img,
body.home .hero-artisan-bubble:focus-visible img,
body.home .hero-artisan-bubble.is-zoomed img {
  box-shadow:
    0 16px 32px rgba(0,0,0,0.28),
    0 0 0 1.5px var(--ink),
    0 0 0 4px var(--orange);
  transform: translateY(-2px);
}

/* Zoom x3 au clic, revient à la normale au mouseleave (JS gère la classe) */
body.home .hero-artisan-bubble.is-zoomed {
  transform: scale(3);
  z-index: 50;
}

/* Desktop : dans la gouttière */
@media (min-width: 769px) {
  body.home .hero-artisan-bubble {
    top: 14rem;
    left: 52%;
    right: auto;
    margin-left: -48px;
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 768px) {
  body.home .hero-artisan-bubble {
    top: 6.5rem;
    right: 1.1rem;
    width: 70px;
    height: 70px;
  }
  body.home .hero-artisan-bubble--2,
  body.home .hero-artisan-bubble--3 { display: none; }
}

@media (min-width: 769px) {
  body.home .hero-artisan-bubble--2 { top: 25rem; }
  body.home .hero-artisan-bubble--3 { top: 36rem; }
}
body.home .hero-artisan-bubble--2 img,
body.home .hero-artisan-bubble--3 img { object-position: 50% 50%; }

@media (prefers-reduced-motion: reduce) {
  body.home .hero-artisan-bubble { transition: none; }
  body.home .hero-artisan-bubble::after { animation: none; }
  body.home .hero-artisan-bubble.is-zoomed { transform: none; }
}

.lp-hero::before {
  display: none;
}

.lp-hero::after {
  display: none;
}

.lp-hero-content { position: relative; z-index: 2; }

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.lp-hero-form { margin-top: 4.5rem; }

@media (max-width: 1000px) {
  .lp-hero-form { margin-top: 0; }
}

@media (max-width: 1000px) { .lp-hero-grid { grid-template-columns: 1fr; gap: 3rem; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 2.5rem;
  border-radius: 0;
}

.hero-badge::before {
  content: '№ 01';
  font-weight: 600;
  color: var(--orange);
}

.hero-badge span { display: inline-flex; gap: 0.5rem; }
.hero-badge span::before { content: '·'; color: var(--ink-4); }

.lp-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 2.5rem;
  color: var(--ink);
}

.lp-hero-text h1 em {
  font-style: italic;
  color: var(--orange);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.lp-hero-text h1 em::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.12em;
  background: var(--orange);
  opacity: 0.2;
}

.lp-hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 640px;
  font-weight: 400;
}

.lp-hero-sub strong { color: var(--ink); font-weight: 700; }

.lp-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.25rem; }

.lp-hero-checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  padding-top: 2.5rem;
  border-top: 1.5px solid var(--ink);
}

.lp-hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-2);
}

.lp-hero-checks svg { color: var(--orange); flex-shrink: 0; }

.hero-google-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--ink-2);
}

.hgr-stars { color: var(--orange); font-size: 1.05rem; letter-spacing: 0.05em; }
.hgr-text strong { font-weight: 700; }
.hgr-text a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ===== HERO FORM ===== */
.lp-hero-form {
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-flat-orange);
  position: relative;
  transition: transform var(--t-base);
}

.lp-hero-form:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--orange); }

.lp-hero-form::before {
  content: 'DEVIS · GRATUIT';
  position: absolute;
  top: -0.9rem;
  left: 1.25rem;
  background: var(--orange);
  color: #FFF;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
}

.lp-form-header { margin-bottom: 1.25rem; }

.lp-form-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.lp-form-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.35rem;
}

.lp-form-header p { font-size: 0.88rem; color: var(--ink-3); }

.lp-form { display: flex; flex-direction: column; gap: 0.85rem; }

.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 480px) { .lp-form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.3rem; }

.form-group label, .lp-form label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.lp-form input, .lp-form select, .lp-form textarea,
.form-group input, .form-group select, .form-group textarea {
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--ink);
  width: 100%;
  transition: all var(--t-fast);
}

.lp-form input:focus, .lp-form select:focus, .lp-form textarea:focus,
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-100);
  background: #FFFFFF;
}

.lp-form-submit {
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  padding: 0.9rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--t-base);
  margin-top: 0.25rem;
}

.lp-form-submit:hover { background: var(--orange); border-color: var(--orange); }

.lp-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  margin-top: 0.5rem;
}

/* ============================================================
   TRUST BAND — Black bar
   ============================================================ */
.trust-band {
  background: var(--ink);
  color: var(--paper);
  padding: 1.75rem 0;
  overflow: hidden;
}

.trust-band-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1;
}

.trust-item span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--paper-3);
  text-transform: uppercase;
}

/* ===== PARCOURS CLIENT — version éditoriale ===== */
.process-band {
  padding: clamp(2rem, 3.5vw, 3rem) 0;
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  color: var(--ink);
}
/* Barre de progression de scroll en haut de la bande */
.process-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-600) 100%);
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress, 0));
  transition: transform 0.08s linear;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(235, 99, 36, 0.45);
  z-index: 2;
}
/* Filet bas conservé pour fermer la bande proprement */
.process-band::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(235, 99, 36, 0.35) 25%,
    rgba(235, 99, 36, 0.55) 50%,
    rgba(235, 99, 36, 0.35) 75%,
    transparent 100%);
  pointer-events: none;
}

.process-band .trust-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
}

.process-step-band {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex: 1 1 0;
  min-width: 240px;
  padding: 0.25rem 1.5rem;
  transition: transform 0.35s ease;
}
.process-step-band:first-child { padding-left: 0; }
.process-step-band:last-child  { padding-right: 0; }
.process-step-band:hover { transform: translateY(-2px); }

/* Numéros typographiques façon éditoriale */
.psb-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--orange);
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  /* Très léger filet sous le numéro pour le faire respirer */
  padding-bottom: 0.35rem;
}
.psb-num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.4rem;
  height: 2px;
  background: var(--orange);
  opacity: 0.55;
}

.psb-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.35rem;
  min-width: 0;
}
.psb-text strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
}
.psb-text span {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

/* Séparateurs verticaux en dégradé orange (au lieu des flèches) */
.psb-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(235, 99, 36, 0.45) 50%,
    transparent 100%);
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .process-band { padding: 1.5rem 0; }
  .process-band .trust-band-inner { flex-direction: column; align-items: stretch; gap: 1.25rem; }
  .psb-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(235, 99, 36, 0.45) 50%,
      transparent 100%);
  }
  .process-step-band { min-width: 0; padding: 0; }
}

/* ============================================================
   SERVICES — Bento
   ============================================================ */
.services-section { background: var(--paper); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(170px, auto);
  gap: 1rem;
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #FFFFFF;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base);
  text-decoration: none;
  color: inherit;
  grid-column: span 4;
}

@media (max-width: 900px) { .service-card { grid-column: span 1 !important; grid-row: auto !important; } }

/* Grille uniforme : 4 colonnes égales, 12 cartes identiques */
.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card { grid-column: span 1 !important; grid-row: auto !important; }

@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Effets hover réservés aux appareils avec vrai survol (desktop) —
   évite le bug du :hover "collant" sur tactile qui demande un double tap */
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--ink);
  }
  .service-card:hover::after { opacity: 1; transform: translate(3px, -3px); }
}

.service-card::after {
  content: '↗';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.4;
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.05);
  border-radius: var(--r-md);
  flex-shrink: 0;
}

/* uniform icon style */

.service-card h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

/* uniform h3 size */

.service-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-3);
  margin-bottom: 1rem;
  flex: 1;
}

/* uniform p style */

.service-card-price {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

/* uniform price style */

.lp-section-cta { margin-top: 3rem; text-align: center; }

/* ============================================================
   TARIFS
   ============================================================ */
.pricing-section { background: var(--paper-2); position: relative; }

.pricing-section::before {
  content: '€€';
  position: absolute;
  bottom: 5%;
  right: 5%;
  font-family: var(--font-display);
  font-size: clamp(15rem, 30vw, 32rem);
  font-weight: 800;
  color: var(--blue);
  opacity: 0.04;
  pointer-events: none;
  line-height: 0.8;
}

.pricing-section .container { position: relative; z-index: 1; }

.pricing-table-wrap {
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-flat);
}

.pricing-table { width: 100%; border-collapse: collapse; }

.pricing-table thead {
  background: var(--ink);
  color: var(--paper);
}

.pricing-table thead th {
  text-align: left;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background var(--t-fast);
}

.pricing-table tbody tr:hover { background: var(--orange-50); }
.pricing-table tbody tr:last-child { border-bottom: 0; }

.pricing-table tbody td {
  padding: 0.85rem 1.15rem;
  vertical-align: middle;
}

.pricing-table tbody td strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.1rem;
  color: var(--ink);
}

.pricing-table tbody td span {
  font-size: 0.76rem;
  color: var(--ink-3);
  font-weight: 400;
}

.pricing-table tbody td:nth-child(2) {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.pricing-table tbody td:nth-child(3) {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-2);
}

.pricing-highlight {
  background: linear-gradient(90deg, var(--orange-50) 0%, transparent 100%);
  border-left: 4px solid var(--orange);
}

.pricing-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-3);
  max-width: 700px;
  margin: 2rem auto 0;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .pricing-table thead th:last-child, .pricing-table tbody td:last-child { display: none; }
  .pricing-table thead th, .pricing-table tbody td { padding: 0.9rem 1rem; }
}

/* ============================================================
   RÉALISATIONS
   ============================================================ */
.realisations-section { background: var(--paper); }
/* Rapprocher la section du bouton CTA des services au-dessus */
#realisations.realisations-section { padding-top: clamp(2rem, 4vw, 3.5rem); }

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: realisation;
}

@media (max-width: 900px) { .realisations-grid { grid-template-columns: 1fr; } }

.realisation-card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 1.5rem;
  border-top: 2px solid var(--ink);
  border-left: 0; border-right: 0; border-bottom: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform var(--t-base);
  overflow: visible;
}

.realisation-card:hover { transform: translateY(-4px); }
.realisation-card:has(.realisation-card-link) { cursor: pointer; }

.realisation-card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  text-decoration: none;
  border-radius: inherit;
  /* Lien invisible mais accessible */
}
.realisation-card-link:focus-visible {
  outline: 2px solid var(--accent, #EB6324);
  outline-offset: 4px;
}

.realisation-card::before {
  counter-increment: realisation;
  content: '0' counter(realisation);
  position: absolute;
  top: 1.5rem;
  right: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}

.realisation-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-md);
  margin-bottom: 1.25rem;
  position: relative;
  background: var(--paper-2);
}

.realisation-img svg,
.realisation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.realisation-card:hover .realisation-img img { transform: scale(1.04); }

.realisation-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.3rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}

.realisation-body { padding: 0; }

.realisation-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

.realisation-body ul {
  list-style: none;
  margin-bottom: 1.25rem;
  padding: 0;
}

.realisation-body li {
  font-size: 0.92rem;
  color: var(--ink-2);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}

.realisation-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1.5px;
  background: var(--orange);
}

.realisation-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.realisation-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.realisation-meta span {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

.realisation-meta strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.realisation-stats span {
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

.realisation-stats strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.1rem;
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.avis-section { background: var(--paper-2); }

.lp-rating-overall {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-2);
}

.lp-stars { color: var(--orange); letter-spacing: 0.1em; font-size: 1rem; }

.lp-temoignages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) { .lp-temoignages { grid-template-columns: 1fr; } }

.lp-temoignage {
  background: #FFFFFF;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative;
  transition: all var(--t-base);
  box-shadow: none;
}

.lp-temoignage:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--orange); }

.lp-temoignage::before { display: none; }

.lp-temoignage .lp-stars {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 1.25rem;
  display: block;
}

.lp-temoignage p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.lp-temoignage footer {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-3);
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  letter-spacing: 0.05em;
}

.lp-temoignage footer strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  display: block;
  margin-bottom: 0.2rem;
  font-style: normal;
  text-transform: none;
}

/* ============================================================
   COMPARAISON
   ============================================================ */
.comparison-section { background: var(--paper); }

.comparison-table-wrap {
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: var(--shadow-flat);
}

.comparison-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.comparison-table thead { background: var(--ink); color: var(--paper); }

.comparison-table thead th {
  padding: 1.15rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  background: var(--ink);
}

.comparison-table thead th:first-child { text-align: left; background: var(--ink); }

.comparison-table thead th.ct-us {
  background: var(--orange);
  color: #FFFFFF;
  position: relative;
}

.comparison-table thead th.ct-us::after { display: none; }

.comparison-table tbody td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  text-align: center;
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.comparison-table tbody tr:hover { background: var(--paper-2); }

.comparison-table td.ct-us {
  background: var(--orange-50);
  border-left: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  font-weight: 600;
  color: var(--ink);
}

.ct-yes { color: var(--orange); font-weight: 700; }
.ct-no { color: var(--ink-4); }

/* ============================================================
   ZONES
   ============================================================ */
.zones-section { background: var(--paper-2); position: relative; }

.zones-section::before {
  content: 'PARIS';
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 800;
  color: var(--ink);
  opacity: 0.04;
  letter-spacing: -0.07em;
  pointer-events: none;
  line-height: 0.8;
  white-space: nowrap;
}

.zones-section .container { position: relative; z-index: 1; }

.zones-block {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.zones-paris, .zones-idf {
  background: #FFFFFF;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: none;
}

.zones-paris h3, .zones-idf h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.zones-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Le span quartier à l'intérieur du tag <a> = simple texte, pas une pastille */
.zones-tags span {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.zones-dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.zone-dep {
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  transition: all var(--t-fast);
  background: transparent;
}

.zone-dep:hover { border-color: var(--ink); background: var(--paper); }

.zone-dep strong {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--r-sm);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  margin-right: 0;
  width: max-content;
}

.zone-dep > * { font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.zone-dep span { font-size: 0.78rem; color: var(--ink-3); font-weight: 400; margin-top: 0.25rem; background: none; padding: 0; border: 0; border-radius: 0; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--paper); }

.faq-list { max-width: 880px; margin: 0 auto; }

.faq-item {
  border-top: 1.5px solid var(--ink);
  padding: 0;
  margin: 0;
  list-style: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.faq-item:last-of-type { border-bottom: 1.5px solid var(--ink); }

.faq-item summary, .faq-question {
  cursor: pointer;
  padding: 1.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  list-style: none;
  transition: color var(--t-fast);
  background: none;
  border: none;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: -0.1rem;
  transition: transform var(--t-base);
  line-height: 1;
}

.faq-item[open] summary::before { transform: rotate(45deg); }
.faq-item:hover summary { color: var(--orange); }

.faq-q-icon { display: none; }
.faq-q-text { flex: 1; }

.faq-answer {
  padding: 0 0 1.5rem 2.5rem;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-answer p { margin-bottom: 0.85rem; }
.faq-answer ul { padding-left: 1.25rem; margin-bottom: 0.85rem; }
.faq-answer li { margin-bottom: 0.3rem; }
.faq-answer strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.lp-cta-final {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.lp-cta-final::before {
  content: 'DEVIS';
  position: absolute;
  top: -10%;
  left: -3%;
  font-family: var(--font-display);
  font-size: clamp(15rem, 30vw, 32rem);
  font-weight: 800;
  color: var(--orange);
  opacity: 0.12;
  letter-spacing: -0.08em;
  pointer-events: none;
  line-height: 0.8;
}

.lp-cta-final::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--orange) 0%, var(--orange) 33%,
    var(--blue) 33%, var(--blue) 66%,
    #FFFFFF 66%);
  z-index: 2;
}

.lp-cta-final .container { position: relative; z-index: 1; }

.lp-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 950px) { .lp-cta-grid { grid-template-columns: 1fr; } }

.lp-cta-left .section-tag { color: var(--orange-200); }
.lp-cta-left .section-tag::before { background: var(--orange); }

.lp-cta-left h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.lp-cta-left h2 em { color: var(--orange); font-style: italic; }

.lp-cta-left > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  line-height: 1.55;
}

.lp-cta-phone {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  backdrop-filter: none;
}

.lp-cta-phone-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.lp-cta-phone-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--orange);
  text-decoration: none;
  transition: color var(--t-fast);
}

.lp-cta-phone-link:hover { color: var(--orange-200); }

.lp-cta-phone-hours {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

.lp-cta-reassurance {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  padding: 0;
}

.lp-cta-reassurance li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.lp-cta-reassurance svg { color: var(--orange); flex-shrink: 0; }

.lp-form-large {
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: 8px 8px 0 var(--orange);
  color: var(--ink);
  backdrop-filter: none;
}

.lp-form-large .form-group label, .lp-form-large .lp-form label { color: var(--ink-3); }

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  background: var(--paper);
  border-top: 1.5px solid var(--ink);
  padding: 3.5rem 0 1.5rem;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 750px) { .lp-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lp-footer-grid { grid-template-columns: 1fr; } }

.lp-footer-grid p {
  color: var(--ink-3);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 320px;
}

.lp-footer-grid strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--ink-3);
}

.lp-footer-grid a, .lp-footer-grid span {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--t-fast);
}

.lp-footer-grid a:hover { color: var(--orange); }

.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 1rem;
}

.lp-footer-bottom a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.footer-deco { display: none; }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 99;
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  padding: 0.4rem;
  gap: 0.4rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mobile-cta-call {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--paper);
  border-radius: 100px;
  padding: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-cta-call svg { color: var(--orange); }

.mobile-cta-devis {
  flex: 1.4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #FFFFFF;
  border-radius: 100px;
  padding: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 768px) {
  .mobile-cta { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================================
   FLOATING MENU BUBBLE (mobile only)
   ============================================================ */
.float-menu {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.5rem;
  /* Le conteneur ne doit pas intercepter les taps destinés au contenu derrière
     (sinon la zone invisible du panneau bloque les cartes en bas à droite) */
  pointer-events: none;
}

@media (max-width: 768px) {
  .float-menu { display: flex; }
}

/* Bouton bulle */
.float-menu-btn {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 18px rgba(235,99,36,0.45);
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-fast);
}

.float-menu-btn:active { transform: scale(0.93); }

.float-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Hamburger → X quand ouvert */
.float-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.float-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.float-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Panel menu */
.float-menu-panel {
  background: var(--ink);
  border-radius: 14px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  opacity: 0;
  transform: scale(0.88) translateY(8px);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.float-menu-panel.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.float-menu-panel a {
  color: rgba(255,255,255,0.75);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 9px;
  transition: background var(--t-fast), color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.float-menu-panel a:hover,
.float-menu-panel a:active { background: rgba(255,255,255,0.09); color: #fff; }

.float-menu-panel .fmp-devis {
  margin-top: 0.3rem;
  background: var(--orange);
  color: #fff;
  justify-content: center;
  font-weight: 700;
}

.float-menu-panel .fmp-devis:hover { background: var(--orange-600); }

.float-menu-panel .fmp-tel {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.15rem;
  padding-top: 0.7rem;
  color: var(--orange);
  font-size: 0.85rem;
}

.float-menu-panel .fmp-tel:hover { background: rgba(235,99,36,0.12); color: var(--orange); }

/* ============================================================
   MOBILE-ONLY OPTIMISATIONS (max 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* 1. Masquer le hero-badge sur mobile */
  .hero-badge { display: none !important; }

  /* 2. Réordonner les sections — HOME UNIQUEMENT (les autres pages gardent l'ordre naturel = desktop) */
  body.home main { display: flex; flex-direction: column; }
  body.home .lp-hero         { order: 1; }
  body.home .trust-band      { order: 2; }
  body.home .about-hany      { order: 3; }
  body.home #services        { order: 4; }
  body.home #realisations    { order: 5; }
  body.home #tarifs          { order: 6; }
  body.home .comparison-section { order: 8; }
  body.home .zones-section   { order: 9; }
  body.home .blog-section    { order: 10; }
  body.home #faq             { order: 11; }
  body.home .lp-cta-final    { order: 12; }

  /* 3. Témoignages compacts — HOME UNIQUEMENT */
  body.home .lp-temoignages { grid-template-columns: repeat(2, 1fr) !important; gap: 0.6rem; }
  body.home .lp-temoignage { padding: 0.85rem 1rem; }
  body.home .lp-temoignage p { display: none; }
  body.home .lp-temoignage footer { margin-top: 0; }

  /* 4. Tarifs section HOME : masquer colonne délai + lignes intermédiaires (la page /tarifs/ garde tout) */
  body.home .pricing-table thead th:last-child,
  body.home .pricing-table tbody td:last-child { display: none; }
  body.home .pricing-table tbody tr:nth-child(4),
  body.home .pricing-table tbody tr:nth-child(5),
  body.home .pricing-table tbody tr:nth-child(6) { display: none; }
  /* Prix orange sur une seule ligne, police réduite, collé à gauche */
  .pricing-table tbody td:nth-child(2) {
    white-space: nowrap;
    font-size: 0.85rem;
    letter-spacing: -0.03em;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    text-align: left;
  }
  .pricing-table thead th:nth-child(2) {
    padding-left: 0.4rem;
    text-align: left;
  }

  /* 5. Zones compactes */
  .zone-dep {
    padding: 0.6rem 0.75rem;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
  .zone-dep span { display: none; }
  /* Paris intra-muros : garder uniquement le code postal */
  .zones-tags .zone-quartier { display: none; }
  /* Réalisations : masquer le bloc de stats (chêne/massif, etc.) */
  .realisation-stats { display: none; }
  .zone-dep strong { margin-bottom: 0; font-size: 0.7rem; }
  .zones-dep-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .zones-tags a { font-size: 0.78rem; padding: 0.3rem 0.6rem; }
}

/* Bloc "Ressources officielles" (liens sortants d'autorité — blog) */
.article-sources { background: #F4F2EE; border-left: 4px solid #1E5E8C; border-radius: 8px; padding: 1.2rem 1.5rem; margin: 2.5rem 0; }
.article-sources h3 { font-size: 1.05rem; margin: 0 0 0.6rem; }
.article-sources ul { margin: 0; padding-left: 1.1rem; }
.article-sources li { margin-bottom: 0.35rem; font-size: 0.95rem; }
.article-sources a { color: #1E5E8C; text-decoration: underline; text-underline-offset: 2px; }
.article-sources a:hover { color: #EB6324; }

/* Prestations cliquables (page tarifs) → page spécialité */
.presta-link { text-decoration: none; color: inherit; cursor: pointer; }
.presta-link strong { transition: color 0.15s ease; }
.presta-link:hover strong { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }

/* Bouton "Détail des spécialités" (desktop) — noir */
.cta-desktop-only {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.cta-desktop-only:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

/* Carte "Toutes nos spécialités" — noir plein, MOBILE uniquement */
.service-card-more { display: none; }
body.home .service-card-more {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
body.home .service-card-more h3,
body.home .service-card-more .service-card-price,
body.home .service-card-more .service-card-icon { color: #fff; }
body.home .service-card-more p { color: rgba(255,255,255,0.85); }
body.home .service-card-more::after { color: #fff; opacity: 0.7; }

@media (max-width: 768px) {
  /* Carte "Toutes nos spécialités" visible sur mobile */
  body.home .service-card-more { display: flex; }
  /* Bouton "Détail des spécialités" masqué sur mobile (la carte noire fait le lien) */
  .cta-desktop-only { display: none !important; }
  /* Home : n'afficher que 5 spécialités les plus pertinentes + la carte "Toutes nos spécialités" */
  body.home .services-grid > .service-card:nth-child(3),
  body.home .services-grid > .service-card:nth-child(4),
  body.home .services-grid > .service-card:nth-child(5),
  body.home .services-grid > .service-card:nth-child(9),
  body.home .services-grid > .service-card:nth-child(10),
  body.home .services-grid > .service-card:nth-child(11),
  body.home .services-grid > .service-card:nth-child(12) { display: none; }
}

/* 6. Services : 2 colonnes compactes (480px) */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.65rem; }
  .service-card { padding: 1rem 0.85rem; }
  .service-card-icon { margin-bottom: 0.5rem; }
  .service-card-icon svg { width: 26px; height: 26px; }
  .service-card h3 { font-size: 0.85rem; margin-bottom: 0.25rem; }
  .service-card p { font-size: 0.75rem; margin-bottom: 0.4rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .service-card-price { font-size: 0.75rem; }
}

/* ============================================================
   LANDING CATEGORIES — Sols cards (compat 12 pages)
   ============================================================ */
.lp-sols-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.lp-sol-card {
  background: #FFFFFF;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--t-base);
  backdrop-filter: none;
  box-shadow: none;
}

.lp-sol-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}

.lp-sol-featured {
  background: var(--orange);
  color: #FFFFFF;
  border-color: var(--orange);
}

.lp-sol-featured:hover { box-shadow: 6px 6px 0 var(--ink); }

.lp-sol-badge {
  position: absolute;
  top: -0.7rem;
  left: 1.25rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
}

.lp-sol-icon {
  width: 50px;
  height: 50px;
  background: var(--paper-2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.lp-sol-featured .lp-sol-icon { background: rgba(255,255,255,0.15); color: #FFFFFF; }

.lp-sol-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.lp-sol-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-3);
  margin-bottom: 1rem;
}

.lp-sol-featured p { color: rgba(255,255,255,0.85); }

.lp-sol-card ul { list-style: none; padding: 0; margin: 0 0 1.25rem; flex: 1; }
.lp-sol-card li { font-size: 0.88rem; padding: 0.25rem 0 0.25rem 1rem; position: relative; color: var(--ink-2); }
.lp-sol-card li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 6px; height: 1.5px; background: var(--orange); }
.lp-sol-featured li { color: rgba(255,255,255,0.9); }
.lp-sol-featured li::before { background: #FFFFFF; }

.lp-sol-price {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.lp-sol-featured .lp-sol-price { color: #FFFFFF; border-top-color: rgba(255,255,255,0.2); }

.lp-sol-card-deco { display: none; }

/* Process steps */
.lp-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: process;
}

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

.lp-process-step {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  transition: transform var(--t-base);
  position: relative;
  backdrop-filter: none;
  box-shadow: none;
}

.lp-process-step:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--orange); }

.lp-process-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  background: none !important;
  width: auto;
  height: auto;
  border-radius: 0;
  display: block;
  text-align: left;
  box-shadow: none;
}

.lp-process-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.lp-process-step p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-3);
  margin-bottom: 1rem;
}

.lp-process-time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ============================================================
   HIDE LEGACY
   ============================================================ */
.hero-bg, .hero-pattern, .deco-icons, .hero-side-tools,
.hero-greeting, .hero-signature-line, .about-hany,
.pillars-section, .certif-strip,
.hero-deco, .section-deco, .hero-visual, .tools-band,
.lp-why-card, .lp-why-grid,
.about-portrait, .about-content, .about-promise, .about-signature {
  display: none !important;
}

/* ============================================================
   MOTION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .lp-hero-text > * { animation: rise 0.7s both cubic-bezier(0.2, 0.8, 0.2, 1); }
  .lp-hero-text > *:nth-child(1) { animation-delay: 0.05s; }
  .lp-hero-text > *:nth-child(2) { animation-delay: 0.15s; }
  .lp-hero-text > *:nth-child(3) { animation-delay: 0.25s; }
  .lp-hero-text > *:nth-child(4) { animation-delay: 0.35s; }
  .lp-hero-text > *:nth-child(5) { animation-delay: 0.45s; }
  .lp-hero-form { animation: rise 0.7s 0.2s both cubic-bezier(0.2, 0.8, 0.2, 1); }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-nav {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 6rem 0 1rem;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb li + li::before {
  content: '/';
  color: var(--ink-4);
  font-weight: 400;
}

.breadcrumb a {
  color: var(--ink-3);
  text-decoration: none;
  transition: color var(--t-fast);
}

.breadcrumb a:hover { color: var(--orange); }

.breadcrumb [aria-current="page"] {
  color: var(--orange);
  font-weight: 600;
}

/* Category page hero adjusted for breadcrumb */
.breadcrumb-nav + .lp-hero {
  padding-top: 3rem;
}

/* Category hero image */
.category-hero-image {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--paper);
}
/* Réduit l'écart avec la section suivante ("Notre offre") pour mieux centrer le bloc */
.category-hero-image + .section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.category-hero-img {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--orange);
  position: relative;
}

.category-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-hero-img:hover img { transform: scale(1.02); }

@media (max-width: 700px) {
  .category-hero-image { padding: 2.5rem 0 1.75rem; }
  .category-hero-img { box-shadow: 4px 4px 0 var(--orange); }
  .category-hero-image + .section { padding-top: 2rem; }
}

/* === Layout split : image gauche / tarifs droite === */
.cat-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
.cat-hero-split .category-hero-img {
  max-width: 100%;
  margin: 0;
  align-self: stretch;
}
.cat-hero-split .category-hero-img img {
  height: 100%;
  aspect-ratio: auto;
  min-height: 340px;
}

.cat-hero-pricing {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: 8px 8px 0 var(--orange);
  padding: 1.85rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cat-hero-pricing .section-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.cat-hero-pricing .section-tag::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: var(--orange);
}
.cat-hero-pricing h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}
.cat-hero-price-list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  border-top: 1px solid var(--line);
}
.cat-hero-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.cat-hero-price-list li > span {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.3;
}
.cat-hero-price-list li > strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--orange);
  white-space: nowrap;
}
.cat-hero-pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.cat-hero-pricing-cta .btn-primary { align-self: stretch; text-align: center; }
.cat-hero-pricing-link {
  font-size: 0.85rem;
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .cat-hero-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .cat-hero-split .category-hero-img img { min-height: 0; aspect-ratio: 4 / 3; }
  .cat-hero-pricing { padding: 1.25rem 1.25rem; box-shadow: 4px 4px 0 var(--orange); }
}

/* === Zones tags as clickable links === */
.zones-tags a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--ink);
  transition: all var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}
.zones-tags a:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

/* === Zone-dep as clickable link === */
a.zone-dep {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.zone-dep:hover {
  border-color: var(--ink);
  background: var(--paper);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--orange);
}

/* === Blog section sur homepage === */
.blog-section { background: var(--paper); }

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) { .home-blog-grid { grid-template-columns: 1fr; } }

.home-blog-card {
  background: #FFFFFF;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
}

.home-blog-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--orange);
}

.home-blog-card a {
  display: block;
  padding: 1.75rem;
  color: inherit;
  text-decoration: none;
}

.home-blog-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.25rem;
}

.home-blog-meta .article-category {
  background: var(--orange);
  color: #FFFFFF;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-weight: 700;
}

.home-blog-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.home-blog-card p {
  color: var(--ink-3);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.home-blog-cta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-transform: uppercase;
}

/* === Mobile : header figé, se cache au scroll bas / réapparaît au scroll haut (toutes pages) === */
@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.55rem 0.75rem 0.55rem 1rem;
    border-radius: 0 0 18px 18px;
    border: 0;
    border-bottom: 1px solid var(--ink);
    transition: transform 0.32s ease, background var(--t-base), box-shadow var(--t-base);
  }
  /* Masqué quand on scrolle vers le bas, réapparaît au scroll vers le haut */
  header.header-hidden {
    transform: translateY(-100%);
  }
}

/* ============================================================
   PAGE SPÉCIALITÉS
   ============================================================ */
.specialites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) { .specialites-grid { grid-template-columns: 1fr; } }

.specialite-card {
  background: #FFFFFF;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

/* Toute la carte cliquable (lien étendu sur .spec-link) */
.specialite-card .spec-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .specialite-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
}

.specialite-card .spec-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.specialite-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.65rem;
}

.specialite-card .spec-desc {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.1rem;
}

.specialite-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.45rem;
}
.specialite-card li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.4;
}
.specialite-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 2px;
  background: var(--orange);
}

.spec-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  margin-bottom: 1.2rem;
}
.spec-meta span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  padding: 0.35rem 0.75rem;
}
.spec-meta .spec-price {
  background: var(--orange);
  color: #FFFFFF;
  border-color: var(--orange);
  font-weight: 700;
}

.spec-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: color var(--t-fast);
}
.spec-link:hover { color: var(--orange); }

/* ============================================================
   AUDIT UX/UI — Harmonisation finale
   ============================================================ */

/* tabular-nums sur tous les éléments contenant des prix/chiffres alignés */
.lp-sol-price,
.cat-hero-price-list strong,
.cat-hero-price-list span,
.realisation-meta strong,
.realisation-stats strong,
.psb-num,
.psb-text strong,
.trust-item strong,
.pricing-table td,
.pricing-table th,
.hero-stat strong,
.trust-band strong {
  font-variant-numeric: tabular-nums;
}

/* === 3 patterns d'interaction unifiés === */

/* PATTERN A — Card lift (cards cliquables) : utilisé partout pour la cohérence */
.realisation-card,
.service-card,
.specialite-card,
.lp-sol-card,
.zone-card,
.blog-card,
.realisation-card-mini {
  will-change: transform;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.32s ease,
    border-color 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .realisation-card:hover,
  .service-card:hover,
  .specialite-card:hover,
  .lp-sol-card:hover,
  .zone-card:hover,
  .blog-card:hover,
  .realisation-card-mini:hover {
    transform: translateY(-4px);
  }
}

/* PATTERN B — Link shift (liens textuels) : couleur orange + smooth */
.psb-text strong,
.spec-link,
footer a,
.breadcrumb a,
.main-nav a {
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  footer a:hover,
  .breadcrumb a:hover,
  .main-nav a:hover { color: var(--orange); }
}

/* PATTERN C — Accent strong (CTAs primaires + bulles) : déjà géré individuellement, on harmonise les durées */
.btn-primary,
.btn-secondary,
.btn-nav,
.lp-cta-xl {
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover,
  .lp-cta-xl.btn-primary:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  }
  .btn-secondary:hover {
    transform: translateY(-1.5px);
  }
}

/* prefers-reduced-motion : on désactive les transforms */
@media (prefers-reduced-motion: reduce) {
  .realisation-card, .service-card, .specialite-card,
  .lp-sol-card, .zone-card, .blog-card,
  .btn-primary, .btn-secondary, .lp-cta-xl {
    transition: none !important;
    transform: none !important;
  }
}

/* ============================================================
   FORMULAIRE HERO — Améliorations conversion + a11y
   ============================================================ */

/* En-tête : tag avec pulse, étoiles, sous-titre */
.lp-form-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.lp-form-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(235, 99, 36, 0.55);
  animation: lp-tag-pulse 2.2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes lp-tag-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(235, 99, 36, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(235, 99, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(235, 99, 36, 0); }
}

.lp-form-sub {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--ink-3);
  margin: 0.5rem 0 0;
}
.lp-form-stars {
  color: #F5A623;
  font-size: 0.95rem;
  letter-spacing: -0.05em;
  flex-shrink: 0;
  line-height: 1;
}
.lp-form-sub strong { color: var(--ink); font-weight: 700; }

/* Champs : focus state + erreurs */
.lp-form input,
.lp-form select {
  font-variant-numeric: tabular-nums;
}
.lp-form input:focus-visible,
.lp-form select:focus-visible {
  outline: 2.5px solid var(--orange);
  outline-offset: 2px;
  border-color: var(--orange) !important;
}
/* Validation native après soumission */
.lp-form input:invalid:not(:placeholder-shown),
.lp-form input[aria-invalid="true"] {
  border-color: #C53030;
}
.lp-form input:valid:not(:placeholder-shown) {
  /* léger feedback sur les champs valides */
}

.form-required { color: var(--orange); margin-left: 2px; }

.form-help {
  display: block;
  font-size: 0.74rem;
  color: var(--ink-3);
  margin-top: 0.3rem;
  line-height: 1.35;
}

/* Checkbox WhatsApp custom */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  margin: 0.5rem 0 1rem;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper-2);
  transition: border-color 0.2s ease, background 0.2s ease;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--ink-2);
}
.form-checkbox:hover { border-color: var(--ink); }
.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-checkbox-mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.8px solid var(--ink);
  border-radius: 5px;
  background: var(--paper);
  position: relative;
  transition: background 0.18s ease, border-color 0.18s ease;
  margin-top: 1px;
}
.form-checkbox-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1.5px;
  width: 6px;
  height: 11px;
  border: solid var(--paper);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-checkbox input[type="checkbox"]:checked ~ .form-checkbox-mark {
  background: var(--orange);
  border-color: var(--orange);
}
.form-checkbox input[type="checkbox"]:checked ~ .form-checkbox-mark::after {
  transform: rotate(45deg) scale(1);
}
.form-checkbox input[type="checkbox"]:focus-visible ~ .form-checkbox-mark {
  outline: 2.5px solid var(--orange);
  outline-offset: 2px;
}
.form-checkbox-label strong { color: var(--ink); font-weight: 700; }

/* Trust list en pied de formulaire */
.lp-form-trust-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp-form-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--ink-3);
  line-height: 1.2;
}
.lp-form-trust-list svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* Mobile : trust list en 3 colonnes serrées si écran assez large, sinon stack */
@media (max-width: 480px) {
  .lp-form-trust-list { gap: 0.4rem; }
  .lp-form-trust-list li { font-size: 0.74rem; }
}

/* ============================================================
   FORMULAIRE QUIZ — Étapes multi-questions
   ============================================================ */

.lp-form-quiz {
  position: relative;
}
.lp-form-quiz fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.lp-form-quiz legend {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1rem;
  padding: 0;
  display: block;
  float: none;
  width: 100%;
}

.form-step {
  display: none;
}
.form-step.is-active {
  display: block;
  animation: form-step-in 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes form-step-in {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Barre de progression */
.lp-form-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.lp-form-progress-track {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 100px;
  overflow: hidden;
}
.lp-form-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-600) 100%);
  border-radius: inherit;
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lp-form-progress-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-transform: uppercase;
}
.lp-form-progress-text strong { color: var(--orange); font-weight: 700; }

/* Radio cards façon "quiz" */
.form-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}
.form-cards--two { grid-template-columns: repeat(2, 1fr); }

.form-card {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1.8px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  background: var(--paper);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.2s ease;
}
.form-card--wide { grid-column: 1 / -1; }
@media (hover: hover) and (pointer: fine) {
  .form-card:hover { border-color: var(--ink); transform: translateY(-1px); }
}
.form-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-card:has(input:checked) {
  border-color: var(--orange);
  background: var(--orange-50);
}
.form-card:has(input:focus-visible) {
  outline: 2.5px solid var(--orange);
  outline-offset: 2px;
}

/* Boutons Précédent / Continuer */
.form-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.form-step-actions--prev-only { justify-content: flex-start; }

.form-step-prev {
  background: none;
  border: 0;
  color: var(--ink-3);
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.45rem 0.4rem;
  transition: color 0.2s ease;
  font-family: var(--font-sans);
}
.form-step-prev:hover { color: var(--ink); }
.form-step-next { margin-left: auto; padding: 0.85rem 1.4rem; }

.lp-form-quiz .lp-form-submit { width: auto; padding: 0.95rem 1.5rem; }

/* Trust list dans la dernière étape */
.form-step .lp-form-trust-list { margin-top: 1rem; }

.form-optional {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--ink-4);
  margin-left: 4px;
  letter-spacing: 0;
  text-transform: none;
}

/* ============================================================
   BLOC ESTIMATION (étape 3 du quiz)
   ============================================================ */
.form-estimate {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  padding: 1.5rem 1.25rem 1.35rem;
  margin: 0 0 1.5rem;
  background: linear-gradient(180deg, var(--orange-50) 0%, var(--paper) 100%);
  border: 1.8px solid var(--orange);
  border-radius: 14px;
  box-shadow: 6px 6px 0 rgba(235, 99, 36, 0.18);
}
.form-estimate-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-700);
  font-weight: 600;
}
.form-estimate-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.form-estimate-note {
  font-size: 0.74rem;
  color: var(--ink-3);
  line-height: 1.4;
  max-width: 32ch;
  margin-top: 0.2rem;
}

.form-step-secondary-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  margin: 0 0 0.85rem;
  line-height: 1.4;
}
.form-step-secondary-title strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   HERO BUBBLES ROW — version horizontale inline (nouvelle)
   Remplace l'ancien positionnement flottant absolu
   ============================================================ */
body.home .hero-bubbles-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.6rem;
  margin: 0.5rem 0 1.6rem;
}

/* Override total : on annule l'absolute / top / left, on retire l'affichage mobile bloqué */
body.home .hero-bubbles-row .hero-artisan-bubble {
  display: block !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  width: 108px !important;
  height: 108px !important;
  flex-shrink: 0;
}

/* Mobile : tous les 3 visibles, juste un peu plus petits */
@media (max-width: 768px) {
  body.home .hero-bubbles-row .hero-artisan-bubble {
    width: 80px !important;
    height: 80px !important;
  }
  body.home .hero-bubbles-row .hero-artisan-bubble--2,
  body.home .hero-bubbles-row .hero-artisan-bubble--3 {
    display: block !important;
  }
  body.home .hero-bubbles-row { gap: 1.5rem; }
}

/* Pas de zoom × 3 en inline (sinon ça pousse le sub) — on garde juste un léger lift */
/* Z-index : on remonte tout le row au-dessus du texte qui suit dans le DOM
   dès qu'une bulle est survolée — sinon le H1/sub/CTA passe devant */
body.home .hero-bubbles-row { position: relative; }
body.home .hero-bubbles-row:has(.hero-artisan-bubble.is-zoomed) {
  z-index: 100;
}

/* Click : la bulle grossit. Mouseleave (JS) : retour normal */
body.home .hero-bubbles-row .hero-artisan-bubble.is-zoomed {
  transform: scale(2.6);
  z-index: 10;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 2px var(--paper);
}

/* ============================================================
   Ressources / Articles utiles — cross-linking pages métier
   ============================================================ */
.resources-section { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.resources-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.resources-list li {
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.resources-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.5rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.resources-list a::after {
  content: "→";
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .resources-list a:hover {
    color: var(--orange);
    padding-left: 0.8rem;
  }
  .resources-list a:hover::after {
    transform: translateX(4px);
  }
}
