/* ============================================================
   Antoine Antonas — Immobilier Tours
   Design system v2 : vert profond, typo moderne (Outfit + Plus
   Jakarta Sans), chips, bento, dégradés doux. Conçu par Adomia.
   ============================================================ */

:root {
  --ink: #101f16;
  --ink-soft: rgba(16, 31, 22, 0.68);
  --ink-mute: rgba(16, 31, 22, 0.52);
  --pine: #16382a;
  --pine-deep: #0f2a1f;
  --leaf: #1f7a4d;
  --leaf-bright: #2b9a63;
  --mint: #ddefe2;
  --pale: #dce7dd;
  --mint-soft: #ecf5ee;
  --sage: #6f9480;
  --bg: #f6f7f4;
  --paper: #ffffff;
  --gold: #f5a623;
  --line: rgba(16, 31, 22, 0.12);
  --line-soft: rgba(16, 31, 22, 0.07);
  --shadow-sm: 0 1px 2px rgba(16, 49, 33, 0.05), 0 6px 18px rgba(16, 49, 33, 0.06);
  --shadow-md: 0 2px 8px rgba(16, 49, 33, 0.06), 0 18px 46px rgba(16, 49, 33, 0.11);
  --shadow-lg: 0 6px 18px rgba(16, 49, 33, 0.08), 0 34px 90px rgba(16, 49, 33, 0.18);
  --grad-btn: linear-gradient(135deg, #1f7a4d 0%, #16382a 100%);
  --grad-band: linear-gradient(130deg, #16382a 0%, #123023 55%, #175c3b 100%);
  --font-title: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --header-h: 76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul[class], ol[class] { list-style: none; }
[hidden] { display: none !important; }
::selection { background: var(--leaf); color: #fff; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: clamp(68px, 8.5vw, 118px); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--pine); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0;
}
.skip:focus { left: 0; }

/* ---------- Typographie ---------- */
h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--pine);
}
.h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); }
.h2 { font-size: clamp(1.85rem, 3.2vw, 2.6rem); letter-spacing: -0.024em; }
.h3 { font-size: clamp(1.2rem, 1.9vw, 1.42rem); line-height: 1.25; letter-spacing: -0.014em; font-weight: 650; }
.h1 em, .h2 em { font-style: normal; color: var(--leaf); }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.16rem); color: var(--ink-soft); max-width: 56ch; }

/* Chip / eyebrow façon pastille */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-title);
  font-size: 0.76rem; font-weight: 650; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--leaf); background: var(--mint);
  border-radius: 999px; padding: 8px 16px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--leaf-bright); flex: none; }
