/* ============================================
   AXION EXTERMINATION — Minimaliste
   ============================================ */

:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --light: #f7f7f7;

  --black: #0a0a0a;
  --ink: #111111;
  --dark: #1a1a1a;

  --red: #cf2e2e;
  --red-dark: #a01c1c;
  --red-50: #fef5f5;
  --red-100: #fde8e8;

  --gray-50: #fafafa;
  --gray-100: #f4f4f4;
  --gray-150: #ededed;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* aliases legacy (pour compat code existant) */
  --blue: var(--red);
  --blue-dark: var(--red-dark);
  --blue-50: var(--red-50);
  --blue-100: var(--red-100);
  --blue-soft: #f3b6b6;
  --yellow: var(--red);
  --yellow-dark: var(--red-dark);
  --yellow-50: var(--red-50);
  --yellow-soft: var(--red-100);

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.1);
  --shadow-blue: 0 8px 24px rgba(207,46,46,0.15);
  --shadow-yellow: 0 8px 24px rgba(207,46,46,0.15);
  --shadow-red: 0 8px 24px rgba(207,46,46,0.15);

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --r-xl: 10px;
  --r-full: 6px;

  --container: 1240px;
  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
::selection { background: var(--ink); color: var(--white); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: var(--gray-600); }

/* ===== Eyebrow (minimal) ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red);
}

.eyebrow-yellow { color: var(--red); }
.eyebrow-yellow::before { background: var(--red); }
.eyebrow-light { color: var(--red); }
.eyebrow-light::before { background: var(--red); }

/* ===== Buttons (minimal) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  border-radius: var(--r-full);
  transition: all var(--t);
  cursor: pointer;
}

.btn-red, .btn-yellow {
  background: var(--ink);
  color: var(--white);
}

.btn-red:hover, .btn-yellow:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--ink);
  color: var(--white);
}

.btn-white:hover {
  background: var(--red);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: gap var(--t), color var(--t);
}

.btn-arrow:hover { gap: 14px; color: var(--red); }
.btn-arrow svg { transition: transform var(--t); }
.btn-arrow:hover svg { transform: translateX(4px); }

.btn-arrow-light { color: var(--white); }
.btn-arrow-light:hover { color: var(--red); }

/* ===== Phone pill (minimal version) ===== */
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 24px 6px 6px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-full);
  transition: all var(--t);
}

.phone-pill:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.phone-pill-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--t);
}

.phone-pill:hover .phone-pill-icon { background: var(--white); color: var(--red); }

.phone-pill-text { display: flex; flex-direction: column; line-height: 1.15; }
.phone-pill-text strong { font-size: 0.98rem; font-weight: 700; letter-spacing: -0.01em; }
.phone-pill-text span { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-top: 2px; }

/* ===== Top bar (noire — maquette B) ===== */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 0.78rem;
  position: sticky;
  top: 0;
  z-index: 101;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.topbar-items {
  display: flex;
  gap: 24px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
}

.topbar-item svg { color: var(--red); opacity: 0.9; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}
.topbar-status::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: nav-cta-pulse 1.8s infinite;
}

.topbar-socials { display: inline-flex; align-items: center; gap: 10px; }
.topbar-social {
  color: rgba(255,255,255,0.6);
  transition: color var(--t);
  display: inline-flex;
}
.topbar-social:hover { color: var(--white); }

/* Compat : ancien .topbar-badge gardé au cas où */
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  background: transparent;
  padding: 0;
}
.topbar-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: nav-cta-pulse 1.8s infinite;
}

/* ===== Navbar (minimal) ===== */
.navbar {
  position: sticky;
  top: 38px;
  z-index: 100;
  padding: 18px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-150);
}

.navbar.scrolled {
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
}

.logo-img {
  display: block;
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.logo-img-footer {
  height: 42px;
  max-width: 200px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--ink);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--white);
  position: relative;
}

.logo-mark::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ink);
}

.logo strong { font-size: 1.2rem; letter-spacing: -0.02em; color: var(--ink); font-weight: 700; }
.logo .logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gray-500);
  display: block;
  margin-top: 1px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links {
  gap: 28px;
}

.nav-mobile-close, .nav-mobile-call { display: none; }

.nav-links > li > a {
  position: relative;
  padding: 8px 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color var(--t);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links > li > a:hover {
  color: var(--ink);
}

.nav-links > li > a.active {
  color: var(--ink);
  font-weight: 700;
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-call {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 16px;
  border-right: 1px solid var(--gray-200);
}

.nav-call-icon {
  width: 38px;
  height: 38px;
  background: var(--off-white);
  border: 1px solid var(--gray-150);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
}

.nav-call-text small {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-call-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  display: block;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--ink);
  border-radius: var(--r-full);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--white);
  transition: all var(--t);
  text-transform: none;
  border: 1px solid var(--ink);
}

.nav-cta svg { transition: transform var(--t); }

.nav-cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-cta:hover svg { transform: translateX(3px); }

@keyframes nav-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: all var(--t);
}

.menu-toggle span::before, .menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: all var(--t);
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ===== HERO (white + photo droite) ===== */
.hero {
  position: relative;
  padding: 100px 0;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
}

.hero-bg, .hero-bg-img, .hero-bg-fallback, .hero-bg-pattern, .hero-bg-overlay {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background-image: url('images/hero-kitchen.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, rgba(255,255,255,0.6) 8%, transparent 25%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero h1 {
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.05;
}

.hero h1 .accent {
  color: var(--red);
  display: inline-block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* ===== Trust band (NOIR avec accents rouges — conservé) ===== */
.trust-band {
  background: var(--ink);
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.trust-band::before { display: none; }

.trust-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1px 1.2fr;
  gap: 48px;
  align-items: center;
}

.trust-left .eyebrow { color: var(--red); }
.trust-left .eyebrow::before { background: var(--red); }

.trust-left h2 {
  color: var(--white);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
}

.trust-divider {
  width: 1px;
  height: 80%;
  background: rgba(255,255,255,0.15);
}

.trust-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--red);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.trust-avatar-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  font-size: 1.4rem;
}

.trust-stars {
  display: flex;
  gap: 3px;
  color: var(--red);
  margin-bottom: 12px;
}

.trust-quote-block { flex: 1; }
.trust-quote-block h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-quote-block p {
  color: rgba(255,255,255,0.85);
  font-size: 0.96rem;
  line-height: 1.6;
  font-style: italic;
}

/* ===== Sections ===== */
section { padding: 70px 0; }

.section-head-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 56px;
}

.section-head-centered { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head-centered .eyebrow { justify-content: center; display: inline-flex; }

.section-head-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 32px;
  flex-wrap: wrap;
}

/* ===== Services 4 cards (nouvelle maquette) ===== */
.services-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card-4 {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t);
  cursor: pointer;
}

.card-4:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-4-img {
  aspect-ratio: 1/1;
  background-color: var(--off-white);
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.card-4-img svg {
  width: 80px;
  height: 80px;
  color: var(--gray-500);
  position: relative;
  z-index: 1;
  transition: all var(--t);
}

.card-4:hover .card-4-img svg {
  color: var(--red);
  transform: scale(1.08);
}

.card-4-body {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-150);
}

.card-4-num {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
}

.card-4-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.card-4-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: all var(--t);
}

.card-4:hover .card-4-arrow {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ===== Services Cards (minimal) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t);
  display: block;
}

.service-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--gray-100);
}

.service-img-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gray-400);
  background: var(--gray-100);
}

.service-img-fallback::before { display: none; }
.service-img-fb-1, .service-img-fb-2, .service-img-fb-3 { background: var(--gray-100); }
.service-img svg { width: 60px; height: 60px; filter: none; }

.service-bottom {
  background: var(--white);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--gray-150);
  transition: background var(--t);
  position: relative;
}

.service-card:hover .service-bottom { background: var(--off-white); }

.service-num {
  position: static;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-right: 10px;
}

.service-title-wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.service-arrow {
  width: 32px;
  height: 32px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--t);
}

.service-card:hover .service-arrow {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ===== About (minimal) ===== */
.about-section {
  background: var(--white);
}

.about-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-150);
}

.about-card-visual {
  position: relative;
  min-height: 560px;
  background-image: url('images/technicien-axion.jpg');
  background-size: cover;
  background-position: center top;
  background-color: #ffffff;
}

.about-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.about-card-badges {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.about-card-badge {
  background: var(--white);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  width: max-content;
}

.about-card-badge svg { color: var(--red); }

.about-card-badge.live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.about-card-name {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: var(--white);
  z-index: 2;
}

.about-card-name strong { display: block; font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.about-card-name span { font-size: 0.82rem; opacity: 0.85; }

.about-card-content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card-content h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.1;
  margin: 14px 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-card-content > p {
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-card-features {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.about-card-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-card-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--off-white);
  border: 1px solid var(--gray-150);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--red);
  flex-shrink: 0;
}

.about-card-feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 2px;
}

.about-card-feature span {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .about-card {
    grid-template-columns: 1fr;
  }
  .about-card-visual {
    min-height: 420px;
  }
  .about-card-content {
    padding: 40px 32px;
  }
}

/* ===== Team (minimal) ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t);
}

.team-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}

.team-photo {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center top;
  background-color: var(--gray-100);
  position: relative;
}

.team-photo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  background: var(--gray-100);
}

.team-photo-fallback svg { width: 75%; height: auto; filter: none; }

.team-body {
  padding: 18px 20px 22px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--gray-150);
}

.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card-role { font-size: 0.76rem; color: var(--gray-500); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

.team-socials {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.team-social {
  width: 28px;
  height: 28px;
  background: transparent;
  color: var(--gray-400);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: color var(--t);
}

.team-social:hover { color: var(--red); }

/* ===== Zones d'intervention ===== */
.zones-section { padding: 70px 0; background: var(--white); }

.section-head-sub {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 580px;
  margin: 18px auto 0;
}

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

.zone-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--gray-150);
  cursor: pointer;
  transition: transform 0.4s ease;
  display: block;
  text-decoration: none;
}
.zone-card:hover { transform: translateY(-6px); }

.zone-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.zone-card:hover .zone-img { transform: scale(1.06); }

.zone-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.92) 100%);
}

