/* ==========================================================
   Sweeps — feuille de style commune
   ========================================================== */

:root {
  --navy: #1E1E6E;
  --navy-dark: #14144d;
  --navy-soft: #2b2b85;
  --gold: #F5A623;
  --gold-dark: #dc8f10;
  --gold-text: #9c6200;   /* doré lisible pour les petits textes sur fond clair (contraste ≥ 4,5) */
  --muted-light: #6f7290; /* gris des éléments « non inclus », lisible */
  --ink: #1b1b33;
  --muted: #5d5f7a;
  --line: #e4e5ef;
  --soft: #f5f6fb;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(30, 30, 110, .08);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
a { color: inherit; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.section-soft { background: var(--soft); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); color: var(--navy); }
.section-head p { color: var(--muted); font-size: 1.08rem; }

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

/* Marqueur des contenus provisoires — à supprimer une fois complétés */
.todo {
  display: inline-block;
  background: #fff3cd; color: #7a5200; border: 1px dashed #d9a400;
  font-size: .78rem; font-weight: 600; padding: 2px 8px; border-radius: 6px;
}
.todo-block { margin-top: 18px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px; border: 2px solid transparent;
  font: inherit; font-weight: 700; font-size: 1rem; text-decoration: none; text-align: center;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.btn-sm { padding: 9px 18px; font-size: .92rem; }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 8px 20px rgba(245, 166, 35, .35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover:not(:disabled) { background: var(--navy-soft); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.link-btn {
  background: none; border: 0; color: var(--muted); font: inherit; font-size: .92rem;
  text-decoration: underline; cursor: pointer; margin-top: 14px;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---------- En-tête du site ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(30, 30, 110, .97); backdrop-filter: blur(8px);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px; background: var(--gold); color: var(--navy);
  display: grid; place-items: center; font-weight: 800; font-size: 1.25rem;
}
.logo-text { font-weight: 800; font-size: 1.3rem; letter-spacing: -.01em; }
.menu { display: flex; align-items: center; gap: 28px; }
.menu a { color: rgba(255,255,255,.85); text-decoration: none; font-weight: 500; font-size: .95rem; }
.menu a:hover { color: var(--gold); }
.menu a.btn { color: var(--navy); }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: .25s; }

/* ---------- Héros ---------- */
.hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(245,166,35,.18), transparent 45%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 80px 0 96px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); font-weight: 800; }
.hero-sub { font-size: clamp(1.15rem, 2.2vw, 1.4rem); color: rgba(255,255,255,.82); margin-bottom: 36px; }
.hero-sub strong { color: var(--gold); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.visual-placeholder {
  aspect-ratio: 4 / 3.4; border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  color: var(--gold);
}
.visual-placeholder svg { width: 96px; }
.hero-visual img { border-radius: 24px; width: 100%; height: auto; box-shadow: 0 30px 60px rgba(0,0,0,.3); }

/* ---------- Simulateur ---------- */
.simulator-section { background: var(--soft); }
.simulator {
  max-width: 760px; margin: 0 auto; background: var(--white);
  border-radius: 24px; box-shadow: var(--shadow); padding: 40px;
}
.sim-progress { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0 0 32px; counter-reset: s; }
.sim-progress li {
  flex: 1; font-size: .82rem; font-weight: 600; color: var(--muted);
  padding-top: 12px; border-top: 4px solid var(--line); counter-increment: s;
}
.sim-progress li::before { content: counter(s) ". "; }
.sim-progress li.is-active, .sim-progress li.is-done { color: var(--navy); border-color: var(--gold); }

.sim-step { display: none; border: 0; padding: 0; margin: 0; }
.sim-step.is-active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.sim-step legend { font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; padding: 0; }
.sim-step legend small { font-size: .85rem; font-weight: 400; color: var(--muted); }

.choices { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  display: flex; align-items: center; min-height: 58px; padding: 14px 18px;
  border: 2px solid var(--line); border-radius: 12px; font-weight: 600; transition: .15s;
}
.choice:hover span { border-color: var(--navy-soft); }
.choice input:checked + span { border-color: var(--gold); background: #fff8ea; color: var(--navy); }
.choice input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }

.sim-nav { display: flex; justify-content: space-between; margin-top: 32px; }
.simulator[data-step="1"] [data-prev] { visibility: hidden; }
.simulator[data-step="4"] .sim-nav { display: none; }

.sim-result { text-align: center; }
.result-label { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; margin-bottom: 6px; }
.result-value { font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 18px; }
.result-value small { font-size: 1.1rem; font-weight: 600; color: var(--muted); }
.result-note { color: var(--muted); max-width: 520px; margin: 0 auto 28px; font-size: .95rem; }
.sim-result .btn { display: flex; width: fit-content; margin: 0 auto; }

/* ---------- Chiffres clés ---------- */
.stats { background: var(--navy); color: var(--white); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-value { font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 800; color: var(--gold); margin: 0; line-height: 1.1; }
.stat-label { color: rgba(255,255,255,.8); margin: 6px auto 0; max-width: 200px; font-size: .98rem; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: box-shadow .2s, transform .2s;
}
.service:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--navy);
  display: grid; place-items: center; margin-bottom: 18px;
}
.service-icon svg { width: 26px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service h3 { font-size: 1.12rem; color: var(--navy); }
.service p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Étapes ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 26px; left: 12%; right: 12%;
  border-top: 2px dashed rgba(30,30,110,.2);
}
.step { position: relative; text-align: center; padding: 0 8px; }
.step-num {
  position: relative; display: grid; place-items: center; margin: 0 auto 18px;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); color: var(--navy); font-weight: 800; font-size: 1.3rem;
  box-shadow: 0 0 0 8px var(--soft);
}
.step h3 { font-size: 1.12rem; color: var(--navy); }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- Témoignages ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  margin: 0; background: var(--soft); border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column;
}
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.testimonial blockquote { margin: 0 0 24px; font-size: 1.05rem; flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial figcaption small { display: block; color: var(--muted); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: grid; place-items: center; font-weight: 700;
}

/* ---------- CTA final ---------- */
.cta {
  background:
    radial-gradient(circle at 10% 90%, rgba(245,166,35,.2), transparent 40%),
    var(--navy);
  color: var(--white); padding: 96px 0; text-align: center;
}
.cta h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: 32px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.cta-note { margin: 22px 0 0; color: rgba(255,255,255,.7); font-size: .95rem; }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.7); padding: 56px 0 28px; }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-grid p { margin: 12px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 22px; font-size: .88rem; }

