/* =============================================================================
   PALETI PALETTE — THEME CSS
   ============================================================================= */

/* ---- WordPress layout override — prevent core from boxing content ---- */
body,
#main-content,
.wp-site-blocks,
.entry-content,
.wp-block-group,
.wp-block-cover {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Neutralize WordPress injected content-width constraints */
:where(body .is-layout-flow) > :not(.alignleft):not(.alignright):not(.alignfull),
:where(body .is-layout-constrained) > :not(.alignleft):not(.alignright):not(.alignfull),
:where(body .is-layout-constrained) > .alignwide {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ---- CSS Variables ---- */
:root {
  --pp-green-900: #2d4a1e;
  --pp-green-700: #3d5a28;
  --pp-green-500: #4e7a35;
  --pp-olive: #6b7c45;
  --pp-wood: #c4a870;
  --pp-wood-light: #d9c49a;
  --pp-cream-50: #faf8f3;
  --pp-cream-100: #f0ece0;
  --pp-cream-200: #e4dece;
  --pp-anthracite: #333333;
  --pp-gray-600: #555555;
  --pp-gray-400: #888888;
  --pp-gray-200: #e0ddd8;
  --pp-white: #ffffff;

  --pp-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --pp-font-size-base: 16px;
  --pp-line-height: 1.65;

  --pp-radius-sm: 4px;
  --pp-radius: 8px;
  --pp-radius-lg: 12px;
  --pp-radius-xl: 16px;

  --pp-shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --pp-shadow: 0 2px 12px rgba(0,0,0,0.09);
  --pp-shadow-md: 0 4px 24px rgba(0,0,0,0.11);
  --pp-shadow-lg: 0 8px 40px rgba(0,0,0,0.13);

  --pp-transition: 0.22s ease;
  --pp-header-height: 80px;

  --pp-max-width: 1200px;
  --pp-gutter: clamp(16px, 4vw, 40px);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: var(--pp-font-size-base);
}

body {
  margin: 0;
  font-family: var(--pp-font);
  font-size: 1rem;
  line-height: var(--pp-line-height);
  color: var(--pp-anthracite);
  background: var(--pp-cream-50);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pp-green-700); text-decoration: none; }
a:hover { color: var(--pp-green-500); }

ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.6em;
  font-weight: 700;
  line-height: 1.25;
  color: var(--pp-anthracite);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 1em; }

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

/* ---- Layout Helpers ---- */
.pp-container {
  width: 100%;
  max-width: var(--pp-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pp-gutter);
  padding-right: var(--pp-gutter);
}
.pp-section {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 96px);
}
.pp-section--sm {
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(32px, 5vw, 56px);
}
.pp-section--dark {
  background: var(--pp-green-700);
  color: var(--pp-white);
}
.pp-section--dark h1,
.pp-section--dark h2,
.pp-section--dark h3,
.pp-section--dark h4 { color: var(--pp-white); }
.pp-section--dark p { color: rgba(255,255,255,0.88); }
.pp-section--cream { background: var(--pp-cream-100); }
.pp-section--white { background: var(--pp-white); }

.pp-grid {
  display: grid;
  gap: 24px;
}
.pp-grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.pp-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.pp-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Wider container modifier — used for the solutions section */
.pp-container--wide { max-width: 1360px; }
/* Footer gets a further push — keeps the 4 columns well distributed */
.pp-footer .pp-container--wide { max-width: 1480px; }

/* 5-card solutions row */
.pp-solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pp-flex { display: flex; align-items: center; gap: 16px; }
.pp-flex--wrap { flex-wrap: wrap; }
.pp-text-center { text-align: center; }

.pp-section-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.pp-section-header--tight { margin-bottom: clamp(20px, 2.5vw, 28px); }
.pp-section-header h2 { margin-bottom: 0.5em; }
.pp-section-header p {
  color: var(--pp-gray-600);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---- Buttons ---- */
.pp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--pp-radius);
  font-family: var(--pp-font);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background var(--pp-transition), color var(--pp-transition), transform var(--pp-transition), box-shadow var(--pp-transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.pp-btn:hover { text-decoration: none; transform: translateY(-1px); }
.pp-btn:focus-visible {
  outline: 3px solid var(--pp-green-500);
  outline-offset: 3px;
}

.pp-btn--primary {
  background: var(--pp-green-700);
  color: var(--pp-white);
  border-color: var(--pp-green-700);
}
.pp-btn--primary:hover {
  background: var(--pp-green-900);
  border-color: var(--pp-green-900);
  color: var(--pp-white);
  box-shadow: var(--pp-shadow-md);
}

.pp-btn--secondary {
  background: transparent;
  color: var(--pp-green-700);
  border-color: var(--pp-green-700);
}
.pp-btn--secondary:hover {
  background: var(--pp-green-700);
  color: var(--pp-white);
}

.pp-btn--outline-white {
  background: transparent;
  color: var(--pp-white);
  border-color: rgba(255,255,255,0.7);
}
.pp-btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: var(--pp-white);
  border-color: var(--pp-white);
}

.pp-btn--white {
  background: var(--pp-white);
  color: var(--pp-green-700);
  border-color: var(--pp-white);
}
.pp-btn--white:hover {
  background: var(--pp-cream-100);
  color: var(--pp-green-900);
}

.pp-btn--sm { padding: 9px 20px; font-size: 0.875rem; }
.pp-btn--lg { padding: 15px 36px; font-size: 1.05rem; }

.pp-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ---- Cards ---- */
.pp-card {
  background: var(--pp-white);
  border-radius: var(--pp-radius-lg);
  border: 1px solid var(--pp-gray-200);
  overflow: hidden;
  transition: transform var(--pp-transition), box-shadow var(--pp-transition);
}
.pp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pp-shadow-md);
}
.pp-card__body {
  padding: 24px;
}
.pp-card__icon {
  width: 48px;
  height: 48px;
  background: var(--pp-cream-100);
  border-radius: var(--pp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--pp-green-700);
  font-size: 1.5rem;
}
.pp-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--pp-anthracite);
}
.pp-card__text {
  color: var(--pp-gray-600);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
.pp-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pp-green-700);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--pp-transition);
}
.pp-card__link:hover { gap: 8px; color: var(--pp-green-500); }
.pp-card__link::after { content: '→'; }

/* ---- Image Placeholders ---- */
.pp-placeholder {
  width: 100%;
  background: var(--pp-cream-100);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.pp-placeholder svg { width: 100%; height: 100%; }
.pp-placeholder--hero { aspect-ratio: 16/9; }
.pp-placeholder--card { aspect-ratio: 4/3; }
.pp-placeholder--square { aspect-ratio: 1; }
.pp-placeholder--wide { aspect-ratio: 21/9; }

/* ---- HEADER ---- */
.pp-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--pp-white);
  border-bottom: 1px solid var(--pp-cream-200);
  box-shadow: var(--pp-shadow-sm);
  transition: box-shadow var(--pp-transition);
  height: var(--pp-header-height);
  overflow: visible;
}
.pp-header.scrolled {
  box-shadow: var(--pp-shadow);
}
.pp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--pp-header-height);
  gap: 16px;
  overflow: visible;
}
.pp-header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.pp-header__logo img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

/* ---- NAV ---- */
.pp-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.pp-nav__item {
  position: relative;
}
.pp-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pp-anthracite);
  border-radius: var(--pp-radius-sm);
  transition: color var(--pp-transition), background var(--pp-transition);
  white-space: nowrap;
}
.pp-nav__link:hover,
.pp-nav__link:focus-visible {
  color: var(--pp-green-700);
  background: var(--pp-cream-100);
}
.pp-nav__link.active,
.pp-nav__item.current-menu-item > .pp-nav__link,
.pp-nav__item.current-menu-ancestor > .pp-nav__link {
  color: var(--pp-green-700);
}
.pp-nav__link.active::after,
.pp-nav__item.current-menu-item > .pp-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--pp-green-700);
  border-radius: 2px;
}
.pp-nav__link:focus-visible {
  outline: 2px solid var(--pp-green-500);
  outline-offset: 2px;
}

/* Dropdown toggle arrow */
.pp-nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pp-anthracite);
  border-radius: var(--pp-radius-sm);
  transition: color var(--pp-transition), background var(--pp-transition);
  font-family: var(--pp-font);
  white-space: nowrap;
}
.pp-nav__toggle:hover,
.pp-nav__toggle:focus-visible {
  color: var(--pp-green-700);
  background: var(--pp-cream-100);
}
.pp-nav__toggle:focus-visible {
  outline: 2px solid var(--pp-green-500);
  outline-offset: 2px;
}
.pp-nav__toggle svg {
  transition: transform var(--pp-transition);
  flex-shrink: 0;
}
.pp-nav__item.open > .pp-nav__toggle svg { transform: rotate(180deg); }

/* Dropdown panel */
.pp-nav__dropdown {
  position: absolute;
  /* top: 100% — flush against parent, no gap so cursor never leaves hover area */
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--pp-white);
  border: 1px solid var(--pp-gray-200);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow-lg);
  min-width: 240px;
  /* padding-top provides the visual breathing room that was the old 8px gap */
  padding: 6px 8px 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--pp-transition), visibility var(--pp-transition), transform var(--pp-transition);
  z-index: 100;
}
/* Invisible hover bridge — covers the seam between toggle and panel */
.pp-nav__item::after {
  content: '';
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}
.pp-nav__item:hover::after { display: block; }

.pp-nav__item:hover > .pp-nav__dropdown,
.pp-nav__item.open > .pp-nav__dropdown,
.pp-nav__item:focus-within > .pp-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.pp-nav__dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pp-anthracite);
  border-radius: var(--pp-radius-sm);
  transition: background var(--pp-transition), color var(--pp-transition);
}
.pp-nav__dropdown a:hover {
  background: var(--pp-cream-100);
  color: var(--pp-green-700);
}

/* ---- HAMBURGER ---- */
.pp-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--pp-radius-sm);
  color: var(--pp-anthracite);
}
.pp-hamburger:focus-visible {
  outline: 2px solid var(--pp-green-500);
  outline-offset: 2px;
}
.pp-hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pp-anthracite);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform var(--pp-transition), opacity var(--pp-transition);
}
.pp-hamburger.open .pp-hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pp-hamburger.open .pp-hamburger__bar:nth-child(2) { opacity: 0; }
.pp-hamburger.open .pp-hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.pp-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--pp-header-height);
  background: var(--pp-white);
  z-index: 800;
  overflow-y: auto;
  padding: 16px 0 32px;
  border-top: 1px solid var(--pp-cream-200);
}
.pp-mobile-menu.open { display: block; }
.pp-mobile-menu__list { padding: 0 var(--pp-gutter); }
.pp-mobile-menu__item { border-bottom: 1px solid var(--pp-cream-200); }
.pp-mobile-menu__link,
.pp-mobile-menu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pp-anthracite);
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: var(--pp-font);
  text-decoration: none;
}
.pp-mobile-menu__link:hover,
.pp-mobile-menu__toggle:hover { color: var(--pp-green-700); }
.pp-mobile-menu__sub {
  display: none;
  padding: 0 0 12px 16px;
}
.pp-mobile-menu__sub.open { display: block; }
.pp-mobile-menu__sub a {
  display: block;
  padding: 9px 0;
  font-size: 0.9rem;
  color: var(--pp-gray-600);
  border-bottom: 1px solid var(--pp-cream-100);
}
.pp-mobile-menu__sub a:hover { color: var(--pp-green-700); }
.pp-mobile-menu__cta {
  padding: 20px var(--pp-gutter) 0;
}