.zone-num {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  z-index: 2;
}
.zone-num::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--red);
  margin-right: 10px;
  transform: translateY(-4px);
}

.zone-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 2;
}

.zone-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px;
  color: var(--white);
  z-index: 2;
}
.zone-body h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.zone-body p {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.zone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.zone-link svg { transition: transform var(--t); }
.zone-card:hover .zone-link svg { transform: translateX(5px); color: var(--red); }

@media (max-width: 1024px) {
  .zones-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .zones-grid { grid-template-columns: 1fr; }
}

/* ===== Why us (minimal) ===== */
.why-section { padding: 70px 0; background: var(--white); }

.why-card {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border-radius: var(--r-lg);
  color: var(--white);
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
}

.why-card-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.why-7j {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.why-7j .dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.why-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red);
}

.why-card-left h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  margin: 14px 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.why-card-left > p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: var(--r-full);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t);
}
.why-cta:hover { background: var(--red); color: var(--white); }

.why-card-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.why-mini {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 26px;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.why-mini:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.why-mini.featured {
  grid-row: span 2;
  background: var(--red);
  border-color: var(--red);
  justify-content: space-between;
}

.why-mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.why-mini-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--white);
}
.why-mini.featured .why-mini-icon { background: rgba(255,255,255,0.2); }

.why-mini-num {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}
.why-mini.featured .why-mini-num { color: rgba(255,255,255,0.7); }

.why-mini h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-mini.featured h4 { font-size: 1.3rem; }

.why-mini p {
  color: rgba(255,255,255,0.7);
  font-size: 0.86rem;
  line-height: 1.55;
}
.why-mini.featured p {
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
}

.why-mini-bullets {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: grid;
  gap: 10px;
  list-style: none;
  padding-left: 0;
}
.why-mini-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.why-mini-bullets li svg { flex-shrink: 0; }

@media (max-width: 1024px) {
  .why-card { padding: 36px; }
  .why-card-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-card-right { grid-template-columns: 1fr; grid-template-rows: auto; }
  .why-mini.featured { grid-row: auto; }
}

/* ===== Gallery (minimal) ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  aspect-ratio: 1/1.2;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-100);
  transition: all var(--t);
  border: 1px solid var(--gray-150);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}

.gallery-item-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--gray-100);
}

.gallery-item-fb-1, .gallery-item-fb-2, .gallery-item-fb-3, .gallery-item-fb-4 {
  background: var(--gray-100);
}

.gallery-item-fallback svg { width: 50px; height: 50px; color: var(--gray-400); filter: none; }

.gallery-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--gray-150);
}

/* ===== Testimonials (minimal) ===== */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 40px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--t);
}

.testi-card:hover { border-color: var(--ink); transform: translateY(-4px); }

.testi-card-quote { display: none; }

.testi-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-100);
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.testi-avatar-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--gray-200);
  color: var(--gray-600);
  font-size: 1.5rem;
  font-weight: 700;
}

.testi-stars { display: flex; gap: 2px; color: var(--red); margin-bottom: 12px; }

.testi-name { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.testi-loc { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 14px; font-weight: 500; }
.testi-text { font-size: 0.95rem; line-height: 1.65; color: var(--gray-700); position: relative; z-index: 1; }

/* ===== Info section (minimal) ===== */
.info-section { padding: 70px 0; background: var(--white); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.info-card {
  background: var(--white);
  color: var(--ink);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--gray-200);
}

.info-card::before { display: none; }

.info-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-150);
  position: relative;
}

.info-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.info-block h3 { color: var(--ink); font-size: 1.25rem; margin-bottom: 14px; font-weight: 700; }
.info-block p, .info-block a { color: var(--gray-600); font-size: 0.96rem; line-height: 1.7; }
.info-block a:hover { color: var(--red); }

.info-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  color: var(--gray-700);
}

.info-line svg { color: var(--red); flex-shrink: 0; }

.info-hours-block {
  background: var(--off-white);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
}

.info-hours-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  color: var(--red);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-hours-text h4 { color: var(--ink); font-size: 0.96rem; margin-bottom: 2px; }
.info-hours-text p { color: var(--gray-500); font-size: 0.84rem; line-height: 1.5; }

.info-visual {
  position: relative;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
}

.info-visual-img {
  flex: 1;
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  background: var(--off-white);
}

.info-visual-img::before, .info-visual-img::after { display: none; }

.info-visual-img svg { position: relative; z-index: 1; width: 45%; color: var(--gray-300); filter: none; }

.info-stats {
  background: var(--white);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative;
  border-top: 1px solid var(--gray-200);
  color: var(--ink);
}

.info-stats::before { display: none; }

.info-photo {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--gray-100);
  min-height: 460px;
  height: 100%;
  border-top-right-radius: var(--r-lg);
  border-bottom-right-radius: var(--r-lg);
}
@media (max-width: 1024px) {
  .info-photo {
    min-height: 320px;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
  }
}

.info-stats h3 {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
}

.info-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.info-stat strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
}

.info-stat span {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== Blog (minimal) ===== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}

.blog-cover {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-100);
  position: relative;
}

.blog-cover-fallback {
  position: absolute;
  inset: 0;
  background: var(--gray-100);
  display: grid;
  place-items: center;
  z-index: -1;
}

.blog-cover-fallback svg { width: 40px; height: 40px; color: var(--gray-400); }

.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--red);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--gray-200);
}

.blog-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 10px;
  font-weight: 500;
}

.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card p { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 20px; flex: 1; line-height: 1.6; }

/* ===== CTA Banner (noir avec accent rouge) ===== */
.cta-banner {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(207,46,46,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(207,46,46,0.08) 0%, transparent 50%);
}

.cta-banner::after { display: none; }

.cta-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  font-weight: 800;
}

.cta-banner-right { display: flex; justify-content: flex-end; }

/* ===== Footer (noir comme Nexa) ===== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-about .logo strong { color: var(--white); }
.footer-about .logo-mark { background: var(--white); color: var(--ink); }
.footer-about .logo .logo-sub { color: rgba(255,255,255,0.5); }
.footer-about-text {
  margin: 20px 0 24px;
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.footer-socials { display: flex; gap: 8px; }

.footer-social {
  width: 36px;
  height: 36px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all var(--t);
}

.footer-social:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: color var(--t);
}

.footer-col a:hover { color: var(--white); }

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}

.footer-info-item svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-info ul { gap: 14px; }

.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: all var(--t);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { outline: none; border-color: var(--red); background: rgba(255,255,255,0.08); }

.newsletter-submit {
  width: 100%;
  padding: 12px 18px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  transition: all var(--t);
}

.newsletter-submit:hover { background: var(--white); color: var(--ink); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== Page hero (inner pages — minimal) ===== */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--gray-150);
}

.page-hero::before, .page-hero::after { display: none; }

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ink); margin-bottom: 16px; }
.page-hero > .container > p { color: var(--gray-600); font-size: 1.1rem; max-width: 680px; margin: 0 auto 28px; }
.page-hero .eyebrow { display: inline-flex; justify-content: center; color: var(--red); }
.page-hero .eyebrow::before { background: var(--red); }

/* Page hero variant avec photo de fond */
.page-hero-photo {
  background: var(--ink);
  color: var(--white);
  padding: 130px 0 100px;
  border-bottom: 0;
  text-align: left;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.page-hero-photo .container { position: relative; z-index: 2; }
.page-hero-inner { max-width: 720px; }
.page-hero-photo h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-photo p { color: rgba(255,255,255,0.78); font-size: 1.1rem; margin-bottom: 28px; max-width: 600px; line-height: 1.6; }
.page-hero-photo .eyebrow-light {
  color: var(--red);
}
.page-hero-photo .eyebrow-light::before { background: var(--red); }
.breadcrumb-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
}
.breadcrumb-light a { color: var(--white); }
.breadcrumb-light .breadcrumb-sep { color: rgba(255,255,255,0.4); }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  color: var(--gray-600);
}

.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--gray-300); }

/* ===== Pest detail cards (minimal) ===== */
.pest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pest-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}

.pest-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.08);
}

.pest-card-photo {
  position: relative;
  aspect-ratio: 16/7;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-100);
  overflow: hidden;
}
.pest-card-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 40%, rgba(0,0,0,0.35) 100%);
}
.pest-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: var(--r-full);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pest-card-head {
  display: flex;
  gap: 20px;
  padding: 30px 30px 20px;
  margin-bottom: 4px;
}

.pest-card > p { padding: 0 30px; }
.pest-card .pest-meta { margin: 0 30px 20px; }
.pest-card .pest-section { padding: 0 30px; }
.pest-card .pest-section:last-child { padding-bottom: 30px; }

.pest-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pest-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pest-card > p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }

.pest-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.pest-meta-item {
  background: var(--off-white);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  border: 1px solid var(--gray-150);
}

.pest-meta-item small {
  display: block;
  font-size: 0.68rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 3px;
}

.pest-meta-item strong { font-size: 0.95rem; color: var(--ink); font-weight: 700; }

.pest-section { margin-bottom: 16px; }
.pest-section:last-child { margin-bottom: 0; }

.pest-section h5 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-500);
}

.pest-list { display: grid; gap: 6px; }
.pest-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.pest-list li svg { color: var(--red); flex-shrink: 0; margin-top: 4px; }

/* ===== Contact form (minimal) ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
}

.contact-cards { display: grid; gap: 12px; }

.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: all var(--t);
  text-decoration: none;
  color: inherit;
}

.contact-card:hover { border-color: var(--ink); transform: translateX(4px); }

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--red);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--t);
}

.contact-card:hover .contact-card-icon { background: var(--red); color: var(--white); border-color: var(--red); }
.contact-card h4 { font-size: 1rem; margin-bottom: 3px; }
.contact-card p { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 4px; }
.contact-card strong { color: var(--ink); font-weight: 700; }

.contact-form {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.contact-form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form > p { color: var(--gray-600); margin-bottom: 24px; font-size: 0.95rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group label .required { color: var(--red); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink);
  font-size: 0.93rem;
  transition: all var(--t);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: none;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit { width: 100%; padding: 16px 28px; font-size: 0.92rem; }

.form-disclaimer {
  font-size: 0.74rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 12px;
}

.form-notice {
  display: none;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  margin-top: 14px;
  font-size: 0.9rem;
}

.form-notice.success { background: var(--off-white); color: var(--ink); border: 1px solid var(--gray-200); display: block; }
.form-notice.error { background: var(--red-50); color: var(--red-dark); border: 1px solid var(--red-100); display: block; }

/* ===== FAQ (minimal) ===== */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: none;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
  transition: all var(--t);
}