/* ==========================================================
   Tablette
   ========================================================== */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .testimonials { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
}

/* ==========================================================
   Mobile
   ========================================================== */
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .menu {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); padding: 8px 20px 24px;
    display: none;
  }
  .menu.is-open { display: flex; }
  .menu a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .menu a.btn { margin-top: 16px; border-bottom: 0; padding: 14px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .visual-placeholder { aspect-ratio: 16 / 10; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .simulator { padding: 26px 20px; border-radius: 18px; }
  .choices { grid-template-columns: 1fr; }
  .services-grid, .steps { grid-template-columns: 1fr; }
  .sim-result .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Utilitaires ---------- */
.nowrap { white-space: nowrap; }
section[id] { scroll-margin-top: 70px; }
@media (max-width: 600px) { .sim-progress li { font-size: .75rem; } }
.result-unknown { display: none; }
.simulator.is-unknown-city .result-known { display: none; }
.simulator.is-unknown-city .result-unknown { display: block; }
.result-title { font-size: clamp(1.6rem, 4.5vw, 2.2rem); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }

/* Liste déroulante du simulateur */
.select-wrap { position: relative; max-width: 420px; }
.select-wrap::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.select-wrap select {
  width: 100%; min-height: 58px; padding: 14px 48px 14px 18px;
  font: inherit; font-weight: 600; color: var(--navy); background: var(--white);
  border: 2px solid var(--line); border-radius: 12px; cursor: pointer;
  -webkit-appearance: none; appearance: none;
}
.select-wrap select:hover { border-color: var(--navy-soft); }
.select-wrap select:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-color: var(--gold); }
.sim-step legend label { cursor: pointer; }
.hero h1 .eyebrow { display: block; font-size: .9rem; margin-bottom: 18px; letter-spacing: .12em; }
.hero h1 .h1-slogan { display: block; }
.services-more { text-align: center; margin-top: 40px; }
@media (max-width: 600px) { .services-more .btn { width: 100%; } }

/* ==========================================================
   Pages intérieures
   ========================================================== */
.menu a[aria-current="page"] { color: var(--gold); }
.page-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(245,166,35,.18), transparent 45%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white); padding: 64px 0 72px; text-align: center;
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 800; }
.page-hero h1 .eyebrow { display: block; font-size: .9rem; margin-bottom: 16px; letter-spacing: .12em; }
.page-hero h1 .h1-slogan { display: block; }
.page-hero .hero-sub { max-width: 620px; margin: 0 auto; }
.section-tight { padding: 56px 0; }

/* ---------- Formules ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 36px 28px 30px;
}
.plan-featured { border: 2px solid var(--gold); box-shadow: 0 20px 50px rgba(30,30,110,.14); transform: translateY(-12px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); margin: 0;
  background: var(--gold); color: var(--navy); font-size: .78rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-size: 1.5rem; color: var(--navy); margin-bottom: 6px; }
.plan-tagline { color: var(--muted); min-height: 3.2em; }
.plan-price { margin: 4px 0 6px; color: var(--navy); }
.plan-price strong { font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em; }
.plan-price span { color: var(--muted); font-weight: 600; }
.plan-note { font-size: .88rem; color: var(--muted); background: var(--soft); border-radius: 8px; padding: 8px 12px; margin: 6px 0 0; }
.plan-list { list-style: none; padding: 0; margin: 22px 0; flex: 1; }
.plan-list li { position: relative; padding: 8px 0 8px 30px; border-bottom: 1px solid var(--line); }
.plan-list li:last-child { border-bottom: 0; }
.plan-list li::before {
  position: absolute; left: 0; top: 9px; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: .72rem; font-weight: 800;
}
.plan-list li.yes::before { content: "✓"; background: #e6f4ea; color: #1e7b3c; }
.plan-list li.no { color: var(--muted-light); text-decoration: line-through; }
.plan-list li.no::before { content: "✕"; background: #f1f1f6; color: var(--muted-light); }
.plan-terms { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 18px; }
.plan-btn { width: 100%; }

/* ---------- Bandeau ménage ---------- */
.info-band {
  display: flex; gap: 22px; align-items: flex-start; max-width: 820px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 30px 32px;
}
.info-band .service-icon { flex: none; margin: 0; }
.info-band h2 { font-size: 1.4rem; color: var(--navy); }
.info-band p { margin: 0; color: var(--muted); }
.info-band strong { color: var(--ink); }

