/* ProBois77 — uniquement #0F1220 + #6E65C3 (hovers / surfaces = dérivés) */
:root {
  --prob-c1: #0f1220;
  --prob-c3: #6e65c3;
  --prob-bg-page: #ffffff;
  --prob-bg-band: rgba(15, 18, 32, 0.04);
  --prob-bg-dark: #0f1220;
  --prob-wood: #0f1220;
  --prob-wood-light: #6e65c3;
  --prob-text: #0f1220;
  --prob-text-muted: rgba(15, 18, 32, 0.58);
  --prob-accent: #6e65c3;
  --prob-accent-hover: #5850a8;
  --prob-accent-soft: rgba(110, 101, 195, 0.14);
  --prob-green: #6e65c3;
  --prob-white: #ffffff;
  --prob-border: rgba(15, 18, 32, 0.12);
  --prob-shadow: 0 8px 32px rgba(15, 18, 32, 0.08);
  --prob-shadow-sm: 0 2px 12px rgba(15, 18, 32, 0.06);
  --prob-radius: 14px;
  --prob-radius-lg: 22px;
  --prob-max: 1320px;
  --prob-max-wide: 1480px;
  --prob-nav-h: 192px;
  --prob-font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --prob-on-dark: rgba(255, 255, 255, 0.94);
  --prob-on-dark-muted: rgba(255, 255, 255, 0.62);
  --prob-on-dark-eyebrow: #b4aee8;
  --prob-link-on-dark: #d4d0f4;
  --prob-section-pad-y: clamp(2.5rem, 5vw, 3.75rem);
  --prob-gutter-x: clamp(1.1rem, 4.25vw, 1.85rem);
}

/* Sombre par défaut · clair = .light-mode */
body.prob-site {
  --prob-header-bg: rgba(15, 18, 32, 0.96);
  --prob-toggle-bg: #161a28;
  --prob-toggle-burger: rgba(255, 255, 255, 0.9);
  --prob-btn-outline-bg: rgba(22, 26, 40, 0.75);
  --prob-bg-page: #0f1220;
  --prob-bg-band: #141829;
  --prob-bg-dark: #0a0b12;
  --prob-wood: rgba(255, 255, 255, 0.78);
  --prob-wood-light: #c4bff0;
  --prob-text: rgba(255, 255, 255, 0.92);
  --prob-text-muted: rgba(255, 255, 255, 0.55);
  --prob-white: #161a28;
  --prob-border: rgba(110, 101, 195, 0.22);
  --prob-shadow: 0 8px 36px rgba(0, 0, 0, 0.5);
  --prob-shadow-sm: 0 2px 14px rgba(0, 0, 0, 0.35);
  --prob-accent: #9a94e3;
  --prob-accent-hover: #b5b0f0;
  --prob-accent-soft: rgba(110, 101, 195, 0.2);
  --prob-green: #9a94e3;
}

body.prob-site.light-mode {
  --prob-header-bg: rgba(255, 255, 255, 0.94);
  --prob-toggle-bg: #ffffff;
  --prob-toggle-burger: #0f1220;
  --prob-btn-outline-bg: #ffffff;
  --prob-bg-page: #ffffff;
  --prob-bg-band: rgba(15, 18, 32, 0.035);
  --prob-bg-dark: #0f1220;
  --prob-wood: #0f1220;
  --prob-wood-light: #6e65c3;
  --prob-text: #0f1220;
  --prob-text-muted: rgba(15, 18, 32, 0.58);
  --prob-white: #ffffff;
  --prob-border: rgba(15, 18, 32, 0.1);
  --prob-shadow: 0 8px 32px rgba(15, 18, 32, 0.07);
  --prob-shadow-sm: 0 2px 12px rgba(15, 18, 32, 0.06);
  --prob-accent: #6e65c3;
  --prob-accent-hover: #5850a8;
  --prob-accent-soft: rgba(110, 101, 195, 0.12);
  --prob-green: #6e65c3;
}

@media (max-width: 767px) {
  body.prob-site {
    --prob-section-pad-y: clamp(0.85rem, 2.8vw, 1.35rem);
    /* Marges latérales plus généreuses (évite le plein écran collé aux bords) */
    --prob-gutter-x: clamp(1.28rem, 5.5vw, 2rem);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  body.prob-site {
    --prob-section-pad-y: clamp(1.85rem, 3.6vw, 2.65rem);
    --prob-gutter-x: clamp(1.2rem, 4.5vw, 1.95rem);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--prob-nav-h) + 16px);
  overflow-x: hidden;
}

/* ==================== Scrollbar (site-wide, brand-safe) ==================== */
/* Firefox */
html,
body.prob-site {
  scrollbar-width: auto; /* Firefox: no px control; auto is thickest available */
  scrollbar-color: rgba(110, 101, 195, 0.55) rgba(15, 18, 32, 0.22);
}

/* Chromium / WebKit */
body.prob-site::-webkit-scrollbar {
  width: 22px;
  height: 22px;
}

body.prob-site::-webkit-scrollbar-track {
  background: rgba(15, 18, 32, 0.22);
}

body.prob-site::-webkit-scrollbar-thumb {
  background: rgba(110, 101, 195, 0.55);
  border-radius: 999px;
  border: 5px solid rgba(15, 18, 32, 0.22);
}

body.prob-site::-webkit-scrollbar-thumb:hover {
  background: rgba(110, 101, 195, 0.75);
}

/* Light mode adjustments */
body.prob-site.light-mode {
  scrollbar-color: rgba(110, 101, 195, 0.55) rgba(15, 18, 32, 0.08);
}

body.prob-site.light-mode::-webkit-scrollbar-track {
  background: rgba(15, 18, 32, 0.08);
}

body.prob-site.light-mode::-webkit-scrollbar-thumb {
  border-color: rgba(15, 18, 32, 0.08);
}

@media (max-width: 1099px) {
  html {
    scroll-padding-top: calc(5.5rem + env(safe-area-inset-top, 0px));
  }
}

body.prob-site {
  margin: 0;
  font-family: var(--prob-font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--prob-text);
  background: var(--prob-bg-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ==================== Premium polish (site-wide, brand-safe) ==================== */
body.prob-site a:focus-visible,
body.prob-site button:focus-visible,
body.prob-site [role="button"]:focus-visible,
body.prob-site input:focus-visible,
body.prob-site select:focus-visible,
body.prob-site textarea:focus-visible {
  outline: 2px solid rgba(110, 101, 195, 0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Softer, more premium default separators */
body.prob-site hr {
  border: 0;
  border-top: 1px solid var(--prob-border);
  margin: 2.25rem 0;
}

/* Headings: slightly tighter + more “editorial” rhythm */
body.prob-site h1,
body.prob-site h2,
body.prob-site h3 {
  letter-spacing: -0.02em;
}

body.prob-site h2 {
  margin-top: 2.75rem;
}

body.prob-site p {
  margin: 0 0 1rem;
}

/* Cards: consistent SaaS feel (no new colors) */
body.prob-site .prob-card,
body.prob-site .prob-card-media,
body.prob-site .prob-quick-card,
body.prob-site .prob-cat-card {
  border-color: var(--prob-border);
  box-shadow: var(--prob-shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.prob-site .prob-card:hover,
body.prob-site .prob-card-media:hover,
body.prob-site .prob-quick-card:hover,
body.prob-site .prob-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--prob-shadow);
  border-color: rgba(110, 101, 195, 0.35);
}

/* Buttons: subtle lift, consistent premium */
body.prob-site .prob-btn {
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease,
    border-color 0.14s ease, color 0.14s ease;
}

body.prob-site .prob-btn:hover {
  transform: translateY(-1px);
}

body.prob-site .prob-btn:active {
  transform: translateY(0);
}

/* ==================== Volume deal messaging (5+ stères) ==================== */
.pb-price-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--prob-text-muted);
}

.pb-bestprice {
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.pb-article-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 18px;
  margin: 20px 0;
}

body.prob-site.prob-home .pb-tools-hub {
  margin-top: clamp(1.25rem, 3vw, 2.25rem);
}

@media (max-width: 767px) {
  body.prob-site {
    font-size: clamp(1rem, 2.9vw, 1.05rem);
  }
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
  display: block;
}

/* Images : zoom léger + lueur violette au survol */
.prob-hero-figure,
.prob-card-media,
.prob-photo-hover {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.35s ease, transform 0.35s ease;
}

.prob-hero-figure img,
.prob-card-media img,
.prob-photo-hover img {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  will-change: transform;
}

.prob-hero-figure:hover img,
.prob-card-media:hover img,
.prob-photo-hover:hover img {
  transform: scale(1.045);
  filter: brightness(1.06) saturate(1.03);
}

.prob-hero-figure:hover,
.prob-card-media:hover,
.prob-photo-hover:hover {
  box-shadow: 0 14px 44px rgba(110, 101, 195, 0.28);
  border-color: rgba(110, 101, 195, 0.55);
}

/* Mosaïque accueil (photos ajoutées) */
.prob-photo-mosaic {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.prob-photo-mosaic__intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1.25rem;
}

.prob-photo-mosaic__title {
  margin-bottom: 0;
}

.prob-photo-mosaic__lead {
  margin: 0.75rem auto 0;
  max-width: 40rem;
}

.prob-photo-mosaic__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .prob-photo-mosaic__grid {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: stretch;
    min-height: 280px;
  }

  .prob-photo-mosaic__hero {
    grid-row: 1 / -1;
    grid-column: 1;
  }
}

.prob-photo-mosaic__grid .prob-photo-hover {
  margin: 0;
  border-radius: var(--prob-radius);
  border: 1px solid var(--prob-border);
  box-shadow: var(--prob-shadow-sm);
  aspect-ratio: 16 / 11;
}

.prob-photo-mosaic__grid .prob-photo-mosaic__hero {
  aspect-ratio: auto;
  min-height: 220px;
}

@media (min-width: 768px) {
  .prob-photo-mosaic__grid .prob-photo-mosaic__hero {
    min-height: 100%;
  }
}

.prob-photo-mosaic__grid .prob-photo-hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--prob-wood-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--prob-accent);
}

.prob-skip {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--prob-accent);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
}

.prob-skip:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

/* ——— Top bar ——— */
.prob-topbar {
  background: var(--prob-bg-dark);
  color: #e8dfd5;
  font-size: 0.88rem;
}

.prob-topbar-inner {
  max-width: var(--prob-max-wide);
  margin: 0 auto;
  padding: 0.45rem var(--prob-gutter-x);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.prob-topbar-tagline {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.25;
  font-weight: 600;
  max-width: 26rem;
}

.prob-topbar-tagline__line {
  display: block;
}

.prob-topbar-tagline__line--muted {
  font-weight: 500;
  opacity: 0.88;
  font-size: 0.92em;
}

.prob-topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.prob-topbar a:hover {
  text-decoration: underline;
}

.prob-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.prob-topbar-actions > a[href^="tel:"] {
  white-space: nowrap;
}

/* Bandeau saison tarifs (accueil) */
a.prob-season-banner {
  display: block;
  text-decoration: none;
  color: var(--prob-text);
  background: var(--prob-accent-soft);
  border-bottom: 1px solid var(--prob-border);
}

a.prob-season-banner:hover {
  background: var(--prob-bg-band);
}

.prob-season-banner__inner {
  max-width: var(--prob-max-wide);
  margin: 0 auto;
  padding: 0.55rem var(--prob-gutter-x);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.prob-season-banner__ico {
  font-size: 1.05rem;
  line-height: 1;
}

.prob-season-banner strong {
  color: var(--prob-accent);
}

/* Réseaux sociaux (topbar + footer) */
.prob-social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.prob-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.prob-social__link:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-1px);
}

.prob-social__icon {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.prob-social--footer .prob-social__link {
  width: 2.35rem;
  height: 2.35rem;
  color: var(--prob-accent);
  background: rgba(110, 101, 195, 0.12);
  border-color: rgba(110, 101, 195, 0.28);
}

.prob-social--footer .prob-social__link:hover {
  background: rgba(110, 101, 195, 0.22);
  color: var(--prob-accent-hover);
}

body.prob-site:not(.light-mode) .prob-social--footer .prob-social__link {
  color: #c4bff0;
  background: rgba(110, 101, 195, 0.18);
  border-color: rgba(154, 148, 227, 0.35);
}

body.prob-site:not(.light-mode) .prob-social--footer .prob-social__link:hover {
  color: #fff;
  background: rgba(110, 101, 195, 0.32);
}

.prob-social--footer .prob-social__icon {
  width: 1.15rem;
  height: 1.15rem;
}

.prob-footer-social-wrap {
  margin: 0.85rem 0 0;
}

.prob-footer-social-wrap--center {
  display: flex;
  justify-content: center;
}

.prob-badge-kicker {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ——— Header ——— */
.prob-header {
  position: sticky;
  top: 0;
  z-index: 900;
  overflow: visible;
  background: var(--prob-header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--prob-border);
  box-shadow: var(--prob-shadow-sm);
}

.prob-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(15, 18, 32, 0.12);
}

.prob-header-inner {
  max-width: var(--prob-max-wide);
  margin: 0 auto;
  padding: 0.65rem var(--prob-gutter-x) 1.25rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem 1.1rem;
  min-height: var(--prob-nav-h);
}

@media (max-width: 1099px) {
  .prob-header-inner {
    min-height: unset;
    padding-top: 0.5rem;
    padding-bottom: 0.85rem;
    align-items: center;
    gap: 0 !important;
    row-gap: 0 !important;
  }
}

/* Logo à gauche — décalage vers le bas (alignement visuel barre / nav) */
.prob-header-start {
  display: flex;
  align-items: center;
  justify-self: start;
  align-self: center;
  min-width: 0;
  transform: translateY(34px);
}

@media (max-width: 1099px) {
  .prob-header-start {
    /* Descendre seulement le logo (ne pousse pas la grille comme margin/padding) */
    transform: translateY(0.75rem);
    align-self: center;
  }
}

/* Téléphone : panneau fixe bas-gauche, marge sous le viewport (pas au milieu, pas collé au bord) */
.prob-site-float {
  position: fixed;
  left: max(0.35rem, env(safe-area-inset-left, 0px));
  top: auto;
  bottom: clamp(4.25rem, 16vh, 10.5rem);
  right: auto;
  transform: none;
  z-index: 920;
  max-width: min(100vw - 0.75rem, 16rem);
  pointer-events: none;
}

@media (max-width: 1099px) {
  .prob-site-float {
    display: none;
  }
}

.prob-site-float__card {
  pointer-events: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.75rem 0.95rem;
  border-radius: 18px;
  border: 2px solid rgba(110, 101, 195, 0.5);
  background: linear-gradient(
    155deg,
    rgba(110, 101, 195, 0.28) 0%,
    rgba(110, 101, 195, 0.14) 100%
  );
  box-shadow:
    0 10px 28px rgba(110, 101, 195, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  backdrop-filter: blur(12px);
}

body.prob-site:not(.light-mode) .prob-site-float__card {
  border-color: rgba(154, 148, 227, 0.65);
  background: linear-gradient(
    155deg,
    rgba(88, 80, 168, 0.55) 0%,
    rgba(110, 101, 195, 0.32) 100%
  );
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.prob-site-float__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: clamp(0.88rem, 1.65vw, 1.05rem);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  color: #0f1220;
}

.prob-site-float__phone:hover {
  color: #5850a8;
}

body.prob-site:not(.light-mode) .prob-site-float__phone {
  color: rgba(255, 255, 255, 0.96);
}

body.prob-site:not(.light-mode) .prob-site-float__phone:hover {
  color: #e8e6ff;
}

.prob-site-float__phone-num {
  letter-spacing: 0.02em;
}

/* Icône : mouvement type « rappel d’appel » (boucle, effet GIF léger) */
@keyframes prob-phone-ring-remind {
  0%,
  18%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  3% {
    transform: rotate(-20deg) scale(1.12);
  }
  6% {
    transform: rotate(18deg) scale(1.12);
  }
  9% {
    transform: rotate(-14deg) scale(1.08);
  }
  12% {
    transform: rotate(12deg) scale(1.06);
  }
  15% {
    transform: rotate(0deg) scale(1.02);
  }
}

.prob-site-float__phone-icon {
  width: 1.45rem;
  height: 1.45rem;
  flex-shrink: 0;
  transform-origin: center center;
  animation: prob-phone-ring-remind 2.75s ease-in-out infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .prob-site-float__phone-icon {
    animation: none;
    will-change: auto;
  }
}

.prob-site-float__phone:hover .prob-site-float__phone-icon {
  animation-play-state: paused;
}

.prob-header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: nowrap;
  justify-self: end;
  min-width: 0;
}

@media (max-width: 1099px) {
  .prob-header-tools {
    gap: 0.35rem;
  }
}

.prob-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.prob-logo img {
  height: 132px;
  width: auto;
}

.prob-logo-text strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.prob-logo-text span {
  font-size: 0.8rem;
  color: var(--prob-text-muted);
}

/* Logo (dans .prob-header-start) : aligné proprement, pas de décalage artificiel */
.prob-logo--mark-only {
  gap: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.prob-header-start .prob-logo--mark-only {
  align-self: center;
}

.prob-logo--mark-only img {
  height: 132px;
  width: auto;
  display: block;
}

@media (max-width: 1099px) {
  .prob-logo--mark-only img {
    height: clamp(5.35rem, 30vw, 8rem);
    max-height: none;
  }
}

.prob-nav {
  display: none;
  justify-content: center;
}

@media (min-width: 1100px) {
  .prob-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    justify-self: center;
    width: 100%;
    max-width: 62rem;
    margin: 0 auto;
    gap: 0.08rem 0.12rem;
  }
}

.prob-nav a {
  padding: 0.55rem 0.6rem;
  color: var(--prob-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  border-radius: 8px;
}

.prob-nav a:hover,
.prob-nav a.is-active {
  background: rgba(110, 101, 195, 0.12);
  color: var(--prob-accent-hover);
}

.prob-nav a.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Sous-menu « Bois de chauffage » — pont de survol pour ne pas perdre le menu entre le lien et le panneau */
.prob-nav-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}

.prob-nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.prob-nav-dropdown__trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  margin-top: 2px;
}