/* ---- HERO ---- */
.pp-hero {
  position: relative;
  background: var(--pp-cream-50);
  min-height: 580px;
  overflow: hidden;
}
/* Cream-to-transparent gradient sits above the image, blends left column */
.pp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 62%;
  background: linear-gradient(
    to right,
    var(--pp-cream-50) 0%,
    var(--pp-cream-50) 50%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Left-anchored content — flush to left margin, no centering container */
.pp-hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(56px, 8vw, 88px) var(--pp-gutter) clamp(88px, 12vw, 120px) max(48px, 6vw);
  min-height: 580px;
  display: flex;
  align-items: center;
}
.pp-hero__content {
  max-width: 560px;
  width: 100%;
}
/* Full-height right-side image, absolutely positioned */
.pp-hero__bg-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 57%;
  z-index: 0;
}
.pp-hero__bg-image .pp-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: none;
  background: var(--pp-cream-100);
  height: auto;
}
.pp-hero__bg-image .pp-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Eyebrow badge */
.pp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-green-700);
  background: var(--pp-cream-100);
  border: 1px solid var(--pp-cream-200);
  border-radius: 30px;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.pp-hero__title {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  color: var(--pp-anthracite);
}
.pp-hero__lead {
  font-size: 1rem;
  color: var(--pp-gray-600);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}
/* Reassurance row */
.pp-hero__reassurance {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.pp-hero__reassurance-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pp-gray-600);
}
.pp-hero__reassurance-item::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--pp-green-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

/* ---- FLOATING VALUE CARDS ---- */
.pp-trust-float {
  position: relative;
  z-index: 20;
  padding: 0;
  margin-top: -52px;
}
.pp-trust-float__panel {
  width: min(92vw, 1440px);
  margin: 0 auto;
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  box-shadow: 0 4px 32px rgba(61,90,40,0.10), 0 1px 6px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.pp-trust-float__col {
  padding: 28px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-right: 1px solid var(--pp-cream-200);
}
.pp-trust-float__col:last-child { border-right: none; }
.pp-trust-float__icon {
  width: 42px;
  height: 42px;
  background: var(--pp-cream-100);
  border-radius: var(--pp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  flex-shrink: 0;
}
.pp-trust-float__text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: 5px;
  line-height: 1.3;
}
.pp-trust-float__text span {
  font-size: 0.775rem;
  color: var(--pp-gray-600);
  line-height: 1.5;
  display: block;
}

/* ---- SOLUTIONS GRID ---- */
.pp-solution-card {
  background: var(--pp-white);
  border-radius: var(--pp-radius-lg);
  border: 1px solid var(--pp-gray-200);
  overflow: hidden;
  transition: transform var(--pp-transition), box-shadow var(--pp-transition);
  display: flex;
  flex-direction: column;
}
.pp-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pp-shadow-md);
}
.pp-solution-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pp-solution-card__img .pp-placeholder { border-radius: 0; border: none; height: 100%; aspect-ratio: unset; }
.pp-solution-card__body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pp-solution-card__icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.pp-solution-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pp-solution-card__text {
  color: var(--pp-gray-600);
  font-size: 0.875rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.pp-solution-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pp-green-700);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--pp-transition);
}
.pp-solution-card__link:hover { gap: 8px; color: var(--pp-green-500); }
.pp-solution-card__link::after { content: '→'; }

/* ---- DIMENSIONS TABLE ---- */
/* ---- DIMENSIONS PANEL ---- */
.pp-dim-wrap {
  background: var(--pp-cream-100);
  padding: clamp(28px, 4vw, 48px) var(--pp-gutter);
}
.pp-dim-panel {
  width: min(92vw, 1280px);
  margin: 0 auto;
  background: var(--pp-cream-50);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
}
.pp-dim-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.pp-dim-intro__heading {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--pp-anthracite);
  margin: 0;
}
.pp-dim-intro__text {
  font-size: 0.84rem;
  color: var(--pp-gray-600);
  line-height: 1.6;
  margin: 0;
}
.pp-dim-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: stretch;
}
.pp-dim-card-v2 {
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--pp-transition);
}
.pp-dim-card-v2:hover { box-shadow: var(--pp-shadow-sm); }
.pp-dim-card-v2__img { flex: 1; }
.pp-dim-card-v2__img .pp-placeholder {
  border-radius: 0;
  border: none;
  aspect-ratio: 4/3;
  height: auto;
}
.pp-dim-card-v2__body {
  padding: 10px 10px 12px;
  text-align: center;
  border-top: 1px solid var(--pp-cream-100);
}
.pp-dim-card-v2__size {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  line-height: 1.3;
}
.pp-dim-card-v2__type {
  display: block;
  font-size: 0.72rem;
  color: var(--pp-gray-600);
  margin-top: 2px;
}
.pp-dim-note {
  width: min(92vw, 1280px);
  margin: 10px auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--pp-gray-600);
}

/* ---- WHY US ---- */
/* ---- WHY US — connected row panel ---- */
.pp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--pp-cream-200);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
}
.pp-why-item {
  background: var(--pp-cream-50);
  padding: 28px 22px;
  border-radius: 0;
  border: none;
}
.pp-why-item__icon {
  width: 44px;
  height: 44px;
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.pp-why-item__icon svg { width: 20px; height: 20px; }
.pp-why-item__title {
  font-size: 0.975rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--pp-anthracite);
}
.pp-why-item__text {
  color: var(--pp-gray-600);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

/* ---- RESPONSIBLE BANNER ---- */
.pp-responsible {
  background: linear-gradient(135deg, var(--pp-green-900) 0%, var(--pp-green-700) 55%, var(--pp-olive) 100%);
  color: var(--pp-white);
  border-radius: var(--pp-radius-xl);
  padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  box-shadow: 0 8px 40px rgba(45,74,30,0.20);
}
.pp-responsible__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-wood-light);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.pp-responsible h2 {
  color: var(--pp-white);
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.pp-responsible p {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 20px;
}
.pp-responsible__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 24px;
}
.pp-responsible__highlight {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
}
.pp-responsible__highlight::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--pp-wood-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%232d4a1e' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 8px;
}
.pp-responsible__img {
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
  align-self: stretch;
}
.pp-responsible__img .pp-placeholder {
  height: 100%;
  min-height: 260px;
  border-radius: 0;
  border: none;
  background: rgba(255,255,255,0.07);
  aspect-ratio: unset;
}
.pp-responsible__img .pp-placeholder img {
  height: 100%;
  object-fit: cover;
}

/* ---- HOME CONTACT PANEL ---- */
.pp-home-contact {
  background: var(--pp-cream-100);
  padding: clamp(28px, 4vw, 48px) var(--pp-gutter);
}
.pp-home-contact__panel {
  width: min(92vw, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.7fr;
  gap: 1px;
  background: var(--pp-cream-200);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
}
.pp-home-contact__intro,
.pp-home-contact__info,
.pp-home-contact__form-col {
  background: var(--pp-cream-50);
  padding: clamp(22px, 2.8vw, 34px) clamp(18px, 2.4vw, 28px);
}
.pp-home-contact__heading {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--pp-anthracite);
  margin: 12px 0 10px;
}
.pp-home-contact__lead {
  font-size: 0.86rem;
  color: var(--pp-gray-600);
  line-height: 1.6;
  margin: 0;
}
/* Contact info items */
.pp-hci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--pp-gray-600);
  text-decoration: none;
  margin-bottom: 14px;
  transition: color var(--pp-transition);
}
a.pp-hci:hover { color: var(--pp-green-700); }
.pp-hci:last-child { margin-bottom: 0; }
.pp-hci--muted { opacity: 0.5; cursor: default; }
.pp-hci__icon {
  width: 30px;
  height: 30px;
  background: var(--pp-cream-100);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  flex-shrink: 0;
}
.pp-hci__icon svg { width: 14px; height: 14px; }
.pp-hci__text { padding-top: 5px; line-height: 1.4; }
/* Mini form */
.pp-home-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.pp-home-form__input {
  width: 100%;
  padding: 9px 11px;
  font-size: 0.84rem;
  font-family: var(--pp-font);
  color: var(--pp-anthracite);
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius);
  transition: border-color var(--pp-transition);
  outline: none;
  box-sizing: border-box;
  display: block;
}
.pp-home-form__input:focus { border-color: var(--pp-green-500); box-shadow: 0 0 0 3px rgba(78,122,53,0.08); }
.pp-home-form__input::placeholder { color: var(--pp-gray-400); }
.pp-home-form__textarea {
  resize: vertical;
  min-height: 78px;
  margin-bottom: 10px;
}
.pp-home-form__submit {
  width: 100%;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  padding-top: 11px;
  padding-bottom: 11px;
}
.pp-home-form__feedback {
  margin-top: 8px;
  font-size: 0.79rem;
  line-height: 1.45;
  padding: 8px 10px;
  border-radius: var(--pp-radius-sm);
}
.pp-home-form__feedback--ok {
  background: rgba(78,122,53,0.10);
  color: var(--pp-green-700);
}
.pp-home-form__feedback--err {
  background: rgba(170,50,50,0.08);
  color: #9a2b2b;
}

/* ---- PAGE HERO (inner pages) ---- */
.pp-page-hero {
  background: var(--pp-green-700);
  color: var(--pp-white);
  padding: clamp(40px, 7vw, 80px) 0;
}
.pp-page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pp-page-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-wood-light);
  margin-bottom: 14px;
}
.pp-page-hero h1 { color: var(--pp-white); margin-bottom: 14px; }
.pp-page-hero__lead { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; }
.pp-page-hero__image {
  border-radius: var(--pp-radius-xl);
  overflow: hidden;
  box-shadow: var(--pp-shadow-lg);
}
.pp-page-hero__image .pp-placeholder { aspect-ratio: 4/3; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }

/* ---- STEPS ---- */
.pp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: steps;
}
.pp-step {
  background: var(--pp-white);
  border-radius: var(--pp-radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--pp-cream-200);
  position: relative;
  counter-increment: steps;
}
.pp-step::before {
  content: counter(steps);
  position: absolute;
  top: -14px;
  left: 24px;
  width: 28px;
  height: 28px;
  background: var(--pp-green-700);
  color: var(--pp-white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pp-step__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; margin-top: 4px; }
.pp-step__text { color: var(--pp-gray-600); font-size: 0.9rem; margin: 0; line-height: 1.55; }

/* ---- COMPARISON TABLE ---- */
.pp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pp-compare-col {
  background: var(--pp-white);
  border-radius: var(--pp-radius-lg);
  border: 1px solid var(--pp-cream-200);
  overflow: hidden;
}
.pp-compare-col--highlight {
  border-color: var(--pp-green-700);
  box-shadow: var(--pp-shadow);
}
.pp-compare-col__header {
  padding: 20px 24px;
  background: var(--pp-cream-100);
  border-bottom: 1px solid var(--pp-cream-200);
}
.pp-compare-col--highlight .pp-compare-col__header {
  background: var(--pp-green-700);
}
.pp-compare-col--highlight .pp-compare-col__header h3 { color: var(--pp-white); }
.pp-compare-col__body { padding: 20px 24px; }
.pp-compare-col__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--pp-cream-100);
  font-size: 0.9rem;
  color: var(--pp-gray-600);
}
.pp-compare-col__item:last-child { border-bottom: none; }
.pp-compare-col__item::before {
  content: '✓';
  color: var(--pp-green-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- DISCLAIMER ---- */
.pp-disclaimer {
  background: var(--pp-cream-100);
  border-left: 4px solid var(--pp-wood);
  border-radius: 0 var(--pp-radius) var(--pp-radius) 0;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--pp-gray-600);
  margin: 24px 0;
}
.pp-disclaimer strong { color: var(--pp-anthracite); }

/* ---- CONTACT PAGE ---- */
.pp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.pp-contact-info {}
.pp-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--pp-cream-200);
}
.pp-contact-info-item:last-child { border-bottom: none; }
.pp-contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: var(--pp-cream-100);
  border-radius: var(--pp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--pp-green-700);
  flex-shrink: 0;
}
.pp-contact-info-item__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pp-gray-400);
  margin-bottom: 2px;
}
.pp-contact-info-item__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pp-anthracite);
}
.pp-contact-info-item__value a { color: var(--pp-green-700); }