.faq-item.open { background: var(--white); border-color: var(--gray-200); box-shadow: none; }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
}

.faq-q:hover { color: var(--red); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gray-200);
  display: grid;
  place-items: center;
  transition: all var(--t);
  color: var(--gray-600);
}

.faq-item.open .faq-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t), padding var(--t);
  padding: 0;
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-a { max-height: 600px; padding: 0 0 24px; }

/* ===== Zones chips (minimal) ===== */
.zones-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.zone-chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  transition: all var(--t);
}

.zone-chip:hover { background: var(--off-white); border-color: var(--ink); transform: translateY(-2px); }
.zone-chip svg { color: var(--red); flex-shrink: 0; }

/* Zones desservies en card sombre (services page) */
.zones-dark-section { padding: 70px 0; background: var(--white); }
.zones-dark-card {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border-radius: var(--r-lg);
  padding: 56px 60px;
  color: var(--white);
}
.zones-dark-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 40px;
}
.zones-dark-head h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  margin-top: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.zones-dark-head > p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
}
.zones-chips-dark .zone-chip {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}
.zones-chips-dark .zone-chip:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}
.zones-chips-dark .zone-chip svg { color: var(--red); }
@media (max-width: 1024px) {
  .zones-dark-card { padding: 36px; }
  .zones-dark-head { grid-template-columns: 1fr; gap: 24px; }
  .zones-chips-dark { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Reveal anim ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero { padding: 80px 0 60px; }
  .hero-photo { width: 42%; opacity: 0.85; }
  .hero-photo::before { background: linear-gradient(to right, var(--white) 0%, rgba(255,255,255,0.8) 15%, transparent 40%); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-4 { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-top { grid-template-columns: 1fr; }
  .why-features-card { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .trust-divider { display: none; }
  .trust-right { flex-direction: column; text-align: center; }
  .trust-quote-block { display: flex; flex-direction: column; align-items: center; }
  .trust-stars { justify-content: center; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .cta-banner-right { justify-content: center; }
  .section-head-two { grid-template-columns: 1fr; gap: 20px; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
  .pest-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .zones-chips { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  section, .about-section, .why-section, .info-section { padding: 64px 0; }
  .about-section { padding-top: 8px; }
  .container { padding: 0 20px; }
  .hero { padding: 64px 0 48px; }
  .hero-photo { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .phone-pill { width: 100%; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: 12px;
    margin-top: 8px;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }
  .topbar-items { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services-4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .why-box { padding: 40px 24px; }
  .info-card, .info-stats { padding: 32px 24px; }
  .info-stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .zones-chips { grid-template-columns: 1fr 1fr; }
  .pest-card { padding: 24px; }
  .pest-meta { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.4rem; }
  .team-grid, .gallery-grid { grid-template-columns: 1fr; }
  .zones-chips { grid-template-columns: 1fr; }
}

/* ===== Page Entreprise ===== */

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 60px;
  background: var(--white);
}
.stat-cell {
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}
.stat-cell:last-child { border-right: 0; }
.stat-cell strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-cell strong em { color: var(--red); font-style: normal; }
.stat-cell span {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* Timeline */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 24px 0;
  position: relative;
}
.timeline-year {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-400);
  letter-spacing: -0.01em;
  position: relative;
  padding-top: 6px;
}
.timeline-year::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 14px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 2.5px solid var(--gray-300);
  border-radius: 50%;
}
.timeline-fill {
  content: '';
  position: absolute;
  left: 80px;
  top: 14px;
  width: 2px;
  height: 0;
  background: var(--red);
  transition: height 0.25s ease-out;
  z-index: 1;
}
.timeline-year::after { transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.timeline-item.active .timeline-year { color: var(--red); }
.timeline-item.active .timeline-year::after {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 5px rgba(207,46,46,0.15);
}
.timeline-body { padding-top: 4px; }
.timeline-body h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.timeline-body p {
  font-size: 0.94rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Valeurs grid (4 cards) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-md);
  padding: 32px 28px;
  position: relative;
  transition: all var(--t);
}
.value-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.06);
}
.value-num {
  position: absolute;
  top: 22px;
  right: 28px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-300);
}
.value-icon {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border: 1px solid var(--gray-150);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--red);
  margin-bottom: 22px;
}
.value-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Engagement local (commit-grid) */
.commit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.commit-left h2 {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  margin: 14px 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.commit-left > p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}
.commit-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}
.commit-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.commit-list li svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.commit-list strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 4px;
}
.commit-list span {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.55;
}
.commit-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.commit-right {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--gray-150);
}
.commit-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 20px 26px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 18px 48px -14px rgba(0,0,0,0.25);
}
.commit-badge-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.commit-badge-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2n) { border-right: 0; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--gray-200); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .commit-grid { grid-template-columns: 1fr; gap: 32px; }
  .timeline::before { left: 60px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: 0; border-bottom: 1px solid var(--gray-200); }
  .stat-cell:last-child { border-bottom: 0; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ===== Page Contact ===== */
.contact-section { padding: 70px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.contact-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-md);
  padding: 36px 32px 28px;
  text-decoration: none;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.contact-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.08);
}
.contact-card-wa {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}
.contact-card-wa:hover {
  background: #1ebe5b;
  border-color: #1ebe5b;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border: 1px solid var(--gray-150);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--red);
  margin-bottom: 22px;
}
.contact-card-wa .contact-card-icon {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.contact-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 12px;
}
.contact-card-wa .contact-card-tag { color: rgba(255,255,255,0.85); }

.contact-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.contact-card-wa h3 { color: var(--white); }

.contact-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 22px;
  flex: 1;
}
.contact-card-wa p { color: rgba(255,255,255,0.88); }

.contact-card-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-card-wa .contact-card-value { color: var(--white); }

.contact-card-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all var(--t);
}
.contact-card:hover .contact-card-arrow {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.contact-card-wa .contact-card-arrow {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.contact-card-wa:hover .contact-card-arrow {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: var(--off-white);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all var(--t);
}
.contact-email:hover {
  border-color: var(--ink);
  background: var(--white);
}
.contact-email-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
}
.contact-email small {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-email strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2px;
}
.contact-email > span { flex: 1; }
.contact-email-arrow {
  color: var(--gray-400);
  transition: all var(--t);
}
.contact-email:hover .contact-email-arrow {
  color: var(--ink);
  transform: translateX(4px);
}

/* Info blocks */
.info-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.info-blocks > .info-block {
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-md);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-150);
}
.info-block-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 14px;
}
.info-block h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.info-block p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.info-block-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}
.info-block-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
}
.info-block-list li:last-child { border-bottom: 0; }
.info-block-list span { color: var(--gray-500); }
.info-block-list strong { color: var(--ink); font-weight: 700; }
.info-block-list li.urgent strong { color: var(--red); }

.info-block-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.info-block-zones span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  padding: 5px 12px;
  background: var(--off-white);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-full);
}

.info-block-checks {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}
.info-block-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-block-checks li > svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}
.info-block-checks strong {
  display: block;
  font-size: 0.94rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 2px;
}
.info-block-checks span {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.45;
}

/* FAQ contact */
.contact-faq { display: grid; gap: 10px; max-width: 880px; margin: 0 auto; }
.contact-faq details {
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t);
}
.contact-faq details:hover { border-color: var(--ink); }
.contact-faq details[open] { border-color: var(--ink); }
.contact-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.contact-faq summary::-webkit-details-marker { display: none; }
.contact-faq summary svg {
  transition: transform var(--t);
  color: var(--gray-500);
  flex-shrink: 0;
}
.contact-faq details[open] summary svg {
  transform: rotate(180deg);
  color: var(--red);
}
.contact-faq details p {
  padding: 0 26px 22px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .contact-grid, .info-blocks { grid-template-columns: 1fr; }
}

/* ===== Testimonials marquee ===== */
.testi-marquee { padding: 70px 0; overflow: hidden; }
.testi-marquee-stats {
  display: inline-flex; align-items: center; gap: 24px;
  padding: 14px 26px;
  background: var(--ink); color: var(--white);
  border-radius: var(--r-full); margin-top: 18px;
}
.testi-marquee-stat { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.testi-marquee-stat strong { font-size: 1.05rem; font-weight: 800; color: var(--white); }
.testi-marquee-stat .stars { display: inline-flex; color: var(--red); gap: 2px; }
.testi-marquee-stat-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.2); }

.testi-track-wrap {
  margin-top: 50px;
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
.testi-track {
  display: flex; gap: 18px;
  animation: testi-scroll 40s linear infinite;
  width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes testi-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-marquee-card {
  width: 380px; flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-md);
  padding: 26px 28px;
}
.testi-marquee-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.testi-marquee-stars { display: flex; gap: 2px; color: var(--red); }
.testi-marquee-source { font-size: 0.72rem; font-weight: 700; color: var(--gray-500); letter-spacing: 0.06em; }
.testi-marquee-text { font-size: 0.92rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 18px; }
.testi-marquee-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.testi-marquee-avatar { width: 36px; height: 36px; border-radius: 50%; background-size: cover; background-position: center; flex-shrink: 0; }
.testi-marquee-author strong { display: block; font-size: 0.88rem; color: var(--ink); font-weight: 700; }
.testi-marquee-author span { font-size: 0.76rem; color: var(--gray-500); }

/* ===== Contact bento (CTV4) ===== */
.contact-bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 480px;
}
.contact-bento-card {
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-md);
  padding: 32px;
  transition: all var(--t);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.contact-bento-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}
