:root {
  color-scheme: light;
  --ink: #1a2420;
  --muted: #5e6e68;
  --paper: #fdf6ea;
  --soft: #f2ebde;
  --leaf: #1f7b6f;
  --leaf-dark: #134a44;
  --leaf-light: #d6eeea;
  --rose: #c46a52;
  --rose-light: #f9e6e0;
  --sand: #e8ddd0;
  --line: #dfd5c6;
  --gold: #c89a2c;
  --white: #ffffff;
  --serif: 'Georgia', 'Cambria', 'Iowan Old Style', 'Palatino Linotype', serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-family: var(--sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

/* ─── Animations reveal au scroll ─────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
  .reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
  .reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
  .reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }
  .reveal-stagger > *:nth-child(5) { transition-delay: 0.45s; }

  .reveal.is-visible .reveal-stagger > *,
  .reveal-stagger.is-visible > *,
  .is-visible.reveal-stagger > * {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal.is-visible > .reveal-stagger > * {
    opacity: 1;
    transform: translateY(0);
  }
}

/* fallback : si reveal-stagger est nested dans une .reveal qui devient visible */
.reveal.is-visible .reveal-stagger > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Stats band ─────────────────────────────────────── */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(28px, 4vw, 48px) clamp(18px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  position: relative;
  text-align: center;
  padding: 8px 16px;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--leaf-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat strong span {
  font-size: 0.55em;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}

.stat small {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  line-height: 1.4;
}

.stat small span[aria-hidden] {
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: none;
}

@media (max-width: 820px) {
  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }
  .stat:nth-child(2) { border-left: 1px solid var(--line); }
  .stat:nth-child(3) { border-left: none; border-top: 1px solid var(--line); padding-top: 24px; }
  .stat:nth-child(4) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); padding-top: 24px; }
}

/* ─── Header ─────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(253, 248, 240, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--leaf-dark);
}

.brand-paw {
  width: 22px;
  height: 22px;
  color: var(--rose);
  flex-shrink: 0;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  font-size: 0.92rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.18s ease;
}

nav a:hover {
  color: var(--leaf-dark);
}

/* ─── Hero ────────────────────────────────────────────── */

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(36px, 6vw, 80px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 88px);
}

.hero-copy {
  max-width: 600px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--leaf-dark);
  white-space: nowrap;
}

h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--leaf-dark);
}

h3 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--leaf-dark);
}

.lead {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border: 2px solid var(--leaf);
  border-radius: 10px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(19, 74, 68, 0.15);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--leaf-dark);
  border-color: var(--leaf-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(19, 74, 68, 0.32);
}

.button:active {
  transform: translateY(0);
}

.button.secondary {
  background: transparent;
  color: var(--leaf-dark);
}

.button.secondary:hover {
  background: var(--leaf-light);
  box-shadow: none;
}

.hero picture,
.split picture {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 28px 72px rgba(30, 39, 36, 0.14);
}

.hero img {
  min-height: min(72vh, 700px);
  object-fit: cover;
}

/* ─── Intro band ──────────────────────────────────────── */

.intro-band {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding: 38px clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, var(--leaf-dark) 0%, #0e3b36 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.intro-band::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(31, 123, 111, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.intro-identity {
  display: grid;
  gap: 3px;
}

.intro-identity span,
.intro-identity small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.intro-identity strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.intro-identity,
.intro-band > p {
  position: relative;
  z-index: 1;
}