/* ---- CONTACT FORM ---- */
.pp-form {
  background: var(--pp-white);
  border-radius: var(--pp-radius-xl);
  padding: 36px 40px;
  border: 1px solid var(--pp-cream-200);
  box-shadow: var(--pp-shadow-sm);
}
.pp-form__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pp-form__subtitle {
  color: var(--pp-gray-600);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.pp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pp-form__field {
  margin-bottom: 20px;
}
.pp-form__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pp-anthracite);
  margin-bottom: 6px;
}
.pp-form__field label .required { color: var(--pp-green-700); margin-left: 2px; }
.pp-form__field input,
.pp-form__field select,
.pp-form__field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--pp-font);
  font-size: 0.9rem;
  color: var(--pp-anthracite);
  background: var(--pp-cream-50);
  border: 1.5px solid var(--pp-cream-200);
  border-radius: var(--pp-radius);
  transition: border-color var(--pp-transition), box-shadow var(--pp-transition);
  outline: none;
}
.pp-form__field input:focus,
.pp-form__field select:focus,
.pp-form__field textarea:focus {
  border-color: var(--pp-green-700);
  box-shadow: 0 0 0 3px rgba(61,90,40,0.12);
  background: var(--pp-white);
}
.pp-form__field textarea { min-height: 120px; resize: vertical; }
.pp-form__field select { cursor: pointer; }
.pp-form__field .pp-field-error {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 4px;
  display: block;
}
.pp-form__honeypot { display: none !important; position: absolute; left: -9999px; }
.pp-form__submit { margin-top: 8px; }
.pp-form__success {
  background: #eaf7ec;
  border: 1px solid #7bc47f;
  border-radius: var(--pp-radius);
  padding: 16px 20px;
  color: #1e6b25;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.pp-form__errors {
  background: #fdf0f0;
  border: 1px solid #e09090;
  border-radius: var(--pp-radius);
  padding: 16px 20px;
  color: #8b2222;
  font-size: 0.875rem;
  margin-bottom: 20px;
}

/* ---- BLOG ---- */
.pp-blog-empty {
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 0;
}
.pp-blog-empty__icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.pp-blog-empty h2 { margin-bottom: 10px; }
.pp-blog-empty p { color: var(--pp-gray-600); max-width: 440px; margin: 0 auto 28px; }

.pp-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.pp-post-card {
  background: var(--pp-white);
  border-radius: var(--pp-radius-lg);
  border: 1px solid var(--pp-cream-200);
  overflow: hidden;
  transition: transform var(--pp-transition), box-shadow var(--pp-transition);
}
.pp-post-card:hover { transform: translateY(-3px); box-shadow: var(--pp-shadow-md); }
.pp-post-card__img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.pp-post-card__body { padding: 20px 24px; }
.pp-post-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--pp-gray-400);
  margin-bottom: 10px;
}
.pp-post-card__meta .cat {
  background: var(--pp-cream-100);
  color: var(--pp-green-700);
  padding: 2px 8px;
  border-radius: 30px;
  font-weight: 600;
}
.pp-post-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.pp-post-card__title a { color: var(--pp-anthracite); }
.pp-post-card__title a:hover { color: var(--pp-green-700); }
.pp-post-card__excerpt { font-size: 0.875rem; color: var(--pp-gray-600); line-height: 1.55; margin-bottom: 16px; }
.pp-post-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pp-green-700);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--pp-transition);
}
.pp-post-card__link:hover { gap: 8px; }
.pp-post-card__link::after { content: '→'; }

/* ---- SINGLE POST ---- */
.pp-single-post {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.pp-post-content { background: var(--pp-white); border-radius: var(--pp-radius-lg); padding: 36px 40px; border: 1px solid var(--pp-cream-200); }
.pp-post-content h2, .pp-post-content h3 { margin-top: 1.5em; }
.pp-post-content p { color: var(--pp-gray-600); }
.pp-post-sidebar { }
.pp-post-meta {
  font-size: 0.875rem;
  color: var(--pp-gray-400);
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.pp-footer {
  background: var(--pp-anthracite);
  color: rgba(255,255,255,0.8);
  max-height: 370px;
  overflow: hidden;
}
.pp-footer__top {
  padding: clamp(8px, 1vw, 12px) 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.pp-footer__brand-logo img {
  height: 160px;
  width: auto;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}
.pp-footer__brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}
.pp-footer__social {
  display: flex;
  gap: 10px;
}
.pp-footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--pp-radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-white);
  font-size: 0.9rem;
  transition: background var(--pp-transition);
  text-decoration: none;
}
.pp-footer__social-btn:hover:not(.disabled) {
  background: var(--pp-green-700);
  color: var(--pp-white);
}
.pp-footer__social-btn.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.pp-footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-white);
  margin-bottom: 18px;
}
.pp-footer__links li { margin-bottom: 8px; }
.pp-footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color var(--pp-transition);
  text-decoration: none;
}
.pp-footer__links a:hover { color: var(--pp-white); }
.pp-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.pp-footer__contact-item__icon {
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  color: var(--pp-wood);
  font-size: 0.95rem;
  margin-top: 1px;
}
.pp-footer__contact-item a { color: rgba(255,255,255,0.7); }
.pp-footer__contact-item a:hover { color: var(--pp-white); }

.pp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.pp-footer__bottom-links {
  display: flex;
  gap: 20px;
}
.pp-footer__bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: color var(--pp-transition);
}
.pp-footer__bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ---- FLOATING ACTIONS ---- */
.pp-floating {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 700;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.pp-floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--pp-shadow-md);
  transition: transform var(--pp-transition), box-shadow var(--pp-transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.pp-floating-btn:hover:not(.disabled) {
  transform: scale(1.08);
  box-shadow: var(--pp-shadow-lg);
}
.pp-floating-btn--whatsapp {
  background: #25d366;
  color: var(--pp-white);
}
.pp-floating-btn--phone {
  background: var(--pp-green-700);
  color: var(--pp-white);
}
.pp-floating-btn.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}
.pp-floating-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.pp-floating-tooltip {
  position: absolute;
  right: 62px;
  background: var(--pp-anthracite);
  color: var(--pp-white);
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: var(--pp-radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--pp-transition);
}
.pp-floating-btn:hover .pp-floating-tooltip,
.pp-floating-btn:focus .pp-floating-tooltip {
  opacity: 1;
}

/* ---- PAGE 404 ---- */
.pp-404 {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
}
.pp-404__code {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  color: var(--pp-cream-200);
  line-height: 1;
  margin-bottom: 16px;
}
.pp-404 h1 { margin-bottom: 12px; }
.pp-404 p { color: var(--pp-gray-600); max-width: 440px; margin: 0 auto 28px; }

/* ---- BREADCRUMB ---- */
.pp-breadcrumb {
  background: var(--pp-cream-100);
  border-bottom: 1px solid var(--pp-cream-200);
  padding: 10px 0;
  font-size: 0.8rem;
  color: var(--pp-gray-400);
}
.pp-breadcrumb__inner { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pp-breadcrumb a { color: var(--pp-green-700); }
.pp-breadcrumb a:hover { color: var(--pp-green-500); }
.pp-breadcrumb__sep { color: var(--pp-gray-400); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .pp-hero__bg-image { width: 50%; }
  .pp-hero::before { width: 56%; }
  .pp-trust-float__panel { grid-template-columns: repeat(2, 1fr); }
  .pp-trust-float__col:nth-child(2) { border-right: none; }
  .pp-trust-float__col:nth-child(3),
  .pp-trust-float__col:nth-child(4) { border-top: 1px solid var(--pp-cream-200); }
  .pp-solutions-grid { grid-template-columns: repeat(3, 1fr); }
  .pp-dim-panel { grid-template-columns: 1fr; }
  .pp-dim-cards { grid-template-columns: repeat(3, 1fr); }
  .pp-page-hero__inner { grid-template-columns: 1fr; }
  .pp-page-hero__image { display: none; }
  .pp-footer__top { grid-template-columns: 1fr 1fr; }
  .pp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-responsible { grid-template-columns: 1fr; }
  .pp-responsible__img { min-height: 200px; }
  .pp-home-contact__panel { grid-template-columns: 1fr 1fr; }
  .pp-single-post { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --pp-header-height: 60px; }
  .pp-header__logo img { height: 88px; }
  .pp-nav { display: none; }
  .pp-header__cta { display: none; }
  .pp-hamburger { display: flex; flex-direction: column; }
  /* Hero — stack: text above, image below */
  .pp-hero { min-height: auto; }
  .pp-hero::before { display: none; }
  .pp-hero__body { min-height: auto; padding: 32px var(--pp-gutter) 80px; }
  .pp-hero__bg-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 240px;
  }
  .pp-hero__bg-image .pp-placeholder { position: relative; inset: auto; height: 240px; }
  /* Floating cards — 2-column on tablet */
  .pp-trust-float { margin-top: -24px; }
  .pp-trust-float__panel { grid-template-columns: repeat(2, 1fr); }
  .pp-trust-float__col:nth-child(2) { border-right: none; }
  .pp-trust-float__col:nth-child(3),
  .pp-trust-float__col:nth-child(4) { border-top: 1px solid var(--pp-cream-200); }
  .pp-footer { max-height: none; overflow: visible; }
  .pp-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .pp-contact-grid { grid-template-columns: 1fr; }
  .pp-form { padding: 24px 20px; }
  .pp-form__row { grid-template-columns: 1fr; }
  .pp-compare { grid-template-columns: 1fr; }
  .pp-solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-dim-cards { grid-template-columns: repeat(2, 1fr); }
  .pp-responsible__highlights { gap: 8px 14px; }
  .pp-home-contact__panel { grid-template-columns: 1fr; }
  .pp-home-form__row { grid-template-columns: 1fr; gap: 6px; }
  .pp-footer__bottom { flex-direction: column; text-align: center; }
  .pp-floating { bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  /* Floating cards — single column on small phones */
  .pp-trust-float__panel { grid-template-columns: 1fr; }
  .pp-trust-float__col { border-right: none; border-top: 1px solid var(--pp-cream-200); }
  .pp-trust-float__col:first-child { border-top: none; }
  .pp-solutions-grid { grid-template-columns: 1fr; }
  .pp-trust-float__col:nth-child(3),
  .pp-trust-float__col:nth-child(4) { border-top: 1px solid var(--pp-cream-200); }
  .pp-why-grid { grid-template-columns: 1fr; }
  .pp-dim-cards { grid-template-columns: 1fr; }
  .pp-btn-group { flex-direction: column; align-items: flex-start; }
  .pp-btn--lg { width: 100%; justify-content: center; }
}

/* ---- UTILITY ---- */
.pp-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.pp-badge--green { background: var(--pp-cream-100); color: var(--pp-green-700); }
.pp-badge--wood { background: #f5edd5; color: #7a5a1a; }
.pp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- SELECTION GUIDE ---- */
.pp-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.pp-guide-item {
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius);
  padding: 20px 16px;
  text-align: center;
}
.pp-guide-item__icon { font-size: 1.8rem; margin-bottom: 10px; }
.pp-guide-item__title { font-size: 0.875rem; font-weight: 700; margin-bottom: 4px; }
.pp-guide-item__text { font-size: 0.78rem; color: var(--pp-gray-600); margin: 0; }

/* ============================================================
   PAGE: PALETTES PAR DIMENSIONS — specific styles
   ============================================================ */

/* ---- Button full-width modifier ---- */
.pp-btn--full { width: 100%; justify-content: center; }

/* ---- Hero page modifier (no trust-float overlap padding) ---- */
.pp-hero--page { min-height: 480px; }
.pp-hero--page .pp-hero__body {
  min-height: 480px;
  padding-bottom: clamp(52px, 7vw, 80px);
}

/* ---- Dimensions 3×2 grid ---- */
.pp-dim-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pp-dim-page-card {
  background: var(--pp-white);
  border-radius: var(--pp-radius-lg);
  border: 1px solid var(--pp-cream-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--pp-transition), box-shadow var(--pp-transition);
}
.pp-dim-page-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pp-shadow-md);
}
.pp-dim-page-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.pp-dim-page-card__img .pp-placeholder {
  border-radius: 0;
  border: none;
  height: 100%;
  aspect-ratio: unset;
}
.pp-dim-page-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.pp-dim-page-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  margin: 4px 0 0;
}
.pp-dim-page-card__text {
  font-size: 0.875rem;
  color: var(--pp-gray-600);
  line-height: 1.55;
  flex: 1;
  margin: 0 0 4px;
}
.pp-dims-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--pp-gray-600);
  font-style: italic;
}