.contact-bento-wa {
  grid-row: span 2;
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}
.contact-bento-wa:hover {
  background: #1ebe5b;
  border-color: #1ebe5b;
}
.contact-bento-email { grid-column: span 2; }
.contact-bento-ico {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gray-150);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--off-white);
  margin-bottom: 22px;
}
.contact-bento-wa .contact-bento-ico {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.contact-bento-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 10px;
}
.contact-bento-wa .contact-bento-tag { color: rgba(255,255,255,0.9); }
.contact-bento-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact-bento-wa h3 {
  font-size: 1.5rem;
  color: var(--white);
}
.contact-bento-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.contact-bento-wa p {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}
.contact-bento-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-bento-wa .contact-bento-value {
  color: var(--white);
  font-size: 1.4rem;
}

@media (max-width: 1024px) {
  .contact-bento { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 0; }
  .contact-bento-wa { grid-row: auto; }
  .contact-bento-email { grid-column: auto; }
}

/* ============== FOOTER F4 — Méga dark avec barre rouge live ============== */
.f4-strip {
  background: var(--red);
  padding: 14px 0;
  color: var(--white);
}
.f4-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.f4-strip-text {
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.04em;
}
.f4-strip-text::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.f4-strip-numbers {
  display: flex;
  gap: 22px;
  font-weight: 700;
  font-size: 0.92rem;
  flex-wrap: wrap;
}
.f4-strip-numbers a {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: opacity var(--t);
}
.f4-strip-numbers a:hover { opacity: 0.85; }

.f4 {
  background: #0a0a0a;
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.f4::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(207,46,46,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.f4-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.f4-about img {
  height: 38px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.f4-about > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 360px;
}
.f4-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}
.f4-rating-stars {
  color: #fbbf24;
  font-size: 0.96rem;
  letter-spacing: 1px;
}
.f4-rating-num {
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--white);
}
.f4-rating-num span {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  font-size: 0.86rem;
  margin-left: 4px;
}
.f4-col h4 {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.f4-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--red);
}
.f4-col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}
.f4-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.94rem;
  transition: all var(--t);
  display: inline-flex;
  align-items: center;
  position: relative;
}
.f4-col a:hover {
  color: var(--white);
  transform: translateX(3px);
}
.f4-col a::before {
  content: '→';
  color: var(--red);
  opacity: 0;
  position: absolute;
  left: -16px;
  transition: opacity var(--t);
}
.f4-col a:hover::before { opacity: 1; }
.f4-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  gap: 30px;
  flex-wrap: wrap;
}
.f4-bottom-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.f4-bottom-left span {
  color: rgba(255,255,255,0.4);
  font-size: 0.86rem;
}
.f4-bottom-cert {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7) !important;
}
.f4-bottom-cert svg { color: #22c55e; flex-shrink: 0; }
.f4-socials {
  display: flex;
  gap: 8px;
}
.f4-social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: all var(--t);
}
.f4-social:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .f4-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .f4-top { grid-template-columns: 1fr; }
}

/* ============== SERVICES S4 — Tabs + détail + comparatif ============== */
.s4-tabs { padding: 50px 0 22px; background: var(--white); border-bottom: 1px solid var(--gray-150); position: sticky; top: 0; z-index: 50; }
.s4-tabs-wrap { position: relative; }
.s4-tabs-wrap::before, .s4-tabs-wrap::after { content: ''; position: absolute; top: 0; bottom: 4px; width: 60px; pointer-events: none; transition: opacity 0.2s ease; z-index: 1; }
.s4-tabs-wrap::before { left: 0; background: linear-gradient(to left, rgba(255,255,255,0) 0%, var(--white) 60%); opacity: 0; }
.s4-tabs-wrap::after { right: 0; background: linear-gradient(to right, rgba(255,255,255,0) 0%, var(--white) 60%); opacity: 1; }
.s4-tabs-wrap.at-end::after { opacity: 0; }
.s4-tabs-wrap.at-start::before { opacity: 0; }
.s4-tabs-wrap:not(.at-start)::before { opacity: 1; }
.s4-tabs-hint { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; background: var(--ink); color: var(--white); border: 0; border-radius: 50%; display: grid; place-items: center; cursor: pointer; z-index: 3; box-shadow: 0 4px 12px -4px rgba(0,0,0,0.2); transition: opacity 0.2s ease, background 0.2s ease; padding: 0; }
.s4-tabs-hint:hover { background: var(--red); }
.s4-tabs-hint-prev { left: 8px; }
.s4-tabs-hint-next { right: 8px; animation: s4-hint-bounce 1.6s ease-in-out infinite; }
.s4-tabs-wrap.at-end .s4-tabs-hint-next { opacity: 0; pointer-events: none; }
.s4-tabs-wrap.at-start .s4-tabs-hint-prev { opacity: 0; pointer-events: none; }
@keyframes s4-hint-bounce { 0%, 100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(4px); } }
.s4-tabs-row { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
.s4-tabs-row::-webkit-scrollbar { display: none; }
.s4-tab { flex-shrink: 0; padding: 13px 22px; background: transparent; border: 1px solid var(--gray-200); border-radius: 6px; font-family: inherit; font-weight: 700; font-size: 0.92rem; color: var(--gray-700); cursor: pointer; transition: all var(--t); display: inline-flex; align-items: center; gap: 8px; scroll-snap-align: center; }
.s4-tab:hover { border-color: var(--ink); color: var(--ink); }
.s4-tab.active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.s4-tab-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.s4-tab.active .s4-tab-dot { background: var(--white); }

.s4-detail { padding: 70px 0; background: var(--white); }
.s4-panel { display: none; }
.s4-panel.active { display: block; animation: s4-fadeIn 0.4s ease; }
@keyframes s4-fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.s4-detail-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: stretch; }
.s4-detail-img { min-height: 380px; border-radius: 8px; background-size: cover; background-position: center; position: relative; overflow: hidden; border: 1px solid var(--gray-150); }
.s4-detail-badge { position: absolute; top: 20px; left: 20px; background: var(--white); padding: 10px 16px; border-radius: 6px; font-size: 0.78rem; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.s4-detail-badge::before { content: ''; width: 8px; height: 8px; background: #22c55e; border-radius: 50%; }
.s4-detail-content h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px; color: var(--ink); }
.s4-detail-content > p { color: var(--gray-600); font-size: 1.02rem; line-height: 1.65; margin-bottom: 28px; }
.s4-subtabs { display: flex; gap: 4px; padding: 4px; background: var(--off-white); border-radius: 6px; margin-bottom: 22px; }
.s4-subtab { flex: 1; padding: 10px 14px; background: transparent; border: 0; font-family: inherit; font-weight: 700; font-size: 0.86rem; color: var(--gray-600); border-radius: 8px; cursor: pointer; transition: all var(--t); }
.s4-subtab.active { background: var(--white); color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.s4-subpanel { display: none; padding: 6px 0; }
.s4-subpanel.active { display: block; }
.s4-subpanel ul { list-style: none; padding: 0; display: grid; gap: 11px; margin: 0 0 24px; }
.s4-subpanel li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; color: var(--gray-700); line-height: 1.5; }
.s4-subpanel li svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.s4-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px; background: var(--off-white); border-radius: 6px; margin-bottom: 24px; }
.s4-quick-item h5 { font-size: 0.7rem; font-weight: 800; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 5px; }
.s4-quick-item p { font-size: 0.96rem; font-weight: 700; color: var(--ink); margin: 0; line-height: 1.4; }
.s4-detail-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.s4-cta-primary { flex: 1; min-width: 180px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; background: var(--ink); color: var(--white); border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 0.94rem; transition: all var(--t); }
.s4-cta-primary:hover { background: var(--red); transform: translateY(-1px); }
.s4-cta-wa { flex: 1; min-width: 180px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; background: #25D366; color: var(--white); border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 0.94rem; transition: all var(--t); }
.s4-cta-wa:hover { background: #1ebe5b; transform: translateY(-1px); }

.s4-compare { padding: 70px 0; background: var(--off-white); }
.s4-compare-head { margin-bottom: 32px; }
.s4-compare-head .eyebrow { color: var(--red); }
.s4-compare-head h2 { font-size: clamp(1.8rem, 2.6vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 10px; }
.s4-compare-head p { color: var(--gray-600); max-width: 600px; font-size: 1rem; line-height: 1.6; }
.s4-compare-table { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--gray-150); }
.s4-compare-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; padding: 18px 24px; border-bottom: 1px solid var(--gray-100); align-items: center; font-size: 0.94rem; }
.s4-compare-vs .s4-compare-axion-head { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.s4-compare-vs .s4-compare-axion { background: rgba(34, 197, 94, 0.06); position: relative; }
.s4-compare-vs .s4-compare-row > .s4-compare-axion { box-shadow: inset 3px 0 0 #22c55e, inset -3px 0 0 #22c55e; }
.s4-compare-vs .s4-compare-cell-text { font-size: 0.88rem; color: var(--gray-500); }
.s4-compare-vs .s4-compare-axion.s4-compare-cell-text { color: var(--ink); font-weight: 700; }
.s4-compare-row:last-child { border-bottom: 0; }
.s4-compare-row.head { background: var(--ink); color: var(--white); font-weight: 800; font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; }
.s4-compare-row.head > div:not(:first-child) { text-align: center; }
.s4-compare-row > div { text-align: center; }
.s4-compare-row > div:first-child { text-align: left; }
.s4-compare-row strong { font-weight: 700; color: var(--ink); }
.s4-compare-row .s4-check { color: #22c55e; }
.s4-compare-row .s4-cross { color: var(--gray-300); }
.s4-compare-row.head .badge-popular { display: inline-block; background: var(--red); color: var(--white); padding: 3px 8px; border-radius: 6px; font-size: 0.65rem; margin-left: 6px; }

@media (max-width: 1024px) {
  .s4-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .s4-tabs { position: static; }
}
@media (max-width: 640px) {
  .s4-quick { grid-template-columns: 1fr; }
  .s4-compare-row { grid-template-columns: 1.5fr 1fr; }
  .s4-compare-row.head > div:nth-child(3), .s4-compare-row.head > div:nth-child(4),
  .s4-compare-row > div:nth-child(3), .s4-compare-row > div:nth-child(4) { display: none; }
}

/* ============== Comparatif V2 — deux cartes face à face ============== */
.s4-vs2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.s4-vs2-card { border-radius: 18px; padding: 36px 32px; border: 1px solid var(--gray-200); }
.s4-vs2-card.axion { border: 2px solid var(--red); background: linear-gradient(180deg, var(--red-50), var(--white)); box-shadow: 0 18px 50px rgba(207,46,46,0.13); position: relative; }
.s4-vs2-card.other { background: var(--off-white); }
.s4-vs2-tag { position: absolute; top: -13px; left: 32px; background: var(--red); color: var(--white); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em; padding: 6px 14px; border-radius: 20px; text-transform: uppercase; }
.s4-vs2-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; color: var(--ink); }
.s4-vs2-card .s4-vs2-sub { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 24px; }
.s4-vs2-card.axion .s4-vs2-sub { color: var(--red-dark); }
.s4-vs2-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.s4-vs2-list li { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.93rem; font-weight: 600; }
.s4-vs2-list li:last-child { border-bottom: 0; }
.s4-vs2-card.axion .s4-vs2-list li { color: var(--ink); }
.s4-vs2-card.other .s4-vs2-list li { color: var(--gray-500); font-weight: 500; }
.s4-vs2-yes { width: 24px; height: 24px; border-radius: 50%; background: #16a34a; color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.s4-vs2-no { width: 24px; height: 24px; border-radius: 50%; background: var(--gray-200); color: var(--gray-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.s4-vs2-yes svg, .s4-vs2-no svg { width: 14px; height: 14px; }
.s4-vs2-val { margin-left: auto; font-size: 0.8rem; font-weight: 700; color: #16a34a; text-align: right; }
.s4-vs2-card.other .s4-vs2-val { color: var(--gray-400); }
@media (max-width: 720px) {
  .s4-vs2-grid { grid-template-columns: 1fr; gap: 30px; }
  .s4-vs2-card { padding: 30px 22px; }
}

/* ============== Méthode 5 étapes (remplace compare) ============== */
.method5 { padding: 80px 0; background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.method5::before { content: ''; position: absolute; top: -120px; right: -120px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(207,46,46,0.14) 0%, transparent 70%); pointer-events: none; }
.method5-head { position: relative; margin-bottom: 40px; max-width: 700px; }
.method5-head .eyebrow { color: var(--red); }
.method5-head h2 { color: var(--white); font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 12px; line-height: 1.1; }
.method5-head p { color: rgba(255,255,255,0.65); font-size: 1.02rem; line-height: 1.65; }
.method5-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.method5-grid::before { content: ''; position: absolute; left: 32px; right: 32px; top: 32px; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(207,46,46,0.4) 20%, rgba(207,46,46,0.4) 80%, transparent 100%); }
.method5-step { position: relative; padding: 28px 22px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; transition: transform var(--t), border-color var(--t); }
.method5-step:hover { transform: translateY(-4px); border-color: rgba(207,46,46,0.3); }
.method5-step-num { width: 44px; height: 44px; background: var(--ink); border: 2px solid var(--red); color: var(--white); border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 0.94rem; margin-bottom: 18px; position: relative; z-index: 2; }
.method5-step h4 { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.15; }
.method5-step p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.55; margin: 0; }
.method5-step-meta { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; padding: 5px 10px; background: rgba(207,46,46,0.12); border-radius: 6px; font-size: 0.72rem; font-weight: 700; color: var(--red); letter-spacing: 0.04em; }
.method5-step.featured { background: var(--red); border-color: var(--red); }
.method5-step.featured .method5-step-num { background: var(--white); color: var(--red); border-color: var(--white); }
.method5-step.featured h4 { color: var(--white); }
.method5-step.featured p { color: rgba(255,255,255,0.85); }
.method5-step.featured .method5-step-meta { background: rgba(255,255,255,0.18); color: var(--white); }

@media (max-width: 1024px) {
  .method5-grid { grid-template-columns: 1fr 1fr; }
  .method5-grid::before { display: none; }
}
@media (max-width: 600px) {
  .method5-grid { grid-template-columns: 1fr; }
}

/* ============== Topbar pill "Professionnel" ============== */
.topbar-pro {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--t);
  margin-left: 14px;
}
.topbar-pro:hover {
  background: #a82424;
  transform: translateY(-1px);
}
.topbar-pro svg { transition: transform var(--t); }
.topbar-pro:hover svg { transform: translateX(2px); }

/* ============== PAGE PROFESSIONNEL ============== */
.pro-hero { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); color: var(--white); padding: 80px 0; position: relative; overflow: hidden; }
.pro-hero-bg { position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80&auto=format&fit=crop'); background-size: cover; background-position: center; opacity: 0.18; }
.pro-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 70px; align-items: center; }
.pro-hero-left .eyebrow { color: var(--red); display: inline-flex; }
.pro-hero-left .eyebrow::before { background: var(--red); }
.pro-hero-tag { display: inline-flex; align-items: center; gap: 10px; background: rgba(207,46,46,0.12); border: 1px solid rgba(207,46,46,0.25); padding: 7px 14px; border-radius: 6px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; color: var(--red); margin-bottom: 18px; }
.pro-hero-tag::before { content: ''; width: 7px; height: 7px; background: var(--red); border-radius: 50%; }
.pro-hero h1 { color: var(--white); font-size: clamp(2.2rem, 3.8vw, 3.2rem); line-height: 1.05; margin: 14px 0 18px; font-weight: 800; letter-spacing: -0.025em; }
.pro-hero-left > p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.65; margin-bottom: 28px; max-width: 540px; }
.pro-hero-stats { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.pro-hero-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.pro-hero-stat strong em { color: var(--red); font-style: normal; }
.pro-hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.pro-hero-card { background: var(--white); color: var(--ink); border-radius: 8px; padding: 32px; box-shadow: 0 40px 100px -30px rgba(0,0,0,0.5); }
.pro-hero-card-head h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.pro-hero-card-head p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 20px; }
.pro-hero-checks { list-style: none; padding: 0; display: grid; gap: 11px; margin-bottom: 22px; }
.pro-hero-checks li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.94rem; color: var(--gray-700); line-height: 1.45; }
.pro-hero-checks li svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.pro-hero-card-cta { display: flex; flex-direction: column; gap: 10px; }
.pro-hero-card-cta a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 0.94rem; transition: all var(--t); }
.pro-hero-card-cta a.primary { background: var(--ink); color: var(--white); }
.pro-hero-card-cta a.primary:hover { background: var(--red); }
.pro-hero-card-cta a.secondary { background: transparent; color: var(--ink); border: 1px solid var(--gray-200); }
.pro-hero-card-cta a.secondary:hover { border-color: var(--ink); }