.on-dark .eyebrow, .cta-band .eyebrow { background: rgba(255, 255, 255, 0.1); color: #9fe0b8; }
.on-dark .eyebrow::before, .cta-band .eyebrow::before { background: #9fe0b8; }
/* Respiration systématique entre une pastille et le titre qui la suit */
.eyebrow + h1, .eyebrow + h2, .eyebrow + h3,
.eyebrow + .h1, .eyebrow + .h2, .eyebrow + .h3 { margin-top: 18px; }

.section-head { max-width: 660px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head .h2 { margin: 18px 0 16px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-family: var(--font-title);
  font-weight: 600; font-size: 0.98rem; line-height: 1; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform 0.2s ease; }
.btn-primary { background: var(--grad-btn); color: #fff; box-shadow: 0 8px 22px rgba(31, 122, 77, 0.28); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 12px 30px rgba(31, 122, 77, 0.34); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-light { background: #fff; color: var(--pine); box-shadow: 0 8px 24px rgba(10, 25, 17, 0.22); }
.btn-light:hover { transform: translateY(-2px); }
.btn-light:hover svg { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--pine); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--pine); transform: translateY(-2px); }
.btn-xl { padding: 19px 34px; font-size: 1.04rem; }
.btn-sm { padding: 11px 20px; font-size: 0.9rem; }
.header-cta .btn-sm { padding: 15px 20px; font-size: 0.95rem; }
.btn-wide { width: 100%; }
.btn[disabled] { opacity: 0.55; pointer-events: none; }
.btn .spinner {
  width: 17px; height: 17px; border-radius: 50%; flex: none; display: none;
  border: 2px solid rgba(255, 255, 255, 0.35); border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .arrow { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Badge Google ---------- */
.gbadge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 999px;
  padding: 10px 18px; box-shadow: var(--shadow-sm);
  font-size: 0.88rem; color: var(--ink-soft);
}
.gbadge .g-logo { width: 20px; height: 20px; flex: none; }
.gbadge .stars { color: var(--gold); letter-spacing: 1.5px; font-size: 0.82rem; }
.gbadge b { color: var(--ink); font-weight: 700; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(246, 247, 244, 0.85);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-color: var(--line-soft);
}
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; line-height: 1.12; display: flex; align-items: center; gap: 11px; }
/* Picto : hauteur calee sur le bloc nom + ligne de service, couleur heritee du contexte */
.brand-mark { height: 38px; width: auto; flex: none; color: var(--pine); display: block; }
.footer .brand-mark { color: var(--pale); }
.brand strong { font-family: var(--font-title); font-size: 1.14rem; font-weight: 700; letter-spacing: -0.02em; color: var(--pine); display: block; }
.brand small { font-family: var(--font-title); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); display: block; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  text-decoration: none; font-family: var(--font-title); font-size: 0.94rem; font-weight: 500; color: var(--ink-soft);
  transition: color 0.15s ease; position: relative; padding-block: 6px;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--pine); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2.5px;
  background: var(--leaf); border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  font-family: var(--font-title); font-weight: 600; font-size: 0.95rem; line-height: 1; color: var(--pine);
  padding: 15px 20px; border-radius: 999px; background: #fff;
  box-shadow: inset 0 0 0 1.5px var(--line);
  transition: box-shadow 0.2s ease;
}
.header-phone:hover { box-shadow: inset 0 0 0 1.5px var(--pine); }
.header-phone svg { width: 15px; height: 15px; color: var(--leaf); }
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; position: relative; z-index: 130; }
.burger span, .burger span::before, .burger span::after {
  content: ""; position: absolute; left: 50%; width: 22px; height: 2px; border-radius: 2px;
  background: var(--pine); transform: translateX(-50%); transition: all 0.25s ease;
}
.burger span { top: 50%; margin-top: -1px; }
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
body.nav-open .burger span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed; inset: 0; z-index: 120; background: var(--bg);
  display: flex; flex-direction: column;
  padding: 0 24px calc(20px + env(safe-area-inset-bottom));
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease;
}
body.nav-open .mobile-menu { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }
.mobile-menu-top {
  height: var(--header-h); flex: none;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-close {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: #fff; box-shadow: inset 0 0 0 1.5px var(--line);
  display: grid; place-items: center; color: var(--pine);
  transition: box-shadow 0.2s ease;
}
.mobile-close:hover { box-shadow: inset 0 0 0 1.5px var(--pine); }
.mobile-close svg { width: 20px; height: 20px; }
.mobile-menu-nav { display: flex; flex-direction: column; flex: 1; justify-content: center; }
.mobile-menu-nav a {
  text-decoration: none; font-family: var(--font-title); font-weight: 650; letter-spacing: -0.02em;
  font-size: 1.7rem; color: var(--pine);
  padding: 17px 0; border-bottom: 1px solid var(--line-soft);
}
.mobile-menu-nav a:first-child { border-top: 1px solid var(--line-soft); }
.mobile-menu-nav a[aria-current="page"] { color: var(--leaf); }
.mobile-menu-foot { flex: none; display: grid; gap: 12px; padding-top: 20px; }

/* ---------- Fond avec halos ---------- */
.glow {
  position: relative;
}
.glow::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(720px 420px at 88% -10%, rgba(43, 154, 99, 0.13), transparent 62%),
    radial-gradient(560px 380px at -8% 22%, rgba(43, 154, 99, 0.08), transparent 60%);
}
.glow > * { position: relative; z-index: 1; }