/* ---- Guide panel — compact 6-col connected horizontal row ---- */
.pp-guide-panel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--pp-cream-200);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
}
.pp-guide-panel__item {
  background: var(--pp-white);
  padding: 22px 14px;
  text-align: center;
  transition: background var(--pp-transition);
}
.pp-guide-panel__item:hover { background: var(--pp-cream-50); }
.pp-guide-panel__icon {
  width: 44px;
  height: 44px;
  background: var(--pp-cream-100);
  border: 1px solid var(--pp-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  margin: 0 auto 12px;
  flex-shrink: 0;
}
.pp-guide-panel__icon svg { width: 20px; height: 20px; }
.pp-guide-panel__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: 5px;
  line-height: 1.3;
}
.pp-guide-panel__text {
  font-size: 0.76rem;
  color: var(--pp-gray-600);
  line-height: 1.5;
  margin: 0;
}

/* ---- Benefits grid — compact 5-col connected horizontal row ---- */
.pp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--pp-cream-200);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
}
.pp-benefit-item {
  background: var(--pp-cream-50);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.pp-benefit-item__icon {
  width: 42px;
  height: 42px;
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  flex-shrink: 0;
}
.pp-benefit-item__icon svg { width: 20px; height: 20px; }
.pp-benefit-item__body { display: flex; flex-direction: column; gap: 4px; }
.pp-benefit-item__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  line-height: 1.3;
  margin: 0;
}
.pp-benefit-item__text {
  font-size: 0.78rem;
  color: var(--pp-gray-600);
  line-height: 1.5;
  margin: 0;
}

/* ---- Page contact section ---- */
.pp-pd-contact {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  align-items: start;
}
.pp-pd-contact__cta { display: flex; flex-direction: column; height: 100%; }
.pp-pd-contact__cta-inner {
  background: linear-gradient(135deg, var(--pp-green-900) 0%, var(--pp-green-700) 60%, var(--pp-olive) 100%);
  border-radius: var(--pp-radius-xl);
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 36px);
  color: var(--pp-white);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 8px 40px rgba(45,74,30,0.18);
}
.pp-pd-contact__cta-inner h2 {
  color: var(--pp-white);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.2;
  margin: 0;
}
.pp-pd-contact__cta-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}
.pp-pd-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pp-pd-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.pp-pd-bullets__icon {
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-wood-light);
  flex-shrink: 0;
}
.pp-pd-bullets__icon svg { width: 12px; height: 12px; }
.pp-pd-cta-img {
  flex: 1;
  min-height: 160px;
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
}
.pp-pd-cta-img .pp-placeholder {
  height: 100%;
  min-height: 160px;
  border-radius: 0;
  border: none;
  background: rgba(255,255,255,0.07);
  aspect-ratio: unset;
}
.pp-pd-cta-img .pp-placeholder img {
  height: 100%;
  object-fit: cover;
}

/* ---- Responsive: page-specific overrides ---- */
@media (max-width: 1024px) {
  .pp-dim-page-grid  { grid-template-columns: repeat(2, 1fr); }
  .pp-guide-panel    { grid-template-columns: repeat(3, 1fr); }
  .pp-benefits-grid  { grid-template-columns: repeat(3, 1fr); }
  .pp-pd-contact     { grid-template-columns: 1fr; }
  .pp-pd-cta-img     { min-height: 200px; }
}
@media (max-width: 768px) {
  .pp-guide-panel   { grid-template-columns: repeat(2, 1fr); }
  .pp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-dim-page-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .pp-dim-page-grid { grid-template-columns: 1fr; }
  .pp-guide-panel   { grid-template-columns: 1fr; }
  .pp-benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE: PALETTES EN BOIS NEUVES — scoped page-specific styles
   ============================================================ */

/* Target customers — 6-col compact connected row */
.pp-pn-sectors {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--pp-cream-200);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
}
.pp-pn-sector {
  background: var(--pp-white);
  padding: 24px 14px;
  text-align: center;
  transition: background var(--pp-transition);
}
.pp-pn-sector:hover { background: var(--pp-cream-50); }
.pp-pn-sector__icon {
  width: 44px;
  height: 44px;
  background: var(--pp-cream-100);
  border: 1px solid var(--pp-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  margin: 0 auto 12px;
  flex-shrink: 0;
}
.pp-pn-sector__icon svg { width: 20px; height: 20px; }
.pp-pn-sector__title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: 6px;
  line-height: 1.3;
}
.pp-pn-sector__text {
  font-size: 0.76rem;
  color: var(--pp-gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Dimensions — section-level overrides (wider, tighter padding) */
.pp-pn-dim-wrap { padding-inline: max(12px, 2vw); }
.pp-pn-dim-panel {
  width: min(96vw, 1440px);
  padding: clamp(16px, 2vw, 22px);
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
}

/* Dimensions — single-row 6-col square cards */
.pp-pn-dim-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.pp-pn-dim-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius);
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  aspect-ratio: 1;
  transition: box-shadow var(--pp-transition);
}
.pp-pn-dim-card:hover { box-shadow: var(--pp-shadow-sm); }
.pp-pn-dim-card__icon {
  width: 32px;
  height: 32px;
  background: var(--pp-cream-100);
  border: 1px solid var(--pp-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  flex-shrink: 0;
  margin-bottom: 4px;
}
.pp-pn-dim-card__icon svg { width: 14px; height: 14px; }
.pp-pn-dim-card__size {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  line-height: 1.2;
}
.pp-pn-dim-card__label {
  font-size: 0.68rem;
  color: var(--pp-gray-600);
  line-height: 1.3;
}
.pp-pn-dim-card--custom {
  background: var(--pp-cream-50);
  border-style: dashed;
}
.pp-pn-note {
  margin-top: 10px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--pp-gray-600);
  font-style: italic;
}

/* Applications — 5 image cards in one row */
.pp-pn-apps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.pp-pn-app-card {
  background: var(--pp-white);
  border-radius: var(--pp-radius-lg);
  border: 1px solid var(--pp-cream-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--pp-transition), box-shadow var(--pp-transition);
}
.pp-pn-app-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pp-shadow-md);
}
.pp-pn-app-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.pp-pn-app-card__img .pp-placeholder {
  border-radius: 0;
  border: none;
  height: 100%;
  aspect-ratio: unset;
}
.pp-pn-app-card__body {
  padding: 16px 18px 20px;
  flex: 1;
}
.pp-pn-app-card__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: 6px;
  line-height: 1.3;
}
.pp-pn-app-card__text {
  font-size: 0.8rem;
  color: var(--pp-gray-600);
  line-height: 1.55;
  margin: 0;
}

/* Final CTA banner — dark green 3-col panel */
.pp-pn-cta-wrap {
  background: var(--pp-cream-100);
  padding: clamp(28px, 4vw, 48px) var(--pp-gutter);
}
.pp-pn-cta-banner {
  width: min(92vw, 1380px);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--pp-green-900) 0%, var(--pp-green-700) 55%, var(--pp-olive) 100%);
  border-radius: var(--pp-radius-xl);
  padding: clamp(28px, 3.5vw, 44px) clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  box-shadow: 0 8px 40px rgba(45,74,30,0.20);
  overflow: hidden;
}
.pp-pn-cta-deco { position: relative; width: 120px; flex-shrink: 0; }
.pp-pn-cta-deco__img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.20);
}
.pp-pn-cta-deco__img .pp-placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
  background: rgba(255,255,255,0.10);
  aspect-ratio: unset;
}
.pp-pn-cta-deco__img .pp-placeholder img { height: 100%; object-fit: cover; }
.pp-pn-cta-badge {
  position: absolute;
  bottom: -4px;
  right: -8px;
  background: var(--pp-wood-light);
  color: var(--pp-green-900);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  border: 2px solid rgba(255,255,255,0.25);
  padding: 4px;
}
.pp-pn-cta-center h2 {
  color: var(--pp-white);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.2;
  margin-bottom: 8px;
}
.pp-pn-cta-center p {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
.pp-pn-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 200px;
}