.prob-nav-dropdown__panel {
  display: none;
  position: absolute;
  z-index: 950;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  margin-top: 0;
  min-width: 17.5rem;
  padding: 0.5rem 0 0.45rem;
  background: var(--prob-white);
  border: 1px solid var(--prob-border);
  border-radius: var(--prob-radius);
  box-shadow: var(--prob-shadow);
}

/* Bande invisible au-dessus du panneau : le pointeur reste « sur » le menu en descendant du lien */
.prob-nav-dropdown__panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.75rem;
}

.prob-nav-dropdown__panel a {
  display: block;
  padding: 0.55rem 1.05rem;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--prob-text);
  border-radius: 0;
  white-space: nowrap;
}

.prob-nav-dropdown__panel a:hover {
  background: rgba(110, 101, 195, 0.1);
  color: var(--prob-accent-hover);
}

.prob-nav-dropdown__panel .prob-nav-dropdown__extra {
  margin-top: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--prob-border);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--prob-text-muted);
}

.prob-nav-dropdown:hover .prob-nav-dropdown__panel,
.prob-nav-dropdown:focus-within .prob-nav-dropdown__panel {
  display: block;
}

.prob-header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 900px) {
  .prob-header-cta {
    display: flex;
  }
}

.prob-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--prob-wood);
  text-decoration: none;
  white-space: nowrap;
}

.prob-phone:hover {
  color: var(--prob-accent);
}

.prob-site-float .prob-site-float__phone.prob-phone {
  font-size: clamp(0.88rem, 1.65vw, 1.05rem);
}

.prob-header .prob-btn {
  padding: 0.78rem 1.35rem;
  font-size: 1.06rem;
}

.prob-header .prob-theme-toggle,
.prob-header .prob-menu-toggle {
  width: 54px;
  height: 54px;
}

.prob-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.prob-btn:active {
  transform: translateY(1px);
}

.prob-btn-primary {
  background: var(--prob-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(110, 101, 195, 0.35);
}

.prob-btn-primary:hover {
  background: var(--prob-accent-hover);
  color: #fff;
}

.prob-btn-outline {
  background: var(--prob-btn-outline-bg);
  color: var(--prob-wood);
  border: 2px solid rgba(15, 18, 32, 0.18);
}

body.prob-site:not(.light-mode) .prob-btn-outline {
  border-color: rgba(179, 174, 160, 0.35);
  color: var(--prob-wood-light);
}

.prob-btn-outline:hover {
  border-color: var(--prob-accent);
  color: var(--prob-accent-hover);
}

/* CTA visible (ex. Demander un devis) : fond et bordure accent */
.prob-btn-secondary {
  background: var(--prob-accent-soft);
  color: var(--prob-accent);
  border: 2px solid var(--prob-accent);
  box-shadow: 0 2px 10px rgba(110, 101, 195, 0.18);
}

.prob-btn-secondary:hover {
  background: var(--prob-accent);
  color: #fff;
  border-color: var(--prob-accent);
  box-shadow: 0 4px 16px rgba(110, 101, 195, 0.35);
}

body.prob-site:not(.light-mode) .prob-btn-secondary {
  background: rgba(110, 101, 195, 0.28);
  color: #f0eeff;
  border-color: rgba(154, 148, 227, 0.75);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

body.prob-site:not(.light-mode) .prob-btn-secondary:hover {
  background: var(--prob-accent-hover);
  color: #0f1220;
  border-color: var(--prob-accent-hover);
}

.prob-btn-ghost {
  background: transparent;
  color: var(--prob-wood);
  border: 2px solid transparent;
}

.prob-btn-ghost:hover {
  background: rgba(110, 101, 195, 0.1);
}

/* Boutons secondaires sur bandeau bois foncé (CTA fin de page) */
.prob-cta-band .prob-btn--on-dark {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.prob-cta-band .prob-btn--on-dark:hover {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.prob-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--prob-border);
  border-radius: 10px;
  background: var(--prob-toggle-bg);
  color: var(--prob-wood);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.prob-theme-toggle:hover {
  border-color: rgba(110, 101, 195, 0.45);
}

body.prob-site:not(.light-mode) .prob-theme-toggle {
  color: var(--prob-accent);
}

.prob-theme-toggle__icon {
  font-size: 1.35rem;
  line-height: 1;
}

.prob-header .prob-theme-toggle__icon {
  font-size: 1.45rem;
}

body.prob-site.light-mode .prob-theme-toggle__icon--sun,
body.prob-site:not(.light-mode) .prob-theme-toggle__icon--moon {
  display: none;
}

.prob-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--prob-border);
  border-radius: 10px;
  background: var(--prob-toggle-bg);
  cursor: pointer;
}

.prob-header .prob-menu-toggle {
  gap: 6px;
}

.prob-menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--prob-toggle-burger);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.prob-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.prob-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.prob-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 1100px) {
  .prob-menu-toggle {
    display: none;
  }
}

.prob-mobile-nav {
  display: none;
  border-top: 1px solid var(--prob-border);
  background: var(--prob-bg-page);
}

.prob-mobile-nav.is-open {
  display: block;
}

/* ≤ tablette : logo centré (plus grand), puis ligne thème + menu burger */
@media (max-width: 1099px) {
  .prob-header-inner {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0 !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
    justify-items: center;
    align-items: center;
    padding-bottom: 0.95rem;
    position: relative;
    z-index: 5;
  }

  .prob-header-start {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
    z-index: 0;
  }

  /* Évite l’espace « fantôme » sous l’image (baseline du <picture>) */
  .prob-header-start picture {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .prob-header-start .prob-logo--mark-only {
    display: block;
    margin: 0 !important;
    margin-block: 0 !important;
    margin-block-end: 0 !important;
    padding: 0 !important;
    line-height: 0;
  }

  .prob-header-start .prob-logo--mark-only img {
    display: block !important;
    margin: 0 !important;
    margin-block: 0 !important;
    margin-block-end: 0 !important;
    padding: 0 !important;
    vertical-align: top;
    line-height: 0;
  }

  .prob-header-tools {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.65rem;
    width: auto;
    margin: 0 !important;
    margin-block: 0 !important;
    margin-top: -1.05rem !important;
    padding: 0 !important;
    padding-top: 0 !important;
    line-height: 0;
    position: relative;
    z-index: 2;
  }

  .prob-header .prob-header-cta {
    display: none !important;
  }

  .prob-mobile-nav.is-open {
    max-height: min(78vh, calc(100vh - 6.5rem - env(safe-area-inset-top, 0px)));
    max-height: min(78dvh, calc(100dvh - 6.5rem - env(safe-area-inset-top, 0px)));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  /* Menu mobile ouvert (classe posée par site-shell.js) : hauteur du panneau */
  .prob-header--nav-open .prob-logo--mark-only img {
    height: clamp(5.65rem, 30vw, 8.75rem);
  }

  .prob-header--nav-open .prob-mobile-nav.is-open {
    max-height: min(72vh, calc(100vh - 10rem - env(safe-area-inset-top, 0px)));
    max-height: min(72dvh, calc(100dvh - 10rem - env(safe-area-inset-top, 0px)));
  }
}

.prob-mobile-nav-inner {
  max-width: var(--prob-max-wide);
  margin: 0 auto;
  padding: 1rem var(--prob-gutter-x) 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.prob-mobile-nav__label {
  margin: 0.35rem 0 0;
  padding: 0.35rem 0.75rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--prob-text-muted);
}

/* Accordéon « Bois de chauffage » (sous-pages dépliées au second tap) */
.prob-mobile-nav__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.15rem;
}

.prob-mobile-nav__accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--prob-border);
  border-radius: 12px;
  background: rgba(110, 101, 195, 0.08);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--prob-text);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

body.prob-site:not(.light-mode) .prob-mobile-nav__accordion-trigger {
  background: rgba(110, 101, 195, 0.14);
  border-color: rgba(110, 101, 195, 0.35);
  color: rgba(255, 255, 255, 0.92);
}

.prob-mobile-nav__accordion-trigger:hover {
  background: rgba(110, 101, 195, 0.16);
}

.prob-mobile-nav__accordion-trigger::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.75;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.prob-mobile-nav__accordion.is-open .prob-mobile-nav__accordion-trigger::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}

.prob-mobile-nav__accordion-panel {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.35rem 0 0 0.35rem;
  margin-top: 0.35rem;
  border-left: 2px solid rgba(110, 101, 195, 0.35);
}

.prob-mobile-nav__accordion-panel[hidden] {
  display: none !important;
}

.prob-mobile-nav__accordion-panel:not([hidden]) {
  display: flex !important;
}

.prob-mobile-nav__accordion-panel a.prob-mobile-sub {
  padding-left: 1rem;
}

.prob-mobile-nav a.prob-mobile-sub {
  padding-left: 1.35rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--prob-text-muted);
}

.prob-mobile-nav a {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--prob-text);
  text-decoration: none;
}

.prob-mobile-nav a:hover {
  background: rgba(110, 101, 195, 0.1);
}

.prob-mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

@media (min-width: 1100px) {
  .prob-mobile-nav {
    display: none !important;
  }
}

/* ——— Layout sections ——— */
.prob-wrap {
  max-width: var(--prob-max);
  margin: 0 auto;
  padding-left: var(--prob-gutter-x);
  padding-right: var(--prob-gutter-x);
}

.prob-wrap-wide {
  max-width: var(--prob-max-wide);
  margin: 0 auto;
  padding-left: var(--prob-gutter-x);
  padding-right: var(--prob-gutter-x);
}

@media (max-width: 767px) {
  .prob-wrap,
  .prob-wrap-wide {
    padding-left: max(var(--prob-gutter-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--prob-gutter-x), env(safe-area-inset-right, 0px));
  }

  .prob-topbar-inner,
  .prob-header-inner,
  .prob-mobile-nav-inner {
    padding-left: max(var(--prob-gutter-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--prob-gutter-x), env(safe-area-inset-right, 0px));
  }
}

@media (min-width: 1400px) {
  .prob-wrap-wide {
    padding-left: clamp(1.5rem, 2.5vw, 2.25rem);
    padding-right: clamp(1.5rem, 2.5vw, 2.25rem);
  }
}

.prob-section {
  padding: var(--prob-section-pad-y) 0;
}

.prob-section-tight {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
}

.prob-band-dark {
  background: linear-gradient(155deg, #0f1220 0%, #1a1a32 48%, #252248 100%);
  color: var(--prob-on-dark);
}

.prob-band-dark a {
  color: var(--prob-link-on-dark);
}

.prob-band-dark a:hover {
  color: #fff;
}

.prob-band-dark .prob-section-title {
  color: #fff;
}

.prob-band-dark .prob-lead {
  color: var(--prob-on-dark-muted);
}

.prob-band-dark .prob-eyebrow {
  color: var(--prob-on-dark-eyebrow);
}

.prob-band-dark .prob-card {
  background: var(--prob-white);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.prob-band-dark .prob-card h3 {
  color: var(--prob-wood);
}

.prob-band-dark .prob-card p {
  color: var(--prob-text-muted);
}

.prob-band-light {
  background: var(--prob-bg-band);
}

.prob-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--prob-accent);
  margin: 0 0 0.5rem;
}

.prob-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--prob-text);
}

.prob-lead {
  font-size: 1.1rem;
  color: var(--prob-text-muted);
  max-width: 58ch;
  margin: 0 0 1.5rem;
}

/* ——— Hero ——— */
.prob-hero {
  position: relative;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 clamp(2.75rem, 5vw, 4rem);
  overflow: hidden;
}

@media (min-width: 900px) {
  .prob-hero {
    padding: clamp(3rem, 5vw, 4.25rem) 0 clamp(3.25rem, 5vw, 4.5rem);
  }
}

.prob-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .prob-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(2rem, 4vw, 3.25rem);
    align-items: start;
  }
}

.prob-hero h1 {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  color: var(--prob-text);
}

.prob-hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.45;
  color: var(--prob-text);
  margin: 0 0 0.5rem;
  max-width: 54ch;
  font-weight: 600;
}

.prob-hero-lead--secondary {
  font-weight: 500;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  color: var(--prob-text-muted);
  margin-bottom: 1.2rem;
}

.prob-hero-title__sub {
  display: block;
  margin-top: 0.2em;
  font-size: 0.92em;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--prob-text-muted);
}

.prob-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prob-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--prob-text-muted);
}

.prob-hero-bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--prob-green);
  flex-shrink: 0;
}

/* Liste hero avec icônes (accueil) */
.prob-hero-bullets--icons li::before {
  display: none;
}

.prob-hero-bullets--icons li {
  align-items: center;
  gap: 0.65rem;
  color: var(--prob-text);
}

.prob-hero-bullets__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(110, 101, 195, 0.12);
  color: var(--prob-accent);
}

.prob-hero-bullets__ico svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

body.prob-site:not(.light-mode) .prob-hero-bullets__ico {
  background: rgba(110, 101, 195, 0.22);
  color: #c4bff0;
}

.prob-hero-bullets--icons a {
  color: var(--prob-accent);
  font-weight: 700;
  text-decoration: none;
}

.prob-hero-bullets--icons a:hover {
  text-decoration: underline;
}

.prob-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.prob-hero-trust {
  font-size: 0.92rem;
  color: var(--prob-text-muted);
}

.prob-hero-visual {
  border-radius: var(--prob-radius-lg);
  overflow: hidden;
  box-shadow: var(--prob-shadow);
  border: 1px solid var(--prob-border);
}

.prob-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* Accueil : grande image à gauche · colonne droite = flex sans gap (plus de « trou » entre les 2 photos) */
.prob-hero-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-rows: minmax(280px, 1fr);
  column-gap: 0.65rem;
  align-items: stretch;
  min-height: clamp(260px, 34vw, 420px);
}

.prob-hero-figure {
  margin: 0;
  border-radius: var(--prob-radius);
  overflow: hidden;
  border: 1px solid var(--prob-border);
  box-shadow: var(--prob-shadow-sm);
  background: var(--prob-bg-band);
}