/* ---------- Hero (accueil) ---------- */
.hero { padding-top: calc(var(--header-h) + clamp(36px, 5.5vw, 72px)); padding-bottom: clamp(60px, 8vw, 104px); overflow: hidden; }
.hero-in { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.hero-copy .h1 { margin: 20px 0 22px; }
.hero-copy .lead { margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 24px; }
.hero-note { display: flex; flex-wrap: nowrap; gap: 18px; font-size: 0.82rem; color: var(--ink-mute); white-space: nowrap; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { width: 14px; height: 14px; color: var(--leaf); }
.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.2; background: var(--mint);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; left: -28px; bottom: 34px; max-width: 300px;
  background: #fff; border-radius: var(--r-md); padding: 18px 20px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line-soft);
}
.hero-card .rev-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.hero-card .g-logo { width: 16px; height: 16px; }
.hero-card .stars { font-size: 0.8rem; letter-spacing: 1.5px; }
.hero-card p { font-size: 0.89rem; line-height: 1.5; color: var(--ink); font-weight: 500; }
.hero-card small { display: block; margin-top: 8px; font-size: 0.76rem; color: var(--ink-mute); }
.hero-badge {
  position: absolute; top: 22px; right: 22px;
  background: rgba(15, 42, 31, 0.78); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #fff; border-radius: 999px; padding: 9px 16px;
  font-family: var(--font-title); font-size: 0.8rem; font-weight: 600;
  display: inline-flex; gap: 8px; align-items: center;
}
.hero-badge i { width: 7px; height: 7px; border-radius: 50%; background: #5fe39a; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- Bento chiffres ---------- */
.bento { display: grid; grid-template-columns: 1.15fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.bento-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 26px 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  position: relative; overflow: hidden;
}
.bento-main {
  grid-row: 1 / 3;
  background: linear-gradient(150deg, #eaf5ed 0%, #f8fbf9 70%);
  justify-content: space-between; padding: 30px;
}
.bento-main .chip-line { font-family: var(--font-title); font-size: 0.74rem; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; color: var(--leaf); display: inline-flex; align-items: center; gap: 8px; }
.bento-main .chip-line::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--leaf-bright); }
.bento-main b { font-family: var(--font-title); font-weight: 700; letter-spacing: -0.03em; font-size: clamp(3.4rem, 6vw, 5rem); color: var(--leaf); line-height: 1; display: block; margin: 18px 0 4px; }
.bento-main .bento-lbl { font-family: var(--font-title); font-weight: 650; font-size: 1.06rem; color: var(--pine); }
.bento-main p { font-size: 0.88rem; color: var(--ink-mute); margin-top: 6px; max-width: 30ch; }
.bento-main svg.houses { position: absolute; right: 18px; bottom: 14px; width: 130px; height: auto; color: var(--leaf); opacity: 0.16; }
.bento-card .ico {
  width: 40px; height: 40px; border-radius: 12px; background: var(--mint);
  display: grid; place-items: center; color: var(--leaf); margin-bottom: 12px;
}
.bento-card .ico svg { width: 20px; height: 20px; }
.bento-card b { font-family: var(--font-title); font-weight: 700; letter-spacing: -0.02em; font-size: clamp(1.7rem, 2.6vw, 2.2rem); color: var(--pine); line-height: 1.1; }
.bento-card span { font-size: 0.88rem; color: var(--ink-mute); }
.bento-google .g-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.bento-google .g-logo { width: 26px; height: 26px; }
.bento-google .stars { font-size: 0.9rem; }
.stats-src { margin-top: 16px; font-size: 0.74rem; color: var(--ink-mute); }

/* ---------- Cartes méthode ---------- */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.method-card {
  background: #fff; border-radius: var(--r-md); padding: 32px 30px;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 13px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.method-card .num {
  font-family: var(--font-title); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em;
  color: var(--leaf); text-transform: uppercase;
}
.method-card p { font-size: 0.94rem; color: var(--ink-soft); }
.method-card .tag {
  margin-top: auto; padding-top: 16px; font-size: 0.84rem; font-weight: 600; color: var(--leaf);
  display: inline-flex; align-items: center; gap: 8px;
}
.method-card .tag svg { width: 14px; height: 14px; }

/* ---------- Ventes récentes ---------- */
.sales { background: linear-gradient(180deg, var(--mint-soft), var(--bg)); }
.sales-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sale-card {
  background: #fff; border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line-soft); display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sale-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sale-card .photo { position: relative; aspect-ratio: 4 / 3; background: var(--mint); overflow: hidden; }
.sale-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.sale-card:hover .photo img { transform: scale(1.045); }
.sale-card .sold {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff; background: rgba(15, 42, 31, 0.82); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 6px 12px;
}
.sale-card .sold svg { width: 11px; height: 11px; }
.sale-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 3px; }
.sale-card h3 { font-size: 1rem; font-weight: 650; letter-spacing: -0.01em; }
.sale-card .place { font-size: 0.84rem; color: var(--ink-mute); }
.sale-card .row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 10px; }
.sale-card .price { font-family: var(--font-title); font-weight: 700; letter-spacing: -0.02em; font-size: 1.3rem; color: var(--pine); }
.sale-card .delay {
  font-family: var(--font-title); font-size: 0.76rem; font-weight: 700; color: var(--leaf);
  background: var(--mint); border-radius: 999px; padding: 5px 11px; white-space: nowrap;
}