/* --- Responsive: palettes-en-bois-neuves --- */
@media (max-width: 1100px) {
  .pp-pn-sectors { grid-template-columns: repeat(3, 1fr); }
  .pp-pn-apps    { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  /* Panel stacks (intro above cards) — override the fixed 220px column */
  .pp-pn-dim-panel  { grid-template-columns: 1fr; }
  /* Cards switch to 3-col when intro is stacked above */
  .pp-pn-dim-grid   { grid-template-columns: repeat(3, 1fr); aspect-ratio: unset; }
  .pp-pn-dim-card   { aspect-ratio: 1; }
  .pp-pn-cta-banner { grid-template-columns: 1fr auto; }
  .pp-pn-cta-deco   { display: none; }
}
@media (max-width: 768px) {
  .pp-pn-sectors    { grid-template-columns: repeat(2, 1fr); }
  .pp-pn-apps       { grid-template-columns: repeat(2, 1fr); }
  .pp-pn-dim-grid   { grid-template-columns: repeat(3, 1fr); }
  .pp-pn-cta-banner { grid-template-columns: 1fr; }
  .pp-pn-cta-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .pp-pn-sectors    { grid-template-columns: 1fr; }
  .pp-pn-apps       { grid-template-columns: 1fr; }
  .pp-pn-dim-grid   { grid-template-columns: repeat(2, 1fr); }
  .pp-pn-cta-actions { flex-direction: column; }
}

/* ============================================================
   PAGE: PALETTES EN BOIS RECYCLÉES — scoped page-specific styles
   ============================================================ */

/* Hero — extra bottom padding so explain panel overlaps cleanly */
.pp-pr-hero.pp-hero--page .pp-hero__body {
  padding-bottom: clamp(88px, 11vw, 112px);
}

/* Explain float panel (overlaps hero bottom) */
.pp-pr-explain-float {
  position: relative;
  z-index: 20;
  padding: 0 var(--pp-gutter);
  margin-top: -64px;
  margin-bottom: 0;
}
.pp-pr-explain-panel {
  width: min(90vw, 1250px);
  margin: 0 auto;
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-xl);
  box-shadow: 0 8px 40px rgba(45,74,30,0.11);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 280px;
}
.pp-pr-explain-img {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.pp-pr-explain-img .pp-placeholder {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
  border: none;
  aspect-ratio: unset;
}
.pp-pr-explain-img .pp-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pp-pr-explain-body {
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.pp-pr-explain-body h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--pp-anthracite);
  line-height: 1.25;
  margin: 0;
}
.pp-pr-explain-body > p {
  font-size: 0.875rem;
  color: var(--pp-gray-600);
  line-height: 1.65;
  margin: 0;
}
.pp-pr-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pp-pr-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--pp-anthracite);
  font-weight: 500;
  line-height: 1.45;
}
.pp-pr-checklist__icon {
  width: 20px;
  height: 20px;
  background: var(--pp-green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-white);
  flex-shrink: 0;
  margin-top: 1px;
}
.pp-pr-checklist__icon svg { width: 10px; height: 10px; }

/* Advantages — 4 white cards in one row */
.pp-pr-advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pp-pr-adv-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--pp-transition), box-shadow var(--pp-transition);
}
.pp-pr-adv-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pp-shadow-sm);
}
.pp-pr-adv-card__icon {
  width: 44px;
  height: 44px;
  background: var(--pp-cream-100);
  border: 1px solid var(--pp-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  flex-shrink: 0;
}
.pp-pr-adv-card__icon svg { width: 20px; height: 20px; }
.pp-pr-adv-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  margin: 2px 0 0;
  line-height: 1.3;
}
.pp-pr-adv-card__text {
  font-size: 0.82rem;
  color: var(--pp-gray-600);
  line-height: 1.55;
  margin: 0;
}

/* Target audience — 4-item connected panel */
.pp-pr-audience-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--pp-cream-200);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
}
.pp-pr-audience-item {
  background: var(--pp-white);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--pp-transition);
}
.pp-pr-audience-item:hover { background: var(--pp-cream-50); }
.pp-pr-audience-item__icon {
  width: 44px;
  height: 44px;
  background: var(--pp-cream-100);
  border: 1px solid var(--pp-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  flex-shrink: 0;
}
.pp-pr-audience-item__icon svg { width: 20px; height: 20px; }
.pp-pr-audience-item__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  line-height: 1.3;
  margin: 0;
}
.pp-pr-audience-item__text {
  font-size: 0.8rem;
  color: var(--pp-gray-600);
  line-height: 1.55;
  margin: 0;
}

/* Comparison — 2 cards inside cream panel */
.pp-pr-compare-wrap {
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-xl);
  padding: clamp(20px, 2.5vw, 28px);
}
.pp-pr-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pp-pr-compare-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
}
.pp-pr-compare-card__header {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-pr-compare-card__header--recycled {
  background: var(--pp-green-700);
  color: var(--pp-white);
}
.pp-pr-compare-card__header--new {
  background: var(--pp-wood);
  color: var(--pp-white);
}
.pp-pr-compare-card__header-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-pr-compare-card__header-icon svg { width: 14px; height: 14px; }
.pp-pr-compare-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}
.pp-pr-compare-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 20px;
  border-top: 1px solid var(--pp-cream-100);
  align-items: baseline;
}
.pp-pr-compare-row:nth-child(even) { background: var(--pp-cream-50); }
.pp-pr-compare-row__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pp-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.pp-pr-compare-row__value {
  font-size: 0.82rem;
  color: var(--pp-anthracite);
  line-height: 1.5;
}

/* Quality process — flexbox row with arrow dividers */
.pp-pr-process {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.pp-pr-step {
  flex: 1;
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: box-shadow var(--pp-transition);
}
.pp-pr-step:hover { box-shadow: var(--pp-shadow-sm); }
.pp-pr-step__icon {
  width: 52px;
  height: 52px;
  background: var(--pp-cream-100);
  border: 1px solid var(--pp-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  flex-shrink: 0;
}
.pp-pr-step__icon svg { width: 22px; height: 22px; }
.pp-pr-step__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  margin: 0;
  line-height: 1.3;
}
.pp-pr-step__text {
  font-size: 0.79rem;
  color: var(--pp-gray-600);
  line-height: 1.55;
  margin: 0;
}
.pp-pr-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  padding: 0 10px;
  flex-shrink: 0;
  opacity: 0.6;
}
.pp-pr-arrow svg { width: 20px; height: 20px; }

/* Final CTA banner */
.pp-pr-cta-wrap {
  background: var(--pp-cream-100);
  padding: clamp(28px, 4vw, 48px) var(--pp-gutter);
}
.pp-pr-cta-banner {
  width: min(92vw, 1300px);
  margin: 0 auto;
  background: linear-gradient(135deg, #29471F 0%, var(--pp-green-700) 55%, var(--pp-olive) 100%);
  border-radius: var(--pp-radius-xl);
  padding: clamp(28px, 3.5vw, 44px) clamp(32px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  box-shadow: 0 8px 40px rgba(45,74,30,0.22);
  overflow: hidden;
}
.pp-pr-cta-banner h2 {
  color: var(--pp-white);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.25;
  margin: 0;
}
.pp-pr-cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.pp-pr-reassurance {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  margin-top: 2px;
}
.pp-pr-reassurance svg { width: 12px; height: 12px; }

/* --- Responsive: palettes-en-bois-recyclées --- */
@media (max-width: 1024px) {
  .pp-pr-explain-panel  { grid-template-columns: 1fr; }
  .pp-pr-explain-img    { min-height: 220px; }
  .pp-pr-advantages     { grid-template-columns: repeat(2, 1fr); }
  .pp-pr-audience-panel { grid-template-columns: repeat(2, 1fr); }
  .pp-pr-compare-grid   { grid-template-columns: 1fr; }
  .pp-pr-process        { flex-wrap: wrap; gap: 16px; }
  .pp-pr-step           { flex: none; width: calc(50% - 8px); }
  .pp-pr-arrow          { display: none; }
}
@media (max-width: 768px) {
  .pp-pr-explain-float  { margin-top: -28px; }
  .pp-pr-audience-panel { grid-template-columns: 1fr; }
  .pp-pr-step           { width: calc(50% - 8px); }
}
@media (max-width: 480px) {
  .pp-pr-advantages     { grid-template-columns: 1fr; }
  .pp-pr-step           { width: 100%; }
}

/* =================================================================
   PAGE: Réparation de palettes en bois (.pp-rp-*)
   ================================================================= */

/* H1 olive highlight */
.pp-rp-highlight { color: var(--pp-green-700); }

/* --- 1. Hero — compact split layout --- */
.pp-rp-hero { min-height: 440px; }
.pp-rp-hero.pp-hero--page { min-height: 440px; }
.pp-rp-hero.pp-hero--page .pp-hero__body {
  min-height: 440px;
  padding-top: clamp(36px, 4.5vw, 52px);
  padding-bottom: clamp(36px, 4.5vw, 52px);
}
.pp-rp-hero .pp-hero__title {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  margin-bottom: 14px;
}
.pp-rp-hero .pp-hero__lead { margin-bottom: 22px; }
.pp-rp-hero .pp-hero__reassurance { margin-top: 14px; }

/* --- (before/after overlay removed from template — rules below unused) --- */
.pp-rp-before-after {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 5;
  background: var(--pp-white);
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: var(--pp-radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  overflow: hidden;
  width: 260px;
}
.pp-rp-ba-side { display: flex; flex-direction: column; }
.pp-rp-ba-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 4px 6px;
  background: rgba(0,0,0,0.52);
  color: var(--pp-white);
  flex-shrink: 0;
}
.pp-rp-ba-img { flex: 1; overflow: hidden; }
.pp-rp-ba-img .pp-placeholder {
  height: 90px;
  border-radius: 0;
  border: none;
  aspect-ratio: unset;
  margin: 0;
}
.pp-rp-ba-img .pp-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.pp-rp-ba-mid {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pp-white);
  border-left: 1px solid var(--pp-cream-200);
  border-right: 1px solid var(--pp-cream-200);
}
.pp-rp-ba-mid__circle {
  width: 28px;
  height: 28px;
  background: var(--pp-green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-white);
  flex-shrink: 0;
}
.pp-rp-ba-mid__circle svg { width: 13px; height: 13px; }

/* --- 2. Service explanation — compact horizontal --- */
.pp-rp-explain-section { padding: clamp(24px, 3vw, 32px) var(--pp-gutter); }
.pp-rp-explain {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
.pp-rp-explain__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-green-700);
  margin-bottom: 8px;
}
.pp-rp-explain__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pp-rp-explain__text h2 {
  margin: 0;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  line-height: 1.25;
  color: var(--pp-anthracite);
}
.pp-rp-explain__text p { margin: 0; font-size: 0.82rem; color: var(--pp-gray-600); line-height: 1.6; }
/* Horizontal visual block: image area left + dark card right */
.pp-rp-explain__visual {
  display: grid;
  grid-template-columns: 65% 1fr;
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pp-cream-200);
  box-shadow: 0 2px 12px rgba(45,74,30,0.08);
  min-height: 180px;
}
.pp-rp-explain__img-area {
  background: var(--pp-cream-200);
  min-height: 180px;
}
.pp-rp-explain__card {
  background: var(--pp-green-900);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.pp-rp-explain__card-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-wood-light);
  flex-shrink: 0;
}
.pp-rp-explain__card-icon svg { width: 13px; height: 13px; }
.pp-rp-explain__card-title { font-size: 0.82rem; font-weight: 700; color: var(--pp-white); line-height: 1.3; }
.pp-rp-explain__card-text  { font-size: 0.74rem; color: rgba(255,255,255,0.8); line-height: 1.5; margin: 0; }

/* --- 3. Benefit cards — compact horizontal row --- */
.pp-rp-benefits-section { padding: clamp(20px, 2.5vw, 28px) var(--pp-gutter); }
.pp-rp-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pp-rp-benefit-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(45,74,30,0.06);
  transition: box-shadow var(--pp-transition);
}
.pp-rp-benefit-card:hover { box-shadow: 0 3px 12px rgba(45,74,30,0.10); }
.pp-rp-benefit-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-rp-benefit-card__icon svg { width: 17px; height: 17px; }
.pp-rp-benefit-card__icon--olive { background: var(--pp-green-700); color: var(--pp-white); }
.pp-rp-benefit-card__icon--wood  { background: var(--pp-wood);      color: var(--pp-white); }
.pp-rp-benefit-card__body { display: flex; flex-direction: column; gap: 4px; }
.pp-rp-benefit-card__title { font-size: 0.82rem; font-weight: 700; color: var(--pp-anthracite); line-height: 1.25; margin: 0; }
.pp-rp-benefit-card__text  { font-size: 0.76rem; color: var(--pp-gray-600); line-height: 1.5; margin: 0; }