.cta-lead { color: rgba(255,255,255,.8); margin: -16px 0 28px; font-size: 1.1rem; }

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 32px; }
  .plan-featured { transform: none; }
  .plan-tagline { min-height: 0; }
}
@media (max-width: 600px) {
  .page-hero { padding: 44px 0 52px; }
  .info-band { flex-direction: column; padding: 24px 20px; }
}

/* ---------- Tableau comparatif ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.table-hint { display: none; text-align: center; color: var(--muted); font-size: .88rem; margin-bottom: 12px; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 16px; }
.compare {
  width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  font-size: .95rem;
}
.compare th, .compare td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--line); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare thead th { background: var(--navy); color: var(--white); font-size: 1rem; }
.compare thead th.is-featured { background: var(--gold); color: var(--navy); }
.compare tbody th {
  text-align: left; font-weight: 600; color: var(--ink);
  position: sticky; left: 0; background: var(--white); min-width: 240px;
}
.compare td.is-featured { background: #fffaf0; font-weight: 600; color: var(--navy); }
.compare td.yes { color: #1e7b3c; }
.compare td.no { color: var(--muted-light); }
.compare td.opt { color: var(--muted); }
.compare .row-strong th, .compare .row-strong td { background: var(--soft); }
.compare .row-strong td.is-featured { background: #fff3dd; }

@media (max-width: 700px) {
  .table-hint { display: block; }
  .compare { font-size: .88rem; }
  .compare th, .compare td { padding: 11px 12px; }
  .compare tbody th { min-width: 190px; }
}

/* Bandeau « relais pendant les absences » */
.info-band-gold { border-color: var(--gold); background: #fffaf0; }
.info-band-gold .service-icon { background: var(--gold); }
.info-band-gold .service-icon svg { stroke: var(--navy); }
.info-band .btn { margin-top: 16px; }
.stats-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .stats-grid-3 { grid-template-columns: 1fr; row-gap: 32px; } }

/* ==========================================================
   Page Zone couverte
   ========================================================== */
.tabs {
  display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px; margin-bottom: 20px; scrollbar-width: thin;
}
.tab {
  flex: none; font: inherit; font-weight: 600; font-size: .95rem; cursor: pointer;
  padding: 11px 18px; border-radius: 999px; border: 2px solid var(--line);
  background: var(--white); color: var(--navy); white-space: nowrap; transition: .15s;
}
.tab:hover { border-color: var(--navy-soft); }
.tab[aria-selected="true"] { background: var(--navy); border-color: var(--navy); color: var(--white); }
.tab-other { border-style: dashed; }
.tab-other[aria-selected="true"] { background: var(--gold); border-color: var(--gold); border-style: solid; color: var(--navy); }

.zone-panel {
  display: block;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 36px;
}
.zone-panel[hidden] { display: none; }
#zone-autre { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
.zone-text h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--navy); }
.zone-text > p { color: var(--muted); }
.zone-text h3 { font-size: 1rem; color: var(--navy); margin-top: 22px; }
.communes { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.communes li { background: var(--soft); border-radius: 999px; padding: 6px 14px; font-size: .9rem; font-weight: 600; color: var(--navy); }
.zone-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.zone-map { min-height: 320px; border-radius: 16px; overflow: hidden; background: var(--soft); }
.zone-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* Formulaire « Autre ville » */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row-full, .contact-form .btn, .form-note, .form-error { grid-column: 1 / -1; }
.form-row label { font-weight: 600; font-size: .92rem; color: var(--navy); }
.form-row label small { font-weight: 400; color: var(--muted); }
.form-row input, .form-row select, .form-row textarea {
  font: inherit; padding: 12px 14px; border: 2px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); }
.form-row .is-invalid { border-color: #d33; }
.form-error { color: #b22; font-weight: 600; margin: 0; }
.form-note { color: var(--muted); font-size: .88rem; margin: 0; }
.contact-form .btn { justify-self: start; }

@media (max-width: 860px) {
  .zone-panel { padding: 24px 20px; }
  .zone-map, .zone-map iframe { min-height: 240px; }
}
@media (max-width: 600px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .btn, .zone-actions .btn { width: 100%; justify-self: stretch; }
}
.zone-text h3:first-of-type { margin-top: 18px; }
.zone-text h3 + p { margin-bottom: .6em; }
.zone-text .communes { margin-top: 10px; }

/* ==========================================================
   Pages ville (Fontainebleau, Moret, Montereau)
   ========================================================== */
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 22px; }
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.hero-actions-center { justify-content: center; margin-top: 28px; }
.city-grid { max-width: 780px; }   /* carte retirée le 21/09/2026 : une seule colonne, largeur de lecture */
.city-text h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); color: var(--navy); }
.city-text h3 { font-size: 1.1rem; color: var(--navy); margin-top: 26px; }
.city-text p { color: var(--muted); }