/* ---------- Bandeau CTA sombre ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--grad-band); color: #fff; padding: clamp(42px, 6vw, 72px); }
.cta-band::before {
  content: ""; position: absolute; right: -140px; top: -140px; width: 460px; height: 460px;
  border-radius: 50%; background: radial-gradient(circle, rgba(95, 227, 154, 0.2), transparent 65%);
}
.cta-band::after {
  content: ""; position: absolute; left: -120px; bottom: -180px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(245, 166, 35, 0.12), transparent 65%);
}
.cta-band-in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
.cta-band .h2 { color: #fff; margin: 16px 0 14px; }
.cta-band .h2 em { color: #7fe0a6; }
.cta-band p { color: rgba(255, 255, 255, 0.75); max-width: 46ch; }
.cta-steps { display: flex; flex-direction: column; }
.cta-step { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
.cta-step:last-child { border-bottom: 0; }
.cta-step .n {
  flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-title); font-weight: 700; font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1); color: #7fe0a6;
}
.cta-step strong { display: block; font-family: var(--font-title); font-weight: 650; font-size: 0.98rem; }
.cta-step small { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }
.cta-band .btn { margin-top: 26px; }
.contact-band { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
.contact-band .form-card { box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3); color: var(--ink); }
.contact-band .form-card p { color: var(--ink-mute); max-width: none; }
.contact-band-note { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); margin-top: 16px; }
.contact-band-note a { color: #9fe0b8; }

/* ---------- À propos / présentation ---------- */
.about-in { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
/* Photo cadree sur la hauteur reelle du contenu voisin */
.about-in.is-matched { align-items: stretch; }
.about-in.is-matched .about-media { display: flex; min-width: 0; }
.about-in > * { min-width: 0; }
.about-in.is-matched .about-media .frame { aspect-ratio: auto; width: 100%; height: 100%; min-height: 340px; }
.about-in.is-textfirst { grid-template-columns: 1.05fr 0.95fr; }
.about-media { position: relative; }
.about-media .frame {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4; background: var(--mint);
}
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-gbadge {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: -20px;
  white-space: nowrap;
}
.about-badge {
  position: absolute; right: -16px; top: 24px; background: #fff;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-md);
  border-radius: var(--r-md); padding: 14px 18px; text-align: center;
}
.about-badge b { font-family: var(--font-title); font-weight: 700; font-size: 1.4rem; color: var(--leaf); display: block; letter-spacing: -0.02em; }
.about-badge span { font-size: 0.76rem; color: var(--ink-mute); }
.about-copy .h2 { margin: 18px 0 18px; }
.about-copy p + p { margin-top: 14px; }
.about-copy p { color: var(--ink-soft); }
.about-list { margin: 26px 0 30px; display: grid; gap: 13px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; }
.about-list svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--leaf); }
.about-list strong { font-weight: 700; }
.zone-box {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  padding: 16px 20px; margin: 22px 0 26px;
  display: flex; flex-direction: column; gap: 4px;
}
.zone-box .zlbl { font-family: var(--font-title); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--sage); }
.zone-box .ztxt { font-weight: 600; font-size: 0.97rem; color: var(--pine); }
.zone-chip { display: inline-flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.zone-chip span {
  font-family: var(--font-title); font-size: 0.82rem; font-weight: 600; color: var(--pine);
  background: var(--mint); border-radius: 999px; padding: 7px 14px;
}

@media (min-width: 1025px) {
  .about-in.media-left > .about-media { order: -1; }
}

/* Section secteur : photo sous le titre en mobile, à gauche en desktop */
.zone-in {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  grid-template-areas: "media head" "media rest";
  grid-template-rows: auto auto;
  column-gap: clamp(40px, 6vw, 80px); row-gap: 18px; align-items: center;
}
.zone-head { grid-area: head; align-self: end; }
.zone-media { grid-area: media; }
.zone-media .frame { aspect-ratio: 16 / 11; }
.zone-rest { grid-area: rest; align-self: start; }
@media (min-width: 1025px) {
  .zone-media { align-self: stretch; }
  .zone-media .frame { height: 100%; aspect-ratio: auto; }
}
@media (max-width: 1024px) {
  .zone-in { grid-template-columns: 1fr; grid-template-areas: "head" "media" "rest"; row-gap: 24px; }
  .zone-head, .zone-rest { align-self: auto; }
}

/* ---------- Avis ---------- */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(34px, 4vw, 52px); }
.reviews-head .h2 { margin-top: 18px; }
.reviews-score {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 16px 22px; box-shadow: var(--shadow-sm);
}
.reviews-score .g-logo { width: 34px; height: 34px; }
.reviews-score b { font-family: var(--font-title); font-weight: 700; font-size: 1.9rem; color: var(--pine); letter-spacing: -0.02em; }
.reviews-score .stars { font-size: 0.92rem; }
.reviews-score small { display: block; font-size: 0.8rem; color: var(--ink-mute); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm);
  position: relative;
}
.review .quote-mark {
  position: absolute; top: 20px; right: 24px;
  font-family: Georgia, serif; font-size: 3.2rem; line-height: 1; color: var(--mint);
}
.review .rev-top { display: flex; align-items: center; gap: 9px; }
.review .g-logo { width: 17px; height: 17px; }
.review .stars { font-size: 0.82rem; letter-spacing: 2px; }
.review blockquote { font-size: 1.02rem; line-height: 1.55; color: var(--ink); font-weight: 500; }
.review footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--mint); color: var(--leaf); display: grid; place-items: center;
  font-family: var(--font-title); font-weight: 700; font-size: 0.9rem;
}
.review footer b { font-size: 0.92rem; display: block; font-weight: 700; }
.review footer small { font-size: 0.78rem; color: var(--ink-mute); }