/* --- 4. Process — compact clean steps with dashed connector --- */
.pp-rp-process-section { padding: clamp(24px, 3vw, 36px) var(--pp-gutter); }
.pp-rp-process-title {
  text-align: center;
  font-size: clamp(1rem, 1.9vw, 1.3rem);
  font-weight: 700;
  color: var(--pp-anthracite);
  margin: 0 0 clamp(20px, 3vw, 32px);
  line-height: 1.25;
}
.pp-rp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  align-items: start;
}
/* Dashed horizontal connector through the icon centers */
.pp-rp-process::before {
  content: '';
  position: absolute;
  top: 32px; /* step padding-top(8px) + half icon(24px) */
  left: calc(12.5% + 6px);
  right: calc(12.5% + 6px);
  border-top: 1px dashed var(--pp-cream-200);
  z-index: 0;
  pointer-events: none;
}
.pp-rp-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  position: relative;
  z-index: 1;
}
/* Wrapper anchors the number badge over the icon */
.pp-rp-step__visual {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0 auto 4px;
  flex-shrink: 0;
}
.pp-rp-step__num {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 20px;
  height: 20px;
  background: var(--pp-green-700);
  color: var(--pp-white);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 2px solid var(--pp-white);
}
.pp-rp-step__icon {
  width: 48px;
  height: 48px;
  background: var(--pp-cream-100);
  border: 1px solid var(--pp-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  position: relative;
  z-index: 1;
}
.pp-rp-step__icon svg { width: 20px; height: 20px; }
.pp-rp-step__title { font-size: 0.8rem; font-weight: 700; color: var(--pp-anthracite); line-height: 1.3; margin: 0; }
.pp-rp-step__text  { font-size: 0.74rem; color: var(--pp-gray-600); line-height: 1.5; margin: 0; }

/* --- 5. Economic / Environmental split panel --- */
.pp-rp-impact { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--pp-radius-xl); overflow: hidden; }
.pp-rp-impact__col {
  padding: clamp(32px, 4vw, 52px) clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pp-rp-impact__col--eco { background: var(--pp-green-700); }
.pp-rp-impact__col--env { background: var(--pp-wood); }
.pp-rp-impact__badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.3);
}
.pp-rp-impact__badge svg { width: 26px; height: 26px; }
.pp-rp-impact__col--eco .pp-rp-impact__badge { color: rgba(255,255,255,0.9); }
.pp-rp-impact__col--env .pp-rp-impact__badge { border-color: rgba(60,50,30,0.22); color: var(--pp-anthracite); }
.pp-rp-impact__title { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 700; line-height: 1.2; margin: 0; }
.pp-rp-impact__col--eco .pp-rp-impact__title { color: var(--pp-white); }
.pp-rp-impact__col--env .pp-rp-impact__title { color: var(--pp-anthracite); }
.pp-rp-impact__text { font-size: 0.875rem; line-height: 1.65; margin: 0; }
.pp-rp-impact__col--eco .pp-rp-impact__text { color: rgba(255,255,255,0.85); }
.pp-rp-impact__col--env .pp-rp-impact__text { color: var(--pp-gray-600); }
.pp-rp-impact__em { font-size: 0.84rem; font-weight: 700; font-style: italic; }
.pp-rp-impact__col--eco .pp-rp-impact__em { color: rgba(255,255,255,0.65); }
.pp-rp-impact__col--env .pp-rp-impact__em { color: var(--pp-green-700); }

/* --- 6. How to request — slim horizontal strip --- */
.pp-rp-request-section { padding: clamp(20px, 2.5vw, 28px) var(--pp-gutter); }
.pp-rp-request {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  align-items: center;
}
.pp-rp-request__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: clamp(20px, 2.5vw, 32px);
  border-right: 1px solid var(--pp-cream-200);
}
.pp-rp-request__eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-green-700);
}
.pp-rp-request__heading {
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  font-weight: 700;
  color: var(--pp-anthracite);
  line-height: 1.25;
  margin: 0;
}
.pp-rp-request__lead { font-size: 0.76rem; color: var(--pp-gray-600); line-height: 1.55; margin: 0; }
.pp-rp-request__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-left: clamp(16px, 2vw, 28px);
}
.pp-rp-request__step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-right: 1px solid var(--pp-cream-200);
}
.pp-rp-request__step:last-child { border-right: none; }
.pp-rp-request__step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2px;
}
.pp-rp-request__step-icon svg { width: 15px; height: 15px; }
.pp-rp-request__step-icon--olive { background: var(--pp-green-700); color: var(--pp-white); }
.pp-rp-request__step-icon--wood  { background: var(--pp-wood);      color: var(--pp-white); }
.pp-rp-request__step-title { font-size: 0.78rem; font-weight: 700; color: var(--pp-anthracite); line-height: 1.3; margin: 0; }
.pp-rp-request__step-text  { font-size: 0.72rem; color: var(--pp-gray-600); line-height: 1.45; margin: 0; }

/* --- 7. Final CTA banner --- */
.pp-rp-cta-outer { background: var(--pp-cream-100); padding: clamp(28px, 4vw, 48px) var(--pp-gutter); }
.pp-rp-cta-banner {
  width: min(94vw, 1480px);
  margin: 0 auto;
  background: linear-gradient(135deg, #213D1B 0%, var(--pp-green-700) 55%, var(--pp-olive) 100%);
  border-radius: var(--pp-radius-xl);
  display: grid;
  grid-template-columns: 200px 1fr 250px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(45,74,30,0.22);
}
.pp-rp-cta-image { position: relative; overflow: hidden; }
.pp-rp-cta-image .pp-placeholder {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
  border: none;
  aspect-ratio: unset;
}
.pp-rp-cta-image .pp-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.pp-rp-cta-center {
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.pp-rp-cta-icon {
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-white);
  flex-shrink: 0;
}
.pp-rp-cta-icon svg { width: 24px; height: 24px; }
.pp-rp-cta-center h2 { color: var(--pp-white); font-size: clamp(1rem, 1.8vw, 1.3rem); line-height: 1.25; margin: 0; }
.pp-rp-cta-center p  { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin: 0; }
.pp-rp-cta-contact {
  padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2.2vw, 24px);
  border-left: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: center;
}
.pp-rp-cta-contact__title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2px;
}
.pp-rp-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; line-height: 1.45; }
.pp-rp-contact-item a { color: rgba(255,255,255,0.88); text-decoration: none; word-break: break-all; }
.pp-rp-contact-item a:hover { color: var(--pp-white); text-decoration: underline; }
.pp-rp-contact-item span { color: rgba(255,255,255,0.82); }
.pp-rp-contact-item__icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-wood-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.pp-rp-contact-item__icon svg { width: 13px; height: 13px; }

/* --- Responsive: réparation de palettes --- */
@media (max-width: 1200px) {
  .pp-rp-cta-banner { grid-template-columns: 160px 1fr 220px; }
}
@media (max-width: 1024px) {
  .pp-rp-explain        { grid-template-columns: 1fr; }
  .pp-rp-explain__visual { min-height: 160px; }
  .pp-rp-benefits       { grid-template-columns: repeat(2, 1fr); }
  .pp-rp-process        { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pp-rp-process::before { display: none; }
  .pp-rp-impact         { grid-template-columns: 1fr; }
  .pp-rp-request        { grid-template-columns: 1fr; gap: 16px; }
  .pp-rp-request__intro { border-right: none; border-bottom: 1px solid var(--pp-cream-200); padding-right: 0; padding-bottom: 16px; }
  .pp-rp-request__steps { padding-left: 0; grid-template-columns: repeat(2, 1fr); }
  .pp-rp-request__step  { border-right: none; border-bottom: 1px solid var(--pp-cream-200); padding: 14px; }
  .pp-rp-request__step:nth-child(odd)  { border-right: 1px solid var(--pp-cream-200); }
  .pp-rp-request__step:last-child, .pp-rp-request__step:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .pp-rp-cta-banner     { grid-template-columns: 1fr 220px; }
  .pp-rp-cta-image      { display: none; }
}
@media (max-width: 768px) {
  .pp-rp-before-after   { display: none; }
  .pp-rp-explain__visual { grid-template-columns: 1fr; min-height: auto; }
  .pp-rp-explain__img-area { min-height: 140px; }
  .pp-rp-process        { grid-template-columns: 1fr; }
  .pp-rp-cta-banner     { grid-template-columns: 1fr; }
  .pp-rp-cta-contact    { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }
}
@media (max-width: 480px) {
  .pp-rp-benefits       { grid-template-columns: 1fr; }
  .pp-rp-step           { padding-top: 8px; }
  .pp-rp-request__steps { grid-template-columns: 1fr; }
  .pp-rp-request__step  { border-right: none; }
  .pp-rp-request__step:nth-child(odd) { border-right: none; }
}

/* =================================================================
   PAGE: Traitement NIMP15 (.pp-nm-*)
   ================================================================= */

/* --- Hero --- */
.pp-nm-hero { min-height: 440px; }
.pp-nm-hero.pp-hero--page { min-height: 440px; }
.pp-nm-hero.pp-hero--page .pp-hero__body {
  min-height: 440px;
  padding-top: clamp(36px, 4.5vw, 52px);
  padding-bottom: clamp(36px, 4.5vw, 52px);
}
.pp-nm-hero .pp-hero__title {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.pp-nm-hero .pp-hero__lead { font-size: 0.92rem; margin-bottom: 22px; }

/* Eyebrow badge — add icon gap */
.pp-nm-hero__eyebrow { gap: 6px; margin-bottom: 18px; }
.pp-nm-hero__eyebrow svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Reassurance row with SVG icons */
.pp-nm-hero__reassurance {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pp-nm-hero__reassurance-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pp-gray-600);
}
.pp-nm-hero__reassurance-item svg {
  width: 13px;
  height: 13px;
  color: var(--pp-green-700);
  flex-shrink: 0;
}

/* Overlay badge — positioned inside pp-hero__bg-image */
.pp-nm-hero__overlay-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(25, 45, 15, 0.8);
  color: var(--pp-white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 100px;
}
.pp-nm-hero__overlay-badge svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Responsive — hero */
@media (max-width: 768px) {
  .pp-nm-hero.pp-hero--page { min-height: unset; }
  .pp-nm-hero.pp-hero--page .pp-hero__body { min-height: unset; }
  .pp-nm-hero__overlay-badge { display: none; }
}

/* --- Wide container (used by all NIMP15 sections) --- */
.pp-nm-wide {
  width: min(92vw, 1480px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pp-gutter);
  padding-right: var(--pp-gutter);
}

/* --- 2. Explanation panel --- */
.pp-nm-explain-section {
  padding-top: clamp(28px, 3.5vw, 44px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
}
.pp-nm-explain {
  display: grid;
  grid-template-columns: 28% 1fr 22%;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}
.pp-nm-explain__img-area {
  background: var(--pp-cream-100);
  border-radius: var(--pp-radius-lg);
  border: 1px solid var(--pp-cream-200);
  min-height: 210px;
  width: 100%;
}
.pp-nm-explain__body h2 {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pp-nm-explain__body p {
  font-size: 0.875rem;
  color: var(--pp-gray-600);
  line-height: 1.65;
  margin-bottom: 10px;
}
.pp-nm-explain__body p:last-child { margin-bottom: 0; }
.pp-nm-explain__keys { display: flex; flex-direction: column; gap: 16px; }
.pp-nm-explain__key  { display: flex; align-items: flex-start; gap: 10px; }
.pp-nm-explain__key-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--pp-cream-100);
  border: 1px solid var(--pp-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
}
.pp-nm-explain__key-icon svg { width: 16px; height: 16px; }
.pp-nm-explain__key-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pp-anthracite);
  line-height: 1.4;
  padding-top: 8px;
}

