/* ═══════════════════════════════════════════════════
   DIMENSION HABITAT — Premium / Editorial
   Noir dominant ~60%, accents verts mesurés.
   ═══════════════════════════════════════════════════ */
:root {
  /* Surfaces & noirs */
  --bg:          #0E0F0D;        /* noir dominant */
  --bg-soft:     #16181513;      /* overlay subtil */
  --surface:     #16181522;      /* cards sur fond noir */
  --surface-2:   #1B1D1A;        /* surface élevée */
  --cream:       #F2EFE8;        /* sections claires (contraste éditorial) */
  --cream-soft:  #E8E4DB;
  --mint:        #E7F1DD;        /* vert menthe clair — panneau hero */
  --mint-deep:   #DBEBCD;
  --line:        #232521;        /* hairlines sur noir */
  --line-cream:  #DAD5C9;        /* hairlines sur crème */

  /* Texte */
  --text:        #E8E5DD;        /* texte sur noir */
  --text-mute:   #8A8A82;        /* texte secondaire sur noir */
  --text-faint:  #5A5C57;        /* texte très estompé */
  --ink:         #0E0F0D;        /* texte sur crème */
  --ink-mute:    #5C5E58;        /* texte secondaire sur crème */

  /* Accent vert lime — couleur de marque Dimension Habitat */
  --green:       #A3C52D;        /* lime / chartreuse de marque */
  --green-dim:   #7E9A22;
  --green-soft:  #CDE07F;
  --green-faint: #2A352510;

  --star:        #C4A961;        /* doré chaud, plus premium qu'un jaune */
  --white:       #ffffff;

  --shadow-cream: 0 12px 32px rgba(20, 22, 18, 0.06);
  --radius:      4px;
  --radius-md:   8px;
  --radius-lg:   12px;

  /* Spacing rythmé */
  --pad-sec:     120px;
  --pad-x:       64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ───── Display type ───── */
h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: -0.025em;
  color: inherit;
  line-height: 1.05;
  text-wrap: balance;
  font-weight: 500;
}
h1 { font-size: clamp(40px, 5.2vw, 72px); font-weight: 500; letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 500; letter-spacing: -0.03em; }
h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; }
h4 { font-size: 16px; font-weight: 600; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 28px;
}
.section-label::before {
  content: ''; width: 24px; height: 1px; background: var(--green);
}
.section-title { margin-bottom: 20px; }
.section-title em { font-style: normal; color: var(--green); font-weight: 400; }
.section-sub {
  color: var(--text-mute); font-size: 16px; max-width: 620px; margin: 0 auto;
  line-height: 1.65; font-weight: 400;
}
.pricing-head { text-align: center; max-width: 760px; margin: 0 auto 64px; padding: 0 20px; }

/* Sections crème — surcharge ink */
.cream { background: var(--cream); color: var(--ink); }
.cream h1, .cream h2, .cream h3, .cream h4 { color: var(--ink); }
.cream .section-label { color: var(--ink-mute); }
.cream .section-sub { color: var(--ink-mute); }

.hl { color: var(--green); position: relative; white-space: nowrap; font-weight: 400; font-style: italic; }

/* ───── Buttons ───── */
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 13px;
  padding: 14px 24px; border-radius: 2px; border: none; cursor: pointer;
  transition: all .25s ease;
  text-decoration: none; white-space: nowrap;
  letter-spacing: 0.6px; text-transform: uppercase;
}
.btn-primary {
  background: var(--green); color: var(--bg);
  font-weight: 600;
}
.btn-primary:hover { background: var(--green-soft); }
.btn-outline {
  background: transparent; color: var(--text); border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--text); background: var(--surface-2); }
.cream .btn-outline { color: var(--ink); border-color: var(--line-cream); }
.cream .btn-outline:hover { background: var(--cream-soft); }
.btn-lg { padding: 18px 32px; font-size: 13px; }

/* ───── Sticky mobile CTA ───── */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid #E6E9E0;
  box-shadow: 0 -6px 24px rgba(20,30,18,0.08);
}
.mobile-cta-bar .mcb-call {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; padding: 0 18px; min-height: 52px; border-radius: 99px;
  background: #fff; border: 1.5px solid #D7DECC; color: #1B2A1B;
  font-weight: 700; font-size: 14px; text-decoration: none;
}
.mobile-cta-bar .mcb-main {
  flex: 1; min-height: 52px; border: none; border-radius: 99px;
  background: var(--green); color: #16210F; cursor: pointer; font-family: inherit;
  font-weight: 800; font-size: 15px; letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(120,170,40,0.35);
}
.mobile-cta-bar .mcb-main:active { transform: translateY(1px); }

/* ───── NAV ───── */
.main-nav {
  position: sticky; top: 0; z-index: 200; background: rgba(14, 15, 13, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad-x); border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }
.logo-img { height: 53px; width: auto; display: block; }
.logo svg { display: block; }
.logo svg rect:first-child { fill: var(--green) !important; }
.logo svg rect:last-child { fill: var(--green) !important; }
.logo-text {
  display: flex; flex-direction: column; gap: 2px;
  font-family: 'Inter', sans-serif;
}
.logo-text strong {
  font-weight: 700; color: var(--text); letter-spacing: 1.5px;
  font-size: 14px; line-height: 1;
}
.logo-text em {
  font-style: normal; font-weight: 400; color: var(--text-faint);
  font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase; line-height: 1;
}
.nav-links {
  display: flex; gap: 32px; font-size: 12.5px; font-weight: 400; color: var(--text-mute);
  letter-spacing: 0.3px;
}
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--text); }

/* ───── HERO ───── */
.hero {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 720px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-left {
  padding: 100px var(--pad-x) 80px;
  display: flex; flex-direction: column; justify-content: center; gap: 32px;
  position: relative; z-index: 2;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0; border: none; background: none;
  font-size: 11px; font-weight: 500; color: var(--text-mute);
  letter-spacing: 2.5px; text-transform: uppercase; width: fit-content;
}
.hero-label::before {
  content: ''; width: 32px; height: 1px; background: var(--green);
}
.hero-label .dot { display: none; }

.hero h1 {
  margin: 0;
  color: var(--text);
}
.hero h1 .hl { color: var(--green); font-style: italic; font-weight: 300; }
.hero h1 .hl::after { display: none; }

.hero-sub {
  color: var(--text-mute); font-size: 17px; line-height: 1.65; max-width: 500px;
  font-weight: 400;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.hero-bullets li {
  font-size: 14.5px; color: var(--text-mute); font-weight: 400;
  padding-left: 28px; position: relative; letter-spacing: -0.005em;
}
.hero-bullets li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px; border-left: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green); transform: rotate(-45deg);
}