.prob-hero-figure--main {
  grid-column: 1;
  grid-row: 1;
  min-height: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.prob-hero-figure--main picture {
  flex: 1;
  min-height: 0;
  display: flex;
}

.prob-hero-figure--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prob-hero-visuals__stack {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
}

.prob-hero-visuals__stack .prob-hero-figure {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: 0;
}

.prob-hero-visuals__stack .prob-hero-figure:first-child {
  border-radius: var(--prob-radius) var(--prob-radius) 0 0;
  border-bottom: none;
}

.prob-hero-visuals__stack .prob-hero-figure:last-child {
  border-radius: 0 0 var(--prob-radius) var(--prob-radius);
}

.prob-hero-visuals__stack .prob-hero-figure img {
  flex: 1;
  min-height: 0;
  width: 100%;
  object-fit: cover;
  display: block;
}

.prob-hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 699px) {
  .prob-hero-visuals {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.65rem;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    min-height: 0;
  }

  .prob-hero-figure--main {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .prob-hero-visuals__stack {
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
    gap: 0;
  }

  .prob-hero-visuals__stack .prob-hero-figure {
    flex: none;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .prob-hero-visuals__stack .prob-hero-figure:first-child {
    border-radius: var(--prob-radius) var(--prob-radius) 0 0;
    border-bottom: none;
  }

  .prob-hero-visuals__stack .prob-hero-figure:last-child {
    border-radius: 0 0 var(--prob-radius) var(--prob-radius);
  }
}

/* ——— Grids ——— */
.prob-grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) and (max-width: 767px) {
  .prob-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .prob-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .prob-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.prob-grid-4 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .prob-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .prob-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.prob-card {
  background: var(--prob-white);
  border-radius: var(--prob-radius);
  border: 1px solid var(--prob-border);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--prob-shadow-sm);
  height: 100%;
}

.prob-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.prob-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--prob-text-muted);
}

.prob-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--prob-accent);
  letter-spacing: -0.02em;
}

.prob-price-unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--prob-text-muted);
}

/* ——— Mini simulateur (accueil + version compacte) ——— */
.prob-mini-sim {
  margin-top: 1.15rem;
  border: 1px solid var(--prob-border);
  border-radius: var(--prob-radius-lg);
  background: var(--prob-white);
  box-shadow: var(--prob-shadow-sm);
  overflow: hidden;
}

.prob-mini-sim__grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .prob-mini-sim__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    align-items: stretch;
  }
}

/* ===== Homepage mini simulateur (v4): clean calculator card ===== */
.pb-mini-sim-v4 {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.pb-mini-sim-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--prob-border);
  border-radius: 24px;
  background: var(--prob-white);
  box-shadow: var(--prob-shadow-sm);
}

@media (min-width: 900px) {
  .pb-mini-sim-card {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 32px;
  }
}

.pb-mini-sim-title {
  margin: 0.25rem 0 0.55rem;
}

.pb-mini-sim-lead {
  margin: 0 0 1rem;
  max-width: 52ch;
}

.pb-mini-sim-row {
  display: flex;
}

.pb-mini-sim-input {
  max-width: 100%;
}

.pb-mini-sim-result {
  margin-top: 1rem;
  border: 1px solid var(--prob-border);
  border-radius: 18px;
  background: rgba(110, 101, 195, 0.08);
  padding: 14px 14px 16px;
}

body.prob-site:not(.light-mode) .pb-mini-sim-result {
  background: rgba(110, 101, 195, 0.18);
  border-color: rgba(110, 101, 195, 0.28);
}

.pb-mini-sim-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  align-items: start;
}

.pb-mini-sim-k {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--prob-text-muted);
}

.pb-mini-sim-v {
  margin-top: 0.25rem;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--prob-text);
}

.pb-mini-sim-hint {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--prob-text-muted);
  min-height: 1.1em;
}

.pb-mini-sim-sub {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--prob-text-muted);
}

.pb-mini-sim-ctas {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pb-mini-sim-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 22px;
  overflow: hidden;
  margin: 0;
  background: var(--prob-bg-band);
  border: 1px solid var(--prob-border);
}

.pb-mini-sim-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pb-mini-sim-note {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--prob-border);
  color: var(--prob-text-muted);
  font-size: 0.95rem;
  max-width: 95ch;
}

/* ===== Tools hub (homepage): SaaS-style grid ===== */
.pb-tools-hub .pb-tools-head {
  margin-bottom: 18px;
  text-align: center;
}

.pb-tools-hub .pb-tools-desc {
  max-width: 78ch;
  margin-left: auto;
  margin-right: auto;
}

.pb-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.pb-tools-hub .pb-tool-card {
  text-align: left;
  align-items: stretch;
}

.pb-tools-hub .pb-tool-desc {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.pb-tools-hub .pb-tool-cta {
  justify-content: flex-start;
  align-self: flex-start;
}

@media (min-width: 720px) {
  .pb-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 1024px) {
  .pb-tools-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

.pb-tool-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 172px;
}

body.prob-site.light-mode .pb-tool-card {
  border-color: rgba(15, 18, 32, 0.12);
  background: rgba(15, 18, 32, 0.02);
}

.pb-tool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 101, 195, 0.35);
  box-shadow: var(--prob-shadow);
}

.pb-tool-card__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
}

.pb-tools-hub .pb-tool-card__top {
  flex: 1 1 auto;
}

.pb-tool-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: rgba(110, 101, 195, 0.95);
  background: rgba(110, 101, 195, 0.12);
  border: 1px solid rgba(110, 101, 195, 0.22);
}

.pb-tool-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.pb-tool-title {
  margin: 0;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
}

.pb-tool-desc {
  margin: 0;
  color: var(--prob-text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 46ch;
}

.pb-tool-cta {
  margin-top: 12px;
  font-weight: 600;
  color: var(--prob-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pb-tool-cta::after {
  content: "→";
  transition: transform 0.2s ease;
}

.pb-tool-card:hover .pb-tool-cta::after {
  transform: translateX(2px);
}

.pb-tools-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 18px;
  justify-content: center;
}

/* ===== Tool / guide pages (inside pages): SaaS-style layout ===== */
.pb-tool-page .prob-main .prob-section {
  padding-top: clamp(1.2rem, 2.6vw, 2rem);
}

.pb-tool-hero {
  max-width: 980px;
  margin: 0 auto 18px;
}

.pb-tool-breadcrumb {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--prob-text-muted);
}

.pb-tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--prob-border);
  background: rgba(110, 101, 195, 0.10);
  color: var(--prob-text);
  font-weight: 800;
  font-size: 0.82rem;
}

.pb-tool-title {
  margin: 0.35rem 0 0.6rem;
  letter-spacing: -0.02em;
}

.pb-tool-lead {
  margin: 0;
  max-width: 72ch;
  color: var(--prob-text-muted);
}

.pb-tool-main {
  max-width: 980px;
  margin: 18px auto 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.prob-site.light-mode .pb-tool-main {
  background: rgba(15, 18, 32, 0.02);
  border-color: rgba(15, 18, 32, 0.12);
}

.pb-tool-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

@media (min-width: 900px) {
  .pb-tool-main {
    padding: 32px;
  }

  .pb-tool-split {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
  }
}

.pb-tool-form {
  display: grid;
  gap: 12px;
}

.pb-tool-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .pb-tool-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pb-tool-field {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
  color: var(--prob-text);
}

.pb-tool-field span {
  font-size: 0.88rem;
  color: var(--prob-text-muted);
  font-weight: 800;
}

.pb-tool-visual {
  width: 100%;
}

.pb-tool-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 22px;
  overflow: hidden;
  background: var(--prob-bg-band);
  border: 1px solid var(--prob-border);
}

.pb-tool-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pb-tool-result {
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid var(--prob-border);
  background: rgba(110, 101, 195, 0.08);
  padding: 14px 14px 16px;
}

body.prob-site:not(.light-mode) .pb-tool-result {
  background: rgba(110, 101, 195, 0.18);
  border-color: rgba(110, 101, 195, 0.28);
}

.pb-tool-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.pb-tool-result-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pb-tool-k {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--prob-text-muted);
}

.pb-tool-v {
  margin-top: 0.25rem;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--prob-text);
}

.pb-tool-sub {
  margin-top: 0.6rem;
  color: var(--prob-text-muted);
  font-size: 0.95rem;
}

.pb-tool-ctas {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pb-info-grid {
  max-width: 980px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 720px) {
  .pb-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pb-info-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 8px;
}

body.prob-site.light-mode .pb-info-card {
  border-color: rgba(15, 18, 32, 0.12);
  background: rgba(15, 18, 32, 0.02);
}

.pb-info-card__title {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.pb-info-card__desc {
  margin: 0;
  color: var(--prob-text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.pb-tool-explain {
  max-width: 980px;
  margin: 14px auto 0;
}

.pb-tool-explain details {
  border: 1px solid var(--prob-border);
  border-radius: 18px;
  background: transparent;
  padding: 12px 14px;
}

.pb-tool-explain summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.pb-tool-explain summary::-webkit-details-marker {
  display: none;
}

.pb-tool-cta-band {
  max-width: 980px;
  margin: 18px auto 0;
}

/* Shared section helpers for tool pages */
.pb-tool-section {
  max-width: 980px;
  margin: 18px auto 0;
}

.pb-tool-section__title {
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.pb-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--prob-border);
  background: rgba(110, 101, 195, 0.10);
  font-weight: 800;
  color: var(--prob-text);
}

.pb-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 720px) {
  .pb-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pb-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 16px;
}

body.prob-site.light-mode .pb-card {
  border-color: rgba(15, 18, 32, 0.12);
  background: rgba(15, 18, 32, 0.02);
}

.pb-card__k {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--prob-text-muted);
}

.pb-card__v {
  margin-top: 0.35rem;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.pb-list {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
  color: var(--prob-text-muted);
}

.pb-list li {
  margin: 0.35rem 0;
}

/* “Erreurs à éviter” list */
.pb-errors {
  display: grid;
  gap: 12px;
}

.pb-error-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

body.prob-site.light-mode .pb-error-item {
  border-color: rgba(15, 18, 32, 0.12);
  background: rgba(15, 18, 32, 0.02);
}

.pb-error-dot {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 96, 96, 0.18);
  border: 1px solid rgba(255, 96, 96, 0.25);
  font-weight: 900;
}

body.prob-site.light-mode .pb-error-dot {
  color: rgba(15, 18, 32, 0.9);
}

.pb-error-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.pb-error-desc {
  margin: 0.25rem 0 0;
  color: var(--prob-text-muted);
}

/* Comparison blocks */
.pb-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .pb-compare-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pb-compare-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  display: grid;
  gap: 10px;
}

body.prob-site.light-mode .pb-compare-card {
  border-color: rgba(15, 18, 32, 0.12);
  background: rgba(15, 18, 32, 0.02);
}

.pb-compare-name {
  margin: 0;
  font-weight: 900;
}

.pb-compare-kpi {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pb-compare-meta {
  color: var(--prob-text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
  display: grid;
  gap: 6px;
}

.pb-euros {
  display: inline-flex;
  gap: 2px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.pb-euros span {
  opacity: 0.35;
}

.pb-euros span.is-on {
  opacity: 1;
}

/* Price range blocks */
.pb-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 720px) {
  .pb-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pb-price-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pb-price-block {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
}

body.prob-site.light-mode .pb-price-block {
  border-color: rgba(15, 18, 32, 0.12);
  background: rgba(15, 18, 32, 0.02);
}

.pb-price-value {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--prob-accent);
}

.pb-price-label {
  margin-top: 0.35rem;
  color: var(--prob-text-muted);
}

/* Visual “sec vs humide” */
.pb-vs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .pb-vs {
    grid-template-columns: 1fr 1fr;
  }
}

.pb-vs-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
}

body.prob-site.light-mode .pb-vs-card {
  border-color: rgba(15, 18, 32, 0.12);
  background: rgba(15, 18, 32, 0.02);
}

.pb-vs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pb-vs-title {
  margin: 0;
  font-weight: 900;
}

.pb-vs-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(110, 101, 195, 0.12);
  border: 1px solid rgba(110, 101, 195, 0.22);
  color: rgba(110, 101, 195, 0.95);
  font-weight: 900;
}

.prob-mini-sim__left {
  padding: 1.15rem 1.15rem 1.1rem;
}

.prob-mini-sim__title {
  margin-bottom: 0.55rem;
}

.prob-mini-sim__lead {
  margin-bottom: 0.85rem;
  max-width: 62ch;
}

.prob-mini-sim__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--prob-text-muted);
  margin-bottom: 0.35rem;
}

.prob-mini-sim__row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.prob-mini-sim__input {
  width: 100%;
  max-width: 16rem;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--prob-border);
  background: transparent;
  color: var(--prob-text);
  font: inherit;
  font-weight: 700;
}

/* Dark-mode selects should not appear bright/white */
body.prob-site:not(.light-mode) select.prob-mini-sim__input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(110, 101, 195, 0.28);
  color: rgba(255, 255, 255, 0.92);
  color-scheme: dark;
}

body.prob-site:not(.light-mode) select.prob-mini-sim__input option {
  background: #0f1220;
  color: rgba(255, 255, 255, 0.92);
}

.prob-mini-sim__input:focus {
  outline: none;
  border-color: rgba(110, 101, 195, 0.55);
  box-shadow: 0 0 0 3px rgba(110, 101, 195, 0.16);
}

.prob-mini-sim__result {
  margin-top: 0.75rem;
  border-radius: var(--prob-radius);
  border: 1px solid var(--prob-border);
  background: rgba(110, 101, 195, 0.08);
  padding: 0.8rem 0.85rem 0.85rem;
}

body.prob-site:not(.light-mode) .prob-mini-sim__result {
  background: rgba(110, 101, 195, 0.18);
  border-color: rgba(110, 101, 195, 0.28);
}

.prob-mini-sim__result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.85rem;
  align-items: start;
}

.prob-mini-sim__k {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--prob-text-muted);
}

.prob-mini-sim__v {
  margin-top: 0.2rem;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--prob-text);
}

.prob-mini-sim__hint {
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: var(--prob-text-muted);
  min-height: 1.1em;
}

.prob-mini-sim__sub {
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: var(--prob-text-muted);
}

.prob-mini-sim__ctas {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.prob-mini-sim__right {
  display: none;
  border-left: 1px solid var(--prob-border);
  background: var(--prob-bg-band);
}

@media (min-width: 900px) {
  .prob-mini-sim__right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}

.prob-mini-sim__media {
  margin: 0;
  height: 100%;
}

.prob-mini-sim__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 100%;
}

.prob-mini-sim__media--contain {
  height: auto;
  padding: 1rem;
}

.prob-mini-sim__media--contain img {
  object-fit: contain;
  height: auto;
  min-height: 0;
  background: transparent;
}

/* Mini simulateur: compact info so left height matches visual better */
.prob-mini-sim__details {
  margin-top: 0.7rem;
  border-top: 1px solid var(--prob-border);
  padding-top: 0.7rem;
}

.prob-mini-sim__summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--prob-text);
  list-style: none;
}

.prob-mini-sim__summary::-webkit-details-marker {
  display: none;
}

.prob-mini-sim__summary::after {
  content: "▾";
  float: right;
  opacity: 0.8;
}

.prob-mini-sim__details[open] .prob-mini-sim__summary::after {
  content: "▴";
}

.prob-mini-sim__details-body {
  margin-top: 0.55rem;
}

/* Desktop: make left column visually “fit” the image height */
@media (min-width: 900px) {
  .prob-mini-sim__left {
    padding: 1rem 1rem 0.95rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .prob-mini-sim__title {
    margin-bottom: 0.45rem;
  }

  .prob-mini-sim__lead {
    margin-bottom: 0.65rem;
    max-width: 56ch;
  }

  .prob-mini-sim__result {
    margin-top: 0.6rem;
    padding: 0.7rem 0.75rem 0.75rem;
  }

  .prob-mini-sim__result-grid {
    gap: 0.55rem 0.75rem;
  }

  .prob-mini-sim__ctas {
    margin-top: 0.6rem;
  }

  .prob-mini-sim__details {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
  }
}

/* Version compacte (sans image) */
.prob-mini-sim--small {
  padding: 0.85rem 0.95rem;
  margin-top: 0.85rem;
}

.prob-mini-sim__small-title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.prob-mini-sim__small-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.45rem 0.6rem;
  align-items: center;
}

.prob-mini-sim__small-row .prob-mini-sim__input {
  max-width: none;
}

.prob-mini-sim__small-result {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
}

.prob-mini-sim__small-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  color: var(--prob-text-muted);
  font-size: 0.9rem;
}

.prob-mini-sim__small-lines strong {
  color: var(--prob-text);
  font-weight: 900;
}

.prob-mini-sim__small-ctas {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 767px) {
  .prob-mini-sim {
    margin-top: 0.75rem;
  }

  .prob-mini-sim__left {
    padding: 0.9rem 0.9rem 0.9rem;
  }

  .prob-mini-sim__lead {
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .prob-mini-sim__input {
    padding: 0.55rem 0.65rem;
  }

  .prob-mini-sim__result {
    margin-top: 0.65rem;
    padding: 0.7rem 0.75rem 0.75rem;
  }

  .prob-mini-sim__v {
    font-size: 1.15rem;
  }

  .prob-mini-sim__ctas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.5rem;
  }

  .prob-mini-sim__ctas .prob-btn {
    width: 100%;
    justify-content: center;
    min-height: 2.35rem;
  }
}