.pro-features { padding: 80px 0; background: var(--white); }
.pro-features-head { max-width: 720px; margin-bottom: 40px; }
.pro-features-head .eyebrow { color: var(--red); }
.pro-features-head h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; margin: 12px 0; line-height: 1.1; }
.pro-features-head p { color: var(--gray-600); font-size: 1rem; line-height: 1.65; }
.pro-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pro-feature { padding: 28px; border: 1px solid var(--gray-150); border-radius: 8px; transition: all var(--t); background: var(--white); }
.pro-feature:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 16px 40px -16px rgba(0,0,0,0.1); }
.pro-feature-ico { width: 48px; height: 48px; background: var(--off-white); border: 1px solid var(--gray-150); border-radius: 8px; display: grid; place-items: center; color: var(--red); margin-bottom: 18px; }
.pro-feature h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.pro-feature.featured { grid-column: 1 / -1; background: linear-gradient(135deg, #16a34a 0%, #0e7c39 100%); border-color: #16a34a; color: var(--white); display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; padding: 32px 36px; }
.pro-feature.featured:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -16px rgba(22,163,74,0.4); }
.pro-feature.featured .pro-feature-ico { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); color: var(--white); margin-bottom: 0; width: 64px; height: 64px; }
.pro-feature.featured h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 6px; }
.pro-feature.featured p { color: rgba(255,255,255,0.9); max-width: 640px; font-size: 0.96rem; }
.pro-feature-points { display: flex; gap: 22px; flex-wrap: wrap; }
.pro-feature-points span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 700; color: var(--white); }
.pro-feature-points svg { color: var(--white); }
.pro-feature p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.55; }

.pro-portal { padding: 80px 0; background: var(--off-white); }
.pro-portal-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.pro-portal-left .eyebrow { color: var(--red); }
.pro-portal-left h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 16px; line-height: 1.1; }
.pro-portal-left > p { color: var(--gray-600); font-size: 1rem; line-height: 1.65; margin-bottom: 26px; }
.pro-portal-features { list-style: none; padding: 0; display: grid; gap: 10px; margin-bottom: 20px; }
.pro-portal-features li { display: flex; gap: 10px; align-items: flex-start; }
.pro-portal-features li > .ico { width: 22px; height: 22px; background: transparent; border: 0; border-radius: 0; display: grid; place-items: center; color: var(--red); flex-shrink: 0; margin-top: 1px; }
.pro-portal-features li > .ico svg { width: 14px; height: 14px; }
.pro-portal-features li strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 1px; font-size: 0.86rem; }
.pro-portal-features li span { color: var(--gray-600); font-size: 0.8rem; line-height: 1.45; }