/* --- 3. Why it matters --- */
.pp-nm-why-section {
  padding-top: clamp(28px, 3.5vw, 44px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
}
.pp-nm-why-inner {
  background: var(--pp-white);
  border-radius: var(--pp-radius-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--pp-shadow-sm);
}
.pp-nm-why-title {
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: clamp(18px, 2.5vw, 26px);
}
.pp-nm-why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pp-nm-why-card {
  background: var(--pp-cream-50);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pp-nm-why-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-nm-why-card__icon svg { width: 17px; height: 17px; }
.pp-nm-why-card__icon--olive { background: var(--pp-green-700); color: var(--pp-white); }
.pp-nm-why-card__icon--wood  { background: var(--pp-wood); color: var(--pp-white); }
.pp-nm-why-card__body { flex: 1; }
.pp-nm-why-card__title { font-size: 0.82rem; font-weight: 700; color: var(--pp-anthracite); line-height: 1.3; margin: 0 0 5px; }
.pp-nm-why-card__text  { font-size: 0.76rem; color: var(--pp-gray-600); line-height: 1.55; margin: 0; }

/* --- 4. When + Solutions --- */
.pp-nm-when-section {
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 56px);
}
.pp-nm-when {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
.pp-nm-when__heading {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: 20px;
  line-height: 1.25;
}
.pp-nm-when__intro {
  font-size: 0.875rem;
  color: var(--pp-gray-600);
  line-height: 1.65;
  margin-bottom: 18px;
}
.pp-nm-when-list { display: flex; flex-direction: column; }
.pp-nm-when-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--pp-cream-200);
}
.pp-nm-when-item:last-child { border-bottom: none; }
.pp-nm-when-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pp-green-700);
  color: var(--pp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-nm-when-item__icon svg { width: 16px; height: 16px; }
.pp-nm-when-item__title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: 3px;
}
.pp-nm-when-item__text {
  font-size: 0.76rem;
  color: var(--pp-gray-600);
  line-height: 1.55;
  margin: 0;
}
.pp-nm-when__note {
  font-size: 0.74rem;
  color: var(--pp-gray-400);
  border-top: 1px solid var(--pp-cream-200);
  padding-top: 12px;
  margin-top: 4px;
  line-height: 1.55;
}
/* Product cards */
.pp-nm-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pp-nm-product-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
  box-shadow: var(--pp-shadow-sm);
}
.pp-nm-product-card__img {
  background: var(--pp-cream-100);
  height: 100px;
  width: 100%;
}
.pp-nm-product-card__body { padding: 12px 14px 14px; }
.pp-nm-product-card__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  margin: 0 0 5px;
}
.pp-nm-product-card__text {
  font-size: 0.74rem;
  color: var(--pp-gray-600);
  line-height: 1.5;
  margin: 0;
}

/* --- 5. Process --- */
.pp-nm-process-section {
  padding-top: clamp(28px, 3.5vw, 44px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
}
.pp-nm-process-title {
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.pp-nm-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.pp-nm-process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  border-top: 1px dashed var(--pp-cream-200);
  z-index: 0;
}
.pp-nm-proc-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  position: relative;
  z-index: 1;
}
.pp-nm-proc-step__visual {
  position: relative;
  width: 52px;
  height: 52px;
  margin: 0 auto 4px;
}
.pp-nm-proc-step__num {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 20px;
  height: 20px;
  background: var(--pp-green-700);
  color: var(--pp-white);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pp-white);
  z-index: 2;
}
.pp-nm-proc-step__icon {
  width: 52px;
  height: 52px;
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  box-shadow: var(--pp-shadow-sm);
  position: relative;
  z-index: 1;
}
.pp-nm-proc-step__icon svg { width: 20px; height: 20px; }
.pp-nm-proc-step__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  line-height: 1.3;
  margin: 0;
}
.pp-nm-proc-step__text {
  font-size: 0.74rem;
  color: var(--pp-gray-600);
  line-height: 1.5;
  margin: 0;
}

/* --- 6. CTA Banner --- */
.pp-nm-cta-wrap {
  padding: clamp(32px, 4vw, 52px) 0;
  background: var(--pp-cream-50);
}
.pp-nm-cta-banner {
  background: var(--pp-green-900);
  border-radius: var(--pp-radius-xl);
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 80px 1fr 160px;
  gap: clamp(20px, 2.5vw, 36px);
  align-items: center;
  overflow: hidden;
}
.pp-nm-cta-deco {
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.3;
  color: var(--pp-wood-light);
}
.pp-nm-cta-deco svg { width: 44px; height: 44px; }
.pp-nm-cta-heading {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--pp-white);
  line-height: 1.3;
  margin-bottom: 18px;
}
.pp-nm-cta-buttons { gap: 12px; }
.pp-nm-cta-visual-area {
  height: 100px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--pp-radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}

/* --- 7. Reassurance strip --- */
.pp-nm-reassure-strip {
  background: var(--pp-white);
  border-top: 1px solid var(--pp-cream-200);
  padding: clamp(18px, 2.5vw, 28px) 0;
}
.pp-nm-reassure {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.pp-nm-reassure-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px clamp(10px, 1.5vw, 18px);
  border-right: 1px solid var(--pp-cream-200);
}
.pp-nm-reassure-item:first-child { padding-left: 0; }
.pp-nm-reassure-item:last-child { border-right: none; }
.pp-nm-reassure-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pp-cream-100);
  border: 1px solid rgba(61,90,40,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  flex-shrink: 0;
}
.pp-nm-reassure-item__icon svg { width: 14px; height: 14px; }
.pp-nm-reassure-item__body { display: flex; flex-direction: column; gap: 2px; }
.pp-nm-reassure-item__title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  display: block;
}
.pp-nm-reassure-item__text {
  font-size: 0.7rem;
  color: var(--pp-gray-600);
  line-height: 1.4;
  display: block;
}

/* --- NIMP15 Responsive --- */
@media (max-width: 1200px) {
  .pp-nm-explain { grid-template-columns: 1fr 22%; }
  .pp-nm-explain__img-wrap { display: none; }
  .pp-nm-cta-banner { grid-template-columns: 60px 1fr; }
  .pp-nm-cta-visual { display: none; }
}
@media (max-width: 1024px) {
  .pp-nm-explain { grid-template-columns: 1fr; gap: 16px; }
  .pp-nm-explain__keys { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .pp-nm-why-cards { grid-template-columns: repeat(2, 1fr); }
  .pp-nm-when { grid-template-columns: 1fr; gap: 32px; }
  .pp-nm-process { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pp-nm-process::before { display: none; }
  .pp-nm-reassure { grid-template-columns: repeat(3, 1fr); }
  .pp-nm-reassure-item:nth-child(3) { border-right: none; }
  .pp-nm-reassure-item:nth-child(4),
  .pp-nm-reassure-item:nth-child(5) { border-top: 1px solid var(--pp-cream-200); padding-top: 16px; }
  .pp-nm-reassure-item:nth-child(5) { border-right: none; }
  .pp-nm-cta-banner { grid-template-columns: 1fr; text-align: center; }
  .pp-nm-cta-deco { display: none; }
  .pp-nm-cta-buttons { justify-content: center; }
}
@media (max-width: 768px) {
  .pp-nm-why-cards { grid-template-columns: 1fr; }
  .pp-nm-products { grid-template-columns: 1fr; }
  .pp-nm-process { grid-template-columns: 1fr; }
  .pp-nm-reassure { grid-template-columns: repeat(2, 1fr); }
  .pp-nm-reassure-item:nth-child(2n) { border-right: none; }
  .pp-nm-reassure-item:nth-child(3) { border-right: 1px solid var(--pp-cream-200); border-top: 1px solid var(--pp-cream-200); }
  .pp-nm-reassure-item:nth-child(n+3) { border-top: 1px solid var(--pp-cream-200); padding-top: 12px; }
}
@media (max-width: 480px) {
  .pp-nm-reassure { grid-template-columns: 1fr; }
  .pp-nm-reassure-item { border-right: none; border-bottom: 1px solid var(--pp-cream-200); padding-top: 12px; }
  .pp-nm-reassure-item:last-child { border-bottom: none; }
  .pp-nm-reassure-item:nth-child(3) { border-right: none; }
  .pp-nm-why-cards { grid-template-columns: 1fr; }
}

/* =================================================================
   PAGE: Caisses en bois (.pp-cb-*)
   ================================================================= */

.pp-cb-highlight { color: var(--pp-green-700); }

/* --- Wide container --- */
.pp-cb-wide {
  width: min(92vw, 1480px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pp-gutter);
  padding-right: var(--pp-gutter);
}

/* --- 1. Hero --- */
.pp-cb-hero { min-height: 520px; }
.pp-cb-hero.pp-hero--page { min-height: 520px; }
.pp-cb-hero.pp-hero--page .pp-hero__body {
  min-height: 520px;
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.pp-cb-hero .pp-hero__title {
  font-size: clamp(1.7rem, 2.9vw, 2.5rem);
  line-height: 1.18;
  margin-bottom: 16px;
}
.pp-cb-hero .pp-hero__lead { font-size: 0.95rem; margin-bottom: 24px; }
.pp-cb-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.pp-cb-btn-phone svg { width: 15px; height: 15px; }

/* --- 2. Explanation --- */
.pp-cb-explain-section {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
}
.pp-cb-explain {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.pp-cb-explain__img-wrap .pp-placeholder {
  border-radius: var(--pp-radius-lg);
  aspect-ratio: 4/3;
  height: auto;
}
.pp-cb-explain__body h2 {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: 14px;
  line-height: 1.25;
}
.pp-cb-explain__body p {
  font-size: 0.9rem;
  color: var(--pp-gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}
.pp-cb-explain__body p:last-child { margin-bottom: 0; }

/* --- 3. Industrial uses --- */
.pp-cb-uses-section {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
}
.pp-cb-uses-header {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.pp-cb-uses-header h2 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--pp-anthracite);
  line-height: 1.25;
  margin: 0;
}
.pp-cb-uses-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pp-cb-use-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--pp-shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pp-cb-use-card__icon {
  width: 52px;
  height: 52px;
  background: var(--pp-cream-100);
  border-radius: var(--pp-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  flex-shrink: 0;
}
.pp-cb-use-card__icon svg { width: 22px; height: 22px; }
.pp-cb-use-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  line-height: 1.3;
  margin: 0;
}
.pp-cb-use-card__text {
  font-size: 0.78rem;
  color: var(--pp-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* --- 4. Advantages strip --- */
.pp-cb-adv-section {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
}
.pp-cb-adv-title {
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: clamp(24px, 3vw, 36px);
}
.pp-cb-adv-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--pp-cream-50);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-xl);
  overflow: hidden;
}
.pp-cb-adv-col {
  text-align: center;
  padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2vw, 24px);
  border-right: 1px solid var(--pp-cream-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pp-cb-adv-col:last-child { border-right: none; }
.pp-cb-adv-col__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pp-cream-100);
  border: 1px solid rgba(61, 90, 40, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  flex-shrink: 0;
}
.pp-cb-adv-col__icon svg { width: 20px; height: 20px; }
.pp-cb-adv-col__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  margin: 0;
  line-height: 1.3;
}
.pp-cb-adv-col__text {
  font-size: 0.78rem;
  color: var(--pp-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* --- 5. Comparison --- */
.pp-cb-compare-section {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
}
.pp-cb-compare-title {
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: clamp(24px, 3vw, 36px);
}
.pp-cb-compare-outer {
  position: relative;
}
.pp-cb-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--pp-radius-xl);
  overflow: hidden;
}
.pp-cb-compare-card {
  display: flex;
  flex-direction: row;
  min-height: 220px;
}
.pp-cb-compare-card--dark {
  background: var(--pp-green-900);
}
.pp-cb-compare-card--warm {
  background: #EFE8DA;
}
.pp-cb-compare-card__img {
  width: 38%;
  flex-shrink: 0;
  min-height: 220px;
  background: rgba(0, 0, 0, 0.15);
}
.pp-cb-compare-card--warm .pp-cb-compare-card__img {
  background: var(--pp-cream-200);
}
.pp-cb-compare-card__body {
  flex: 1;
  padding: clamp(20px, 2.5vw, 32px) clamp(18px, 2.2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.pp-cb-compare-card__title {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}
.pp-cb-compare-card--dark .pp-cb-compare-card__title { color: var(--pp-white); }
.pp-cb-compare-card--warm .pp-cb-compare-card__title { color: var(--pp-anthracite); }
.pp-cb-compare-card__text {
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 0;
}
.pp-cb-compare-card--dark .pp-cb-compare-card__text { color: rgba(255,255,255,0.8); }
.pp-cb-compare-card--warm .pp-cb-compare-card__text { color: var(--pp-gray-600); }
.pp-cb-compare-card__list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pp-cb-compare-card__list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
}
.pp-cb-compare-card__list li svg { width: 14px; height: 14px; flex-shrink: 0; }
.pp-cb-compare-card--dark .pp-cb-compare-card__list li { color: rgba(255,255,255,0.9); }
.pp-cb-compare-card--dark .pp-cb-compare-card__list li svg { color: var(--pp-wood-light); }
.pp-cb-compare-card--warm .pp-cb-compare-card__list li { color: var(--pp-anthracite); }
.pp-cb-compare-card--warm .pp-cb-compare-card__list li svg { color: var(--pp-green-700); }
/* VS badge */
.pp-cb-vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--pp-white);
  border: 3px solid var(--pp-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--pp-anthracite);
  z-index: 2;
  box-shadow: var(--pp-shadow);
  letter-spacing: 0.02em;
}

/* --- 6. Process --- */
.pp-cb-process-section {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
}
.pp-cb-process-title {
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--pp-anthracite);
  margin-bottom: clamp(24px, 3vw, 36px);
}
.pp-cb-process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.pp-cb-proc-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-xl);
  padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2vw, 24px);
  position: relative;
  box-shadow: var(--pp-shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.pp-cb-proc-card__num {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 26px;
  height: 26px;
  background: var(--pp-green-700);
  color: var(--pp-white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pp-white);
  box-shadow: var(--pp-shadow-sm);
}
.pp-cb-proc-card__icon {
  width: 64px;
  height: 64px;
  background: var(--pp-cream-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-green-700);
  border: 1px solid var(--pp-cream-200);
}
.pp-cb-proc-card__icon svg { width: 26px; height: 26px; }
.pp-cb-proc-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pp-anthracite);
  margin: 0;
  line-height: 1.3;
}
.pp-cb-proc-card__text {
  font-size: 0.78rem;
  color: var(--pp-gray-600);
  line-height: 1.6;
  margin: 0;
}
.pp-cb-proc-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-cream-200);
  padding: 0 8px;
  flex-shrink: 0;
}
.pp-cb-proc-arrow svg {
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
}