/* ——— Pricing cards ——— */
.prob-price-card {
  display: flex;
  flex-direction: column;
}

.prob-price-card .prob-card-media {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.85rem;
  aspect-ratio: 4/3;
  background: var(--prob-bg-band);
}

.prob-price-card .prob-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.4rem;
  box-sizing: border-box;
}

/* ——— Tarifs : cartes + actions (accueil) ——— */
.prob-price-hub-band {
  padding-top: clamp(1.5rem, 3.5vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
}

/* Layout unifié : cartes + actions visibles ensemble */
.prob-tarifs-split {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.1rem;
}

@media (min-width: 980px) {
  .prob-tarifs-split {
    grid-template-columns: 1fr;
  }
}

/* Même largeur pour intro, grille de cartes et bloc « Ensuite ? » */
.prob-tarifs-rail {
  max-width: 64rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Rails pleine largeur utile dans .prob-wrap-wide (sans doubler le 64rem) */
.prob-tarifs-rail--page-wide {
  max-width: 100%;
  width: 100%;
}

.prob-home-post-rail--page-wide {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.prob-tarifs-intro {
  text-align: center;
  margin-bottom: 0.35rem;
}

.prob-tarifs-intro .prob-eyebrow {
  margin-bottom: 0.4rem;
}

.prob-tarifs-intro .prob-lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.prob-tarifs-cards {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  margin-top: 0;
}

@media (min-width: 360px) {
  .prob-tarifs-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tablette : 2–3 colonnes · grand écran : 4 */
@media (min-width: 900px) {
  .prob-tarifs-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .prob-tarifs-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.prob-tarifs-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--prob-white);
  border: 1px solid var(--prob-border);
  border-radius: 12px;
  box-shadow: var(--prob-shadow-sm);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.prob-tarifs-card:hover {
  border-color: rgba(110, 101, 195, 0.35);
  box-shadow: var(--prob-shadow);
}

.prob-tarifs-card--highlight {
  border-color: rgba(110, 101, 195, 0.38);
  background: linear-gradient(180deg, var(--prob-accent-soft) 0%, var(--prob-white) 52%);
}

.prob-tarifs-card--best-vol {
  border: 2px solid rgba(21, 128, 61, 0.42);
  box-shadow: 0 10px 28px rgba(21, 128, 61, 0.08);
}

.prob-tarifs-save {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #15803d;
  line-height: 1.35;
}

.prob-tarifs-card__media {
  aspect-ratio: 5 / 4;
  background: var(--prob-bg-band);
  overflow: hidden;
}

.prob-tarifs-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.45rem;
  box-sizing: border-box;
  display: block;
}

.prob-tarifs-card__media--kindling {
  background: var(--prob-bg-dark);
}

.prob-tarifs-card__media--kindling img {
  object-fit: contain;
  padding: 0.35rem;
}

.prob-tarifs-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.65rem 0.75rem 0.75rem;
  gap: 0.28rem;
}

.prob-tarifs-card__title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--prob-text);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.prob-tarifs-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.1rem 0.32rem;
  border-radius: 3px;
  border: 1px solid var(--prob-border);
  background: var(--prob-white);
  color: var(--prob-text-muted);
}

.prob-tarifs-card__desc {
  margin: 0;
  flex: 1;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--prob-text-muted);
}

.prob-tarifs-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--prob-border);
}

.prob-tarifs-card__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.prob-tarifs-card__ctas .prob-btn {
  padding: 0.5rem 0.7rem;
  font-size: 0.86rem;
}

.prob-tarifs-card__price {
  font-variant-numeric: tabular-nums;
}

.prob-tarifs-card__price .prob-price {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--prob-accent);
}

.prob-tarifs-card__price .prob-price-unit {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--prob-text-muted);
}

.prob-tarifs-status {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.18rem 0.4rem;
  border-radius: 4px;
  background: var(--prob-accent-soft);
  color: var(--prob-accent);
  white-space: nowrap;
}

.prob-tarifs-actions {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.prob-tarifs-actions-box {
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1px solid var(--prob-border);
  border-radius: var(--prob-radius);
  box-shadow: none;
  padding: 1.25rem 1rem 1.3rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .prob-tarifs-actions-box {
    padding: 1.35rem 1.5rem 1.4rem;
  }
}

.prob-tarifs-actions__eyebrow {
  margin-bottom: 0.35rem;
}

.prob-tarifs-actions__title {
  margin-bottom: 0.4rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
}

.prob-tarifs-actions__lead {
  margin: 0 auto 1.1rem;
  max-width: 40rem;
  font-size: 1.02rem;
}

.prob-tarifs-actions__grid {
  margin-top: 0.25rem;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .prob-tarifs-actions-box .prob-tarifs-actions__grid.prob-quick-grid--hub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .prob-tarifs-actions-box .prob-tarifs-actions__grid.prob-quick-grid--hub {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.prob-tarifs-actions__links {
  margin-top: 1.15rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--prob-border);
  font-size: 0.9rem;
  color: var(--prob-text-muted);
}

.prob-tarifs-actions__links a {
  font-weight: 600;
  color: var(--prob-accent);
  text-decoration: none;
}

.prob-tarifs-actions__links a:hover {
  text-decoration: underline;
}

.prob-tarifs-actions__sep {
  opacity: 0.5;
}

/* ——— CTA band ——— */
.prob-cta-band {
  text-align: center;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--prob-radius-lg);
  background: linear-gradient(125deg, #0f1220 0%, #1e1c38 45%, #3d3480 100%);
  color: var(--prob-on-dark);
  box-shadow: var(--prob-shadow);
}

.prob-cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: #fff;
}

.prob-cta-band p {
  margin: 0 0 1.25rem;
  opacity: 0.94;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
  color: var(--prob-on-dark-muted);
}

/* Format pages: CTA intro line should match the 1m look exactly */
.prob-cta-band .prob-cta-band__intro {
  display: block;
  width: 100%;
  max-width: 60ch;
  margin: 0 auto 1.25rem;
  text-align: center !important;
  text-wrap: balance;
}

.prob-cta-band__foot {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--prob-on-dark-muted);
}

.prob-cta-band__foot a {
  color: var(--prob-link-on-dark);
}

.prob-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

/* ——— FAQ ——— */
.prob-faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.prob-faq details {
  background: var(--prob-white);
  border: 1px solid var(--prob-border);
  border-radius: var(--prob-radius);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--prob-shadow-sm);
}

.prob-faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.prob-faq details[open] summary {
  margin-bottom: 0.5rem;
}

.prob-faq .prob-answer {
  font-size: 0.98rem;
  color: var(--prob-text-muted);
  margin: 0;
}

/* ——— Footer ——— */
/* Pas de margin-top : évite une bande de couleur du fond de page entre le contenu et le footer */
.prob-footer {
  background: var(--prob-bg-dark);
  color: #c8bbb0;
  padding: 3rem 0 2rem;
  margin-top: 0;
}

/* Ajustements du dernier bloc pour garder un rythme correct sans « trou » visuel */
body.bois-chauffage-page #contenu-principal > section:last-of-type,
body.bois-hub-page #contenu-principal > section:last-of-type {
  padding-bottom: 0;
}

body.bois-hub-page #contenu-principal > section.pb-fhub-section--decision:last-of-type {
  padding-bottom: clamp(2.75rem, 7vw, 4.25rem);
}

body.bois-format-guide-page #contenu-principal > section:last-of-type {
  padding-bottom: clamp(0.65rem, 2vw, 1rem);
}

body.prob-page-avis #contenu-principal > section:last-of-type {
  padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

body.bois-chauffage-page .pb-passer-commande {
  padding-top: clamp(1.35rem, 3.2vw, 2.05rem);
  padding-bottom: clamp(1.35rem, 3.2vw, 2.05rem);
  min-height: clamp(260px, 34vh, 440px);
  display: grid;
  align-items: center;
}

/* ==================== ProBois77 — Bois restaurant (page produit / service) ==================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Page bois restaurant : rythme vertical plus aéré ——— */
.pb-restaurant-main > section.prob-section-tight {
  padding-top: clamp(2rem, 4.2vw, 2.85rem);
  padding-bottom: clamp(2rem, 4.2vw, 2.85rem);
}

/* Conteneur unique : largeur confortable, contenu surtout aligné à gauche */
.pb-restaurant-main > section .prob-wrap-wide {
  max-width: var(--prob-max-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--prob-gutter-x);
  padding-right: var(--prob-gutter-x);
}

/* ——— Bois restaurant : alignements variés (pas tout centré) ——— */
.pb-restaurant-h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--prob-text);
}

/* Hero — compact, aligné à gauche */
.pb-restaurant-hero {
  border-bottom: 1px solid var(--prob-border);
  background: linear-gradient(
    155deg,
    var(--prob-bg-dark) 0%,
    rgba(110, 101, 195, 0.16) 55%,
    var(--prob-bg-dark) 100%
  );
}

body.prob-site:not(.light-mode) .pb-restaurant-hero {
  background: linear-gradient(
    155deg,
    var(--prob-bg-dark) 0%,
    rgba(110, 101, 195, 0.16) 55%,
    var(--prob-bg-dark) 100%
  );
  border-bottom-color: rgba(110, 101, 195, 0.2);
}

.pb-restaurant-hero--split .pb-restaurant-breadcrumb {
  margin-bottom: 0.65rem;
}

.pb-restaurant-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--prob-accent);
  line-height: 1.35;
}

.pb-restaurant-hero__grid {
  display: grid;
  gap: clamp(1.35rem, 3.5vw, 2.25rem);
  align-items: center;
}

@media (min-width: 900px) {
  .pb-restaurant-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(1.75rem, 4vw, 3rem);
  }
}

.pb-restaurant-hero__col--text {
  max-width: 38rem;
  text-align: left;
}

.pb-restaurant-hero__media {
  margin: 0;
  border-radius: var(--prob-radius-lg);
  overflow: hidden;
  border: 1px solid var(--prob-border);
  box-shadow: var(--prob-shadow-sm);
}

.pb-restaurant-hero__media img {
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: min(380px, 52vw);
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .pb-restaurant-hero__media img {
    max-height: min(340px, 36vw);
  }
}

.pb-restaurant-breadcrumb {
  display: block;
  text-align: left;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
}

.pb-restaurant-hero__title {
  margin: 0.15rem 0 0.55rem;
  font-size: clamp(1.85rem, 2.6vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: rgba(255, 255, 255, 0.96);
  text-wrap: balance;
}

.pb-restaurant-hero__lead {
  margin: 0 0 1rem;
  max-width: 42ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--prob-on-dark-muted);
}

.pb-restaurant-hero__price {
  margin: 0 0 0.3rem;
  font-size: clamp(1.55rem, 3.2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.pb-restaurant-hero__price .prob-price {
  color: var(--prob-wood, var(--prob-text));
}

.pb-restaurant-hero__sub {
  margin: 0 0 1.15rem;
  max-width: 44ch;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--prob-on-dark-muted);
}

@media (min-width: 900px) {
  .pb-restaurant-hero__media {
    border-radius: 22px;
  }
}

.pb-restaurant-hero__ctas {
  justify-content: flex-start;
}

/* Grille 3 colonnes — Comment commander (page bois restaurant) */
.pb-restaurant-order-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  margin-top: 0.65rem;
}

@media (min-width: 720px) {
  .pb-restaurant-order-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pb-restaurant-related {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pb-restaurant-related a {
  color: var(--prob-accent);
  font-weight: 600;
  text-decoration: none;
}

.pb-restaurant-related a:hover {
  text-decoration: underline;
}

.pb-restaurant-related span[aria-hidden="true"] {
  color: var(--prob-text-muted);
  user-select: none;
}

/* Blocs image + texte — largeur = conteneur page */
.pb-restaurant-split__wrap {
  width: 100%;
  margin: 0;
}

.pb-restaurant-split__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.85rem);
  align-items: center;
}

@media (min-width: 768px) {
  .pb-restaurant-split__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.65rem, 3.5vw, 2.35rem);
  }
}

.pb-restaurant-split__media {
  margin: 0;
  border-radius: var(--prob-radius-lg);
  overflow: hidden;
  border: 1px solid var(--prob-border);
  box-shadow: var(--prob-shadow-sm);
}

.pb-restaurant-split__media img {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: min(300px, 48vw);
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .pb-restaurant-split__media img {
    max-height: 300px;
  }
}

.pb-restaurant-split__copy {
  text-align: left;
}

.pb-restaurant-split__text {
  margin: 0;
  max-width: 46ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--prob-text-muted);
}

.pb-restaurant-split__note {
  margin: 0.75rem 0 0;
  max-width: 38ch;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--prob-text-muted);
  font-style: italic;
  border-left: 3px solid rgba(110, 101, 195, 0.45);
  padding-left: 0.75rem;
}

/* Livraison : texte à gauche, image à droite ; hauteur d’image contenue */
.pb-restaurant-split--delivery .pb-restaurant-split__media img {
  max-height: min(280px, 50vw);
}

@media (min-width: 768px) {
  .pb-restaurant-split--delivery .pb-restaurant-split__media img {
    max-height: 280px;
  }
}

/* Offre : 2 colonnes + carte */
.pb-restaurant-offer-split {
  display: grid;
  gap: 1.35rem 2rem;
  align-items: start;
}

@media (min-width: 720px) {
  .pb-restaurant-offer-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
}

.pb-restaurant-offer-split__lead {
  margin: 0.4rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--prob-text-muted);
  max-width: 46ch;
}

.pb-restaurant-offer-card {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: var(--prob-radius-lg);
  border: 1px solid var(--prob-border);
  background: var(--prob-white);
  box-shadow: var(--prob-shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pb-restaurant-offer-card:hover,
.pb-restaurant-offer-card:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--prob-shadow);
  border-color: rgba(110, 101, 195, 0.42);
}

body.prob-site:not(.light-mode) .pb-restaurant-offer-card {
  background: rgba(22, 26, 40, 0.55);
  border-color: rgba(110, 101, 195, 0.24);
}

.pb-restaurant-offer-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--prob-text);
}

.pb-restaurant-offer-card__price {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--prob-text);
}

.pb-restaurant-offer-card__price .prob-price {
  color: var(--prob-wood, var(--prob-text));
}

.pb-restaurant-offer-card__line {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--prob-text-muted);
}

.pb-restaurant-offer-card__line:last-of-type {
  margin-bottom: 0.85rem;
}

.pb-restaurant-offer-card .prob-btn {
  width: 100%;
  justify-content: center;
}

/* Cas d’usage — grille de cartes */
.pb-restaurant-cases__grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.65rem;
  grid-template-columns: 1fr;
}

@media (min-width: 360px) {
  .pb-restaurant-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .pb-restaurant-cases__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.pb-restaurant-case {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-radius: var(--prob-radius);
  border: 1px solid var(--prob-border);
  background: var(--prob-bg-band);
  text-align: left;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.pb-restaurant-case:hover {
  transform: translateY(-2px);
  box-shadow: var(--prob-shadow-sm);
  border-color: rgba(110, 101, 195, 0.35);
}

body.prob-site:not(.light-mode) .pb-restaurant-case {
  background: rgba(22, 26, 40, 0.35);
  border-color: rgba(110, 101, 195, 0.2);
}

.pb-restaurant-case__title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--prob-text);
  line-height: 1.25;
}

.pb-restaurant-case__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--prob-text-muted);
}

/* Processus : 2 colonnes + liste numérotée */
.pb-restaurant-process-split {
  display: grid;
  gap: 1rem 1.75rem;
  align-items: start;
}

@media (min-width: 640px) {
  .pb-restaurant-process-split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.pb-restaurant-process__text {
  margin: 0.4rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--prob-text-muted);
  max-width: 48ch;
}

.pb-restaurant-process-steps {
  margin: 0;
  padding: 0 0 0 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--prob-text-muted);
}

.pb-restaurant-process-steps li {
  margin: 0 0 0.35rem;
  padding-left: 0.15rem;
}

.pb-restaurant-process-steps li:last-child {
  margin-bottom: 0;
}

.pb-restaurant-process .pb-restaurant-process__ctas {
  margin-top: 1.15rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Bandeau confiance — grille, une pastille par promesse (lisible sur mobile) */
.pb-restaurant-trust-strip__row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 0.75rem;
}

@media (min-width: 640px) {
  .pb-restaurant-trust-strip__row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem 1rem;
  }
}