.estim-table {
  width: 100%; max-width: 560px; margin: 0 auto; border-collapse: separate; border-spacing: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.estim-table th, .estim-table td { padding: 14px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.estim-table tbody tr:last-child th, .estim-table tbody tr:last-child td { border-bottom: 0; }
.estim-table thead th { background: var(--navy); color: var(--white); font-size: .95rem; }
.estim-table tbody th { font-weight: 600; color: var(--ink); }
.estim-table tbody td { font-weight: 800; color: var(--navy); text-align: right; white-space: nowrap; }
.estim-table thead th:last-child { text-align: right; }
.estim-note { text-align: center; color: var(--muted); font-size: .9rem; max-width: 560px; margin: 16px auto 0; }

.faq-wrap { max-width: 820px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 52px 18px 22px; font-weight: 700; color: var(--navy); position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--gold-text);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

.footer-cities { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 28px; font-size: .88rem; }
.footer-cities span { color: rgba(255,255,255,.5); }
.footer-cities a { text-decoration: none; }
.footer-cities a:hover { color: var(--gold); }

.zone-links { font-size: .92rem; margin: -10px 0 22px; }
.zone-links a { color: var(--navy); font-weight: 700; }

@media (max-width: 860px) {
}
@media (max-width: 600px) {
  .hero-actions-center .btn { width: 100%; }
  .estim-table th, .estim-table td { padding: 12px 14px; }
}

/* ==========================================================
   Page Réserver en direct
   ========================================================== */
.page-hero-compact { padding: 48px 0 52px; }
.rsv-toolbar { position: sticky; top: 70px; z-index: 40; background: var(--white); border-bottom: 1px solid var(--line); }
.rsv-toolbar-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; padding-top: 12px; padding-bottom: 12px; max-width: none; }
.rsv-filter { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--navy); }
.rsv-filter select { font: inherit; font-weight: 600; color: var(--navy); padding: 8px 12px; border: 2px solid var(--line); border-radius: 999px; background: var(--white); }
.rsv-count { margin: 0 0 0 auto; color: var(--muted); font-size: .9rem; }
.rsv-toggle { display: none; }

.rsv-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 0; }
.rsv-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; padding: 26px 24px 48px; align-content: start; }
.rsv-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.rsv-card[hidden] { display: none; }
.rsv-card:hover, .rsv-card.is-active { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--gold); }
.rsv-card img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; display: block; background: var(--soft); }
.rsv-body { padding: 16px 18px 18px; }
.rsv-ville { margin: 0 0 4px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-text); }
.rsv-body h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.rsv-details { margin: 0 0 14px; color: var(--muted); font-size: .9rem; }
.rsv-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.rsv-empty { grid-column: 1 / -1; text-align: center; color: var(--muted); }

.rsv-map-wrap { position: sticky; top: 132px; height: calc(100vh - 132px); }
.rsv-map { height: 100%; width: 100%; }
.rsv-map-note { position: absolute; left: 12px; bottom: 12px; z-index: 500; margin: 0; background: rgba(255,255,255,.92); padding: 6px 10px; border-radius: 8px; font-size: .78rem; color: var(--muted); }

.rsv-pin span { display: block; width: 26px; height: 26px; border-radius: 50%; background: var(--navy); border: 3px solid var(--gold); box-shadow: 0 2px 6px rgba(0,0,0,.3); transition: transform .15s; }
.rsv-pin.is-active span { background: var(--gold); border-color: var(--navy); transform: scale(1.3); }
.rsv-popup img { width: 100%; border-radius: 10px; margin-bottom: 8px; aspect-ratio: 3 / 2; object-fit: cover; }
.rsv-popup strong { display: block; color: var(--navy); margin-bottom: 2px; }
.rsv-popup .rsv-details { margin-bottom: 10px; }
.rsv-popup .btn { margin: 2px 0; color: inherit; }
.rsv-popup .btn-navy { color: var(--white); }
.leaflet-popup-content { margin: 12px; font-family: var(--font); }

.rsv-autre { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }

@media (max-width: 1100px) { .rsv-list { grid-template-columns: 1fr; } }
@media (max-width: 960px) {
  .rsv-layout { grid-template-columns: 1fr; }
  .rsv-list { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 20px 16px 40px; }
  .rsv-map-wrap { display: none; position: static; height: 72vh; }
  .rsv-toggle { display: inline-flex; }
  .rsv-count { margin-left: 0; }
  body.rsv-show-map .rsv-map-wrap { display: block; }
  body.rsv-show-map .rsv-list { display: none; }
}
@media (max-width: 640px) {
  .rsv-list { grid-template-columns: 1fr; }
  .rsv-toolbar-inner { gap: 10px; }
  .rsv-filter span { display: none; }
  .rsv-filter select { padding: 7px 10px; font-size: .88rem; }
}