.hero-form {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px; max-width: 560px;
}
.hero-form-title {
  font-size: 11px; font-weight: 500; color: var(--text-mute); margin-bottom: 16px;
  letter-spacing: 2px; text-transform: uppercase;
}
.hero-form-title span { color: var(--green); font-weight: 500; }
.hero-form-row { display: flex; gap: 8px; flex-wrap: wrap; }
.hf-input {
  flex: 1 1 140px; padding: 14px 16px;
  border: 1px solid var(--line); background: var(--bg); color: var(--text);
  border-radius: 2px; font-family: inherit; font-size: 14px; outline: none;
  transition: border-color .15s ease;
}
.hf-input::placeholder { color: var(--text-faint); }
.hf-input:focus { border-color: var(--green); }
.hero-form-cta {
  background: var(--green); color: var(--bg); border: none;
  padding: 14px 24px; border-radius: 2px;
  font-family: inherit; font-weight: 600; font-size: 12px;
  cursor: pointer; letter-spacing: 0.8px; text-transform: uppercase;
  transition: background .2s ease;
}
.hero-form-cta:hover { background: var(--green-soft); }
.hero-form-foot {
  margin-top: 14px; font-size: 11.5px; color: var(--text-faint);
  display: flex; align-items: center; gap: 8px; letter-spacing: 0.2px;
}
.hero-form-foot strong { color: var(--text-mute); font-weight: 500; }
.hf-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(143,179,123,.5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(143,179,123,.45); }
  70%{ box-shadow: 0 0 0 8px rgba(143,179,123,0); }
  100%{ box-shadow: 0 0 0 0 rgba(143,179,123,0); }
}

.hero-trust {
  display: flex; gap: 0; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 28px;
}
.hero-rating {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 28px 0 0; margin-right: 28px;
  border-right: 1px solid var(--line);
  background: none; box-shadow: none;
}
.hero-rating:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-rating .score {
  display: block; font-size: 24px; font-weight: 400; color: var(--text);
  line-height: 1; letter-spacing: -0.02em;
}
.hero-rating .stars {
  color: var(--star); font-size: 11px; letter-spacing: 2px; display: block;
  margin-top: 4px;
}
.hero-rating .label {
  font-size: 10.5px; color: var(--text-faint); font-weight: 400;
  line-height: 1.4; text-transform: uppercase; letter-spacing: 0.8px;
  margin-top: 4px;
}
.hero-rating > div { display: flex; flex-direction: column; gap: 2px; }

/* hero-right */
.hero-right { position: relative; overflow: hidden; background: var(--bg); }
.hero-img, .placeholder-img { width: 100%; height: 100%; min-height: 540px; }
.hero-img { position: relative; }
.hero-img img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; display: block; }
.hero-photo img,
.team-portrait img,
.service-img img,
.real-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-portrait { min-height: 320px; overflow: hidden; border-radius: var(--radius-md); }
.service-img { min-height: 240px; overflow: hidden; }
.real-img { min-height: 320px; overflow: hidden; }
.hero-photo { overflow: hidden; }
.hero-stack {
  position: absolute; top: 32px; right: 32px; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
.hero-badge {
  background: var(--bg); color: var(--text); border: 1px solid var(--line);
  width: auto; height: auto; border-radius: 2px; padding: 14px 18px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  text-align: left; font-size: 10px; font-weight: 500;
  line-height: 1.4; transform: none;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-mute);
}
.hero-badge .pct {
  font-size: 28px; font-weight: 300; line-height: 1; margin-bottom: 6px;
  color: var(--green); letter-spacing: -0.02em;
}
.hero-mini-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 2px;
  padding: 16px 18px; width: 240px;
}
.hmc-head {
  font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-mute); display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.hmc-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-out infinite; }
.hmc-body { font-size: 11.5px; line-height: 1.6; color: var(--text-mute); }
.hmc-body strong { color: var(--text); font-weight: 500; }

.hero-photo {
  position: absolute; bottom: 32px; right: 32px; z-index: 3;
  width: 168px; height: 200px; border-radius: 4px;
  border: 1px solid var(--line);
  overflow: hidden;
}

/* ───── Placeholder image (premium, monochrome) ───── */
.placeholder-img, .placeholder-img-sm {
  position: relative;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.placeholder-img-sm { min-height: 200px; border-radius: 0; }
.placeholder-img { min-height: 540px; }
.placeholder-img::before, .placeholder-img-sm::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49%, rgba(255,255,255,0.025) 49.5%, rgba(255,255,255,0.025) 50.5%, transparent 51%),
    linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.02) 49.5%, rgba(255,255,255,0.02) 50.5%, transparent 51%);
  background-size: 24px 24px;
}
.ph-tag {
  position: relative; z-index: 1;
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 10px; font-weight: 400; color: var(--text-faint);
  background: var(--bg); padding: 6px 12px; border: 1px solid var(--line);
  letter-spacing: 0.5px; line-height: 1.3; text-align: center;
  text-transform: uppercase;
}
.placeholder-img svg { display: none; }
.cream .placeholder-img, .cream .placeholder-img-sm { background: var(--cream-soft); }
.cream .placeholder-img::before, .cream .placeholder-img-sm::before {
  background-image:
    linear-gradient(135deg, transparent 49%, rgba(0,0,0,0.025) 49.5%, rgba(0,0,0,0.025) 50.5%, transparent 51%),
    linear-gradient(45deg, transparent 49%, rgba(0,0,0,0.02) 49.5%, rgba(0,0,0,0.02) 50.5%, transparent 51%);
}
.cream .ph-tag { background: var(--cream); border-color: var(--line-cream); color: var(--ink-mute); }

/* ───── STEPS STRIP ───── */
.steps-strip {
  display: grid; grid-template-columns: repeat(4, 1fr) ; gap: 0;
  background: var(--bg); padding: 56px var(--pad-x); border-bottom: 1px solid var(--line);
}
.strip-step {
  display: flex; flex-direction: column; gap: 14px;
  padding: 0 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.strip-step:first-child { padding-left: 0; }
.strip-step:last-child { border-right: none; padding-right: 0; }
.strip-num {
  width: auto; height: auto; border-radius: 0; background: none;
  font-family: 'Inter', sans-serif;
  font-weight: 300; font-size: 32px; color: var(--green); line-height: 1;
  letter-spacing: -0.02em;
}
.strip-text { font-size: 13px; line-height: 1.55; color: var(--text-mute); }
.strip-text strong { color: var(--text); font-weight: 500; font-size: 14px; display: block; margin-bottom: 4px; letter-spacing: -0.01em; }
.strip-arrow { display: none; }

/* ───── TEAM ───── */
.team {
  padding: var(--pad-sec) var(--pad-x);
  background: var(--cream);
  color: var(--ink);
}
.team h2, .team h3, .team h4 { color: var(--ink); }
.team .section-label { color: var(--ink-mute); }
.team-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: stretch;
}
.team-aside {
  background: var(--cream); border: 1px solid var(--line-cream);
  border-radius: var(--radius-md);
  padding: 22px; position: sticky; top: 96px;
  display: flex; flex-direction: column;
}
.team-portrait { flex: 1; min-height: 240px; border-radius: var(--radius-md); margin-bottom: 16px; overflow: hidden; }
.team-name { font-weight: 500; font-size: 18px; color: var(--ink); letter-spacing: -0.01em; }
.team-role {
  font-size: 11px; color: var(--ink-mute); margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px;
}
.team-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  border-top: 1px solid var(--line-cream); padding-top: 20px;
}
.team-stats div { text-align: left; }
.team-stats strong {
  display: block; font-size: 18px; color: var(--ink); font-weight: 400;
  letter-spacing: -0.02em;
}
.team-stats span {
  font-size: 10px; color: var(--ink-mute); text-transform: uppercase;
  letter-spacing: 1.2px; font-weight: 500;
}

.team-body p {
  font-size: 17px; line-height: 1.75; color: var(--ink); margin: 22px 0;
  font-weight: 400; max-width: 640px;
}
.team-body p strong { color: var(--ink); font-weight: 500; }
.team-title { margin-bottom: 0; }
.team-title em, .team-title span { color: var(--green-dim); font-style: italic; font-weight: 300; }