.pb-restaurant-trust-strip__item {
  margin: 0;
  padding: 0.7rem 0.8rem 0.7rem 0.9rem;
  border-radius: var(--prob-radius);
  border: 1px solid var(--prob-border);
  border-left-width: 3px;
  border-left-color: rgba(110, 101, 195, 0.42);
  background: var(--prob-bg-band);
  text-align: left;
  min-height: 100%;
  display: flex;
  align-items: center;
}

body.prob-site:not(.light-mode) .pb-restaurant-trust-strip__item {
  background: rgba(22, 26, 40, 0.45);
  border-color: rgba(110, 101, 195, 0.22);
  border-left-color: rgba(154, 148, 227, 0.5);
}

.pb-restaurant-trust-strip__label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: var(--prob-text);
}

/* Bloc SEO — encadré léger, titre + texte mieux hiérarchisés */
.pb-restaurant-seo-blk__panel {
  margin: 0;
  padding: clamp(1.05rem, 2.6vw, 1.4rem) clamp(1.05rem, 2.4vw, 1.55rem);
  border-radius: var(--prob-radius-lg);
  border: 1px solid var(--prob-border);
  border-left-width: 4px;
  border-left-color: rgba(110, 101, 195, 0.45);
  background: var(--prob-bg-band);
}

body.prob-site:not(.light-mode) .pb-restaurant-seo-blk__panel {
  background: rgba(22, 26, 40, 0.42);
  border-color: rgba(110, 101, 195, 0.22);
  border-left-color: rgba(154, 148, 227, 0.48);
}

.pb-restaurant-seo-blk__title {
  margin: 0 0 0.55rem;
  max-width: 65ch;
}

.pb-restaurant-seo-blk__text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--prob-text-muted);
  max-width: 62ch;
  text-align: left;
}

/* FAQ — cartes distinctes, questions en titres */
.pb-restaurant-faq__heading {
  margin: 0 0 0.9rem;
}

.pb-restaurant-faq-plain {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pb-restaurant-faq-plain__block {
  margin: 0;
  padding: 1rem 1.1rem 1.1rem;
  border-radius: var(--prob-radius-lg);
  border: 1px solid var(--prob-border);
  background: var(--prob-white);
  box-shadow: var(--prob-shadow-sm);
}

body.prob-site:not(.light-mode) .pb-restaurant-faq-plain__block {
  background: rgba(22, 26, 40, 0.38);
  border-color: rgba(110, 101, 195, 0.22);
  box-shadow: none;
}

.pb-restaurant-faq-plain__q {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--prob-text);
  line-height: 1.38;
}

.pb-restaurant-faq-plain__a {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  line-height: 1.58;
  color: var(--prob-text-muted);
}

.pb-restaurant-faq-plain__a strong {
  color: var(--prob-text);
  font-weight: 600;
}

/* CTA final — même conteneur, équilibre gauche / droite */
.pb-restaurant-final {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding: 1.15rem 1.15rem;
  border: 1px solid var(--prob-border);
  border-radius: var(--prob-radius-lg);
  background: var(--prob-white);
  box-shadow: var(--prob-shadow-sm);
}

body.prob-site:not(.light-mode) .pb-restaurant-final {
  background: rgba(22, 26, 40, 0.45);
  border-color: rgba(110, 101, 195, 0.22);
}

.pb-restaurant-final__copy {
  text-align: left;
  min-width: 0;
}

.pb-restaurant-final__lead {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--prob-text);
}

.pb-restaurant-final__sub {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--prob-text-muted);
  max-width: 42ch;
}

.pb-restaurant-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

@media (min-width: 640px) {
  .pb-restaurant-final {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.2rem 1.3rem;
  }

  .pb-restaurant-final__copy {
    flex: 1;
    min-width: min(100%, 22rem);
  }

  .pb-restaurant-final__actions {
    flex-shrink: 0;
    justify-content: flex-end;
  }
}

/* ——— Bois restaurant : raffinage desktop (≥1024px) ——— */
@media (min-width: 1024px) {
  .pb-restaurant-main > section .prob-wrap-wide {
    max-width: min(100%, 82rem);
    padding-left: clamp(1.5rem, 3vw, 2.25rem);
    padding-right: clamp(1.5rem, 3vw, 2.25rem);
  }

  .pb-restaurant-main > section.prob-section-tight {
    padding-top: clamp(2.35rem, 3.5vw, 3.1rem);
    padding-bottom: clamp(2.35rem, 3.5vw, 3.1rem);
  }

  .pb-restaurant-h2 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
  }

  .pb-restaurant-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 2.75rem;
    align-items: stretch;
  }

  .pb-restaurant-hero__col--text {
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .pb-restaurant-hero__title {
    font-size: clamp(1.65rem, 2.1vw, 2.05rem);
    max-width: 38ch;
  }

  .pb-restaurant-hero__lead {
    font-size: 1.06rem;
    max-width: 52ch;
  }

  .pb-restaurant-hero__media {
    display: flex;
    align-items: stretch;
    min-height: 280px;
  }

  .pb-restaurant-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: none;
    max-width: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .pb-restaurant-split__grid {
    gap: 2.5rem;
    align-items: stretch;
  }

  .pb-restaurant-split__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .pb-restaurant-split__text {
    max-width: none;
    font-size: 1.04rem;
  }

  .pb-restaurant-split__note {
    max-width: none;
  }

  .pb-restaurant-split__media {
    display: flex;
    align-items: stretch;
  }

  .pb-restaurant-split__media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    max-height: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .pb-restaurant-split--delivery .pb-restaurant-split__media img {
    max-height: none;
    min-height: 300px;
  }

  .pb-restaurant-offer-split {
    gap: 2rem 2.75rem;
    align-items: stretch;
  }

  .pb-restaurant-offer-split__lead {
    max-width: none;
    font-size: 1.02rem;
  }

  .pb-restaurant-offer-card {
    padding: 1.2rem 1.25rem;
  }

  .pb-restaurant-cases__grid {
    gap: 1rem;
    margin-top: 0.85rem;
  }

  .pb-restaurant-case {
    padding: 1rem 1.05rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  .pb-restaurant-case__title {
    font-size: 1rem;
  }

  .pb-restaurant-case__text {
    font-size: 0.9rem;
  }

  .pb-restaurant-process-split {
    gap: 1.25rem 2.75rem;
    align-items: start;
  }

  .pb-restaurant-process__text {
    max-width: none;
    font-size: 1.02rem;
  }

  .pb-restaurant-process-steps {
    font-size: 0.95rem;
    padding: 0.85rem 1rem 0.85rem 1.35rem;
    border-radius: var(--prob-radius);
    border: 1px solid var(--prob-border);
    background: var(--prob-white);
  }

  body.prob-site:not(.light-mode) .pb-restaurant-process-steps {
    background: rgba(22, 26, 40, 0.4);
    border-color: rgba(110, 101, 195, 0.2);
  }

  .pb-restaurant-trust-strip__label {
    font-size: 0.86rem;
    letter-spacing: 0.04em;
  }

  .pb-restaurant-seo-blk__text {
    font-size: 0.98rem;
    max-width: 72ch;
  }

  .pb-restaurant-faq-plain {
    gap: 0.95rem;
  }

  .pb-restaurant-faq-plain__q {
    font-size: 1.05rem;
  }

  .pb-restaurant-faq-plain__a {
    font-size: 0.94rem;
  }

  .pb-restaurant-final {
    padding: 1.35rem 1.5rem;
  }

  .pb-restaurant-final__lead {
    font-size: 1.2rem;
  }

  .pb-restaurant-final__sub {
    font-size: 0.93rem;
    max-width: 54ch;
  }
}

@media (min-width: 1280px) {
  .pb-restaurant-main > section .prob-wrap-wide {
    max-width: min(100%, 88rem);
    padding-left: clamp(1.75rem, 3.5vw, 2.75rem);
    padding-right: clamp(1.75rem, 3.5vw, 2.75rem);
  }

  .pb-restaurant-hero__grid {
    gap: 3.25rem;
  }

  .pb-restaurant-hero__title {
    max-width: 42ch;
  }
}

@media (min-width: 1536px) {
  .pb-restaurant-main > section .prob-wrap-wide {
    max-width: min(100%, 92rem);
  }
}

.pb-caption {
  text-align: center;
  font-size: 0.95rem;
  color: var(--prob-text-muted);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.prob-footer a {
  color: #e8dfd5;
  text-decoration: none;
}

.prob-footer a:hover {
  text-decoration: underline;
}

.prob-footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .prob-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .prob-footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.prob-footer h4 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.prob-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prob-footer li {
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.prob-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  text-align: center;
  color: #8a7d72;
}

.prob-footer-partner {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.prob-footer-partner a {
  white-space: nowrap;
}

.prob-footer__logo {
  display: inline-block;
  margin-bottom: 0.85rem;
}

.prob-footer__logo img {
  width: auto;
  height: auto;
  max-height: 96px;
  max-width: min(100%, 280px);
  display: block;
}

/* ——— Dept / city link cards ——— */
.prob-link-card {
  display: block;
  padding: 1.1rem 1.15rem;
  border-radius: var(--prob-radius);
  background: var(--prob-white);
  border: 1px solid var(--prob-border);
  text-decoration: none;
  color: var(--prob-text);
  font-weight: 700;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.prob-link-card:hover {
  box-shadow: var(--prob-shadow);
  border-color: rgba(110, 101, 195, 0.35);
  color: var(--prob-accent-hover);
}

.prob-link-card small {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--prob-text-muted);
  margin-top: 0.25rem;
}

/* ——— Gallery grid ——— */
.prob-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .prob-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.prob-gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--prob-border);
  box-shadow: var(--prob-shadow-sm);
}

.prob-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

@media (min-width: 700px) {
  .prob-gallery img {
    height: 200px;
  }
}

/* ——— Page hero compact ——— */
.prob-page-hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, rgba(15, 18, 32, 0.05) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--prob-border);
}

.prob-page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
}

.prob-breadcrumb {
  font-size: 0.85rem;
  color: var(--prob-text-muted);
  margin-bottom: 0.75rem;
}

.prob-breadcrumb a {
  text-decoration: none;
}

/* ——— Utilities ——— */
.prob-text-center {
  text-align: center;
}

.prob-mb-0 {
  margin-bottom: 0 !important;
}

.prob-mt-1 {
  margin-top: 1rem;
}

.prob-note {
  font-size: 0.88rem;
  color: var(--prob-text-muted);
  border-left: 3px solid var(--prob-accent);
  padding-left: 0.85rem;
  margin: 1rem 0 0;
}

.prob-icon {
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.15em;
}

/* ——— Second pass: sales / hubs / rhythm ——— */
.prob-band-alt {
  background: linear-gradient(180deg, rgba(15, 18, 32, 0.03) 0%, rgba(110, 101, 195, 0.06) 100%);
  border-top: 1px solid var(--prob-border);
  border-bottom: 1px solid var(--prob-border);
}

.prob-band-muted {
  background: rgba(15, 18, 32, 0.045);
}

body.prob-site:not(.light-mode) .prob-band-alt {
  background: linear-gradient(180deg, rgba(110, 101, 195, 0.1) 0%, rgba(15, 18, 32, 0.85) 100%);
  border-color: rgba(110, 101, 195, 0.18);
}

body.prob-site:not(.light-mode) .prob-band-muted {
  background: rgba(255, 255, 255, 0.04);
}

body.prob-site:not(.light-mode) .prob-page-hero {
  background: linear-gradient(180deg, #161a2e 0%, #0f1220 100%);
  border-bottom-color: rgba(110, 101, 195, 0.2);
}

.prob-page-hero--xl {
  padding: 3rem 0 2.5rem;
}

@media (min-width: 900px) {
  .prob-page-hero--xl {
    padding: 3.5rem 0 3rem;
  }
}

.prob-page-hero--xl h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  max-width: 22ch;
}

.prob-mid-cta {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--prob-radius-lg);
  background: linear-gradient(135deg, #0f1220 0%, #4a3d8c 55%, #6e65c3 100%);
  color: var(--prob-on-dark);
  box-shadow: var(--prob-shadow);
}

.prob-mid-cta h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.prob-mid-cta__title {
  margin-bottom: 0.5rem;
}