/* Page FAQ */
.faq-group { margin-bottom: 40px; }
.faq-group h2 { font-size: clamp(1.3rem, 2.6vw, 1.6rem); color: var(--navy); margin-bottom: 16px; }
.faq-item p a { color: var(--navy); font-weight: 600; }

/* Visuel d'accueil */
.hero-visual img { aspect-ratio: 5 / 4; object-fit: cover; }
@media (max-width: 820px) { .hero-visual img { aspect-ratio: 16 / 10; } }

/* Pages légales */
.legal { max-width: 780px; }
.legal h2 { font-size: 1.3rem; color: var(--navy); margin-top: 32px; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--navy); font-weight: 600; }
.legal ul { padding-left: 20px; }
.legal-maj { margin-top: 36px; font-size: .88rem; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.legal > h2:first-child, .legal > p:first-child { margin-top: 0; }
.section-head .eyebrow-dark { color: var(--gold-text); }
.footer-contact { font-style: normal; margin-top: 14px; line-height: 1.8; font-size: .92rem; }
.footer-contact a { text-decoration: none; color: rgba(255,255,255,.85); }
.footer-contact a:hover { color: var(--gold); }
.sim-sub { font-weight: 700; color: var(--navy); margin: 18px 0 10px; }
.sim-sub:first-of-type { margin-top: 0; }
.sim-sub small { font-weight: 400; color: var(--muted); }
.choices-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 600px) { .choices-2 { grid-template-columns: 1fr; } }
.sim-lien { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; max-width: 520px; }
.sim-lien[hidden] { display: none; }
.sim-lien label { font-weight: 600; font-size: .92rem; color: var(--navy); }
.sim-lien label small { font-weight: 400; color: var(--muted); }
.sim-lien input { font: inherit; padding: 12px 14px; border: 2px solid var(--line); border-radius: 10px; }
.sim-lien input:focus { outline: none; border-color: var(--gold); }

/* Carte d'estimation dans l'en-tête de l'accueil */
.hero-card {
  background: var(--white); color: var(--ink); border-radius: 24px; padding: 34px 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,.28); max-width: 460px; justify-self: end; width: 100%;
}
.hero-card-title { font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 6px; }
.hero-card-sub { color: var(--muted); margin-bottom: 22px; }
.hero-card-label { display: block; font-weight: 700; color: var(--navy); font-size: .92rem; margin-bottom: 8px; }
.hero-card .select-wrap { max-width: none; margin-bottom: 16px; }
.hero-card .btn { width: 100%; }
.hero-card-note { margin: 14px 0 0; text-align: center; color: var(--muted); font-size: .88rem; }
@media (max-width: 820px) { .hero-card { justify-self: stretch; max-width: none; padding: 26px 22px; } }
@media (max-width: 820px) { .hero .hero-actions { display: none; } .hero-sub { margin-bottom: 8px; } }