/* ---------- Étapes numérotées ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; position: relative; }
.step-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 30px 28px; box-shadow: var(--shadow-sm); position: relative;
  display: flex; flex-direction: column; gap: 10px;
}
.step-card .dot {
  width: 38px; height: 38px; border-radius: 50%; background: var(--grad-btn); color: #fff;
  font-family: var(--font-title); font-weight: 700; display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(31, 122, 77, 0.3); margin-bottom: 8px;
}
.step-card .meta {
  font-family: var(--font-title); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--leaf);
}
.step-card p { font-size: 0.94rem; color: var(--ink-soft); }
.step-card .foot { margin-top: auto; padding-top: 12px; font-size: 0.82rem; font-weight: 600; color: var(--ink-mute); display: inline-flex; align-items: center; gap: 8px; }
.step-card .foot i { width: 6px; height: 6px; border-radius: 50%; background: var(--leaf-bright); }


/* ---------- Carrousel d'avis ---------- */
.carousel-nav { display: flex; gap: 10px; }
.carousel-btn {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: #fff; box-shadow: inset 0 0 0 1.5px var(--line); color: var(--pine);
  display: grid; place-items: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.carousel-btn:hover { box-shadow: inset 0 0 0 1.5px var(--pine); transform: translateY(-2px); }
.carousel-btn[disabled] { opacity: 0.35; pointer-events: none; }
.carousel-btn svg { width: 18px; height: 18px; }
.reviews-carousel { position: relative; margin-inline: calc(var(--gutter, 0px) * -1); }
.reviews-track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  /* meme compensation que .sales-track pour ne pas rogner les ombres */
  padding: 20px 24px 70px; margin: -20px -24px -54px;
  scroll-padding-inline: 24px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.reviews-track > .review { flex: 0 0 calc((100% - 54px) / 4); padding: 24px 22px 20px; }
.reviews-track > .review blockquote { font-size: 0.94rem; }
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track:focus-visible { outline: 2px solid var(--leaf); outline-offset: 4px; border-radius: var(--r-md); }
.reviews-track > .review { scroll-snap-align: start; height: 100%; }
@media (max-width: 1024px) {
  .reviews-track > .review { flex-basis: calc((100% - 18px) / 2); }
}
@media (max-width: 640px) {
  .reviews-track > .review { flex-basis: 86%; }
  .carousel-nav { display: none; }
}

/* ---------- Carrousel des ventes ---------- */
.sales-track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  /* marges negatives compensees : les ombres (flou 18px, 46px au survol) ont besoin de ce degagement pour ne pas etre rognees par la zone de defilement */
  padding: 20px 24px 70px; margin: -20px -24px -54px;
  scroll-padding-inline: 24px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.sales-track::-webkit-scrollbar { display: none; }
.sales-track:focus-visible { outline: 2px solid var(--leaf); outline-offset: 4px; border-radius: var(--r-md); }
.sales-track > .sale-card { flex: 0 0 calc((100% - 36px) / 3); scroll-snap-align: start; }
@media (max-width: 1024px) {
  .sales-track > .sale-card { flex-basis: calc((100% - 18px) / 2); }
}
@media (max-width: 640px) {
  .sales-track > .sale-card { flex-basis: 78%; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  overflow: hidden; transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 21px 26px; font-family: var(--font-title); font-weight: 650; font-size: 1.02rem; color: var(--pine);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm {
  flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--mint);
  display: grid; place-items: center; color: var(--leaf); transition: transform 0.25s ease;
}
.faq-item summary .pm svg { width: 14px; height: 14px; }
.faq-item[open] summary .pm { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.96rem; max-width: 64ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-info { display: grid; gap: 14px; margin-top: 28px; }
.contact-line {
  display: flex; align-items: center; gap: 16px; text-decoration: none;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 18px 22px; transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
}
a.contact-line:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact-line .ico {
  flex: none; width: 44px; height: 44px; border-radius: 13px; background: var(--mint);
  display: grid; place-items: center; color: var(--leaf);
}
.contact-line .ico svg { width: 20px; height: 20px; }
.contact-line b { display: block; font-size: 0.98rem; font-weight: 700; }
.contact-line small { font-size: 0.84rem; color: var(--ink-mute); }

.form-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md);
}
.form-card h2, .form-card .h3 { margin-bottom: 6px; }
.form-card > p { font-size: 0.92rem; color: var(--ink-mute); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-title); font-size: 0.86rem; font-weight: 650; margin-bottom: 8px; color: var(--pine); }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 14px 16px; font-size: 1rem; transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--leaf); background: #fff; box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.1);
}
.field textarea { resize: vertical; min-height: 110px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.err { display: none; font-size: 0.84rem; color: #c03131; margin-top: 7px; }
.err.is-visible { display: block; }
.field.has-error input, .field.has-error textarea { border-color: #c03131; }
.lbl-opt { font-weight: 500; color: var(--ink-mute); text-transform: none; letter-spacing: 0; }
.delai-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.delai-pills .pill {
  font-family: var(--font-title); font-weight: 600; font-size: 0.85rem; line-height: 1;
  padding: 11px 16px; border-radius: 999px;
  background: var(--bg); box-shadow: inset 0 0 0 1.5px var(--line); color: var(--ink-soft);
  transition: box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.delai-pills .pill:hover { box-shadow: inset 0 0 0 1.5px var(--leaf); color: var(--pine); background: #fff; }
.delai-pills .pill[aria-pressed="true"] {
  background: var(--mint); box-shadow: inset 0 0 0 1.5px var(--leaf); color: var(--leaf); font-weight: 700;
}
.form-consent { display: flex; gap: 11px; align-items: flex-start; font-size: 0.85rem; color: var(--ink-soft); margin: 4px 0 20px; }
.form-consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--leaf); flex: none; }
.form-consent a { color: var(--leaf); }
.form-done { text-align: center; padding: 40px 12px; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.badge-ok {
  display: inline-flex; align-items: center; gap: 9px; background: var(--mint); color: var(--leaf);
  font-family: var(--font-title); font-weight: 700; font-size: 0.9rem;
  border-radius: 999px; padding: 9px 18px; margin-bottom: 20px;
}
.badge-ok svg { width: 15px; height: 15px; }

/* ---------- Simulateur ---------- */
.sim-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding-top: calc(var(--header-h) + clamp(20px, 3vw, 36px));
  padding-bottom: clamp(32px, 4vw, 52px);
  overflow: hidden;
}
.sim-hero-in {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  grid-template-areas: "copy sim" "points sim";
  grid-template-rows: auto 1fr;
  column-gap: clamp(36px, 5vw, 72px); align-items: start;
}
.sim-hero-copy { grid-area: copy; }
.sim-shell { grid-area: sim; }
.sim-points { grid-area: points; }
.sim-hero-copy .h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin: 20px 0 20px; }
.sim-points { margin-top: 28px; display: grid; gap: 14px; align-content: start; }
.sim-points li { display: flex; gap: 12px; font-size: 0.96rem; color: var(--ink-soft); }
.sim-points svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--leaf); }
.sim-trust { margin-top: 30px; }