.prob-mid-cta p {
  margin: 0 0 1rem;
  opacity: 0.92;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.prob-quick-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .prob-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .prob-quick-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Bloc « Décision rapide » (accueil) — placé sous le hero */
.prob-quick-hub {
  padding: clamp(2.35rem, 4.5vw, 3.5rem) 0;
}

.prob-quick-hub__head {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.prob-quick-hub__title {
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.prob-quick-hub__lead {
  margin: 0;
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  line-height: 1.55;
}

.prob-quick-grid--hub {
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 400px) {
  .prob-quick-grid--hub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .prob-quick-grid--hub {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

@media (min-width: 1280px) {
  .prob-quick-grid--hub {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.prob-quick-card {
  position: relative;
  background: var(--prob-white);
  border: 1px solid var(--prob-border);
  border-radius: var(--prob-radius);
  padding: 1.35rem 1.2rem 1.35rem 1.35rem;
  box-shadow: var(--prob-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
  transition:
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    transform 0.18s ease;
}

.prob-quick-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: var(--prob-radius) 0 0 var(--prob-radius);
  background: linear-gradient(
    180deg,
    var(--prob-accent) 0%,
    rgba(110, 101, 195, 0.35) 100%
  );
  opacity: 0;
  transition: opacity 0.22s ease;
}

a.prob-quick-card:hover::before {
  opacity: 1;
}

.prob-quick-card--call {
  background: linear-gradient(
    145deg,
    rgba(110, 101, 195, 0.14) 0%,
    rgba(110, 101, 195, 0.05) 100%
  );
  border-color: rgba(110, 101, 195, 0.38);
}

body.prob-site:not(.light-mode) .prob-quick-card--call {
  background: linear-gradient(
    145deg,
    rgba(110, 101, 195, 0.28) 0%,
    rgba(15, 18, 32, 0.55) 100%
  );
  border-color: rgba(154, 148, 227, 0.45);
}

a.prob-quick-card {
  text-decoration: none;
  color: inherit;
}

a.prob-quick-card:hover {
  box-shadow: 0 12px 36px rgba(15, 18, 32, 0.1);
  border-color: rgba(110, 101, 195, 0.45);
  transform: translateY(-2px);
}

body.prob-site:not(.light-mode) a.prob-quick-card:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .prob-quick-card {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  a.prob-quick-card:hover {
    transform: none;
  }
}

a.prob-quick-card strong {
  display: block;
  color: var(--prob-wood);
  font-size: 1.05rem;
}

a.prob-quick-card--call strong {
  color: var(--prob-accent);
  font-size: 1.08rem;
}

body.prob-site:not(.light-mode) a.prob-quick-card--call strong {
  color: #eceaff;
}

a.prob-quick-card span {
  font-size: 0.92rem;
  color: var(--prob-text-muted);
  font-weight: 400;
  line-height: 1.35;
}

.prob-quick-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--prob-wood);
}

.prob-quick-card .prob-btn {
  margin-top: auto;
  align-self: flex-start;
}

.prob-choose-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .prob-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.prob-choose-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: var(--prob-radius);
  background: var(--prob-white);
  border: 1px solid var(--prob-border);
  text-decoration: none;
  color: var(--prob-text);
  font-weight: 700;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.prob-choose-link:hover {
  box-shadow: var(--prob-shadow);
  border-color: rgba(110, 101, 195, 0.35);
  color: var(--prob-accent-hover);
}

.prob-choose-link span {
  font-size: 1.35rem;
}

.prob-cat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .prob-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .prob-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.prob-cat-card {
  background: var(--prob-white);
  border-radius: var(--prob-radius);
  border: 1px solid var(--prob-border);
  padding: 1.35rem 1.2rem;
  box-shadow: var(--prob-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prob-cat-card .prob-btn {
  margin-top: auto;
  align-self: flex-start;
}

.prob-cat-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.prob-cat-card .prob-price {
  font-size: 1.35rem;
}

/* Bloc zones (accueil) — bande pleine largeur, contenu aligné largeur site */
.prob-zones-home {
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.prob-zones-home--fullband {
  width: 100%;
  max-width: none;
}

/* Contenu plus large que --prob-max-wide : zones + sections accueil ciblées */
.prob-zones-home__shell,
.prob-home-fullbleed__shell {
  max-width: min(1840px, calc(100vw - 2rem));
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

.prob-home-fullbleed {
  width: 100%;
  max-width: none;
}

.prob-zones-home .prob-tarifs-rail {
  text-align: center;
}

.prob-zones-home__lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
}

.prob-zone-map--home {
  margin-top: 1rem;
  gap: 0.85rem;
}

/* Cartes « vitrine » galerie / FAQ */
.prob-home-showcase {
  text-align: center;
  padding: clamp(1.35rem, 2.8vw, 2.1rem);
  border-radius: var(--prob-radius-lg);
  border: 1px solid var(--prob-border);
  background: var(--prob-white);
  box-shadow: var(--prob-shadow-sm);
}

body.prob-site:not(.light-mode) .prob-home-showcase {
  background: rgba(22, 26, 40, 0.72);
  border-color: rgba(110, 101, 195, 0.28);
}

.prob-home-showcase__head {
  margin-bottom: 0.25rem;
}

.prob-home-showcase--faq .prob-faq {
  text-align: left;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.prob-home-showcase--faq .prob-faq-hint {
  text-align: center;
}

.prob-home-showcase--gallery .prob-home-carousel {
  margin-top: 0.85rem;
}

/* Bloc restaurant — panneau structuré */
.prob-home-restaurant-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--prob-radius-lg);
  background: linear-gradient(145deg, rgba(110, 101, 195, 0.1) 0%, var(--prob-white) 45%, var(--prob-bg-band) 100%);
  border: 1px solid var(--prob-border);
  box-shadow: var(--prob-shadow);
  box-sizing: border-box;
  width: 100%;
}

body.prob-site:not(.light-mode) .prob-home-restaurant-panel {
  background: linear-gradient(150deg, rgba(110, 101, 195, 0.16) 0%, #161a28 48%, #141829 100%);
  border-color: rgba(110, 101, 195, 0.3);
}

.prob-home-restaurant__lede {
  font-size: 1.06rem;
  color: var(--prob-text-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 46ch;
}

.prob-home-restaurant__bullets {
  margin: 0 0 1.35rem;
  padding-left: 1.15rem;
  color: var(--prob-text-muted);
  font-size: 0.97rem;
  line-height: 1.5;
  max-width: 48ch;
}

.prob-home-restaurant__bullets li {
  margin-bottom: 0.45rem;
}

.prob-home-restaurant__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

/* CTA final accueil — mise en avant */
.prob-cta-band--home-premium {
  padding: clamp(2.35rem, 5vw, 3.35rem) clamp(1.35rem, 4vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  max-width: min(100%, 56rem);
}

.prob-cta-band--home-premium h2 {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.prob-cta-band__intro {
  margin: 0 auto 1.4rem;
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--prob-on-dark-muted);
  text-align: center !important;
  text-wrap: balance;
}

/* CTA intro: optional wider + always centered */
.prob-cta-band__intro--wide {
  max-width: 60ch;
  width: 100%;
  text-align: center !important;
}

.prob-cta-row--home {
  gap: 0.75rem;
}

/* ——— Accueil : blocs post-tarifs (SEO / conversion) ——— */
.prob-home-post-rail {
  text-align: center;
}

.prob-home-post-rail .prob-home-format-card,
.prob-home-post-rail .prob-card,
.prob-home-post-rail .prob-faq,
.prob-home-post-rail .prob-gallery {
  text-align: left;
}

.prob-home-section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 42rem;
}

.prob-home-section-foot {
  font-size: 0.95rem;
  color: var(--prob-text-muted);
}

.prob-home-formats-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  margin-top: 0.25rem;
}

@media (min-width: 360px) {
  .prob-home-formats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .prob-home-formats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.prob-home-format-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.2rem;
  background: var(--prob-white);
  border: 1px solid var(--prob-border);
  border-radius: var(--prob-radius);
  box-shadow: var(--prob-shadow-sm);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.prob-home-format-card:hover {
  border-color: rgba(110, 101, 195, 0.4);
  box-shadow: var(--prob-shadow);
  transform: translateY(-2px);
}

.prob-home-format-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  color: var(--prob-text);
}

.prob-home-format-card p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  color: var(--prob-text-muted);
}

.prob-home-format-card__link {
  margin-top: 0.85rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--prob-accent);
}

.prob-home-format-card:hover .prob-home-format-card__link {
  color: var(--prob-accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prob-home-pourquoi-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  margin-top: 0.25rem;
}

@media (min-width: 520px) {
  .prob-home-pourquoi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .prob-home-pourquoi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.prob-home-trust-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.prob-home-gallery {
  margin-top: 0.35rem;
}

@media (min-width: 700px) {
  .prob-home-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.prob-home-restaurant--page-wide {
  max-width: 100%;
  width: 100%;
}

.prob-home-restaurant__visual {
  border-radius: var(--prob-radius-lg);
  overflow: hidden;
  border: 1px solid var(--prob-border);
  box-shadow: var(--prob-shadow-sm);
  align-self: center;
}

.prob-home-restaurant__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.prob-home-final-cta {
  width: 100%;
  max-width: min(100%, 56rem);
  margin-left: auto;
  margin-right: auto;
}

/* Nos essences — bloc sous les tarifs, pleine largeur utile */
.prob-nos-essences {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.prob-nos-essences--after-tarifs {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid var(--prob-border);
}

.prob-nos-essences__head {
  margin-bottom: 1.25rem;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.prob-nos-essences__lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 52ch;
  text-align: center;
}

/* Safety: homepage includes multiple CSS bundles; keep this lead centered */
body.prob-site.prob-home .prob-nos-essences__head,
body.prob-site.prob-home .prob-nos-essences__lead {
  text-align: center !important;
}

.prob-nos-essences__grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
  width: 100%;
  justify-items: stretch;
}

@media (min-width: 380px) {
  .prob-nos-essences__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .prob-nos-essences__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.15rem;
  }
}

.prob-essence-card {
  background: var(--prob-white);
  border: 1px solid var(--prob-border);
  border-radius: var(--prob-radius);
  padding: 0 0 1.1rem;
  box-shadow: var(--prob-shadow-sm);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.prob-essence-card__media {
  max-height: 112px;
  aspect-ratio: 4 / 3;
  background: var(--prob-bg-band);
  border-bottom: 1px solid var(--prob-border);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.prob-essence-card__media img {
  width: auto;
  max-width: 85%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.prob-essence-card__title {
  margin: 0.65rem 0.75rem 0.25rem;
  font-size: 1.05rem;
  text-align: center;
  width: 100%;
}

.prob-essence-card p {
  margin: 0 0.75rem;
  font-size: 0.9rem;
  color: var(--prob-text-muted);
  text-align: center;
  max-width: min(100%, 28ch);
}

.prob-nos-essences__why {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding: 1.35rem 1.25rem;
  border-radius: var(--prob-radius);
  background: var(--prob-bg-band);
  border: 1px solid var(--prob-border);
  text-align: center;
  width: 100%;
  max-width: min(52rem, 100%);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.prob-nos-essences__why-title {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  text-align: center;
}

.prob-nos-essences__why p {
  margin: 0 auto 0.75rem;
  color: var(--prob-text-muted);
  font-size: 0.98rem;
  max-width: 48ch;
}

.prob-nos-essences__list {
  margin: 0.5rem auto 0;
  padding-left: 1.2rem;
  color: var(--prob-text-muted);
  font-size: 0.98rem;
  text-align: left;
  display: inline-block;
}

.prob-nos-essences__list li {
  margin-bottom: 0.35rem;
}

/* Carrousel galerie accueil */
.prob-home-carousel {
  position: relative;
  margin-top: 1rem;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.prob-home-carousel__viewport {
  overflow: hidden;
  border-radius: var(--prob-radius-lg);
  border: 1px solid var(--prob-border);
  box-shadow: var(--prob-shadow);
  background: var(--prob-bg-dark);
}

.prob-home-carousel--triple .prob-home-carousel__viewport {
  background: rgba(15, 18, 32, 0.35);
}

.prob-home-carousel--triple .prob-home-carousel__slide {
  padding: 0 0.35rem;
  box-sizing: border-box;
}

.prob-home-carousel__viewport:focus-visible {
  outline: 2px solid var(--prob-accent);
  outline-offset: 3px;
}

.prob-home-carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.prob-home-carousel__slide {
  flex-shrink: 0;
  margin: 0;
}

figure.prob-home-carousel__slide {
  margin: 0;
}

.prob-home-carousel__slide img {
  width: 100%;
  height: clamp(220px, 48vw, 520px);
  object-fit: cover;
  display: block;
}

.prob-home-carousel--triple .prob-home-carousel__slide img {
  height: clamp(220px, 38vw, 380px);
  border-radius: 12px;
  border: 1px solid var(--prob-border);
  box-shadow: var(--prob-shadow-sm);
  object-fit: cover;
}

#galerie-carousel-accueil .prob-home-carousel__slide img {
  cursor: zoom-in;
}

/* Lightbox galerie accueil */
.prob-gallery-lightbox {
  max-width: none;
  max-height: none;
  width: min(96vw, 1200px);
  padding: 0;
  border: none;
  background: transparent;
}

.prob-gallery-lightbox::backdrop {
  background: rgba(15, 18, 32, 0.88);
  backdrop-filter: blur(4px);
}

.prob-gallery-lightbox__inner {
  position: relative;
  background: var(--prob-white);
  border-radius: var(--prob-radius-lg);
  padding: 0.75rem;
  box-shadow: var(--prob-shadow);
  border: 1px solid var(--prob-border);
}

body.prob-site:not(.light-mode) .prob-gallery-lightbox__inner {
  background: #161a28;
  border-color: rgba(110, 101, 195, 0.35);
}

.prob-gallery-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--prob-border);
  background: rgba(15, 18, 32, 0.75);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.prob-gallery-lightbox__close:hover {
  background: var(--prob-accent);
}

.prob-gallery-lightbox__img {
  display: block;
  width: 100%;
  max-height: min(78vh, 800px);
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--prob-radius-lg) - 6px);
}

.prob-home-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--prob-border);
  background: rgba(15, 18, 32, 0.65);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
}

.prob-home-carousel__btn:hover {
  background: rgba(110, 101, 195, 0.85);
}

.prob-home-carousel__btn--prev {
  left: 0.5rem;
}

.prob-home-carousel__btn--next {
  right: 0.5rem;
}

body.prob-site.light-mode .prob-home-carousel__btn {
  background: rgba(255, 255, 255, 0.92);
  color: var(--prob-c1);
}

body.prob-site.light-mode .prob-home-carousel__btn:hover {
  background: var(--prob-accent-soft);
}

.prob-home-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.prob-home-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--prob-border);
  background: var(--prob-bg-band);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.prob-home-carousel__dot.is-active {
  background: var(--prob-accent);
  border-color: var(--prob-accent);
  transform: scale(1.15);
}

/* FAQ accordéon — clic explicite */
.prob-faq--accordion.prob-faq details {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.prob-faq-hint {
  font-size: 0.92rem;
  color: var(--prob-text-muted);
  margin: 0 0 0.85rem;
}

.prob-faq--accordion .prob-faq__item {
  border-radius: var(--prob-radius);
  overflow: hidden;
}

.prob-faq--accordion .prob-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem 1rem 1.35rem;
  font-weight: 700;
  font-size: 1.02rem;
  background: linear-gradient(180deg, rgba(110, 101, 195, 0.08) 0%, var(--prob-white) 100%);
  border: 1px solid var(--prob-border);
  user-select: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.prob-faq--accordion .prob-faq__summary::-webkit-details-marker {
  display: none;
}

.prob-faq--accordion .prob-faq__summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--prob-accent);
  border-bottom: 2px solid var(--prob-accent);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -0.2rem;
}

.prob-faq--accordion details[open] .prob-faq__summary::after {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.prob-faq--accordion details[open] .prob-faq__summary {
  border-bottom-color: transparent;
  background: var(--prob-white);
  margin-bottom: 0;
}

.prob-faq--accordion .prob-faq__panel {
  padding: 0 1.15rem 1rem 1.35rem;
  border: 1px solid var(--prob-border);
  border-top: none;
  border-radius: 0 0 var(--prob-radius) var(--prob-radius);
  margin-top: -1px;
}

.prob-faq--accordion .prob-faq__item + .prob-faq__item {
  margin-top: 0.5rem;
}

.prob-faq--accordion .prob-faq__summary:hover {
  border-color: rgba(110, 101, 195, 0.45);
}

.prob-zone-map {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 900px) {
  .prob-zone-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .prob-zone-map {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .prob-zone-map {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

.prob-zone-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 12px;
  background: var(--prob-white);
  border: 2px solid var(--prob-border);
  text-decoration: none;
  color: var(--prob-wood);
  font-weight: 800;
  font-size: 1.15rem;
  min-height: 88px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.prob-zone-tile small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--prob-text-muted);
  margin-top: 0.25rem;
}

.prob-zone-tile:hover {
  border-color: var(--prob-accent);
  transform: translateY(-2px);
}

.prob-review-preview {
  border: 2px dashed rgba(110, 101, 195, 0.4);
  border-radius: var(--prob-radius-lg);
  padding: 1.75rem 1.5rem;
  background: var(--prob-white);
  text-align: center;
}

.prob-review-preview .prob-qr-hint {
  width: 120px;
  height: 120px;
  margin: 1rem auto;
  border-radius: 12px;
  background: repeating-linear-gradient(
    45deg,
    #ebe3d6,
    #ebe3d6 8px,
    #f6f1e8 8px,
    #f6f1e8 16px
  );
  border: 1px solid var(--prob-border);
}

/* Page avis-clients — colonne lisible, CTA centré, pas de tout-centré */
.prob-page-avis #contenu-principal {
  padding-bottom: 0;
}

.prob-page-avis .prob-page-hero .prob-wrap-wide {
  text-align: left;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.prob-page-avis main > .prob-section .prob-wrap-wide,
.prob-page-avis main > .prob-section.prob-wrap-wide {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.prob-page-avis main > .prob-section {
  text-align: left;
}

.prob-page-avis .prob-section-title {
  text-align: left;
}

.prob-page-avis .prob-lead {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* Carte « Laissez un avis » : bloc focal centré */
.prob-page-avis .prob-section:first-of-type .prob-review-preview {
  margin-left: auto;
  margin-right: auto;
  max-width: min(28rem, 100%);
}

.prob-page-avis .prob-band-light .prob-wrap-wide {
  text-align: left;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.prob-page-avis .prob-band-light .prob-section-title {
  text-align: left;
}

.prob-page-avis .prob-band-light ol {
  max-width: 38rem;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  padding-left: 1.35rem;
}

.prob-page-avis .prob-section--cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
}

.prob-page-avis .prob-band-light li {
  padding-left: 0.15rem;
}

.prob-page-avis__steps {
  line-height: 1.65;
}

.prob-split-cta {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .prob-split-cta {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.prob-trust-grid-6 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .prob-trust-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.prob-card-tight h3 {
  margin-top: 0;
  font-size: 1rem;
  color: var(--prob-wood);
}

.prob-card-tight p {
  margin: 0;
  font-size: 0.95rem;
}

.prob-hero--tall {
  min-height: 420px;
}

@media (min-width: 960px) {
  .prob-hero--tall .prob-hero-visual img {
    min-height: 380px;
  }
}

.prob-footer-grid-4 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .prob-footer-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .prob-footer-grid-4 {
    grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  }
}

/* Pied de page : colonnes et textes centrés */
.prob-footer .prob-footer-grid-4 {
  justify-items: center;
  text-align: center;
}

.prob-footer .prob-footer-grid-4 > div {
  width: 100%;
  max-width: 24rem;
}

.prob-footer .prob-footer__logo {
  margin-left: auto;
  margin-right: auto;
}

.prob-footer .prob-footer-social-wrap {
  display: flex;
  justify-content: center;
}

.prob-hub-list {
  columns: 1;
  padding-left: 1.1rem;
}

@media (min-width: 700px) {
  .prob-hub-list {
    columns: 2;
  }
}

/* ==================== ProBois77 — Format pages (25/33/50/1m/2m + conseils) ==================== */
.pb-format-hero {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
  border-bottom: 1px solid var(--prob-border);
  background: linear-gradient(180deg, var(--prob-bg-band) 0%, transparent 100%);
}

.pb-format-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.pb-format-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--prob-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--prob-text);
}

body.prob-site.light-mode .pb-format-pill {
  background: rgba(15, 18, 32, 0.02);
}

.pb-format-pill[aria-current="page"] {
  border-color: rgba(110, 101, 195, 0.55);
  box-shadow: 0 10px 26px rgba(110, 101, 195, 0.18);
}

.pb-format-body {
  padding: var(--prob-section-pad-y) 0;
}

.pb-format-body__grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .pb-format-body__grid {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 1.5rem;
  }
}

.pb-format-aside {
  position: relative;
}

@media (min-width: 1024px) {
  .pb-format-aside {
    position: sticky;
    top: calc(6.5rem + env(safe-area-inset-top, 0px));
  }
}

.pb-format-card {
  border-radius: 18px;
  border: 1px solid var(--prob-border);
  background: var(--prob-white);
  box-shadow: var(--prob-shadow-sm);
  padding: 1rem;
}

.pb-format-card + .pb-format-card {
  margin-top: 0.85rem;
}

.pb-format-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.pb-format-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.25rem 0 0.65rem;
}

.pb-format-price strong {
  font-size: 1.75rem;
  color: var(--prob-accent);
  letter-spacing: -0.02em;
}

.pb-format-meta {
  margin: 0;
  color: var(--prob-text-muted);
  font-size: 0.95rem;
}

.pb-format-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.pb-format-links {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.pb-format-links a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.7rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--prob-text);
}

body.prob-site.light-mode .pb-format-links a {
  border-color: rgba(15, 18, 32, 0.12);
  background: rgba(15, 18, 32, 0.02);
}

.pb-format-links a:hover {
  border-color: rgba(110, 101, 195, 0.45);
}

.pb-format-end {
  padding: var(--prob-section-pad-y) 0;
}

.pb-format-end__inner {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.pb-format-end__grid {
  /* Grid = guaranteed same-height cards per row */
  display: grid !important;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 2.25rem; /* gap between cards and CTA */
}

@media (min-width: 900px) {
  .pb-format-end__grid {
    gap: 1.15rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pb-format-end .prob-cta-band {
  margin-top: 0; /* handled by grid margin-bottom above */
}

.pb-format-end {
  text-align: center;
}

.pb-format-end__grid > .pb-format-card {
  /* Equal height via flex parent, keep original card layout */
  display: grid;
  grid-template-rows: 40px minmax(2.6em, auto) 1fr;
  gap: 0.55rem;
  padding: 1.15rem 1.15rem;
  margin-top: 0; /* cancel generic .pb-format-card + .pb-format-card spacing */
  width: 100%;
  max-width: 520px;
  align-items: start;
  align-self: stretch;
  justify-self: center;
  text-align: left;
  height: auto;
}

/* In the end grid, cards are in a row: no vertical "stack" spacing */
.pb-format-end__grid > .pb-format-card + .pb-format-card {
  margin-top: 0;
}

@media (min-width: 900px) {
  .pb-format-end__grid > .pb-format-card {
    height: 100%;
    max-width: none;
  }
}

.pb-format-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 auto 0.15rem;
  color: rgba(110, 101, 195, 0.95);
  background: rgba(110, 101, 195, 0.12);
  border: 1px solid rgba(110, 101, 195, 0.22);
}

.pb-format-end__grid .pb-format-card__title {
  min-height: 2.6em; /* keeps titles aligned even if one wraps */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  text-align: center;
}

.pb-format-end__grid .pb-format-meta {
  align-self: start;
}

.pb-format-end .pb-format-meta {
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.pb-image-band__grid--triple {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .pb-image-band__grid--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pb-image-band__grid--triple img {
    aspect-ratio: 4 / 3;
  }
}

.pb-format-hero__grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 980px) {
  .pb-format-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.pb-format-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  letter-spacing: -0.02em;
  color: var(--prob-text);
}

.pb-format-hero__lead {
  margin: 0 0 1rem;
  max-width: 62ch;
  color: var(--prob-text-muted);
}

.pb-format-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.pb-format-hero__media {
  border-radius: var(--prob-radius-lg);
  border: 1px solid var(--prob-border);
  overflow: hidden;
  box-shadow: var(--prob-shadow);
  background: var(--prob-white);
}

.pb-format-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}

.pb-kpis {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
}

@media (min-width: 380px) and (max-width: 719px) {
  .pb-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .pb-kpi {
    padding: 0.62rem 0.7rem;
  }
}

@media (min-width: 720px) {
  .pb-kpis { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.pb-kpi {
  border-radius: var(--prob-radius);
  border: 1px solid var(--prob-border);
  background: var(--prob-white);
  box-shadow: var(--prob-shadow-sm);
  padding: 0.85rem 0.9rem;
}

.pb-kpi__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--prob-text-muted);
}

.pb-kpi__value {
  margin: 0.35rem 0 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--prob-text);
}

.pb-kpi__value strong {
  font-size: 1.35rem;
  color: var(--prob-accent);
}

.pb-section {
  padding: var(--prob-section-pad-y) 0;
}

.pb-format-main .pb-section {
  padding: clamp(0.85rem, 2vw, 1.25rem) 0;
}

.pb-format-main .pb-section h2 {
  margin-bottom: 0.5rem;
}

.pb-format-main .pb-section p {
  margin-top: 0.3rem;
}

.pb-format-main .pb-bullets {
  margin: 0.55rem 0 0;
}

.pb-section h2 {
  margin: 0 0 0.75rem;
  color: var(--prob-wood);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}

.pb-section p {
  margin: 0.5rem 0 0;
  color: var(--prob-text-muted);
  max-width: 74ch;
}

.pb-bullets {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--prob-text-muted);
}

.pb-image-band {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-top: 1px solid var(--prob-border);
  border-bottom: 1px solid var(--prob-border);
  background: var(--prob-bg-band);
}

.pb-image-band__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .pb-image-band__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

.pb-image-band__grid figure {
  margin: 0;
  border-radius: var(--prob-radius);
  border: 1px solid var(--prob-border);
  overflow: hidden;
  box-shadow: var(--prob-shadow-sm);
  background: var(--prob-white);
}

.pb-image-band__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.pb-final-cta {
  padding: var(--prob-section-pad-y) 0;
}

/* ==================== Page zones de livraison (hub local SEO) ==================== */
body.pb-zones-page .pb-zones-main {
  text-align: left;
}

body.pb-zones-page .pb-zones-section .prob-faq--accordion {
  margin-top: 0.35rem;
}

/* Top : bandeau plus haut + image de fond (lisibilité par dégradé) */
.pb-zones-top {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(320px, 48vh, 520px);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  border-bottom: 1px solid var(--prob-border);
  background-color: #12151f;
  background-image:
    linear-gradient(
      100deg,
      rgba(10, 12, 20, 0.93) 0%,
      rgba(10, 12, 20, 0.78) 38%,
      rgba(18, 22, 34, 0.55) 68%,
      rgba(22, 26, 38, 0.4) 100%
    ),
    url("/img/zones-de-livraison.html%20background%20image.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (min-width: 1100px) {
  .pb-zones-top {
    min-height: clamp(380px, 44vh, 560px);
  }
}

body.prob-site:not(.light-mode) .pb-zones-top {
  border-bottom-color: rgba(110, 101, 195, 0.25);
  background-image:
    linear-gradient(
      100deg,
      rgba(8, 10, 18, 0.94) 0%,
      rgba(8, 10, 18, 0.82) 40%,
      rgba(14, 18, 30, 0.6) 72%,
      rgba(18, 22, 36, 0.42) 100%
    ),
    url("/img/zones-de-livraison.html%20background%20image.png");
}

.pb-zones-breadcrumb {
  margin-bottom: 0.65rem;
}

.pb-zones-top .pb-zones-breadcrumb,
.pb-zones-top .pb-zones-breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.pb-zones-top .pb-zones-breadcrumb a:hover {
  color: #fff;
}

.pb-zones-h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--prob-text);
  max-width: 40ch;
}

.pb-zones-top .pb-zones-h1 {
  color: #faf8f4;
  max-width: 44ch;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.pb-zones-lead {
  margin: 0 0 0.75rem;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.58;
  color: var(--prob-text-muted);
}

.pb-zones-top .pb-zones-lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 58ch;
}

.pb-zones-note {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--prob-text-muted);
  padding-left: 0.85rem;
  border-left: 3px solid rgba(110, 101, 195, 0.45);
}

.pb-zones-top .pb-zones-note {
  color: rgba(255, 255, 255, 0.82);
  border-left-color: rgba(180, 170, 255, 0.55);
}

.pb-zones-top__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
}

.pb-zones-top .prob-btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.pb-zones-top .prob-btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.pb-zones-top .prob-btn-primary {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

/* Sections */
.pb-zones-section {
  padding: clamp(1.85rem, 3.5vw, 2.65rem) 0;
}

.pb-zones-section--muted {
  background: rgba(15, 18, 32, 0.045);
  border-top: 1px solid var(--prob-border);
  border-bottom: 1px solid var(--prob-border);
}

body.prob-site:not(.light-mode) .pb-zones-section--muted {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(110, 101, 195, 0.15);
}

.pb-zones-h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--prob-text);
}