.intro-band p {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

/* ─── Section base ────────────────────────────────────── */

.section {
  padding: clamp(60px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-intro {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ─── Services section ────────────────────────────────── */

.services-section {
  padding-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  position: relative;
  padding: 30px 28px 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  box-shadow: 0 16px 40px rgba(26, 36, 32, 0.12);
  transform: translateY(-3px);
  border-color: var(--leaf-light);
}

.feature-card-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 18px;
}

.feature-card-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card-icon.dog {
  background: var(--leaf-light);
  color: var(--leaf-dark);
}

.feature-card-icon.cat {
  background: var(--rose-light);
  color: var(--rose);
}

.feature-card-icon.map {
  background: var(--soft);
  color: var(--muted);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.feature-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-image-strip {
  overflow: hidden;
  max-height: 420px;
}

.services-image-strip img {
  object-fit: cover;
  max-height: 420px;
}

/* ─── Prices section ──────────────────────────────────── */

.prices {
  background: var(--soft);
}

.prices > .section-intro {
  max-width: 760px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.price-card {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-top: 4px solid transparent;
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.price-card:hover {
  box-shadow: 0 6px 24px rgba(26, 36, 32, 0.1);
}

.price-card.dog       { border-top-color: var(--leaf); }
.price-card.dog-we    { border-top-color: var(--leaf); }
.price-card.supplements { border-top-color: var(--rose); }
.price-card.cat       { border-top-color: #5ba8a0; }

.card-label {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dog .card-label,
.dog-we .card-label { background: var(--leaf-light); color: var(--leaf-dark); }
.supplements .card-label { background: var(--rose-light); color: var(--rose); }
.cat .card-label { background: #d6ecea; color: #2d7a74; }

.price-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: var(--ink);
}

.price-card .note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.price-card dl {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
}

.price-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.price-card dl div:first-child {
  padding-top: 0;
}

.price-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-card dt,
.price-card dd {
  margin: 0;
}

.price-card dt {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.price-card dd {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
  white-space: nowrap;
}

.kilometers {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 16px 22px;
  border: 1px solid var(--sand);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
}

/* ─── Hero trust ─────────────────────────────────────── */

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--leaf-dark);
  letter-spacing: -0.005em;
}

.hero-trust li span {
  color: var(--muted);
  font-weight: 600;
}

/* ─── À propos / Trust grid ──────────────────────────── */

.about {
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 24px 22px 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.trust-card:hover {
  box-shadow: 0 10px 32px rgba(26, 36, 32, 0.08);
  transform: translateY(-2px);
  border-color: var(--leaf-light);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: var(--leaf-light);
  color: var(--leaf-dark);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* ─── Comment ça marche ──────────────────────────────── */

.process {
  background: var(--soft);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 28px 24px 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-card a {
  color: var(--leaf-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--leaf-light);
}

.step-card a:hover {
  border-bottom-color: var(--leaf);
}

/* ─── Témoignage ─────────────────────────────────────── */

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

.rating-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 36px 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 12px 40px rgba(26, 36, 32, 0.06);
}

.rating-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.rating-stars {
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 6px;
  line-height: 1;
}

.rating-num {
  margin: 0;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--leaf-dark);
  letter-spacing: -0.03em;
}

.rating-num strong {
  font-weight: 400;
  font-size: 1.2em;
}

.rating-num span {
  color: var(--muted);
  font-size: 0.5em;
}

.rating-checks {
  display: grid;
  gap: 12px;
  margin: 0 auto 24px;
  padding: 0;
  list-style: none;
  text-align: left;
  max-width: 380px;
}

.rating-checks li {
  position: relative;
  padding: 6px 0 6px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--soft);
}

.rating-checks li:last-child {
  border-bottom: 0;
}

.rating-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--leaf-light) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l5 5 9-10' stroke='%23134a44' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat;
}

/* ─── FAQ ────────────────────────────────────────────── */

.faq {
  background: var(--soft);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.faq-item[open] {
  border-color: var(--leaf-light);
  box-shadow: 0 4px 18px rgba(26, 36, 32, 0.06);
}

.faq-item summary {
  padding: 16px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--leaf-dark);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
  color: var(--leaf-dark);
}

.faq-body {
  padding: 0 22px 18px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-body p {
  margin: 0 0 8px;
}

.faq-body p:last-child {
  margin-bottom: 0;
}

.faq-body a {
  color: var(--leaf-dark);
  font-weight: 700;
}

/* ─── Estimateur ─────────────────────────────────────── */

.estimateur {
  background: var(--soft);
}

.est-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  margin-top: 36px;
  align-items: start;
}

.est-fieldset {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px 16px;
  margin: 0 0 12px;
  background: var(--white);
}

.est-fieldset legend {
  padding: 0 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.est-radio-group {
  display: flex;
  gap: 10px;
  padding-top: 4px;
}

.est-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  transition: border-color 0.15s, background 0.15s;
}

.est-radio input[type="radio"] {
  accent-color: var(--leaf);
}

.est-radio:has(input:checked) {
  border-color: var(--leaf);
  background: var(--leaf-light);
  color: var(--leaf-dark);
}

.est-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.est-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.est-row:first-child {
  padding-top: 4px;
}

.est-row label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.est-row select,
.est-row input[type="number"] {
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 0.88rem;
  background: var(--paper);
  color: var(--ink);
  text-align: right;
  flex-shrink: 0;
}

.est-row select { max-width: 200px; }
.est-row input[type="number"] { width: 72px; }

.est-row select:focus,
.est-row input:focus {
  outline: 2px solid var(--leaf);
  outline-offset: 1px;
  border-color: transparent;
}

.est-check-row {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.est-check-row:last-of-type {
  border-bottom: 0;
}

.est-check-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.est-check-row input[type="checkbox"] {
  accent-color: var(--leaf);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.est-result {
  position: sticky;
  top: 88px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.est-result-title {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.est-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.est-line:last-child {
  border-bottom: 0;
}

.est-line span:first-child { color: var(--muted); }
.est-line span:last-child  { font-weight: 700; white-space: nowrap; }

.est-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.5;
}

.est-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--leaf);
}

.est-total-row span {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
}

.est-total-row strong {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--leaf-dark);
  letter-spacing: -0.02em;
}

.est-disclaimer {
  margin: 12px 0 0;
  font-size: 0.76rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

/* ─── Follow-band (Facebook conseils) ────────────────── */

.follow-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #1877f2 0%, #0d5fce 100%);
  color: var(--white);
}

.follow-copy .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.follow-copy h2 {
  margin: 0 0 6px;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--white);
}

.follow-copy p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.55;
}

.follow-btn {
  background: var(--white);
  border-color: var(--white);
  color: #1877f2;
  gap: 8px;
}

.follow-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #0d5fce;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
}

@media (max-width: 720px) {
  .follow-band {
    grid-template-columns: 1fr;
  }
}

/* ─── Contact section ─────────────────────────────────── */

.contact {
  background: var(--leaf-dark);
  color: var(--white);
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.contact h2 {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.contact-inner {
  max-width: 680px;
}

.contact-map {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-label {
  margin: 0 0 4px !important;
  font-size: 0.95rem !important;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9) !important;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.map-link {
  align-self: flex-end;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  font-weight: 700;
}

.map-link:hover {
  color: var(--white) !important;
  text-decoration: underline;
}

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

  .contact-map iframe {
    height: 260px;
  }
}

.contact p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin: 0 0 14px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.15s;
}

.contact-phone:hover {
  opacity: 0.8;
}

.contact-also {
  margin: 22px 0 10px !important;
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.15s, border-color 0.15s;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-link svg {
  flex-shrink: 0;
}

.contact-note {
  display: inline-block;
  margin-top: 6px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ─── Footer ──────────────────────────────────────────── */

footer {
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 32px;
}

footer p,
.footer-address {
  margin: 0;
  font-style: normal;
}

.footer-address a,
.footer-credit a {
  color: var(--leaf-dark);
  text-decoration: none;
  font-weight: 700;
}

.footer-address a:hover,
.footer-credit a:hover {
  text-decoration: underline;
}

.footer-credit {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ─── 404 ─────────────────────────────────────────────── */

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found main {
  padding: 24px;
}

/* ─── Responsive ──────────────────────────────────────── */

@media (max-width: 1100px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .est-card {
    grid-template-columns: 1fr;
  }

  .est-result {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 96px;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 10px;
  }

  .hero,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 32px;
  }

  .hero img {
    min-height: 340px;
  }

  .intro-band {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .features-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  nav a {
    font-size: 0.86rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