/* --- 7. CTA Banner --- */
.pp-cb-cta-wrap {
  background: var(--pp-cream-100);
  padding: clamp(28px, 4vw, 48px) 0;
}
.pp-cb-cta-banner {
  background: linear-gradient(135deg, #1E3418 0%, var(--pp-green-900) 45%, #3d5a28 100%);
  border-radius: var(--pp-radius-xl);
  padding: clamp(28px, 3.5vw, 44px) clamp(28px, 3.5vw, 48px);
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: clamp(20px, 2.5vw, 36px);
  align-items: center;
  box-shadow: 0 8px 40px rgba(30, 52, 24, 0.22);
}
.pp-cb-cta-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-white);
  flex-shrink: 0;
}
.pp-cb-cta-icon svg { width: 28px; height: 28px; }
.pp-cb-cta-heading {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--pp-white);
  line-height: 1.25;
  margin: 0 0 6px;
}
.pp-cb-cta-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}
.pp-cb-cta-action { flex-shrink: 0; }
.pp-cb-cta-action .pp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.pp-cb-cta-action .pp-btn svg { width: 16px; height: 16px; }

/* --- Responsive: Caisses en bois --- */
@media (max-width: 1024px) {
  .pp-cb-uses-cards   { grid-template-columns: repeat(2, 1fr); }
  .pp-cb-adv-cols     { grid-template-columns: repeat(2, 1fr); }
  .pp-cb-adv-col:nth-child(2)  { border-right: none; }
  .pp-cb-adv-col:nth-child(3)  { border-top: 1px solid var(--pp-cream-200); }
  .pp-cb-adv-col:nth-child(4)  { border-right: none; border-top: 1px solid var(--pp-cream-200); }
  .pp-cb-compare      { grid-template-columns: 1fr; }
  .pp-cb-compare-card { min-height: 160px; }
  .pp-cb-vs-badge     { top: auto; left: 50%; bottom: -22px; transform: translateX(-50%); }
  .pp-cb-compare-outer { padding-bottom: 0; }
  .pp-cb-process      { grid-template-columns: 1fr; gap: 20px; }
  .pp-cb-proc-arrow   { transform: none; }
  .pp-cb-proc-arrow svg { transform: none; }
  .pp-cb-cta-banner   { grid-template-columns: 1fr auto; }
  .pp-cb-cta-icon     { display: none; }
}
@media (max-width: 768px) {
  .pp-cb-hero.pp-hero--page { min-height: unset; }
  .pp-cb-hero.pp-hero--page .pp-hero__body { min-height: unset; }
  .pp-cb-explain      { grid-template-columns: 1fr; }
  .pp-cb-explain__img-wrap { display: none; }
  .pp-cb-uses-cards   { grid-template-columns: 1fr; }
  .pp-cb-adv-cols     { grid-template-columns: 1fr; border-radius: var(--pp-radius-lg); }
  .pp-cb-adv-col      { border-right: none; border-bottom: 1px solid var(--pp-cream-200); }
  .pp-cb-adv-col:last-child { border-bottom: none; }
  .pp-cb-adv-col:nth-child(2)  { border-top: none; }
  .pp-cb-adv-col:nth-child(3)  { border-top: none; }
  .pp-cb-adv-col:nth-child(4)  { border-top: none; }
  .pp-cb-compare-card { flex-direction: column; }
  .pp-cb-compare-card__img { width: 100%; min-height: 120px; }
  .pp-cb-vs-badge     { display: none; }
  .pp-cb-cta-banner   { grid-template-columns: 1fr; text-align: center; }
  .pp-cb-cta-action   { text-align: center; }
  .pp-cb-cta-action .pp-btn { justify-content: center; }
}
@media (max-width: 480px) {
  .pp-cb-uses-cards   { grid-template-columns: 1fr; }
}

/* =================================================================
   PAGE: Contact (.pp-ct-*)
   ================================================================= */

/* --- 1. Hero --- */
.pp-ct-hero { min-height: 460px; }
.pp-ct-hero.pp-hero--page { min-height: 460px; }
.pp-ct-hero.pp-hero--page .pp-hero__body {
  min-height: 460px;
  padding-top: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(40px, 5vw, 60px);
}
.pp-ct-hero .pp-hero__title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  margin-bottom: 10px;
}
.pp-ct-hero__sub {
  font-size: clamp(1rem, 1.9vw, 1.3rem);
  font-weight: 700;
  color: var(--pp-green-700);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pp-ct-hero .pp-hero__lead { font-size: 0.95rem; margin-bottom: 24px; }
.pp-ct-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.pp-ct-hero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pp-ct-hero__cta-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.pp-ct-hero__cta-btn--muted {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

/* --- 2. Contact grid — left panel additions --- */
.pp-ct-info-heading { margin-bottom: 20px; }

/* Advice CTA block at bottom of left panel */
.pp-ct-advice-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--pp-cream-100);
  border: 1px solid var(--pp-cream-200);
  border-radius: var(--pp-radius-lg);
  padding: 18px 16px;
  margin-top: 24px;
}
.pp-ct-advice-block__icon {
  width: 40px;
  height: 40px;
  background: var(--pp-green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-white);
  flex-shrink: 0;
}
.pp-ct-advice-block__icon svg { width: 18px; height: 18px; }
.pp-ct-advice-block__body { display: flex; flex-direction: column; gap: 6px; }
.pp-ct-advice-block__title { font-size: 0.88rem; font-weight: 700; color: var(--pp-anthracite); display: block; }
.pp-ct-advice-block__text  { font-size: 0.78rem; color: var(--pp-gray-600); line-height: 1.55; margin: 0; }

/* Form privacy note */
.pp-form__privacy {
  font-size: 0.74rem;
  color: var(--pp-gray-400);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* --- 3. Reassurance strip --- */
.pp-ct-reassure-strip {
  background: var(--pp-green-900);
  padding: clamp(18px, 2.5vw, 28px) var(--pp-gutter);
}
.pp-ct-reassure-inner {
  width: min(92vw, 1480px);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pp-ct-reassure-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px clamp(12px, 1.8vw, 22px);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.pp-ct-reassure-item:last-child { border-right: none; }
.pp-ct-reassure-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-wood-light);
  flex-shrink: 0;
}
.pp-ct-reassure-item__icon svg { width: 15px; height: 15px; }
.pp-ct-reassure-item__title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pp-white);
  line-height: 1.25;
}
.pp-ct-reassure-item__text {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* --- Responsive: Contact page --- */
@media (max-width: 1024px) {
  .pp-ct-hero.pp-hero--page { min-height: 400px; }
  .pp-ct-hero.pp-hero--page .pp-hero__body { min-height: 400px; }
  .pp-ct-reassure-inner { grid-template-columns: repeat(2, 1fr); }
  .pp-ct-reassure-item:nth-child(2) { border-right: none; }
  .pp-ct-reassure-item:nth-child(3),
  .pp-ct-reassure-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.12); }
  .pp-ct-reassure-item:nth-child(4) { border-right: none; }
}
@media (max-width: 768px) {
  .pp-ct-hero.pp-hero--page { min-height: unset; }
  .pp-ct-hero.pp-hero--page .pp-hero__body { min-height: unset; }
  .pp-ct-hero__ctas { flex-direction: column; align-items: flex-start; }
  .pp-contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .pp-ct-reassure-inner { grid-template-columns: 1fr; }
  .pp-ct-reassure-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 12px 0; }
  .pp-ct-reassure-item:last-child { border-bottom: none; }
  .pp-ct-reassure-item:nth-child(3),
  .pp-ct-reassure-item:nth-child(4) { border-top: none; }
}
@media (max-width: 480px) {
  .pp-form { padding: 24px 18px; }
  .pp-form__row { grid-template-columns: 1fr; }
}