.team-values { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0; }
.value-chip {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-cream);
  padding: 8px 16px; border-radius: 2px; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.5px;
}
.team-quote {
  background: transparent; border-left: 1px solid var(--green);
  padding: 8px 0 8px 28px; border-radius: 0; margin: 36px 0;
  font-family: 'Inter', sans-serif; font-style: italic; font-size: 19px;
  font-weight: 300; color: var(--ink); line-height: 1.5;
  box-shadow: none; letter-spacing: -0.01em;
  max-width: 580px;
}
.team-quote cite {
  display: block; margin-top: 14px; font-size: 10.5px; font-style: normal;
  color: var(--ink-mute); font-family: 'Inter', sans-serif; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* ───── GMB SECTION ───── */
.gmb-section { padding: 0 var(--pad-x) var(--pad-sec); background: var(--cream); }
.gmb-section-inner { max-width: 1200px; margin: 0 auto; }
.gmb-card {
  background: var(--ink); color: var(--text); border-radius: var(--radius-md);
  padding: 40px; border: 1px solid var(--ink);
  display: grid; grid-template-columns: 220px 240px 1fr; gap: 48px; align-items: center;
}
.gmb-card h3, .gmb-card h4 { color: var(--text); }
.gmb-left { text-align: left; }
.g-logo { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 22px; margin-bottom: 12px; letter-spacing: -0.02em; }
.g-score { font-size: 56px; font-weight: 300; color: var(--text); line-height: 1; letter-spacing: -0.04em; }
.g-stars { color: var(--star); font-size: 16px; letter-spacing: 3px; margin-top: 6px; }
.g-count {
  font-size: 10.5px; color: var(--text-faint); margin-top: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.gmb-bars { display: flex; flex-direction: column; gap: 8px; }
.gmb-row {
  display: grid; grid-template-columns: 26px 1fr 36px;
  align-items: center; gap: 10px; font-size: 11px; color: var(--text-faint);
  font-weight: 500; letter-spacing: 0.5px;
}
.bar { height: 2px; background: var(--line); border-radius: 0; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--green); border-radius: 0; }
.gmb-row b { color: var(--text); font-weight: 400; font-size: 11px; }
.gmb-quote {
  font-family: 'Inter', sans-serif; font-style: italic; font-size: 16px;
  color: var(--text); line-height: 1.6; margin-bottom: 14px; font-weight: 300;
  letter-spacing: -0.005em;
}
.gmb-author {
  font-size: 10.5px; color: var(--text-faint); font-weight: 500; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.gmb-right .btn-outline { color: var(--text); border-color: var(--line); }
.gmb-right .btn-outline:hover { border-color: var(--text); }

/* ───── SERVICES ───── */
.services { padding: 88px var(--pad-x); background: var(--bg); }
.services .pricing-head { margin-bottom: 42px; }
.services .reals-cta { margin-top: 38px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  max-width: 1200px; margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg); border-radius: 0; overflow: hidden;
  border: none;
  display: flex; flex-direction: column; position: relative;
  transition: background .25s ease;
}
.service-card:hover { background: var(--surface-2); }
.service-card.featured { background: var(--surface-2); }
.service-badge {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  background: var(--green); color: var(--bg); padding: 5px 10px;
  border-radius: 2px; font-size: 9.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  box-shadow: none;
}
.service-img { min-height: 240px; border-radius: 0; }
.service-body { padding: 32px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.service-body h3 { letter-spacing: -0.015em; }
.service-meta {
  font-size: 11px; color: var(--text-faint); font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.service-incl { list-style: none; margin: 20px 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.service-incl li {
  font-size: 13.5px; color: var(--text-mute); padding-left: 18px; position: relative; line-height: 1.55;
  font-weight: 400;
}
.service-incl li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 1px;
  background: var(--green);
}
.service-price {
  margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px;
  justify-content: space-between;
}
.service-price .from {
  font-size: 10px; color: var(--text-faint); font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.service-price .amount {
  font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 300;
  color: var(--text); letter-spacing: -0.03em;
}
.service-price small { font-size: 11px; font-weight: 400; color: var(--text-faint); letter-spacing: 0.3px; }
.service-cta {
  display: block; text-align: center; background: transparent; color: var(--text);
  padding: 14px 18px; border-radius: 2px; font-weight: 600; font-size: 12px;
  border: 1px solid var(--line);
  letter-spacing: 1px; text-transform: uppercase;
  transition: all .2s ease;
}
.service-cta:hover { background: var(--green); border-color: var(--green); color: var(--bg); }
.service-card.featured .service-cta { background: var(--green); border-color: var(--green); color: var(--bg); }
.service-card.featured .service-cta:hover { background: var(--green-soft); border-color: var(--green-soft); }

.pricing-foot {
  text-align: center; margin-top: 48px; font-size: 12px; color: var(--text-mute);
  max-width: 900px; margin-left: auto; margin-right: auto; line-height: 1.8;
  letter-spacing: 0.3px;
}
.pricing-foot strong { color: var(--text); font-weight: 500; }

/* ───── STATS SECTION ───── */
.stats-section {
  padding: var(--pad-sec) var(--pad-x); text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.stats-section .section-title { margin-bottom: 72px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  max-width: 1080px; margin: 0 auto;
  background: var(--line); border: 1px solid var(--line);
}
.stat-card {
  background: var(--bg); border: none; border-radius: 0;
  padding: 48px 32px; text-align: left;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .25s ease;
}
.stat-card:hover { background: var(--surface-2); }
.stat-icon { display: none; }
.stat-num {
  font-family: 'Inter', sans-serif; font-size: 52px; font-weight: 200;
  color: var(--green); line-height: 1; letter-spacing: -0.04em;
}
.stat-label {
  font-size: 13px; color: var(--text-mute); line-height: 1.6;
  font-weight: 400;
}
.stat-label strong {
  color: var(--text); font-weight: 500; display: block; margin-bottom: 2px;
  font-size: 14px; letter-spacing: -0.01em;
}

/* ───── REFERENCE / DONUTS ───── */
.ref-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  text-align: left;
}
.ref-left .section-title { margin-bottom: 24px; }
.ref-text {
  font-size: 16px; line-height: 1.75; color: var(--text-mute);
  max-width: 480px; margin-bottom: 22px; font-weight: 400;
}
.ref-text strong { color: var(--text); font-weight: 500; }

/* ───── Quality pillars + aside address ───── */
.aside-addr {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--mint); border-radius: 8px; padding: 12px 14px; margin-bottom: 14px;
}
.aside-addr .aa-pin { font-size: 15px; line-height: 1.3; }
.aside-addr strong { display: block; font-size: 12px; color: var(--ink); font-weight: 700; letter-spacing: 0.2px; margin-bottom: 2px; }
.aside-addr div { font-size: 11.5px; color: var(--ink-mute); line-height: 1.45; }
.re-badge {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--green); color: #16210F; border-radius: 8px;
  padding: 14px 18px; margin: 16px 0 18px;
}
.re-badge strong { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.re-badge span { font-size: 11px; font-weight: 600; color: #2C3A1C; line-height: 1.4; }
.quality-pillars {
  margin-top: 36px; display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid var(--line-cream); padding-top: 8px;
}
.qp-item {
  display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line-cream);
}
.qp-item:last-child { border-bottom: none; }
.qp-ico {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--mint); color: var(--green-dim);
  display: flex; align-items: center; justify-content: center;
}
.qp-ico svg { width: 20px; height: 20px; }
.qp-item h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 3px; letter-spacing: -0.01em; }
.qp-item p { font-size: 13px; color: var(--ink-mute); line-height: 1.5; }
.ref-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.donut {
  position: relative; display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.donut svg { width: 100%; max-width: 200px; height: auto; display: block; }
.donut-arc {
  animation: donut-grow 1.4s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes donut-grow {
  from { stroke-dasharray: 0 314; }
}
.donut-center {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 200px; aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.donut-pct {
  font-size: 38px; font-weight: 300; color: var(--text); line-height: 1;
  letter-spacing: -0.03em;
}
.donut-lbl {
  font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-mute); font-weight: 500; margin-top: 6px;
}
.donut-cap {
  font-size: 12.5px; color: var(--text-mute); line-height: 1.55;
  margin-top: 20px; max-width: 220px; font-weight: 400;
}

/* ───── METHODE ───── */
.methode {
  padding: var(--pad-sec) var(--pad-x);
  background: var(--cream); color: var(--ink);
}
.methode h2, .methode h4 { color: var(--ink); }
.methode .section-label { color: var(--ink-mute); }
.methode .section-sub { color: var(--ink-mute); }
.method-list { list-style: none; max-width: 880px; margin: 0 auto; padding: 0; }
.method-list li {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  background: transparent; border-radius: 0; padding: 32px 0;
  margin-bottom: 0; box-shadow: none;
  border-left: none; align-items: start;
  border-bottom: 1px solid var(--line-cream);
}
.method-list li:last-child { border-bottom: none; }
.method-num {
  width: auto; height: auto; border-radius: 0; background: none;
  color: var(--green-dim);
  font-family: 'Inter', sans-serif;
  font-size: 32px; font-weight: 300;
  display: block; letter-spacing: -0.02em; line-height: 1;
}
.method-body h4 {
  font-size: 19px; font-weight: 500; color: var(--ink); margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.method-body p { font-size: 14.5px; color: var(--ink-mute); line-height: 1.7; max-width: 580px; }

/* ───── REALISATIONS ───── */
.realisations { padding: var(--pad-sec) var(--pad-x); background: var(--bg); }
.reals-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.real-card {
  border-radius: 0; overflow: hidden; background: transparent;
  box-shadow: none; transition: opacity .25s ease;
  display: block; border: none;
}
.real-card:hover { opacity: 0.85; }
.real-img { min-height: 320px; border-radius: 0; }
.real-meta {
  padding: 16px 0; display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; border-top: 1px solid var(--line);
}
.real-meta strong {
  color: var(--text); font-weight: 500; letter-spacing: -0.01em;
}
.real-meta span {
  font-size: 10.5px; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: 1.2px;
}
.reals-cta { text-align: center; margin-top: 56px; }

/* ───── TESTIMONIALS ───── */
.testimonials {
  padding: var(--pad-sec) var(--pad-x); background: var(--cream); color: var(--ink);
}
.testimonials h2 { color: var(--ink); }
.testimonials .section-label { color: var(--ink-mute); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.testi-card {
  background: var(--cream); border-radius: 0; padding: 0 0 32px;
  box-shadow: none; border: none;
  display: flex; flex-direction: column; gap: 16px;
}
.testi-name {
  background: var(--green); color: var(--ink);
  font-weight: 600; font-size: 13px; letter-spacing: 0.3px;
  padding: 12px 18px; text-align: center; border-radius: 2px;
}
.testi-stars { color: var(--star); font-size: 12px; letter-spacing: 3px; }
.testi-card p {
  font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.65; color: var(--ink);
  font-style: italic; font-weight: 300; letter-spacing: -0.01em;
}
.testi-foot {
  display: flex; align-items: center; gap: 14px; margin-top: auto;
  padding-top: 0; border-top: none;
}
.testi-foot span {
  font-size: 10.5px; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: 1.2px;
}

/* ───── REASSURE BAR ───── */
.reassure { background: var(--bg); padding: 56px var(--pad-x); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reassure-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.reassure-item {
  color: var(--text-mute); font-size: 12px; line-height: 1.6;
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 24px; border-right: 1px solid var(--line);
}
.reassure-item:first-child { padding-left: 0; }
.reassure-item:last-child { border-right: none; padding-right: 0; }
.ri-icon { display: none; }
.reassure-item strong {
  color: var(--text); font-weight: 500; font-size: 13px;
  letter-spacing: -0.005em;
}

/* ───── FAQ ───── */
.faq { padding: 84px var(--pad-x); background: var(--bg); }
.faq .pricing-head { margin-bottom: 40px; }
.faq-list {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px;
  align-items: start;
}
.faq details {
  background: transparent; border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0; box-shadow: none; overflow: hidden;
  transition: none;
}
.faq details[open] { border-color: var(--green); }
.faq summary {
  list-style: none; cursor: pointer; padding: 19px 0;
  font-weight: 500; font-size: 16px; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icn {
  width: 28px; height: 28px; border-radius: 50%; background: transparent;
  color: var(--text-mute); font-size: 18px; font-weight: 300;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid var(--line);
  transition: all .25s ease;
}
.faq details[open] .faq-icn {
  transform: rotate(45deg); background: var(--green); color: var(--bg);
  border-color: var(--green);
}
.faq details > div {
  padding: 0 0 20px; font-size: 14px; line-height: 1.7; color: var(--text-mute);
  max-width: 720px;
}
.faq details > div strong { color: var(--text); font-weight: 500; }

/* ───── DEVIS / CTA FINAL ───── */
.devis {
  background: var(--bg);
  padding: var(--pad-sec) var(--pad-x); color: var(--text);
  border-top: 1px solid var(--line);
}
.devis-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.devis-left h2 { color: var(--text); margin: 24px 0 24px; letter-spacing: -0.025em; }
.devis-left h2 em { color: var(--green); font-style: italic; font-weight: 300; }
.devis-left p { font-size: 16px; line-height: 1.7; color: var(--text-mute); max-width: 480px; font-weight: 400; }
.devis-left p strong { color: var(--text); font-weight: 500; }
.devis .section-label { color: var(--text-mute) !important; }
.devis-bullets { list-style: none; padding: 0; margin: 36px 0; display: flex; flex-direction: column; gap: 14px; }
.devis-bullets li {
  font-size: 14px; color: var(--text-mute); font-weight: 400;
  padding-left: 24px; position: relative; letter-spacing: -0.005em;
}
.devis-bullets li::before {
  content: ''; position: absolute; left: 0; top: 10px; width: 12px; height: 1px;
  background: var(--green);
}
.devis-contact {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 24px 0; background: transparent; border-radius: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.devis-phone {
  font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 300; color: var(--text);
  text-decoration: none; letter-spacing: -0.02em;
}
.devis-or {
  color: var(--text-faint); font-size: 10px;
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500;
}
.devis-mail {
  color: var(--text-mute); font-size: 13px; font-weight: 400;
  letter-spacing: -0.005em;
}

.devis-form {
  background: var(--surface-2); padding: 40px; border-radius: var(--radius-md);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  border: 1px solid var(--line);
}
.devis-form h3 {
  grid-column: 1 / -1; color: var(--text); margin-bottom: 12px;
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
}
.devis-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 10.5px; font-weight: 500; color: var(--text-faint);
  letter-spacing: 1.2px; text-transform: uppercase;
}
.devis-form label.full { grid-column: 1 / -1; }
.devis-form input, .devis-form select, .devis-form textarea {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 2px;
  font-family: inherit; font-size: 14px; color: var(--text); outline: none;
  font-weight: 400; background: var(--bg); transition: border-color .2s ease;
  letter-spacing: -0.005em; text-transform: none;
}
.devis-form input::placeholder { color: var(--text-faint); }
.devis-form input:focus, .devis-form select:focus, .devis-form textarea:focus { border-color: var(--green); }
.devis-form textarea { resize: vertical; min-height: 80px; }
.devis-cta {
  grid-column: 1 / -1; background: var(--green); color: var(--bg);
  padding: 18px; border: none; border-radius: 2px;
  font-family: inherit; font-size: 12px; font-weight: 600; cursor: pointer;
  letter-spacing: 1.2px; text-transform: uppercase;
  transition: background .2s ease;
}
.devis-cta:hover { background: var(--green-soft); }
.devis-foot {
  grid-column: 1 / -1; text-align: center; font-size: 10.5px; color: var(--text-faint);
  letter-spacing: 0.3px;
}

/* ───── FOOTER ───── */
.main-footer { padding: 80px var(--pad-x) 32px; background: var(--bg); color: var(--text-mute); border-top: 1px solid var(--line); }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
}
.footer-logo { margin-bottom: 20px; }
.footer-mark { height: 22px; width: auto; display: block; }
.footer-blurb { font-size: 13px; line-height: 1.75; max-width: 320px; color: var(--text-faint); }
.main-footer h5 {
  font-family: 'Inter', sans-serif; color: var(--text); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 20px; font-weight: 500;
}
.main-footer p, .main-footer ul {
  font-size: 13px; line-height: 1.85; color: var(--text-faint);
}
.main-footer ul { list-style: none; }
.main-footer a { color: var(--text-faint); transition: color .15s ease; }
.main-footer a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px; margin: 64px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 11px; color: var(--text-faint);
  letter-spacing: 0.3px;
}

/* ───── MODAL ───── */
.modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(14,15,13,.85); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal.active { display: flex; }
.modal-card {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 48px;
  max-width: 460px; width: 100%; text-align: center;
  color: var(--text);
}
.modal-icon { font-size: 36px; margin-bottom: 16px; opacity: 0.7; }
.modal-card h3 { margin-bottom: 14px; color: var(--text); }
.modal-card p { font-size: 15px; color: var(--text-mute); line-height: 1.6; margin-bottom: 28px; font-weight: 400; }

/* ═══════════════════════════════════════
   LIGHT HERO OVERRIDE (mint panel + gallery)
   ═══════════════════════════════════════ */
.main-nav {
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid #ECEEE8;
}
.main-nav .logo-text strong { color: #1B2A1B; }
.main-nav .logo-text strong .lime { color: var(--green-dim); }
.main-nav .logo-text em { color: #9AA295; }
.main-nav .nav-links { color: #4A524594; }
.main-nav .nav-links a { color: #545B4E; }
.main-nav .nav-links a:hover { color: #1B2A1B; }
.logo-text strong .lime { color: var(--green-dim); }

.hero {
  grid-template-columns: 1.02fr 1.25fr;
  min-height: auto; background: #fff; border-bottom: none;
  padding: 28px var(--pad-x) 36px; gap: 36px; align-items: stretch;
}
.hero-left {
  background: var(--mint); color: var(--ink);
  border-radius: 18px; padding: 52px 50px;
  justify-content: center; gap: 26px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px; width: fit-content;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(27,42,27,0.08);
  color: #2A3826; font-weight: 700; font-size: 11.5px; letter-spacing: 1.5px;
  padding: 9px 16px 9px 12px; border-radius: 99px; text-transform: uppercase;
}
.hero-pill .hp-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: var(--green); color: #fff;
  border-radius: 50%; font-size: 13px;
}
.hero h1 {
  color: #16210F; font-weight: 800; letter-spacing: -0.03em; line-height: 1.06;
  font-size: clamp(31px, 3.5vw, 47px);
}
.hero h1 .hl { color: var(--green-dim); font-style: normal; font-weight: 800; }
.hero-sub { color: #4C5547; font-size: 17px; max-width: 480px; font-weight: 400; }
.hero-bullets { gap: 14px; }
.hero-bullets li { color: #2E3A28; font-weight: 500; font-size: 15.5px; padding-left: 34px; }
.hero-bullets li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border: none; transform: none; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 6px; }
.hero-actions .btn-primary { background: var(--green); color: #16210F; padding: 17px 38px; font-size: 13px; border-radius: 99px; }
.hero-actions .btn-primary:hover { background: var(--green-dim); color: #fff; }
.hero-tel { display: flex; flex-direction: column; gap: 2px; }
.hero-tel .ht-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.2px; color: #6A7363; font-weight: 600; }
.hero-tel .ht-num { font-size: 19px; font-weight: 700; color: #1B2A1B; letter-spacing: -0.01em; }

.hero-gallery {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  grid-template-rows: repeat(3, 1fr); gap: 12px;
  height: 600px; position: relative;
}
.hg-item { overflow: hidden; border-radius: 12px; background: var(--mint); }
.hg-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.hg-item:hover img { transform: scale(1.05); }
.hg-1 { grid-area: 1 / 1 / 2 / 2; }
.hg-2 { grid-area: 1 / 2 / 2 / 3; }
.hg-3 { grid-area: 2 / 1 / 3 / 2; }
.hg-4 { grid-area: 3 / 1 / 4 / 2; }
.hg-5 { grid-area: 2 / 2 / 4 / 3; }
.hg-watermark { position: absolute; right: 30px; bottom: 22px; opacity: 0.92; pointer-events: none; }
.hero-gallery { position: relative; }
.hero { align-items: stretch; }

/* ───── LEAD FORM BAND (light) ───── */
.leadband { background: #fff; padding: 8px var(--pad-x) 72px; }
.leadband-inner {
  max-width: 1200px; margin: 0 auto;
  background: var(--mint); border-radius: 18px; padding: 40px 48px;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: center;
}
.leadband-head h2 { color: #16210F; font-size: 26px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 10px; line-height: 1.12; }
.leadband-head p { color: #4C5547; font-size: 14.5px; line-height: 1.6; max-width: 360px; }
.leadband .hero-form { background: #fff; border: 1px solid rgba(27,42,27,0.08); border-radius: 14px; padding: 22px; max-width: none; box-shadow: 0 14px 34px rgba(27,42,27,0.07); }
.leadband .hf-input { background: #F7FAF3; border: 1px solid #E2E9D8; color: #1B2A1B; border-radius: 8px; }
.leadband .hf-input::placeholder { color: #9AA295; }
.leadband .hf-input:focus { border-color: var(--green); }
.leadband .hero-form-cta { background: var(--green); color: #16210F; border-radius: 8px; padding: 14px 26px; }
.leadband .hero-form-cta:hover { background: var(--green-dim); color: #fff; }
.leadband .hero-form-foot { color: #6A7363; }
.leadband .hero-form-foot strong { color: #1B2A1B; }

/* ───── FRISE / TIMELINE ───── */
.methode { padding: var(--pad-sec) var(--pad-x); background: var(--cream); }
.frise-wrap { max-width: 1200px; margin: 0 auto; }
.frise-head {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px;
  align-items: center; margin-bottom: 72px;
}
.frise-intro .section-label { color: var(--ink-mute); }
.frise-intro h2 { color: var(--ink); margin-bottom: 16px; }
.frise-intro p { color: var(--ink-mute); font-size: 15px; line-height: 1.7; margin-bottom: 26px; max-width: 440px; }
.frise-intro .btn-primary { background: var(--green); color: #16210F; }
.frise-intro .btn-primary:hover { background: var(--green-dim); color: #fff; }
.frise-photo { border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 11; box-shadow: var(--shadow-cream); }
.frise-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.frise {
  list-style: none; display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative; padding: 0;
}
.frise::before {
  content: ''; position: absolute; top: 23px; left: 9%; right: 9%;
  height: 2px; background: linear-gradient(90deg, var(--green-dim), var(--green));
}
.frise-step { position: relative; padding: 0 16px; text-align: center; }
.fs-node {
  width: 48px; height: 48px; border-radius: 50%; background: var(--green);
  color: #16210F; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  border: 5px solid var(--cream);
}
.frise-step h4 { font-size: 15px; color: var(--ink); margin-bottom: 6px; font-weight: 600; letter-spacing: -0.01em; }
.frise-step p { font-size: 12.5px; color: var(--ink-mute); line-height: 1.5; }

/* ───── REVIEWS MARQUEE ───── */
.reviews { background: var(--bg); padding: 52px 0 60px; border-top: 1px solid var(--line); overflow: hidden; }
.reviews-head {
  max-width: 1200px; margin: 0 auto 26px; padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.reviews-g { display: flex; align-items: center; gap: 12px; }
.rg-logo { font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.rg-score { font-size: 20px; font-weight: 700; color: var(--text); }
.rg-stars { color: var(--star); font-size: 14px; letter-spacing: 1.5px; }
.rg-count { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 500; }
.reviews-cta { font-size: 11.5px; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee-track { display: flex; gap: 16px; width: max-content; animation: marquee 52s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.rev {
  flex: 0 0 320px; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 18px 20px; display: flex; flex-direction: column; gap: 8px;
}
.rev-stars { color: var(--star); font-size: 12px; letter-spacing: 2px; }
.rev p { font-size: 13px; color: var(--text-mute); line-height: 1.55; font-style: italic; }
.rev-name { font-size: 11px; color: var(--text-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-top: auto; }

/* ───── SEO BLOCK ───── */
.seo { background: var(--cream); padding: 84px var(--pad-x); border-top: 1px solid var(--line-cream); }
.seo-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.seo-col h3 { font-size: 15px; color: var(--ink); margin: 0 0 8px; font-weight: 700; letter-spacing: -0.01em; }
.seo-col h3:not(:first-child) { margin-top: 28px; }
.seo-col p { font-size: 13px; line-height: 1.75; color: var(--ink-mute); }
.seo-col p strong { color: var(--ink); font-weight: 600; }

/* ───── Galerie réalisations (épurée) ───── */
.gallery {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 166px;
  gap: 14px;
}
.gal-item {
  overflow: hidden; border-radius: 12px; display: block; background: var(--surface-2);
  position: relative;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,15,13,0.18));
  opacity: 0; transition: opacity .3s ease;
}
.gal-item:hover::after { opacity: 1; }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

/* ───── Service tag (remplace prix) ───── */

/* ───── CTA band (remplace formulaire) ───── */
.leadband-action { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.leadband-action .btn-primary { background: var(--green); color: #16210F; }
.leadband-action .btn-primary:hover { background: var(--green-dim); color: #fff; }
.leadband-foot { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #6A7363; }
.leadband-foot strong { color: #1B2A1B; }

/* ───── PHRASE SIGNATURE (bande éditoriale) ───── */
.manifesto { background: var(--bg); padding: 72px var(--pad-x); }
.manifesto-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.manifesto-mark {
  display: block; width: 92px; height: auto; margin: 0 auto 26px;
  filter: invert(1); mix-blend-mode: screen; opacity: 0.92;
}
.manifesto-quote {
  font-size: clamp(19px, 2vw, 25px); font-weight: 600; line-height: 1.4;
  letter-spacing: -0.015em; color: var(--text); text-wrap: balance;
}
.manifesto-quote em { color: var(--green); font-style: italic; }
.manifesto-sign {
  margin-top: 22px; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mute); font-weight: 600;
}

/* ───── Devis CTA panel (remplace formulaire) ───── */
.devis-cta-panel {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 40px; text-align: center;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.dcp-badge {
  display: inline-block; background: rgba(163,197,45,0.14); color: var(--green);
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 14px; border-radius: 99px;
}
.devis-cta-panel h3 { color: var(--text); font-size: 24px; }
.devis-cta-panel p { color: var(--text-mute); font-size: 14.5px; line-height: 1.6; max-width: 360px; }
.devis-cta-panel .devis-cta {
  display: inline-block; width: auto; background: var(--green); color: #16210F;
  padding: 16px 34px; border-radius: 99px; font-size: 13px; letter-spacing: 0.8px;
  text-transform: uppercase; font-weight: 700; cursor: pointer; border: none;
  transition: background .2s ease;
}
.devis-cta-panel .devis-cta:hover { background: var(--green-soft); }
.dcp-or { font-size: 10.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 4px; }
.dcp-phone { font-size: 24px; font-weight: 300; color: var(--text); letter-spacing: -0.02em; }
.devis-cta-panel .devis-foot { margin-top: 6px; }

/* ───── Google business card (avis) ───── */
.gcard {
  display: flex; align-items: center; gap: 18px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 22px; max-width: 560px; margin: 0 auto;
}
.gcard-mark { flex-shrink: 0; }
.gcard-body { flex: 1; min-width: 0; }
.gcard-name { font-size: 16px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.gcard-sub { font-size: 11.5px; color: var(--text-faint); margin: 2px 0 6px; }
.gcard-rateline { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.gcard-score { font-size: 16px; font-weight: 700; color: #E7B500; }
.gcard-stars { color: var(--star); font-size: 14px; letter-spacing: 1px; }
.gcard-count { font-size: 11.5px; color: var(--text-mute); }
.gcard-cta {
  flex-shrink: 0; font-size: 12px; font-weight: 600; color: #fff;
  background: #1A73E8; padding: 9px 16px; border-radius: 99px; white-space: nowrap;
}
.gcard-cta:hover { background: #1666c9; }
.gcard-tag {
  flex-shrink: 0; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green-dim);
  background: rgba(163,197,45,0.12); border: 1px solid rgba(163,197,45,0.3);
  padding: 7px 13px; border-radius: 99px; white-space: nowrap;
}
.reviews-head { margin-bottom: 30px; }

.rev { flex: 0 0 330px; gap: 10px; }
.rev-top { display: flex; align-items: center; gap: 10px; }
.rev-av {
  width: 34px; height: 34px; border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.rev-top > div { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.rev-name { font-size: 13px; color: var(--text); font-weight: 600; text-transform: none; letter-spacing: 0; }
.rev-meta { font-size: 11px; color: var(--text-faint); }
.rev-g {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  font-size: 12px; font-weight: 700; color: #4285F4;
  display: flex; align-items: center; justify-content: center;
  font-family: Arial, sans-serif;
}

/* ═══════════════════════════════════════
   MULTI-STEP FORM MODAL (qz)
   ═══════════════════════════════════════ */
.qz {
  position: fixed; inset: 0; z-index: 10000; display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.qz.open { display: flex; }
.qz-overlay { position: absolute; inset: 0; background: rgba(10,12,9,0.72); backdrop-filter: blur(6px); }
.qz-dialog {
  position: relative; z-index: 1; width: 100%; max-width: 540px;
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
  display: flex; flex-direction: column; max-height: 94vh; height: auto;
  animation: qz-pop .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes qz-pop { from { opacity: 0; transform: translateY(16px) scale(.98); } }
.qz-bar { height: 4px; background: #ECEFE6; flex-shrink: 0; }
.qz-bar i { display: block; height: 100%; width: 0; background: var(--green); transition: width .4s cubic-bezier(.4,0,.2,1); }
.qz-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; border-bottom: 1px solid #F0F2EC; flex-shrink: 0;
}
.qz-brand { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: #1B2A1B; }
.qz-brand-mark { height: 15px; width: auto; display: block; }
.qz-close {
  width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer;
  background: #F2F4EE; color: #5C6356; font-size: 14px;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.qz-close:hover { background: #E6E9E0; }

/* labeled phase stepper */
.qz-steps {
  display: flex; align-items: center; gap: 0; padding: 14px 22px 4px;
}
.qz-seg { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.qz-seg:not(:last-child)::after {
  content: ''; flex: 1; height: 1.5px; background: #E6E9E0; margin: 0 8px; border-radius: 2px;
  transition: background .3s ease;
}
.qz-seg-dot {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: #EDF0E8; color: #9AA290; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.qz-seg-label {
  font-size: 11px; font-weight: 600; color: #9AA290; letter-spacing: 0.2px; white-space: nowrap;
  transition: color .25s ease;
}
.qz-seg.active .qz-seg-dot { background: var(--green); color: #16210F; }
.qz-seg.active .qz-seg-label { color: #16210F; }
.qz-seg.done .qz-seg-dot { background: var(--green-dim); color: #fff; }
.qz-seg.done .qz-seg-dot::after { content: '✓'; }
.qz-seg.done .qz-seg-dot { font-size: 0; }
.qz-seg.done .qz-seg-dot::after { font-size: 12px; }
.qz-seg.done::after { background: var(--green); }
.qz-seg.done .qz-seg-label { color: #5C6356; }
@media (max-width: 520px) {
  .qz-seg-label { display: none; }
  .qz-seg:not(:last-child)::after { margin: 0 6px; }
}

.qz-viewport { overflow-x: hidden; overflow-y: auto; flex: 1 1 auto; min-height: 0; }
.qz-track { display: flex; width: 100%; min-height: 0; transition: transform .42s cubic-bezier(.4,0,.2,1); align-items: flex-start; }
.qz-step {
  flex: 0 0 100%; width: 100%; padding: 26px 32px 30px;
  display: flex; flex-direction: column; gap: 6px;
}
.qz-q { font-size: 21px; color: #16210F; font-weight: 700; letter-spacing: -0.02em; line-height: 1.22; }
.qz-help { font-size: 13.5px; color: #6A7363; margin-bottom: 18px; line-height: 1.5; }

.qz-options { display: flex; flex-direction: column; gap: 10px; }
.qz-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  text-align: left; padding: 15px 18px; border: 1.5px solid #E2E7DA; background: #fff;
  border-radius: 12px; cursor: pointer; font-family: inherit; font-size: 15px;
  font-weight: 500; color: #25301F; transition: all .15s ease;
}
.qz-opt:hover { border-color: var(--green); background: #F7FBF1; }
.qz-opt-tick { opacity: 0; color: #fff; background: var(--green); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; transition: opacity .15s; flex-shrink: 0; }
.qz-opt.sel { border-color: var(--green); background: #EFF7E4; }
.qz-opt.sel .qz-opt-tick { opacity: 1; }

.qz-field { margin-bottom: 16px; }
.qz-input {
  width: 100%; padding: 13px 15px; border: 1.5px solid #E2E7DA; border-radius: 11px;
  font-family: inherit; font-size: 15px; color: #16210F; outline: none; background: #fff;
  transition: border-color .15s ease;
}
.qz-input::placeholder { color: #A7AE9D; }
.qz-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(163,197,45,0.16); }

.qz-next, .qz-submit {
  width: 100%; padding: 15px; border: none; border-radius: 12px; cursor: pointer;
  background: var(--green); color: #16210F; font-family: inherit; font-size: 15px;
  font-weight: 700; transition: background .18s ease; margin-top: 4px;
}
.qz-next:hover, .qz-submit:hover { background: var(--green-dim); color: #fff; }
.qz-skip {
  width: 100%; background: none; border: none; cursor: pointer; margin-top: 12px;
  color: #8A9180; font-size: 13px; font-weight: 500; font-family: inherit;
}
.qz-skip:hover { color: #5C6356; text-decoration: underline; }

.qz-contact { display: flex; flex-direction: column; gap: 11px; }
.qz-clabel { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 600; color: #5C6356; letter-spacing: 0.2px; }
.qz-note { text-align: center; font-size: 12px; color: #8A9180; margin-top: 2px; }

/* mini map */
.qz-map {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid #E2E7DA; height: 150px; margin-bottom: 4px;
}
.qz-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.15); }
.qz-map-tag {
  position: absolute; left: 10px; bottom: 10px; display: flex; align-items: center; gap: 9px;
  background: #fff; border-radius: 10px; padding: 8px 12px; box-shadow: 0 4px 14px rgba(0,0,0,0.16);
}
.qz-map-pin { font-size: 15px; }
.qz-map-tag strong { display: block; font-size: 12px; color: #16210F; font-weight: 700; }
.qz-map-tag div { font-size: 10.5px; color: #6A7363; line-height: 1.3; }

/* zone step (chips + map) */
.qz-zone-opts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.qz-zone-chip {
  flex: 1 1 auto; min-width: 100px; padding: 12px 14px; border: 1.5px solid #E2E7DA; background: #fff;
  border-radius: 10px; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 500;
  color: #25301F; transition: all .15s ease;
}
.qz-zone-chip:hover { border-color: var(--green); background: #F7FBF1; }
.qz-zone-chip.sel { border-color: var(--green); background: #EFF7E4; color: var(--green-dim); font-weight: 700; }
.qz-map-zone { height: 180px; margin-bottom: 16px; }

/* schedule step */
.qz-schedule { display: flex; flex-direction: column; gap: 12px; }
.qz-slot-title { margin-top: 4px; }
.qz-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.qz-slot {
  flex: 1 1 auto; min-width: 84px; padding: 12px 14px; border: 1.5px solid #E2E7DA; background: #fff;
  border-radius: 10px; cursor: pointer; font-family: inherit; font-size: 13.5px; font-weight: 500;
  color: #25301F; transition: all .15s ease;
}
.qz-slot:hover { border-color: var(--green); background: #F7FBF1; }
.qz-slot.sel { border-color: var(--green); background: #EFF7E4; color: var(--green-dim); font-weight: 700; }
.qz-input[type="date"] { font-family: inherit; color: #16210F; }

/* ── Calendrier custom (style image) ── */
.qz-cal {
  border: 1.5px solid #E8ECE0; border-radius: 14px; padding: 12px 13px 10px;
  background: #fff; box-shadow: 0 8px 24px rgba(27,42,27,0.05);
}
.qz-cal-month {
  text-align: center; font-size: 13.5px; font-weight: 700; color: #16210F;
  letter-spacing: 0.01em; margin-bottom: 9px; text-transform: capitalize;
}
.qz-cal-head, .qz-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
}
.qz-cal-head { margin-bottom: 5px; }
.qz-cal-wd {
  text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  color: #9AA295; text-transform: uppercase;
}
.qz-cal-cell {
  height: 33px; display: flex; align-items: center; justify-content: center;
}
.qz-cal-day {
  width: 31px; height: 31px; max-width: 100%; max-height: 100%;
  border: none; border-radius: 50%; cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 600; color: #16210F; background: #EFF7E4;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.qz-cal-day:hover { background: #DCEDC4; transform: scale(1.06); }
.qz-cal-day.off {
  background: transparent; color: #C5C9BD; cursor: not-allowed;
}
.qz-cal-day.off:hover { background: transparent; transform: none; }
.qz-cal-day.today {
  background: var(--green); color: #16210F;
}
.qz-cal-day.sel {
  background: var(--green-dim); color: #fff;
  box-shadow: 0 0 0 3px rgba(163,197,45,0.28);
}
.qz-cal-legend {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
  margin-top: 9px; padding-top: 8px; border-top: 1px solid #EEF1E8;
  font-size: 11px; color: #6A7363;
}
.qz-cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.qz-lgd-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.qz-lgd-dot.t { background: var(--green); }
.qz-lgd-dot.a { background: #EFF7E4; border: 1px solid #D2E2B6; }
.qz-lgd-dot.o { background: #EDEFE9; }

/* ── Jour sélectionné + créneaux (style image) ── */
.qz-day-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 4px;
}
.qz-day-summary strong {
  font-size: 15px; font-weight: 800; color: #16210F; text-transform: capitalize;
}
.qz-day-count {
  font-size: 12px; font-weight: 600; color: var(--green-dim); white-space: nowrap;
  background: rgba(163,197,45,0.14); padding: 5px 11px; border-radius: 99px;
}
.qz-tslots { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.qz-tslot {
  display: flex; align-items: center; gap: 8px; width: 100%;
  padding: 11px 12px; border: 1.5px solid #E2E7DA; background: #fff;
  border-radius: 11px; cursor: pointer; font-family: inherit;
  font-size: 13.5px; font-weight: 700; color: #25301F; transition: all .15s ease;
}
.qz-tslot:hover { border-color: var(--green); background: #F7FBF1; }
.qz-tslot-ico { color: #9AA295; display: inline-flex; flex-shrink: 0; }
.qz-tslot-ico svg { width: 15px; height: 15px; }
.qz-tslot-time { flex: 1; white-space: nowrap; }
.qz-tslot-radio {
  width: 17px; height: 17px; border-radius: 50%; border: 2px solid #CAD2BD;
  flex-shrink: 0; transition: all .15s ease;
}
.qz-tslot.sel { border-color: var(--green); background: #EFF7E4; }
.qz-tslot.sel .qz-tslot-ico { color: var(--green-dim); }
.qz-tslot.sel .qz-tslot-radio {
  border-color: var(--green-dim); background: var(--green-dim);
  box-shadow: inset 0 0 0 3px #fff;
}
/* Bouton de confirmation toujours visible sur l'étape RDV */
.qz-schedule .qz-submit {
  position: sticky; bottom: -2px; z-index: 2; margin-top: 8px;
  box-shadow: 0 -8px 14px -4px rgba(255,255,255,0.96);
}

.qz-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 22px; border-top: 1px solid #F0F2EC; flex-shrink: 0; background: #FBFCF9;
}
.qz-back { background: none; border: none; cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 600; color: #5C6356; padding: 0; }
.qz-back:hover { color: #16210F; }
.qz-count { font-size: 12px; color: #8A9180; font-weight: 500; }
.qz-count b { color: #16210F; }
.qz-secure { font-size: 11px; color: #A7AE9D; }

.qz-done { align-items: center; text-align: center; justify-content: center; }
.qz-done-ic {
  width: 64px; height: 64px; border-radius: 50%; background: #EFF7E4; color: var(--green-dim);
  display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 8px;
}
.qz-done .qz-help strong { color: #16210F; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --pad-x: 40px; --pad-sec: 80px; }
  .gmb-card { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gmb-right { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reassure-inner { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .reassure-item { border-right: none; padding: 0; }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding: 16px 24px 24px; gap: 20px; }
  .hero-left { padding: 48px 32px; border-radius: 14px; }
  .hero-right { min-height: 420px; }
  .hero-img, .placeholder-img { min-height: 420px; }
  .hero-gallery { min-height: 460px; }
  .leadband-inner { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-aside { position: static; }
  .services-grid, .reals-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gal-wide { grid-column: span 2; }
  .gal-tall { grid-row: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .frise-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .frise { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .frise::before { display: none; }
  .seo-inner { grid-template-columns: 1fr; gap: 32px; }
  .devis-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .steps-strip { grid-template-columns: 1fr 1fr; gap: 32px 0; padding: 40px 32px; }
  .strip-step { border-right: none; border-bottom: none; padding: 0 16px; }
}

@media (max-width: 720px) {
  :root { --pad-x: 22px; --pad-sec: 56px; }
  .mobile-cta-bar { display: flex; }
  body { padding-top: 0; padding-bottom: 84px; }
  .main-nav { padding: 12px 22px; top: 0; }
  .main-nav .btn-primary { padding: 10px 16px; font-size: 11px; }
  .logo-text { display: none; }
  .logo-img { height: 38px; }

  .services-grid, .reals-grid, .testi-grid, .stats-grid { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; column-gap: 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 132px; }
  .gal-wide, .gal-tall { grid-column: auto; grid-row: auto; }
  .frise { grid-template-columns: 1fr; gap: 28px 0; }
  .reassure-inner { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .devis-form { grid-template-columns: 1fr; padding: 28px; }
  .gmb-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .steps-strip { grid-template-columns: 1fr; gap: 24px; }
  .strip-step { padding: 0; }
  .method-list li { grid-template-columns: 50px 1fr; gap: 16px; padding: 24px 0; }
  .method-num { font-size: 24px; }

  /* Sections plus compactes */
  .services, .faq { padding: 52px 22px; }
  .services .pricing-head, .faq .pricing-head { margin-bottom: 28px; }
  .services .reals-cta { margin-top: 28px; }

  /* HERO compact, CTA visible vite */
  .hero { padding: 14px 18px 18px; gap: 16px; }
  .hero-left { padding: 30px 24px; border-radius: 16px; justify-content: flex-start; gap: 18px; }
  .hero h1 { font-size: 29px; line-height: 1.1; }
  .hero-sub { font-size: 15px; line-height: 1.55; }
  .hero-pill { font-size: 9.5px; padding: 7px 13px 7px 9px; }
  .hero-bullets { gap: 9px; }
  .hero-bullets li { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 2px; }
  .hero-actions .btn-primary { width: 100%; text-align: center; padding: 17px 24px; font-size: 14px; }
  .hero-tel { flex-direction: row; align-items: baseline; justify-content: center; gap: 8px; }
  .hero-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 108px); height: auto; min-height: 0; }

  /* CTA band */
  .leadband-inner { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .leadband-head h2 { font-size: 23px; line-height: 1.18; }
  .leadband-action .btn-primary { width: 100%; }

  /* Donuts / référence : empile pour éviter le débordement horizontal */
  .ref-grid { grid-template-columns: 1fr; gap: 36px; }
  .ref-right { gap: 18px; }
  .donut svg, .donut-center { max-width: 150px; }
  .donut-pct { font-size: 32px; }

  /* Avis : cartes un peu plus étroites */
  .rev { flex: 0 0 252px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 26px; }
  .ref-right { grid-template-columns: 1fr; }
  .donut svg, .donut-center { max-width: 170px; }
  .mobile-cta-bar .mcb-call { padding: 0 14px; font-size: 13px; }
}