/* Simulateur intégré à l'en-tête de l'accueil */
.hero-sim {
  background: var(--white); color: var(--ink); border-radius: 24px; padding: 32px 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,.28); width: 100%; max-width: 520px; justify-self: end;
  scroll-margin-top: 90px;
}
.hero-sim .hero-card-title { font-size: 1.45rem; letter-spacing: -.01em; }
.hero-sim .simulator { max-width: none; padding: 0; box-shadow: none; background: transparent; border-radius: 0; }
.hero-sim .sim-progress { margin-bottom: 22px; }
.hero-sim .sim-step legend { font-size: 1.15rem; }
.hero-sim .choices { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.hero-sim .choice span { min-height: 52px; padding: 12px 14px; font-size: .95rem; }
.hero-sim .select-wrap { max-width: none; }
.hero-sim .sim-nav { margin-top: 22px; }
.hero-grid { align-items: start; }
.hero-text { padding-top: 24px; }
/* Les chiffres clés prolongent l'en-tête */
.hero + .stats { border-top: 1px solid rgba(255,255,255,.1); }
@media (max-width: 820px) {
  .hero-sim { justify-self: stretch; max-width: none; padding: 24px 18px; }
  .hero-text { padding-top: 0; }
}
@media (max-width: 420px) { .hero-sim .choices { grid-template-columns: 1fr; } }
.hero-sim .result-value { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.hero-sim .result-note { font-size: .9rem; margin-bottom: 20px; }
.hero-sim .sim-result .btn-lg { padding: 15px 22px; font-size: 1rem; }

/* ==========================================================
   THÈME « CADRE » (maquette D, validée par Ivan le 19/09/2026)
   Inspiration Dribbble : DeFi Landing Page (QClay) + Kumo (Kris Anfalova).
   Panneaux sombres arrondis dans un cadre bleu nuit, fond crème,
   titres Fraunces, texte Figtree, chiffres clés en cartes flottantes.
   ========================================================== */
@font-face {
  font-family: 'Figtree'; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url(/fonts/figtree-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2190-2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(/fonts/fraunces-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2190-2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --frame: #101040;
  --canvas: #f4f1ea;
  --sand: #ebe5d8;
  --card-cream: #f3efe4;
  --ink: #1b1a33;
  --muted: #5f5d72;
  --line: #e2dccf;
  --soft: var(--sand);
  --font: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --shadow: 0 10px 30px rgba(20, 20, 60, .08);
}
body { background: var(--canvas); }
h1, h2, .hero-card-title, .result-value, .result-title, .plan-price strong, .stat-value, .sat strong {
  font-family: var(--serif); font-weight: 600; letter-spacing: -.025em; font-variation-settings: "SOFT" 60;
}
h1, h2 { text-wrap: balance; }
h3 { font-weight: 700; letter-spacing: -.01em; }

/* ---------- En-tête : cadre bleu nuit, menu en pilule ---------- */
.site-header { background: var(--frame); backdrop-filter: none; }
.nav { height: 76px; }
.logo-mark { border-radius: 50%; }
.menu { gap: 2px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: 5px; }
.menu a { color: rgba(255,255,255,.82); padding: 8px 14px; border-radius: 999px; font-size: .9rem; }
.menu a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.menu a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,.12); }
.menu a.btn { margin-left: 6px; padding: 8px 16px; color: var(--navy); }
.menu a.btn:hover { background: var(--gold-dark); color: var(--navy); }
section[id] { scroll-margin-top: 84px; }
@media (max-width: 820px) {
  .menu { top: 76px; left: 12px; right: 12px; border-radius: 22px; background: var(--frame); border: 1px solid rgba(255,255,255,.12); padding: 8px 16px 18px; }
  .menu a { border-radius: 0; padding: 14px 4px; }
  .menu a[aria-current="page"] { background: transparent; color: var(--gold); }
  .menu a.btn { margin-left: 0; border-radius: 999px; }
}

/* ---------- Panneaux encadrés : héros, en-têtes de pages, appel final ---------- */
.hero, .page-hero { position: relative; background: var(--frame); padding: 0 12px 12px; color: var(--white); }
.hero > .container, .page-hero > .container {
  position: relative; overflow: hidden; max-width: none; border-radius: 32px;
  background:
    radial-gradient(38% 55% at 88% 12%, rgba(214,220,255,.30), transparent 70%),
    radial-gradient(30% 45% at 72% 0%, rgba(245,166,35,.22), transparent 70%),
    radial-gradient(35% 50% at 6% 96%, rgba(190,200,255,.18), transparent 70%),
    linear-gradient(180deg, #0b0b30 0%, #16165a 100%);
}
.hero > .container { padding: 72px 24px 64px; }
.page-hero > .container { padding: 64px 24px 68px; }
.page-hero-compact > .container { padding: 48px 24px 52px; }
.page-hero-compact { padding-top: 0; padding-bottom: 12px; }
.hero > .container::before, .hero > .container::after,
.page-hero > .container::before, .page-hero > .container::after {
  content: ""; position: absolute; width: 46%; height: 70%; top: 34%;
  border: 1px solid rgba(255,255,255,.10); border-radius: 50%; pointer-events: none;
}
.hero > .container::before, .page-hero > .container::before { left: -18%; }
.hero > .container::after, .page-hero > .container::after { right: -18%; }
.page-hero > .container > * { position: relative; z-index: 1; }

.hero h1 .eyebrow, .page-hero h1 .eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font);
  font-size: .82rem; letter-spacing: .02em; text-transform: none; font-weight: 600; color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 .eyebrow::before, .page-hero h1 .eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(245,166,35,.2); }
.page-hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.8rem); line-height: 1.05; }
.page-hero .hero-sub { color: rgba(255,255,255,.75); }
.estompe { font-style: normal; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.35) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Accueil : titre centré, simulateur au centre ---------- */
.hero-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 36px; position: relative; z-index: 1; }
.hero-text { max-width: 900px; padding-top: 0; }
.hero h1 { font-size: clamp(2.5rem, 6.4vw, 5rem); line-height: 1.02; }
.hero h1 .eyebrow::after { content: "→"; opacity: .7; }
.hero-sub { color: rgba(255,255,255,.72); }
.hero .hero-sub { margin: 0; }
.hero .hero-actions { display: none; }
.hero-sim { justify-self: center; max-width: 540px; border-radius: 26px; box-shadow: 0 40px 90px rgba(0,0,0,.45), 0 0 0 8px rgba(255,255,255,.06); text-align: left; }