.sim-shell { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.sim {
  min-height: var(--sim-h, 486px);
  display: flex; flex-direction: column;
  transition: min-height 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: clamp(26px, 3.4vw, 40px); position: relative; width: 100%;
}
.sim-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; min-height: 34px; }
.sim-back {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-title); font-size: 0.88rem; font-weight: 600; color: var(--ink-mute);
  padding: 5px 8px; margin-left: -8px; border-radius: 8px;
}
.sim-back:hover { color: var(--pine); background: var(--mint-soft); }
.sim-back svg { width: 15px; height: 15px; }
.sim-count { font-family: var(--font-title); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; color: var(--sage); text-transform: uppercase; }
.sim-bar { height: 6px; background: var(--mint); border-radius: 99px; overflow: hidden; margin-bottom: 30px; }
.sim-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--leaf), var(--leaf-bright)); border-radius: 99px; transition: width 0.5s cubic-bezier(0.25, 1, 0.4, 1); }

.screen { display: none; border: 0; }
.screen.is-active { display: block; animation: screenIn 0.4s cubic-bezier(0.2, 0.9, 0.3, 1); }
.screen.is-back.is-active { animation-name: screenInBack; }
@keyframes screenIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
@keyframes screenInBack { from { opacity: 0; transform: translateX(-26px); } to { opacity: 1; transform: none; } }
.sim-title {
  font-family: var(--font-title); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(1.3rem, 2.1vw, 1.6rem); color: var(--pine); line-height: 1.15; margin-bottom: 8px;
}
.sim-lead { font-size: 0.92rem; color: var(--ink-mute); margin-bottom: 26px; }

.tiles { display: grid; gap: 13px; }
.tile {
  display: flex; align-items: center; gap: 16px; text-align: left; width: 100%;
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 18px 20px; transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.tile:hover { border-color: var(--leaf); background: #fff; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(31, 122, 77, 0.1); }
.tile[aria-checked="true"] { border-color: var(--leaf); background: var(--mint-soft); }
.tile-ico {
  flex: none; width: 48px; height: 48px; border-radius: 13px; background: var(--mint);
  display: grid; place-items: center; color: var(--leaf);
}
.tile-ico svg { width: 24px; height: 24px; }
.tile-txt strong { display: block; font-family: var(--font-title); font-weight: 650; font-size: 1.02rem; }
.tile-txt small { font-size: 0.84rem; color: var(--ink-mute); }
.tile-arrow { margin-left: auto; color: var(--sage); }
.tile-arrow svg { width: 18px; height: 18px; }
.tiles-3 .tile { padding: 15px 18px; }

.addr-wrap { position: relative; }
.addr-list {
  position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 6px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.addr-list li { padding: 12px 16px; cursor: pointer; display: flex; flex-direction: column; gap: 1px; }
.addr-list li:hover, .addr-list li.is-focus { background: var(--mint-soft); }
.addr-list li span { font-size: 0.95rem; font-weight: 600; }
.addr-list li small { font-size: 0.8rem; color: var(--ink-mute); }
.input-unit { position: relative; }
.input-unit span {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-title); font-size: 0.9rem; font-weight: 650; color: var(--sage); pointer-events: none;
}
.sim-actions { margin-top: 26px; }
.reassure { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 18px; font-size: 0.79rem; color: var(--ink-mute); }
.sim-foot { margin-top: auto; padding-top: 22px; }
.reassure span { display: inline-flex; align-items: center; gap: 6px; }
.reassure span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--leaf-bright); }