.pro-mock { background: #f1f3f5; border: 1px solid #e5e7eb; border-radius: 12px; padding: 22px; color: var(--ink); box-shadow: 0 16px 40px -20px rgba(0,0,0,0.12); }
.pro-mock-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid #e5e7eb; }
.pro-mock-title { font-size: 0.92rem; font-weight: 800; color: var(--ink); }
.pro-mock-dots { display: flex; gap: 5px; }
.pro-mock-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; }
.pro-mock-tabs { display: flex; gap: 0; margin-bottom: 14px; border-bottom: 1px solid #e5e7eb; }
.pro-mock-tab { padding: 9px 14px; font-size: 0.82rem; font-weight: 600; color: var(--gray-600); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.pro-mock-tab.active { color: var(--red); border-bottom-color: var(--red); font-weight: 700; }
.pro-mock-list { display: grid; gap: 8px; }
.pro-mock-item { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; padding: 14px 14px; background: var(--white); border: 1px solid #e5e7eb; border-radius: 8px; font-size: 0.86rem; }
.pro-mock-item strong { color: var(--ink); font-weight: 800; font-size: 0.86rem; }
.pro-mock-item .pro-mock-date { font-size: 0.74rem; color: var(--gray-500); }
.pro-mock-item .pro-mock-status { padding: 5px 9px; border-radius: 4px; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.06em; }
.pro-mock-item .pro-mock-status.done { background: #ecfdf5; color: #047857; }
.pro-mock-item .pro-mock-status.scheduled { background: #fffbeb; color: #92400e; }
.pro-mock-item .pro-mock-status.pending { background: #fef2f2; color: #b91c1c; }
.pro-mock-item svg { color: var(--gray-400); }

.pro-sectors { padding: 80px 0; background: var(--white); }
.pro-sectors-head { max-width: 720px; margin-bottom: 30px; }
.pro-sectors-head .eyebrow { color: var(--red); }
.pro-sectors-head h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; margin: 12px 0; line-height: 1.1; }
.pro-sectors-head p { color: var(--gray-600); font-size: 1rem; line-height: 1.65; }
.pro-sectors-tabs { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 24px; scrollbar-width: none; }
.pro-sectors-tabs::-webkit-scrollbar { display: none; }
.pro-sector-tab { flex-shrink: 0; padding: 12px 20px; background: transparent; border: 1px solid var(--gray-200); border-radius: 6px; font-family: inherit; font-weight: 700; font-size: 0.88rem; color: var(--gray-700); cursor: pointer; transition: all var(--t); display: inline-flex; align-items: center; gap: 8px; }
.pro-sector-tab:hover { border-color: var(--ink); color: var(--ink); }
.pro-sector-tab.active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.pro-sector-tab-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.pro-sector-tab.active .pro-sector-tab-dot { background: var(--white); }

.pro-sector-panel { display: none; }
.pro-sector-panel.active { display: block; animation: s4-fadeIn 0.4s ease; }
.pro-sector-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: stretch; padding-top: 24px; }
.pro-sector-img { min-height: 100%; background-size: cover; background-position: center; border-radius: 10px; position: relative; align-self: stretch; }
.pro-sector-img-badge { position: absolute; top: 18px; left: 18px; background: var(--white); padding: 8px 14px; border-radius: 6px; font-size: 0.74rem; font-weight: 700; color: var(--ink); }
.pro-sector-content h3 { font-size: clamp(1.4rem, 2.2vw, 1.7rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.01em; }
.pro-sector-content > p { color: var(--gray-600); font-size: 0.98rem; line-height: 1.65; margin-bottom: 22px; }
.pro-sector-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.pro-sector-col h4 { font-size: 0.74rem; font-weight: 800; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.pro-sector-col ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.pro-sector-col li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--gray-700); line-height: 1.5; }
.pro-sector-col li svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.pro-sector-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 18px; background: var(--off-white); border-radius: 8px; }
.pro-sector-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.pro-sector-stat strong em { color: var(--red); font-style: normal; }
.pro-sector-stat span { font-size: 0.78rem; color: var(--gray-500); }

.pro-cta { padding: 70px 0; background: linear-gradient(135deg, var(--ink) 0%, #0a0a0a 100%); color: var(--white); }
.pro-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.pro-cta h2 { color: var(--white); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 8px; }
.pro-cta > .pro-cta-inner > div p { color: rgba(255,255,255,0.65); font-size: 0.96rem; line-height: 1.6; }
.pro-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pro-cta-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 24px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 0.96rem; transition: all var(--t); }
.pro-cta-btn.primary { background: var(--red); color: var(--white); }
.pro-cta-btn.primary:hover { background: #a82424; }
.pro-cta-btn.secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.pro-cta-btn.secondary:hover { background: rgba(255,255,255,0.05); }

@media (max-width: 1024px) {
  .pro-hero-inner, .pro-portal-grid, .pro-sector-grid, .pro-cta-inner { grid-template-columns: 1fr; gap: 30px; }
  .pro-sector-img { min-height: 240px; }
  .pro-features-grid { grid-template-columns: 1fr 1fr; }
  .pro-sector-cols { grid-template-columns: 1fr; }
  .pro-hero-stats { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 600px) {
  .pro-features-grid { grid-template-columns: 1fr; }
  .pro-sector-stats { grid-template-columns: 1fr; }
}

/* ============== Pro · Préparation de logement ============== */
.pro-prep { padding: 80px 0; background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.pro-prep::before { display: none; }
.pro-prep-grid { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: stretch; }
.pro-prep-photo { min-height: 100%; background-size: cover; background-position: center; border-radius: 10px; position: relative; align-self: stretch; }
.pro-prep-photo-tag { position: absolute; top: 18px; left: 18px; background: var(--white); padding: 8px 14px; border-radius: 6px; font-size: 0.74rem; font-weight: 700; color: var(--ink); }
.pro-prep-content .eyebrow { color: var(--red); }
.pro-prep-content h2 { color: var(--white); font-size: clamp(1.8rem, 2.8vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 16px; line-height: 1.1; }
.pro-prep-content > p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.65; margin-bottom: 24px; max-width: 580px; }
.pro-prep-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.pro-prep-case { padding: 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; transition: border-color var(--t); }
.pro-prep-case:hover { border-color: rgba(207,46,46,0.3); }
.pro-prep-case-ico { width: 40px; height: 40px; background: rgba(207,46,46,0.15); color: var(--red); border-radius: 8px; display: grid; place-items: center; margin-bottom: 12px; }
.pro-prep-case h4 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--white); letter-spacing: -0.01em; }
.pro-prep-case p { font-size: 0.86rem; color: rgba(255,255,255,0.6); line-height: 1.5; margin: 0; }
.pro-prep-actions { padding: 22px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; }
.pro-prep-actions h5 { font-size: 0.74rem; font-weight: 800; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.pro-prep-actions ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.pro-prep-actions li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.45; }
.pro-prep-actions li svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }

@media (max-width: 1024px) {
  .pro-prep-grid { grid-template-columns: 1fr; gap: 30px; }
  .pro-prep-cases { grid-template-columns: 1fr; }
  .pro-prep-actions ul { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* ============== MOBILE OPTIMIZATIONS GLOBAL ================= */
/* ============================================================ */

@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  section { padding: 60px 0; }

  /* Topbar — cacher items secondaires sur tablet */
  .topbar-items .topbar-item:nth-child(n+3) { display: none; }
  .topbar-status { font-size: 0.66rem; }

  /* Pro page grids */
  .pro-hero-inner { gap: 40px; }
  .pro-features-grid { grid-template-columns: 1fr 1fr; }
  .pro-feature.featured { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .pro-portal-grid { grid-template-columns: 1fr; gap: 32px; }
  .pro-prep-grid { grid-template-columns: 1fr; gap: 24px; }
  .pro-prep-photo { min-height: 280px; }
  .pro-cta-inner { grid-template-columns: 1fr; gap: 24px; text-align: left; }

  /* Services compare table */
  .s4-compare-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; padding: 14px 18px; font-size: 0.84rem; }
}

@media (max-width: 768px) {
  /* ---------- Topbar mobile ---------- */
  .topbar { padding: 6px 0; font-size: 0.7rem; }
  .topbar-inner { gap: 8px; flex-wrap: nowrap; }
  .topbar-items { display: none; }
  .topbar-right { flex: 1; justify-content: space-between; width: 100%; gap: 10px; }
  .topbar-status { display: inline-flex; order: 2; font-size: 0.62rem; letter-spacing: 0.06em; }
  .topbar-pro { order: 1; margin-left: 0; padding: 4px 10px; font-size: 0.66rem; }

  /* ---------- Navbar mobile ---------- */
  .navbar { padding: 12px 0; top: 32px; }
  .nav-links { display: none !important; }
  .nav-actions { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; background: var(--ink); color: var(--white); border: 0; border-radius: 6px; width: 40px; height: 40px; cursor: pointer; }
  .menu-toggle span { display: block; width: 18px; height: 2px; background: var(--white); position: relative; }
  .menu-toggle span::before, .menu-toggle span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--white); }
  .menu-toggle span::before { top: -6px; }
  .menu-toggle span::after { top: 6px; }
  body.nav-open { overflow: hidden; }
  .logo-img { height: 36px !important; max-width: 140px; }

  /* ---------- Section padding ---------- */
  section { padding: 50px 0; }

  /* ---------- Hero général ---------- */
  .hero { padding: 60px 0 50px; min-height: auto; }
  .hero h1, .pro-hero h1, .cf-hero h1, .page-hero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; line-height: 1.1; }
  .hero-sub, .pro-hero-left > p, .cf-hero-left > p, .page-hero p { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; gap: 12px; align-items: stretch; }
  .hero-actions > a { width: 100%; justify-content: center; }

  /* ---------- Tous les split grids 50/50 stack ---------- */
  .pro-hero-inner, .pro-portal-grid, .pro-sector-grid, .pro-cta-inner,
  .cf-hero-inner, .cf-zones-grid, .cf-info-grid, .cf-faq-grid,
  .s4-detail-grid, .about-grid, .commit-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* ---------- Grilles cards : passer en 1 col ---------- */
  .pro-features-grid, .pro-prep-cases { grid-template-columns: 1fr !important; }
  .pro-prep-actions ul { grid-template-columns: 1fr !important; }
  .stats-row { grid-template-columns: 1fr 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }

  /* ---------- Pro hero stats responsive ---------- */
  .pro-hero-stats { flex-wrap: wrap; gap: 18px; }
  .pro-hero-stat { flex: 1 1 calc(50% - 18px); }

  /* ---------- Footer F4 ---------- */
  .f4-top { grid-template-columns: 1fr 1fr; gap: 26px; }
  .f4-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .f4-strip-inner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 4px 0; }
  .f4-strip-numbers { gap: 14px; font-size: 0.82rem; }
  .f4 { padding: 50px 0 24px; }
  .f4 .container, .f4-strip .container { padding-left: 24px; padding-right: 24px; }
  .f4-strip-inner { padding-left: 0; padding-right: 0; }

  /* ---------- Services / S4 tabs ---------- */
  .s4-tabs { padding: 22px 0 14px; }
  .s4-tabs-row { flex-wrap: wrap; overflow-x: visible; gap: 8px; }
  .s4-tab { flex: 1 1 auto; justify-content: center; padding: 10px 14px; font-size: 0.82rem; scroll-snap-align: none; }
  .s4-tabs-hint, .s4-tabs-wrap::before, .s4-tabs-wrap::after { display: none; }
  .s4-detail { padding: 40px 0; }
  .s4-detail-img { min-height: 0; aspect-ratio: 4/3; }
  .s4-detail-content h2 { font-size: 1.6rem; }
  .s4-quick { grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; }
  .s4-quick-item h5 { font-size: 0.62rem; }
  .s4-quick-item p { font-size: 0.86rem; }
  .s4-cta-primary, .s4-cta-wa { min-width: unset; }

  /* ---------- Compare table ---------- */
  .s4-compare-table { font-size: 0.82rem; }
  .s4-compare-row { padding: 12px 14px; }
  .s4-compare-row.head { font-size: 0.7rem; }
  .badge-popular { display: none; }

  /* ---------- Méthode 5 ---------- */
  .method5-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .method5-grid::before { display: none; }
  .method5-step { padding: 20px; }

  /* ---------- Trust band ---------- */
  .trust-inner { flex-direction: column; gap: 20px; }
  .trust-divider { display: none; }

  /* ---------- CTA bannieres ---------- */
  .cta-banner-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cf-banner-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cf-banner-cta { width: 100%; justify-content: center; }
  .pro-cta-actions { width: 100%; }
  .pro-cta-btn { flex: 1; justify-content: center; }

  /* ---------- Hero cards card ---------- */
  .pro-hero-card, .cf-hero-card { padding: 24px; }
  .cf-quick { padding: 12px 14px; gap: 10px; }
  .cf-quick-text strong { font-size: 0.84rem; }

  /* ---------- Method/process timelines horizontal lines off ---------- */
  .pro-portal-features { gap: 14px; }

  /* ---------- Section heads alignement ---------- */
  .section-head-two { grid-template-columns: 1fr !important; gap: 14px; }
}

@media (max-width: 480px) {
  /* Topbar — masquer aussi le numéro principal, garder juste Pro pill */
  .topbar-items { display: none; }
  .topbar-inner { justify-content: flex-end; padding: 2px 0; }

  /* Stack le footer en 1 col */
  .f4-top { grid-template-columns: 1fr; gap: 22px; }
  .f4-strip-text { font-size: 0.78rem; }

  /* Hero stats en 1 col */
  .pro-hero-stat { flex: 1 1 100%; }
  .stats-row { grid-template-columns: 1fr !important; }

  /* Cards CTAs en colonne */
  .pro-hero-card-cta { flex-direction: column; }
  .s4-detail-cta { flex-direction: column; }
  .cf-faq-help { display: block; text-align: center; }

  /* Section padding encore plus réduit */
  section { padding: 40px 0; }
  .container { padding: 0 16px; }
}

/* ============================================================ */
/* ============== ARTICLES BLOG (Nuisiblog) — PRO ============== */
/* ============================================================ */
.article-hero { padding: 60px 0 30px; background: var(--white); border-bottom: 1px solid var(--gray-150); }
.article-hero .container { max-width: 1100px; }
.article-hero .breadcrumb { margin-bottom: 20px; font-size: 0.82rem; color: var(--gray-500); }
.article-hero .breadcrumb a { color: var(--gray-500); text-decoration: none; }
.article-hero .breadcrumb a:hover { color: var(--red); }
.article-category { display: inline-block; padding: 4px 10px; background: var(--ink); color: var(--white); border-radius: 3px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.article-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; max-width: 820px; }
.article-intro { font-size: 1.08rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 22px; max-width: 760px; }
.article-meta { display: flex; gap: 22px; align-items: center; color: var(--gray-500); font-size: 0.82rem; padding-top: 18px; border-top: 1px solid var(--gray-150); }
.article-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.article-meta-item svg { color: var(--gray-400); }

.article-cover { aspect-ratio: 16/7; background-size: cover; background-position: center; border-radius: 3px; margin: 24px auto 0; max-width: 1100px; }

/* Layout 2 colonnes : prose + sidebar sticky */
.article-body { padding: 36px 0 80px; background: var(--white); }
.article-body .container { max-width: 1100px; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; }
.article-prose { max-width: none; color: var(--gray-700); font-size: 1.02rem; line-height: 1.75; }
.article-prose h2 { margin: 40px 0 14px; font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; padding-top: 6px; }
.article-prose h2:first-child { margin-top: 0; padding-top: 0; }
.article-prose h3 { margin: 26px 0 10px; font-size: 1.12rem; font-weight: 800; color: var(--ink); }
.article-prose p { margin: 12px 0; }
.article-prose ul, .article-prose ol { margin: 12px 0; padding-left: 22px; }
.article-prose li { margin: 6px 0; }
.article-prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.article-prose strong { color: var(--ink); font-weight: 700; }
.article-callout { background: transparent; border-left: 3px solid var(--red); padding: 4px 0 4px 18px; margin: 24px 0; border-radius: 0; }
.article-callout strong { display: block; color: var(--ink); margin-bottom: 4px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.article-callout p { margin: 0 !important; color: var(--gray-700); font-size: 0.96rem; }
.article-prose details { background: var(--white); border: 1px solid var(--gray-150); border-radius: 3px; padding: 14px 18px; margin: 8px 0; }
.article-prose details summary { font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 0.96rem; }
.article-prose details summary::-webkit-details-marker { display: none; }
.article-prose details summary::after { content: '+'; font-size: 1.3rem; color: var(--gray-400); font-weight: 400; transition: transform var(--t); }
.article-prose details[open] summary::after { content: '−'; color: var(--red); }
.article-prose details[open] summary { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-150); }
.article-prose details p { font-size: 0.94rem; color: var(--gray-600); margin: 0; }

.article-cta-box { background: var(--ink); color: var(--white); border-radius: 4px; padding: 24px; margin: 32px 0; }
.article-cta-box h4 { color: var(--white); font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.01em; }
.article-cta-box > p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.5; }
.article-cta-box-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.article-cta-box-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 3px; font-weight: 700; text-decoration: none; font-size: 0.88rem; transition: all var(--t); }
.article-cta-box-btn.primary { background: var(--red); color: var(--white); }
.article-cta-box-btn.primary:hover { background: #a82424; }
.article-cta-box-btn.secondary { background: #25D366; color: var(--white); }
.article-cta-box-btn.secondary:hover { background: #1ebe5b; }

/* ====== SIDEBAR Expert + TOC ====== */
.article-sidebar { position: sticky; top: 100px; align-self: start; display: grid; gap: 18px; }
.article-expert { background: var(--white); border: 1px solid var(--gray-150); border-radius: 4px; padding: 22px; }
.article-expert-head { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); }
.article-expert-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: top center; background: var(--off-white); flex-shrink: 0; }
.article-expert-info { flex: 1; }
.article-expert-info strong { display: block; font-size: 0.94rem; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.article-expert-info .status { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; color: #16a34a; font-weight: 700; }
.article-expert-info .status::before { content: ''; width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: pulse 1.5s infinite; }
.article-expert-info p { font-size: 0.74rem; color: var(--gray-500); margin: 4px 0 0; }
.article-expert h4 { color: var(--ink); font-size: 0.94rem; font-weight: 800; margin-bottom: 14px; }
.article-expert-actions { display: grid; gap: 6px; }
.article-expert-btn { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 3px; font-weight: 700; font-size: 0.86rem; text-decoration: none; transition: all var(--t); }
.article-expert-btn.wa { background: rgba(37,211,102,0.1); color: #1ebe5b; }
.article-expert-btn.wa:hover { background: #25D366; color: var(--white); }
.article-expert-btn.call { background: rgba(207,46,46,0.1); color: var(--red); }
.article-expert-btn.call:hover { background: var(--red); color: var(--white); }
.article-expert-btn.email { background: var(--off-white); color: var(--ink); }
.article-expert-btn.email:hover { background: var(--ink); color: var(--white); }
.article-expert-rating { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-100); display: flex; align-items: center; gap: 8px; }
.article-expert-rating .stars { color: #fbbf24; letter-spacing: 1px; font-size: 0.86rem; }
.article-expert-rating strong { font-size: 0.82rem; color: var(--ink); font-weight: 700; }
.article-expert-rating span { font-size: 0.76rem; color: var(--gray-500); }

.article-toc { background: var(--white); border: 1px solid var(--gray-150); border-radius: 4px; padding: 18px 20px; }
.article-toc h5 { font-size: 0.7rem; font-weight: 800; color: var(--gray-500); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.article-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; display: grid; gap: 8px; }
.article-toc li { counter-increment: toc; }
.article-toc li a { font-size: 0.86rem; color: var(--gray-700); text-decoration: none; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; transition: color var(--t); }
.article-toc li a::before { content: counter(toc, decimal-leading-zero); color: var(--red); font-weight: 800; font-size: 0.72rem; flex-shrink: 0; padding-top: 1px; }
.article-toc li a:hover { color: var(--red); }

.article-related { padding: 60px 0; background: var(--off-white); border-top: 1px solid var(--gray-150); }
.article-related .container { max-width: 1100px; }
.article-related h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 18px; letter-spacing: -0.01em; }
.article-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.article-related-card { background: var(--white); border: 1px solid var(--gray-150); border-radius: 4px; padding: 22px; text-decoration: none; transition: all var(--t); }
.article-related-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.article-related-card .article-category { font-size: 0.66rem; margin-bottom: 10px; padding: 3px 8px; }
.article-related-card h4 { color: var(--ink); font-weight: 800; font-size: 1rem; line-height: 1.3; margin-bottom: 6px; }
.article-related-card p { font-size: 0.86rem; color: var(--gray-600); line-height: 1.5; margin: 0; }

@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-sidebar { position: static; max-width: 480px; }
}
@media (max-width: 768px) {
  .article-related-grid { grid-template-columns: 1fr; }
  .article-meta { flex-wrap: wrap; gap: 12px; }
  .article-prose { font-size: 0.96rem; }
  .article-hero { padding: 40px 0 24px; }
  .article-expert-photo { aspect-ratio: 16/10; }
}

/* ============================================================ */
/* ============== POPUP PROMO (Marc · -30% SAVE30) ============= */
/* ============================================================ */
.promo-pill {
  position: fixed; bottom: 20px; right: 20px;
  width: 320px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 20px 60px -16px rgba(0,0,0,0.18);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.promo-pill.visible { transform: translateY(0); opacity: 1; }
.promo-pill.hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
.promo-pill.collapsed .promo-pill-body { display: none; }
.promo-pill.collapsed .promo-pill-chevron { transform: rotate(180deg); }

.promo-pill-head {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: var(--ink); color: var(--white);
  cursor: pointer;
  position: relative;
  user-select: none;
}
.promo-pill-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  background: var(--off-white);
  border: 2px solid var(--red);
  flex-shrink: 0;
}
.promo-pill-avatar-dot {
  position: absolute; left: 32px; top: 28px;
  width: 8px; height: 8px;
  background: #22c55e;
  border: 2px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
}
.promo-pill-head strong {
  flex: 1; font-size: 0.84rem; font-weight: 800;
  margin-left: 6px;
}
.promo-pill-chevron {
  color: rgba(255,255,255,0.5);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.promo-pill-body { padding: 18px; }
.promo-pill-body-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 10px; margin-bottom: 6px;
}
.promo-pill-body h4 {
  font-size: 0.96rem; font-weight: 800;
  color: var(--ink); line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.promo-pill-close {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: var(--off-white);
  border: 0;
  display: grid; place-items: center;
  cursor: pointer; color: var(--gray-500);
  flex-shrink: 0;
  transition: all 0.2s;
}
.promo-pill-close:hover { background: var(--ink); color: var(--white); }
.promo-pill-from {
  font-size: 0.76rem; color: var(--gray-500);
  margin-bottom: 12px;
}
.promo-pill-from strong { color: var(--ink); font-weight: 700; }
.promo-pill-msg {
  background: var(--off-white); padding: 12px 14px;
  border-radius: 4px;
  border-top-left-radius: 0;
  font-size: 0.84rem; color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 14px;
}
.promo-pill-msg strong {
  background: var(--white); color: var(--red);
  padding: 1px 6px; border-radius: 3px;
  font-family: 'SF Mono', Consolas, monospace;
  font-weight: 800;
  border: 1px solid rgba(207,46,46,0.2);
}
.promo-pill-actions {
  display: grid; grid-template-columns: 1fr auto;
  gap: 6px;
}
.promo-pill-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--red); color: var(--white);
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700; font-size: 0.84rem;
  transition: background 0.2s;
}
.promo-pill-btn:hover { background: #a82424; }
.promo-pill-wa {
  display: grid; place-items: center;
  width: 40px;
  background: #25D366; color: var(--white);
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}
.promo-pill-wa:hover { background: #1ebe5b; }

@media (max-width: 480px) {
  .promo-pill { width: calc(100% - 20px); right: 10px; bottom: 10px; }
}

/* ============== Section contact home (C3 — banner + 3 cols) ============== */
.contact-home { padding: 70px 24px; background: var(--white); }
.contact-home-inner { max-width: 1200px; margin: 0 auto; border: 1px solid var(--gray-150); border-radius: 10px; overflow: hidden; }
.contact-home-banner { aspect-ratio: 16/5; min-height: 240px; background-size: cover; background-position: center; position: relative; }
.contact-home-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%); }
.contact-home-banner-text { position: absolute; bottom: 32px; left: 32px; color: var(--white); z-index: 2; max-width: 700px; }
.contact-home-banner-text .eyebrow { color: var(--red); display: inline-flex; }
.contact-home-banner-text .eyebrow::before { background: var(--red); }
.contact-home-banner-text h2 { color: var(--white); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-top: 10px; }
.contact-home-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.contact-home-col { padding: 36px 32px; border-right: 1px solid var(--gray-150); }
.contact-home-col:last-child { border-right: 0; }
.contact-home-col-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.contact-home-col-ico { width: 30px; height: 30px; background: var(--off-white); border-radius: 4px; display: grid; place-items: center; color: var(--red); flex-shrink: 0; }
.contact-home-col h4 { font-size: 0.72rem; font-weight: 800; color: var(--ink); letter-spacing: 0.1em; text-transform: uppercase; margin: 0; }
.contact-home-col p { font-size: 0.94rem; color: var(--gray-700); line-height: 1.55; margin: 5px 0; }
.contact-home-col p strong { color: var(--ink); font-weight: 700; }
.contact-home-col a { color: inherit; text-decoration: none; transition: color var(--t); }
.contact-home-col a:hover { color: var(--red); }
.contact-home-col-sub { font-size: 0.84rem; color: var(--gray-500); }
.contact-home-pulse { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; color: #16a34a; font-weight: 700; margin-top: 10px; }
.contact-home-pulse::before { content: ''; width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: pulse 1.5s infinite; }

@media (max-width: 1024px) {
  .contact-home-cols { grid-template-columns: 1fr; }
  .contact-home-col { border-right: 0; border-bottom: 1px solid var(--gray-150); padding: 28px 24px; }
  .contact-home-col:last-child { border-bottom: 0; }
}
@media (max-width: 768px) {
  .contact-home { padding: 48px 16px; }
  .contact-home-banner { aspect-ratio: 16/8; min-height: 200px; }
  .contact-home-banner-text { left: 20px; bottom: 20px; }
}

/* ============== Mobile drawer M3 (cards iconisées + featured) ============== */
.mobile-drawer { position: fixed; inset: 0; background: #fafafa; z-index: 999; display: flex; flex-direction: column; padding: 16px 16px 18px; opacity: 0; transform: translateY(8px); transition: opacity 0.22s ease, transform 0.22s ease; overflow-y: auto; }
.mobile-drawer.open { opacity: 1; transform: translateY(0); }
.md-top { display: flex; justify-content: space-between; align-items: center; padding: 4px 4px 14px; }
.md-logo img { height: 32px; }
.md-close { background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; width: 40px; height: 40px; display: grid; place-items: center; color: var(--ink); cursor: pointer; padding: 0; }
.md-title { padding: 0 4px 14px; }
.md-title small { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--red); text-transform: uppercase; }
.md-title h2 { font-size: 1.3rem; font-weight: 800; margin-top: 6px; line-height: 1.2; letter-spacing: -0.02em; }
.md-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; align-content: start; }
.md-card { background: var(--white); border: 1px solid #ececec; border-radius: 10px; padding: 14px; display: flex; flex-direction: column; gap: 10px; min-height: 100px; text-decoration: none; color: var(--ink); }
.md-card h4 { font-size: 0.96rem; font-weight: 800; letter-spacing: -0.01em; }
.md-card p { font-size: 0.72rem; color: var(--gray-500); margin-top: 2px; }
.md-card-ico { width: 36px; height: 36px; background: #f3f4f6; border-radius: 8px; display: grid; place-items: center; color: var(--red); flex-shrink: 0; }
.md-card.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.md-card.active p { color: rgba(255,255,255,0.7); }
.md-card.active .md-card-ico { background: rgba(255,255,255,0.15); color: var(--white); }
.md-card.md-featured { grid-column: span 2; background: linear-gradient(135deg, #cf2e2e, #a02020); color: var(--white); border-color: transparent; min-height: 80px; flex-direction: row; align-items: center; justify-content: space-between; }
.md-card.md-featured h4 { font-size: 1rem; color: var(--white); }
.md-card.md-featured p { color: rgba(255,255,255,0.85); }
.md-card.md-wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 14px; min-height: 72px; }
.md-card.md-featured .md-card-ico { background: rgba(255,255,255,0.18); color: var(--white); }
.md-bottom { margin-top: 14px; display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; }
.md-call { background: var(--ink); color: var(--white); padding: 14px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }
.md-wa { background: #25D366; color: var(--white); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; text-decoration: none; }

/* ============== Pro features F2 — Bento mosaic ============== */
.pf2-bento { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.pf2-cell { background: var(--white); border: 1px solid var(--gray-150); border-radius: 12px; padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: all var(--t); }
.pf2-cell:hover { border-color: var(--ink); transform: translateY(-2px); }
.pf2-cell-ico { width: 44px; height: 44px; background: #fff4f4; border-radius: 8px; display: grid; place-items: center; color: var(--red); flex-shrink: 0; }
.pf2-cell h3 { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.pf2-cell p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.55; }
.pf2-cell.pf2-tall { grid-row: span 2; background: var(--ink); color: var(--white); border-color: var(--ink); justify-content: space-between; }
.pf2-cell.pf2-tall:hover { transform: translateY(-2px); border-color: var(--ink); }
.pf2-cell.pf2-tall .pf2-cell-ico { background: rgba(255,255,255,0.1); color: var(--white); }
.pf2-cell.pf2-tall p { color: rgba(255,255,255,0.75); }
.pf2-stat { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.pf2-stat-sub { font-size: 0.86rem; color: rgba(255,255,255,0.7); margin-top: 6px; }
.pf2-econ { grid-column: span 3; background: linear-gradient(135deg, #16a34a, #14532d); color: var(--white); padding: 28px 32px; border-radius: 12px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.pf2-econ-left { flex: 1; min-width: 280px; }
.pf2-econ-left h3 { font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; gap: 12px; color: var(--white); }
.pf2-econ-dot { background: rgba(255,255,255,0.2); width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-size: 1rem; font-weight: 800; flex-shrink: 0; }
.pf2-econ-left p { font-size: 0.9rem; color: rgba(255,255,255,0.9); margin-top: 8px; line-height: 1.55; max-width: 580px; }
.pf2-econ-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pf2-econ-pill { background: rgba(255,255,255,0.15); padding: 9px 14px; border-radius: 30px; font-size: 0.82rem; font-weight: 700; backdrop-filter: blur(4px); }
@media (max-width: 1024px) {
  .pf2-bento { grid-template-columns: 1fr 1fr; }
  .pf2-cell.pf2-tall { grid-row: auto; grid-column: span 2; }
  .pf2-econ { grid-column: span 2; }
}
@media (max-width: 600px) {
  .pf2-bento { grid-template-columns: 1fr; }
  .pf2-cell.pf2-tall, .pf2-econ { grid-column: auto; }
  .pf2-cell { padding: 22px; }
  .pf2-stat { font-size: 2.2rem; }
  .pf2-econ { padding: 22px; }
  .pf2-econ-left h3 { font-size: 1.05rem; }
}