.pb-zones-section__intro {
  margin: 0 0 1.25rem;
  max-width: 68ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--prob-text-muted);
}

/* Grille départements : 1 → 2 → 3 colonnes, cartes alignées à gauche, même hauteur */
.pb-zones-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 420px) {
  .pb-zones-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .pb-zones-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

.pb-zones-grid > li {
  margin: 0;
  padding: 0;
  display: flex;
  min-height: 0;
}

.pb-zones-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  min-height: 100%;
  padding: 1.05rem 1.15rem;
  border-radius: var(--prob-radius-lg);
  border: 1px solid var(--prob-border);
  background: var(--prob-white);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--prob-shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

body.prob-site:not(.light-mode) .pb-zones-card {
  background: rgba(22, 26, 40, 0.42);
  border-color: rgba(110, 101, 195, 0.22);
  box-shadow: none;
}

.pb-zones-card:hover {
  border-color: rgba(110, 101, 195, 0.5);
  box-shadow: 0 4px 14px rgba(15, 18, 32, 0.08);
  transform: translateY(-2px);
}

body.prob-site:not(.light-mode) .pb-zones-card:hover {
  border-color: rgba(154, 148, 227, 0.45);
}

.pb-zones-card:focus-visible {
  outline: 2px solid var(--prob-accent);
  outline-offset: 2px;
}

.pb-zones-card__code {
  display: block;
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--prob-wood, var(--prob-accent));
  margin-bottom: 0.35rem;
}

.pb-zones-card__name {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--prob-text);
}

.pb-zones-card__cities {
  margin: 0;
  margin-top: auto;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--prob-text-muted);
}

/* Logistique : deux colonnes */
.pb-zones-split {
  display: grid;
  gap: 1.35rem 2rem;
  align-items: start;
}

@media (min-width: 720px) {
  .pb-zones-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.5rem 2.5rem;
  }
}

.pb-zones-split__text {
  margin: 0.5rem 0 0;
  max-width: 52ch;
  font-size: 0.98rem;
  line-height: 1.58;
  color: var(--prob-text-muted);
}

.pb-zones-bullets {
  margin: 0;
  padding: 0.65rem 0 0 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--prob-text-muted);
}

.pb-zones-bullets li {
  margin-bottom: 0.35rem;
}

.pb-zones-bullets li:last-child {
  margin-bottom: 0;
}

.pb-zones-split__link {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
}

.pb-zones-split__link a {
  font-weight: 600;
  color: var(--prob-accent);
  text-decoration: none;
}

.pb-zones-split__link a:hover {
  text-decoration: underline;
}

/* Accès rapide : 3 colonnes */
.pb-zones-quick {
  display: grid;
  gap: 1.25rem 1.75rem;
  margin-top: 0.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pb-zones-quick {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
  }
}

.pb-zones-quick__title {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--prob-text-muted);
}

.pb-zones-quick__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pb-zones-quick__list li {
  margin: 0 0 0.4rem;
}

.pb-zones-quick__list li:last-child {
  margin-bottom: 0;
}

.pb-zones-quick__list a {
  font-size: 0.92rem;
  color: var(--prob-accent);
  text-decoration: none;
  font-weight: 600;
}

.pb-zones-quick__list a:hover {
  text-decoration: underline;
}

/* CTA contact */
.pb-zones-section--cta {
  padding-bottom: clamp(2.25rem, 4vw, 3rem);
}

.pb-zones-cta {
  display: grid;
  gap: 1.25rem 1.5rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border-radius: var(--prob-radius-lg);
  border: 1px solid var(--prob-border);
  background: var(--prob-white);
  box-shadow: var(--prob-shadow-sm);
}

body.prob-site:not(.light-mode) .pb-zones-cta {
  background: rgba(22, 26, 40, 0.38);
  border-color: rgba(110, 101, 195, 0.22);
}

@media (min-width: 720px) {
  .pb-zones-cta {
    grid-template-columns: 1fr auto;
    padding: 1.25rem 1.5rem;
    align-items: center;
  }
}

.pb-zones-cta__text {
  margin: 0.45rem 0 0;
  max-width: 48ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--prob-text-muted);
}

.pb-zones-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .pb-zones-cta__actions {
    align-items: flex-end;
    text-align: right;
  }
}

.pb-zones-cta__phone {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--prob-text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.pb-zones-cta__phone:hover {
  color: var(--prob-accent);
}

/* ==================== Page contact / devis ==================== */
body.pb-contact-page .pb-contact-main {
  text-align: left;
}

.pb-contact-hero {
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0 clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--prob-border);
  background: linear-gradient(180deg, rgba(15, 18, 32, 0.04) 0%, transparent 100%);
}

body.prob-site:not(.light-mode) .pb-contact-hero {
  background: linear-gradient(180deg, rgba(110, 101, 195, 0.08) 0%, transparent 100%);
  border-bottom-color: rgba(110, 101, 195, 0.18);
}

.pb-contact-hero__inner {
  max-width: min(100%, var(--prob-max-wide));
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--prob-gutter-x);
  padding-right: var(--prob-gutter-x);
}

.pb-contact-breadcrumb {
  margin-bottom: 0.6rem;
}

.pb-contact-h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--prob-text);
  max-width: 42ch;
}

.pb-contact-lead {
  margin: 0 0 1.1rem;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.58;
  color: var(--prob-text-muted);
}

.pb-contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
}

.pb-contact-body {
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0 clamp(2rem, 4vw, 3rem);
}

.pb-contact-body__inner {
  max-width: min(100%, var(--prob-max-wide));
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--prob-gutter-x);
  padding-right: var(--prob-gutter-x);
}

.pb-contact-layout > * {
  min-width: 0;
}

.pb-contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.pb-contact-trust li {
  margin: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--prob-text-muted);
  border: 1px solid var(--prob-border);
  border-radius: 999px;
  background: rgba(110, 101, 195, 0.06);
}

body.prob-site:not(.light-mode) .pb-contact-trust li {
  background: rgba(110, 101, 195, 0.1);
  border-color: rgba(110, 101, 195, 0.22);
}

.pb-contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .pb-contact-layout {
    grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.25rem);
  }
}

/* Colonne gauche — coordonnées */
.pb-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pb-contact-card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--prob-radius-lg);
  border: 1px solid var(--prob-border);
  background: var(--prob-white);
  box-shadow: var(--prob-shadow-sm);
}

body.prob-site:not(.light-mode) .pb-contact-card {
  background: rgba(22, 26, 40, 0.42);
  border-color: rgba(110, 101, 195, 0.22);
  box-shadow: none;
}

.pb-contact-card__title {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--prob-text-muted);
}

.pb-contact-card__value {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--prob-text);
}

.pb-contact-card__value a {
  color: var(--prob-accent);
  font-weight: 600;
  text-decoration: none;
}

.pb-contact-card__value a:hover {
  text-decoration: underline;
}

.pb-contact-tel {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pb-contact-card__hint {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--prob-text-muted);
}

.pb-contact-card__value--address {
  line-height: 1.55;
}

.pb-contact-card--map .pb-contact-card__title {
  margin-bottom: 0.65rem;
}

.pb-contact-map {
  border-radius: var(--prob-radius);
  overflow: hidden;
  border: 1px solid var(--prob-border);
  line-height: 0;
}

.pb-contact-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

@media (min-width: 960px) {
  .pb-contact-map iframe {
    height: 240px;
  }
}

.pb-contact-map__link-wrap {
  margin: 0;
  padding: 0.65rem 0 0;
  border-top: none;
}

.pb-contact-map__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--prob-accent);
  text-decoration: none;
}

.pb-contact-map__link:hover {
  text-decoration: underline;
}

.pb-contact-aside__extra {
  margin: 0;
  font-size: 0.92rem;
}

.pb-contact-aside__extra a {
  color: var(--prob-accent);
  font-weight: 600;
  text-decoration: none;
}