/* Résultat */
.result { text-align: center; padding-block: 10px; }
.result-intro { font-size: 0.95rem; color: var(--ink-mute); }
.result-fourchette {
  display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap; gap: 6px 14px;
  font-family: var(--font-title); font-weight: 700; letter-spacing: -0.025em;
  font-size: clamp(1.8rem, 3.8vw, 2.5rem); color: var(--pine); line-height: 1.15;
  margin: 10px 0 22px;
}
.result-fourchette em { font-style: normal; font-family: var(--font-body); font-weight: 500; font-size: 0.45em; color: var(--sage); }
.result-mid {
  font-family: var(--font-title); font-weight: 700; letter-spacing: -0.03em;
  font-size: clamp(2.7rem, 5.6vw, 3.8rem); color: var(--pine); line-height: 1.1; margin: 6px 0 18px;
}
.result-mid em { font-style: normal; font-size: 0.55em; margin-left: 6px; color: var(--sage); }
.result-range {
  display: inline-flex; align-items: center; gap: 14px; background: var(--bg);
  border: 1px solid var(--line-soft); border-radius: 999px; padding: 11px 22px; margin-bottom: 24px;
  font-size: 0.95rem;
}
.result-range span { font-family: var(--font-title); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--sage); font-weight: 700; }
.result-range i { width: 26px; height: 1.5px; background: var(--line); }
.result-range strong { color: var(--pine); font-weight: 700; }
.result-outzone { font-size: 0.88rem; color: #b4622f; max-width: 46ch; margin: 0 auto 20px; }
.result-legal { font-size: 0.78rem; color: var(--ink-mute); max-width: 52ch; margin: 18px auto 0; }
.result-callback { font-size: 0.9rem; color: var(--ink-soft); margin-top: 16px; }

/* Barre mobile */
.mobile-bar {
  position: fixed; z-index: 90; left: 14px; right: 14px; bottom: 14px;
  transform: translateY(120%); transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  display: none;
}
.mobile-bar.is-visible { transform: none; }
.mobile-bar .btn { width: 100%; box-shadow: var(--shadow-lg); }

/* ---------- Blog ---------- */
.blog-hero { padding-top: calc(var(--header-h) + clamp(40px, 6vw, 72px)); padding-bottom: clamp(36px, 5vw, 56px); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease; box-shadow: var(--shadow-sm);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card .thumb { aspect-ratio: 16 / 9; background: var(--mint); overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.post-card .meta { font-family: var(--font-title); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); }
.post-card h2 { font-size: 1.16rem; line-height: 1.28; letter-spacing: -0.015em; }
.post-card p { font-size: 0.92rem; color: var(--ink-soft); }
.blog-empty {
  background: #fff; border: 1.5px dashed var(--line); border-radius: var(--r-lg);
  padding: clamp(48px, 7vw, 88px) 28px; text-align: center;
}
.blog-empty .h3 { margin-bottom: 10px; }
.blog-empty p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 26px; }

/* Article */
.article { padding-top: calc(var(--header-h) + clamp(36px, 5vw, 64px)); }
.article-head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: clamp(32px, 4vw, 48px); }
.article-head .meta { font-family: var(--font-title); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; display: block; }
.article-head .h1 { font-size: clamp(2rem, 3.8vw, 3rem); }
.article-cover { max-width: 980px; margin-inline: auto; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 21 / 9; background: var(--mint); box-shadow: var(--shadow-md); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.prose { max-width: 700px; margin: clamp(40px, 5vw, 64px) auto 0; font-size: 1.06rem; line-height: 1.78; color: var(--ink); }
.prose h2 { font-size: 1.55rem; margin: 2.2em 0 0.7em; }
.prose h3 { font-size: 1.22rem; margin: 1.8em 0 0.6em; }
.prose p + p { margin-top: 1.1em; }
.prose ul, .prose ol { margin: 1.1em 0 1.1em 1.4em; }
.prose li + li { margin-top: 0.45em; }
.prose a { color: var(--leaf); }
.prose blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--leaf);
  font-family: var(--font-title); font-weight: 600; font-size: 1.12em; color: var(--pine);
}
.author-box {
  max-width: 700px; margin: clamp(48px, 6vw, 72px) auto 0;
  background: var(--mint-soft); border-radius: var(--r-lg); padding: 28px 30px;
  display: flex; gap: 20px; align-items: center;
}
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; object-position: center top; flex: none; }
.author-box b { display: block; font-family: var(--font-title); font-weight: 700; font-size: 1.02rem; }
.author-box p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 3px; }

/* ---------- Pages légales ---------- */
.legal-page { padding-top: calc(var(--header-h) + clamp(40px, 6vw, 72px)); }
.legal-body { max-width: 760px; margin-top: clamp(32px, 4vw, 48px); }
.legal-body h2 { font-size: 1.3rem; margin: 2.1em 0 0.6em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 0.97rem; }
.legal-body p + p { margin-top: 0.8em; }
.legal-body ul { margin: 0.8em 0 0.8em 1.3em; }
.legal-body a { color: var(--leaf); }