/* Chiffres clés en cartes flottantes autour du simulateur */
.satellites { position: absolute; inset: 0; pointer-events: none; list-style: none; margin: 0; padding: 0; }
.sat {
  position: absolute; width: 190px; padding: 16px 18px; border-radius: 22px; margin: 0;
  background: var(--card-cream); color: var(--navy); text-align: left;
  box-shadow: 0 24px 50px rgba(0,0,0,.35); animation: flotte 7s ease-in-out infinite;
}
.sat strong { display: block; font-size: 2rem; line-height: 1; }
.sat span { display: block; margin-top: 6px; font-size: .85rem; line-height: 1.35; color: var(--muted); }
.sat i { position: absolute; top: -10px; right: 16px; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(245,166,35,.25); }
.sat-1 { bottom: 290px; left: max(2%, calc(50% - 520px)); transform: rotate(-9deg); }
.sat-2 { bottom: 50px; left: max(4%, calc(50% - 480px)); transform: rotate(6deg); animation-delay: -2s; }
.sat-3 { bottom: 310px; right: max(2%, calc(50% - 520px)); transform: rotate(8deg); animation-delay: -4s; }
.sat-4 { bottom: 70px; right: max(4%, calc(50% - 480px)); transform: rotate(-5deg); animation-delay: -1s; }
@keyframes flotte { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.defiler { position: absolute; left: 40px; bottom: 36px; display: flex; align-items: center; gap: 10px; font-size: .8rem; color: rgba(255,255,255,.6); z-index: 1; text-decoration: none; }
.defiler b { width: 30px; height: 30px; border-radius: 50%; background: var(--white); color: var(--navy); display: grid; place-items: center; font-weight: 800; }
@media (max-width: 1100px) {
  .satellites { order: 3; position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; width: 100%; max-width: 540px; margin: 8px auto 0; }
  .sat { position: relative; inset: auto; width: auto; animation: none; }
  .sat-1 { transform: rotate(-3deg); } .sat-2 { transform: rotate(2deg); } .sat-3 { transform: rotate(2deg); } .sat-4 { transform: rotate(-2deg); }
  .hero-grid { gap: 28px; }
  .defiler { display: none; }
}
@media (max-width: 820px) {
  .hero > .container, .page-hero > .container { border-radius: 24px; padding: 40px 14px 28px; }
  .sat strong { font-size: 1.6rem; }
}

/* ---------- Formulaires et simulateur ---------- */
.choice span, .select-wrap select, .sim-lien input, .form-row input, .form-row select, .form-row textarea { border-radius: 14px; }
.choice input:checked + span { background: #fff4df; }

/* ---------- Sections claires ---------- */
.section { padding: 100px 0; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.eyebrow-dark, .section-head .eyebrow-dark { color: var(--gold-text); }
.section-soft { background: var(--sand); margin: 0 12px; border-radius: 32px; }
.service { background: var(--white); border: 0; border-radius: 26px; padding: 30px 26px; box-shadow: 0 8px 24px rgba(20,20,60,.05); }
.services-grid .service:nth-child(odd) { transform: rotate(-1deg); }
.services-grid .service:nth-child(even) { transform: rotate(1deg); }
.services-grid .service:hover { transform: rotate(0) translateY(-4px); }
.service-icon { border-radius: 50%; }

/* Panneau sombre encadré (étapes de l'accueil) */
.section-cadre { background: var(--frame); color: var(--white); }
.section-cadre .section-head h2, .section-cadre .step h3 { color: var(--white); }
.section-cadre .step p { color: rgba(255,255,255,.72); }
.section-cadre .eyebrow-dark { color: var(--gold); }
.section-cadre .step-num { background: var(--card-cream); color: var(--navy); box-shadow: 0 0 0 8px rgba(255,255,255,.06); }
.section-cadre .steps::before { border-top-color: rgba(255,255,255,.2); }
.step-num { font-family: var(--serif); font-weight: 600; box-shadow: 0 0 0 8px var(--sand); }

/* Chiffres clés des autres pages : bande encadrée + cartes crème */
.stats { background: var(--frame); margin: 0 12px 12px; border-radius: 32px; padding: 48px 0; }
.stats-grid { gap: 16px; }
.stat { background: var(--card-cream); border-radius: 22px; padding: 22px 18px; box-shadow: 0 18px 40px rgba(0,0,0,.3); }
.stat:nth-child(odd) { transform: rotate(-2deg); }
.stat:nth-child(even) { transform: rotate(2deg); }
.stat-value { color: var(--navy); }
.stat-label { color: var(--muted); }

.testimonial { background: var(--white); border-radius: 26px; box-shadow: 0 8px 24px rgba(20,20,60,.05); }
.testimonial blockquote { font-family: var(--serif); font-weight: 400; font-size: 1.1rem; }

/* Cartes et blocs des pages intérieures */
.plan, .info-band, .zone-panel, .faq-item, .rsv-card, .compare, .estim-table, .table-wrap { border-color: var(--line); }
.plan { border-radius: 28px; }
.plan-featured { border-color: var(--gold); }
.info-band, .zone-panel { border-radius: 28px; }
.faq-item { border-radius: 18px; }
.rsv-card { border-radius: 22px; }
.compare, .estim-table, .table-wrap { border-radius: 22px; }
.compare thead th, .estim-table thead th { background: var(--frame); }
.tab[aria-selected="true"] { background: var(--frame); border-color: var(--frame); }
.communes li { background: var(--card-cream); }
.rsv-toolbar { top: 76px; background: var(--canvas); }
.rsv-map-wrap { top: 144px; height: calc(100vh - 144px); }

/* Appel final : panneau encadré avec halo */
.cta { background: var(--canvas); padding: 0 12px 12px; }
.section-soft + .cta, .section + .cta { padding-top: 0; }
.cta-inner {
  max-width: none; border-radius: 32px; padding: 88px 24px;
  background:
    radial-gradient(40% 70% at 85% 10%, rgba(214,220,255,.25), transparent 70%),
    radial-gradient(35% 60% at 10% 100%, rgba(245,166,35,.2), transparent 70%),
    var(--frame);
}
.cta h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
@media (max-width: 820px) { .cta-inner, .section-soft, .stats { border-radius: 24px; } .cta-inner { padding: 64px 18px; } }

.site-footer { background: var(--frame); }

@media (prefers-reduced-motion: reduce) { .sat { animation: none; } }

/* ---------- Zone couverte sur l'accueil (20/09/2026) ---------- */
.section-zones { padding-top: 0; }
.zones-pastilles {
  list-style: none; margin: 0 auto; padding: 0; max-width: 900px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.zones-pastilles li { display: flex; }
.zones-pastilles a {
  display: flex; flex-direction: column; justify-content: center; text-align: center;
  padding: 14px 22px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  color: var(--navy); font-weight: 700; text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.zones-pastilles a span { display: block; font-weight: 500; font-size: .82rem; color: var(--muted); }
.zones-pastilles a:hover, .zones-pastilles a:focus-visible {
  transform: translateY(-2px); border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(20, 20, 60, .08);
}
.zones-autre { text-align: center; margin: 28px 0 0; color: var(--muted); }
.zones-autre a { color: var(--navy); font-weight: 600; white-space: nowrap; }
@media (max-width: 820px) {
  .zones-pastilles { gap: 10px; }
  .zones-pastilles a { padding: 12px 18px; font-size: .95rem; }
}
@media (prefers-reduced-motion: reduce) { .zones-pastilles a:hover { transform: none; } }

/* ---------- WhatsApp : icône du menu + bouton flottant (20/09/2026) ---------- */
.lien-wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .9); transition: background .15s ease, color .15s ease;
}
.lien-wa svg { width: 19px; height: 19px; fill: currentColor; }
.lien-wa:hover, .lien-wa:focus-visible { background: #25d366; border-color: #25d366; color: #fff; }

.wa-flottant {
  display: none; position: fixed; right: 16px; z-index: 60;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  width: 54px; height: 54px; border-radius: 50%;
  align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
}
.wa-flottant svg { width: 28px; height: 28px; fill: currentColor; }

@media (max-width: 820px) {
  /* Le menu est replié derrière ☰ : l'icône y serait invisible, le bouton flottant prend le relais */
  .lien-wa { display: none; }
  .wa-flottant { display: flex; }
}

/* ---------- Tableau comparatif sur téléphone (20/09/2026) ----------
   Inspiré de la page « Comparer les modèles » d'Apple : on ne compare que deux
   formules (« À la carte » disait « Au choix » partout), et l'en-tête reste collé
   sous la barre de navigation pour qu'on sache toujours quelle colonne on lit. */

@media (max-width: 820px) {
  .table-hint { display: none; }          /* plus rien à faire glisser */
  .table-wrap { overflow-x: visible; }
  .compare { min-width: 0; font-size: .86rem; overflow: visible; }
  .compare thead th { position: sticky; z-index: 2; }
  .compare th, .compare td { padding: 11px 9px; }
  .compare thead th { top: 62px; font-size: .9rem; padding: 12px 9px; }  /* 62px = hauteur de la barre de navigation */
  .compare tbody th { min-width: 0; width: 46%; font-size: .87rem; }
  .compare tbody td { width: 27%; }
}

/* ---------- Nos logements : filtres alignés sur téléphone (20/09/2026) ----------
   Les libellés sont masqués sur petit écran et les deux listes n'avaient pas la
   même largeur : rangée de deux colonnes égales, compteur et bouton en dessous. */
@media (max-width: 820px) {
  .rsv-toolbar-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 10px 12px; }
  .rsv-filter { min-width: 0; }
  .rsv-filter select { width: 100%; }
  .rsv-count { margin: 0; }
  .rsv-toggle { justify-self: end; }
}
.table-apres { max-width: 760px; margin: 22px auto 0; text-align: center; color: var(--muted); font-size: .95rem; }
.table-apres a { color: var(--navy); font-weight: 600; }

/* ---------- Bandes d'information rattachées à leur bloc (20/09/2026) ----------
   « Et le ménage ? » et « Vous partez en vacances ? » complètent le bloc qui les
   précède : elles ne doivent pas flotter au milieu du vide. La classe
   .section-tight (56px) était écrasée par le .section { padding: 100px } du thème
   « Cadre », déclaré plus bas dans ce fichier — d'où 200px d'écart au lieu de 56. */
.section-tight { padding: 40px 0 88px; }
.section:has(+ .section-tight),
.stats:has(+ .section-tight) { padding-bottom: 40px; }

/* ---------- Photos des villes (21/09/2026) ---------- */
.ville-photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 28px 0 32px; }
.ville-photo { margin: 0; }
.ville-photo img {
  width: 100%; height: 230px; object-fit: cover;
  border-radius: 18px; background: var(--sand, #ebe5d8);
}
.ville-photo figcaption { margin-top: 10px; font-size: .88rem; line-height: 1.45; color: var(--muted); }
.ville-photo .credit { display: block; margin-top: 3px; font-size: .74rem; color: #8a8ba0; }
.ville-photo .credit a { color: inherit; }
@media (max-width: 560px) {
  .ville-photos { grid-template-columns: 1fr; }
  .ville-photo img { height: 200px; }
}