.pb-contact-aside__extra a:hover {
  text-decoration: underline;
}

/* Formulaire */
.pb-contact-form-wrap {
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: var(--prob-radius-lg);
  border: 1px solid var(--prob-border);
  background: var(--prob-white);
  box-shadow: var(--prob-shadow-sm);
}

body.prob-site:not(.light-mode) .pb-contact-form-wrap {
  background: rgba(22, 26, 40, 0.38);
  border-color: rgba(110, 101, 195, 0.22);
}

.pb-contact-form-heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--prob-text);
}

.pb-contact-form-note {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.pb-contact-form {
  width: 100%;
  max-width: none;
}

.pb-contact-form__row {
  display: grid;
  gap: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.pb-contact-form__row--2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
  .pb-contact-form__row--2 {
    grid-template-columns: 1fr;
  }
}

.pb-contact-field {
  min-width: 0;
}

.pb-contact-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0 0 0.4rem;
  color: var(--prob-text);
}

.pb-contact-field--full {
  margin-bottom: 1rem;
}

.pb-contact-form input,
.pb-contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--prob-border);
  font: inherit;
  background: var(--prob-white);
  color: var(--prob-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pb-contact-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}

.pb-contact-form input::placeholder,
.pb-contact-form textarea::placeholder {
  color: var(--prob-text-muted);
  opacity: 0.85;
}

.pb-contact-form input:focus,
.pb-contact-form textarea:focus {
  outline: none;
  border-color: rgba(110, 101, 195, 0.55);
  box-shadow: 0 0 0 3px rgba(110, 101, 195, 0.18);
}

body.prob-site:not(.light-mode) .pb-contact-form input,
body.prob-site:not(.light-mode) .pb-contact-form textarea {
  background: rgba(12, 14, 22, 0.55);
  border-color: rgba(110, 101, 195, 0.28);
  color: var(--prob-text);
}

/* Anti-robot */
.pb-contact-robot {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.pb-contact-robot > label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0 0 0.45rem;
}

.pb-contact-page .robot-verification {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.pb-contact-page .robot-code {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  border: 2px dashed rgba(110, 101, 195, 0.45);
  background: rgba(110, 101, 195, 0.08);
  color: var(--prob-text);
  min-width: 5.5rem;
  text-align: center;
}

body.prob-site:not(.light-mode) .pb-contact-page .robot-code {
  background: rgba(110, 101, 195, 0.12);
}

.pb-contact-page .robot-verification input[type="text"] {
  flex: 1;
  min-width: 8rem;
  max-width: 14rem;
  padding: 0.65rem 0.85rem;
}

@media (max-width: 480px) {
  .pb-contact-page .robot-verification {
    flex-direction: column;
    align-items: stretch;
  }

  .pb-contact-page .robot-verification input[type="text"] {
    max-width: none;
  }
}

.pb-contact-form__submit {
  margin-top: 1.25rem;
  padding-top: 0.25rem;
}

.pb-contact-form__submit .prob-btn-primary {
  min-width: 12rem;
}

/* Bas de page aide */
.pb-contact-help {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0 clamp(2.25rem, 4vw, 3.25rem);
  border-top: 1px solid var(--prob-border);
  background: rgba(15, 18, 32, 0.035);
}

body.prob-site:not(.light-mode) .pb-contact-help {
  background: rgba(255, 255, 255, 0.03);
  border-top-color: rgba(110, 101, 195, 0.15);
}

.pb-contact-help__inner {
  max-width: min(100%, var(--prob-max-wide));
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--prob-gutter-x);
  padding-right: var(--prob-gutter-x);
}

.pb-contact-help__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--prob-text);
  max-width: 40ch;
}

.pb-contact-help__text {
  margin: 0 0 1.1rem;
  max-width: 62ch;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--prob-text-muted);
}

.pb-contact-help__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
}

/* ——— Compacité mobile / tablette : moins de scroll, proche du desktop ——— */
@media (min-width: 768px) {
  .prob-tarifs-card__media,
  .prob-tarifs-card__body {
    order: unset;
  }
}

@media (max-width: 479px) {
  .prob-home .prob-hero-bullets--icons li:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 767px) {
  .prob-hero {
    padding: clamp(0.85rem, 2.8vw, 1.35rem) 0 clamp(0.95rem, 3vw, 1.45rem);
  }

  .pb-format-hero {
    padding: clamp(0.85rem, 2.6vw, 1.35rem) 0;
  }

  .pb-format-hero h1 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.28rem, 4.2vw, 1.75rem);
  }

  .pb-format-hero__lead {
    margin-bottom: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .pb-format-hero__ctas {
    margin-top: 0.55rem;
  }

  .pb-format-hero__media img {
    aspect-ratio: 16 / 9;
  }

  .pb-zones-top {
    min-height: clamp(180px, 28vh, 300px);
    padding: clamp(1.05rem, 3.2vw, 1.65rem) 0 clamp(0.95rem, 2.8vw, 1.35rem);
  }

  .pb-zones-h1 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.22rem, 4vw, 1.65rem);
  }

  .pb-zones-top .pb-zones-lead {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .prob-header-inner {
    padding-top: 0.5rem;
    padding-bottom: 0.55rem;
    gap: 0 !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
  }

  .prob-header-start {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
    transform: translateY(1.15rem) !important;
  }

  .prob-header-tools {
    margin: 0 !important;
    margin-block: 0 !important;
    margin-top: -1.35rem !important;
    padding: 0 !important;
    padding-top: 0 !important;
  }

  .prob-header-start .prob-logo--mark-only img {
    display: block !important;
    margin: 0 !important;
    margin-block: 0 !important;
    margin-block-end: 0 !important;
    padding: 0 !important;
    vertical-align: top;
    line-height: 0;
  }

  .prob-logo--mark-only img {
    height: clamp(5.5rem, 34vw, 8.25rem);
    width: auto;
    max-width: min(88vw, 19rem);
  }

  .prob-header .prob-theme-toggle,
  .prob-header .prob-menu-toggle {
    width: 48px;
    height: 48px;
  }

  .prob-header--nav-open .prob-logo--mark-only img {
    height: clamp(5.65rem, 35vw, 8.5rem);
  }

  .prob-header--nav-open .prob-mobile-nav.is-open {
    max-height: min(70dvh, calc(100dvh - 9.5rem - env(safe-area-inset-top, 0px)));
  }

  .prob-topbar-inner {
    padding-top: 0.32rem;
    padding-bottom: 0.32rem;
  }

  .pb-zones-section {
    padding: clamp(1.05rem, 2.8vw, 1.5rem) 0;
  }

  .pb-contact-hero {
    padding: clamp(0.85rem, 2.4vw, 1.2rem) 0 clamp(0.8rem, 2.2vw, 1.05rem);
  }

  .pb-contact-body {
    padding: clamp(1.15rem, 3vw, 1.75rem) 0 clamp(1.2rem, 3.2vw, 1.85rem);
  }

  .pb-contact-trust {
    margin-bottom: 1.1rem;
    gap: 0.4rem 0.45rem;
  }

  .pb-contact-form-wrap {
    padding: 1rem 1rem 1.1rem;
  }

  .pb-restaurant-main > section.prob-section-tight {
    padding-top: clamp(1.15rem, 3vw, 1.75rem);
    padding-bottom: clamp(1.15rem, 3vw, 1.75rem);
  }

  .pb-restaurant-hero__grid {
    gap: 0.75rem;
  }

  .pb-restaurant-hero__title {
    margin-bottom: 0.35rem;
    font-size: clamp(1.18rem, 3.8vw, 1.55rem);
  }

  .pb-restaurant-hero__lead {
    margin-bottom: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .pb-restaurant-hero__media img {
    min-height: 0;
    max-height: 200px;
  }

  .prob-page-hero {
    padding: 0.85rem 0 0.7rem;
  }

  .prob-page-hero--xl {
    padding: 0.95rem 0 0.75rem;
  }

  .prob-hero-grid {
    gap: 0.85rem;
  }

  .prob-home .prob-hero-lead {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    line-height: 1.38;
  }

  .prob-home .prob-hero-lead--secondary {
    margin-bottom: 0.55rem;
    font-size: 0.86rem;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .prob-home .prob-hero-bullets--icons {
    gap: 0.35rem;
    margin-bottom: 0.75rem;
  }

  .prob-hero-cta {
    margin-bottom: 0.55rem;
    gap: 0.45rem;
  }

  .prob-hero-trust {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .prob-hero h1 {
    font-size: clamp(1.28rem, 5.2vw, 1.88rem);
    margin-bottom: 0.4rem;
    line-height: 1.12;
  }

  .prob-lead {
    margin-bottom: 0.8rem;
    font-size: 0.97rem;
  }

  .prob-quick-hub {
    padding: clamp(0.95rem, 2.8vw, 1.45rem) 0;
  }

  .prob-quick-hub__head {
    margin-bottom: 0.75rem;
  }

  .prob-quick-hub__lead {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .prob-quick-card {
    padding: 0.8rem 0.9rem 0.85rem 0.95rem;
    gap: 0.32rem;
  }

  a.prob-quick-card strong {
    font-size: 0.98rem;
  }

  .prob-price-hub-band .prob-tarifs-intro .prob-lead {
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .prob-nos-essences__head {
    margin-bottom: 0.65rem;
  }

  .prob-nos-essences__grid {
    gap: 0.55rem;
  }

  .prob-essence-card {
    padding-bottom: 0.65rem;
  }

  .prob-essence-card__media {
    max-height: 96px;
  }

  .prob-zones-home__lead {
    margin-bottom: 0.55rem;
    font-size: 0.9rem;
  }

  .prob-zone-map--home {
    gap: 0.45rem;
  }

  .prob-home-restaurant__lede {
    font-size: 0.92rem;
  }

  .prob-home-showcase__head .prob-lead {
    margin-bottom: 0.5rem;
  }

  .prob-card {
    padding: 0.85rem 0.85rem;
  }

  .prob-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
  }

  .prob-price-card .prob-card-media {
    aspect-ratio: 3 / 2;
    margin-bottom: 0.55rem;
  }

  .prob-tarifs-cards {
    gap: 0.65rem;
  }

  .prob-tarifs-card__body {
    order: 1;
    padding: 0.45rem 0.55rem 0.5rem;
    gap: 0.15rem;
  }

  .prob-tarifs-card__media {
    order: 2;
    aspect-ratio: 8 / 5;
  }

  .prob-tarifs-card__media img {
    padding: 0.25rem;
  }

  .prob-tarifs-card__footer {
    margin-top: 0.22rem;
    padding-top: 0.38rem;
    gap: 0.3rem;
  }

  .prob-tarifs-card__ctas {
    margin-top: 0.38rem;
    gap: 0.35rem;
  }

  .prob-tarifs-card__ctas .prob-btn {
    padding: 0.42rem 0.55rem;
    font-size: 0.82rem;
    min-height: 2.35rem;
  }

  .pb-zones-grid {
    gap: 0.65rem;
  }

  .pb-zones-card {
    padding: 0.8rem 0.85rem;
    border-radius: var(--prob-radius);
  }

  .pb-zones-card__name {
    font-size: 0.98rem;
  }

  .pb-zones-card__cities {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .pb-restaurant-case {
    padding: 0.65rem 0.75rem;
  }

  .pb-restaurant-cases__grid {
    gap: 0.5rem;
  }

  .prob-home-formats-grid,
  .prob-home-pourquoi-grid {
    gap: 0.65rem;
  }

  .prob-mobile-nav-inner {
    padding: 0.6rem var(--prob-gutter-x) 0.85rem;
    gap: 0.22rem;
  }

  .prob-mobile-nav a {
    padding: 0.52rem 0.65rem;
    font-size: 1.02rem;
  }

  .prob-mobile-nav a.prob-mobile-sub {
    padding-left: 1.1rem;
    font-size: 0.9rem;
  }

  .prob-mobile-actions {
    margin-top: 0.45rem;
    gap: 0.4rem;
  }

  .prob-hero-visual img {
    min-height: 120px;
  }

  .prob-hero-visuals {
    min-height: 0;
  }

  .prob-hero-figure--main {
    aspect-ratio: 16 / 9;
  }

  .prob-photo-mosaic {
    padding: clamp(0.75rem, 2vw, 1.15rem) 0;
  }

  .prob-section-tight {
    padding: clamp(0.95rem, 2.5vw, 1.35rem) 0;
  }

  .prob-section-title {
    font-size: clamp(1.22rem, 4.6vw, 1.85rem);
    margin-bottom: 0.4rem;
  }

  /* Paires de boutons : grille 2 colonnes (moins haut qu’une colonne) */
  .prob-hero-cta,
  .pb-format-hero__ctas,
  .pb-contact-hero__actions,
  .pb-zones-top__actions,
  .pb-contact-help__actions,
  .prob-mobile-actions,
  .prob-cta-row,
  .prob-tarifs-card__ctas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.5rem;
    align-items: stretch;
  }

  .prob-hero-cta > .prob-btn,
  .pb-format-hero__ctas .prob-btn,
  .pb-contact-hero__actions .prob-btn,
  .pb-zones-top__actions .prob-btn,
  .pb-contact-help__actions .prob-btn,
  .prob-mobile-actions .prob-btn,
  .prob-cta-row .prob-btn,
  .prob-tarifs-card__ctas .prob-btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .pb-contact-form__submit .prob-btn-primary {
    width: 100%;
    min-width: 0;
  }

  .prob-split-cta .prob-btn {
    width: 100%;
    box-sizing: border-box;
  }

  .prob-hero-cta > .prob-btn:only-child,
  .pb-format-hero__ctas .prob-btn:only-child,
  .pb-contact-hero__actions .prob-btn:only-child,
  .pb-zones-top__actions .prob-btn:only-child,
  .pb-contact-help__actions .prob-btn:only-child {
    grid-column: 1 / -1;
  }

  .prob-home-format-card {
    padding: 0.85rem 0.85rem;
  }

  .prob-home-format-card__title {
    font-size: 1.02rem;
    margin-bottom: 0.35rem;
  }

  .prob-home-format-card p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .prob-home-format-card__link {
    margin-top: 0.55rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 719px) {
  .pb-kpi {
    padding: 0.65rem 0.75rem;
  }
}

@media (max-width: 359px) {
  .prob-hero-cta,
  .pb-format-hero__ctas,
  .pb-contact-hero__actions,
  .pb-zones-top__actions,
  .pb-contact-help__actions,
  .prob-mobile-actions,
  .prob-cta-row,
  .prob-tarifs-card__ctas {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .prob-hero {
    padding: clamp(1.85rem, 3.2vw, 2.65rem) 0 clamp(1.9rem, 3.4vw, 2.75rem);
  }

  .pb-zones-top {
    min-height: clamp(260px, 38vh, 420px);
    padding: clamp(1.75rem, 3.5vw, 2.65rem) 0 clamp(1.55rem, 3vw, 2.25rem);
  }

  .prob-tarifs-card__ctas .prob-btn {
    min-height: 2.4rem;
  }
}

/* ==================== Premium polish (site-wide, brand-safe) ==================== */
/* Keep these at end of file to win cascade. */
body.prob-site a:focus-visible,
body.prob-site button:focus-visible,
body.prob-site [role="button"]:focus-visible,
body.prob-site input:focus-visible,
body.prob-site select:focus-visible,
body.prob-site textarea:focus-visible {
  outline: 2px solid rgba(110, 101, 195, 0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

body.prob-site hr {
  border: 0;
  border-top: 1px solid var(--prob-border);
  margin: 2.25rem 0;
}

body.prob-site h1,
body.prob-site h2,
body.prob-site h3 {
  letter-spacing: -0.02em;
}

body.prob-site h2 {
  margin-top: 2.75rem;
}

body.prob-site p {
  margin: 0 0 1rem;
}

body.prob-site .prob-card,
body.prob-site .prob-card-media,
body.prob-site .prob-quick-card,
body.prob-site .prob-cat-card {
  border-color: var(--prob-border);
  box-shadow: var(--prob-shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.prob-site .prob-card:hover,
body.prob-site .prob-card-media:hover,
body.prob-site .prob-quick-card:hover,
body.prob-site .prob-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--prob-shadow);
  border-color: rgba(110, 101, 195, 0.35);
}

body.prob-site .prob-btn {
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease,
    border-color 0.14s ease, color 0.14s ease;
}

body.prob-site .prob-btn:hover {
  transform: translateY(-1px);
}

body.prob-site .prob-btn:active {
  transform: translateY(0);
}