/* ---------- Footer ---------- */
.footer { background: var(--pine-deep); color: rgba(255, 255, 255, 0.72); margin-top: clamp(28px, 3.5vw, 56px); }
.footer-in {
  display: grid; grid-template-columns: 1.15fr 1.1fr 0.85fr; gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(52px, 6vw, 80px); align-items: start;
}
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { list-style: none; }
.footer-meta { font-size: 0.86rem; color: rgba(255, 255, 255, 0.5); margin-top: 14px; }
.footer-cta {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md); padding: 24px; display: grid; gap: 12px;
}
.footer-cta p { font-family: var(--font-title); font-weight: 650; font-size: 1.02rem; color: #fff; margin-bottom: 4px; }
.footer-call { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.28); }
.footer-call:hover { box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.6); }
.footer .brand strong { color: #fff; }
.footer .brand small { color: rgba(255, 255, 255, 0.45); }
.footer-about { font-size: 0.92rem; margin-top: 16px; max-width: 34ch; }
.footer h3 { font-family: var(--font-title); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer a { color: rgba(255, 255, 255, 0.8); text-decoration: none; font-size: 0.94rem; transition: color 0.15s ease; }
.footer a.btn-light { color: var(--pine); font-size: 0.98rem; }
.footer a.footer-call { color: #fff; font-size: 0.98rem; }
.footer a:hover { color: #fff; }
.footer a.btn-light:hover { color: var(--pine); }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12); padding-block: 20px;
  font-size: 0.78rem; line-height: 1.6; color: rgba(255, 255, 255, 0.45);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12); padding-block: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a { font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); }
.footer-adomia a { color: rgba(255, 255, 255, 0.55); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Bannière cookies ---------- */
.cookie {
  position: fixed; z-index: 150; left: 18px; bottom: 18px; max-width: 400px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 22px 24px;
  transform: translateY(24px); opacity: 0; visibility: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.cookie.is-visible { transform: none; opacity: 1; visibility: visible; }
.cookie h3 { font-size: 1rem; margin-bottom: 8px; }
.cookie p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie p a { color: var(--leaf); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { flex: 1; }

/* ---------- 404 ---------- */
.page-404 { min-height: 70vh; display: grid; place-items: center; text-align: center; padding-top: var(--header-h); }
.page-404 .num { font-family: var(--font-title); font-weight: 700; font-size: clamp(5rem, 14vw, 9rem); color: var(--mint); line-height: 1; letter-spacing: -0.04em; }
.page-404 .h2 { margin: 10px 0 14px; }
.page-404 p { color: var(--ink-soft); margin-bottom: 30px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.9, 0.3, 1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .sim { transition: none; }
  .screen.is-active { animation: none; }
}
html:not(.js) .reveal { opacity: 1; transform: none; }

.noscript {
  position: fixed; z-index: 300; left: 0; right: 0; bottom: 0;
  background: var(--pine); color: #fff; text-align: center; padding: 14px 20px; font-size: 0.92rem;
}
.noscript a { color: #7fe0a6; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: block; }
  .header-phone .num { display: none; }
  .header-est { display: none; }
  .brand-mark { height: 34px; }
  .hero-in, .about-in, .cta-band-in, .contact-grid { grid-template-columns: 1fr; }
  .sim-hero { min-height: 0; align-content: start; }
  .sim-hero-in { grid-template-columns: 1fr; grid-template-areas: "copy" "sim" "points"; grid-template-rows: auto; }
  .sim-hero-in .sim-shell { margin-top: 34px; }
  .sim-hero-copy .gbadge { margin-bottom: 14px !important; }
  .sim-hero-copy .h1 { margin-top: 0; }
  .sim-points { margin-top: 32px; }
  .sim-hero-copy { position: static; }
  .method-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .sales-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-main { grid-row: auto; grid-column: 1 / 3; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-in { grid-template-columns: 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
  .hero-media .frame { aspect-ratio: 16 / 11; }
  .about-media .frame { aspect-ratio: 16 / 12; }
  .about-in.is-textfirst { grid-template-columns: 1fr; }
  .about-in.is-matched { align-items: center; }
  .about-in.is-matched .about-media { display: block; }
  .about-in.is-matched .about-media .frame { aspect-ratio: 16 / 12; height: auto; min-height: 0; }
  .about-badge { right: 12px; }
}
@media (max-width: 640px) {
  .container { width: calc(100% - 36px); }
  /* la gouttiere passe a 18px : on aligne le debordement des carrousels dessus,
     sinon la piste depasse de l'ecran et les cartes collent au bord */
  .sales-track, .reviews-track { padding-inline: 18px; margin-inline: -18px; scroll-padding-inline: 18px; }
  .eyebrow { white-space: nowrap; font-size: 0.66rem; letter-spacing: 0.09em; padding: 7px 13px; }
  .method-grid, .sales-grid, .reviews-grid, .blog-grid, .row-2, .bento, .steps-grid { grid-template-columns: 1fr; }
  .bento-main { grid-column: auto; }
  .hero-actions .btn { width: 100%; }
  .hero-card { position: static; max-width: none; margin-top: 14px; }
  .hero-media .frame { aspect-ratio: 16 / 10; }
  .cta-band { padding: 34px 26px; }
  .mobile-bar { display: block; }
  .footer-in { grid-template-columns: 1fr; gap: 30px; padding-block: 44px; }
  .footer-links { grid-template-columns: 1fr; gap: 26px; }
  .hero-note { flex-wrap: wrap; white-space: normal; gap: 8px 18px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cookie { left: 12px; right: 12px; max-width: none; }
  .sim { padding: 22px 18px 26px; }
  .reassure { gap: 8px 14px; font-size: 0.75rem; }
  .sim-foot { padding-top: 18px; }
  .btn-xl { padding: 17px 28px; font-size: 1rem; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .about-gbadge { position: static; transform: none; margin-top: 14px; display: inline-flex; }
  .about-media { display: flex; flex-direction: column; align-items: center; }
  .about-media .frame { width: 100%; }
}
