/* ==========================================================================
   MPO RECYCLING — Stylesheet principal
   Site vitrine multipage — pièces auto & véhicules d'occasion
   Palette : bleu royal (Opisto-like), bleu marine, jaune MPO, vert éco
   Note : les variables --red* conservent leur nom historique mais
          contiennent désormais les valeurs BLEUES de la charte MPO.
   ========================================================================== */

/* ===== Variables ===== */
:root {
  /* Bleu brand MPO (dégradé ciel → océan) */
  --red: #0267bc;         /* Bleu brand principal — solide (fond/solid) */
  --red-dark: #014e93;    /* Bleu plus profond — hover */
  --red-light: #d1d6dd;   /* Gris clair — remplace le bleu ciel (demande client V2) */
  --brand-gradient: linear-gradient(to bottom, #d1d6dd 0%, #0267bc 100%);
  --brand-gradient-hover: linear-gradient(to bottom, #bcc2cb 0%, #014e93 100%);
  --brand-gradient-diag: linear-gradient(135deg, #d1d6dd 0%, #0267bc 100%);
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --gray-900: #222;
  --gray-700: #4a4a4a;
  --gray-500: #7a7a7a;
  --gray-300: #d1d1d1;
  --gray-100: #f5f5f5;
  --gray-50: #fafafa;
  --white: #ffffff;
  --green: #2caf3c;       /* Vert feuille logo MPO (recyclage) */
  --green-dark: #1f7a28;
  --yellow: #ffd500;      /* Jaune MPO (ovale du logo) */
  --yellow-dark: #e6c000;

  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 6px rgba(0,0,0,.06);
  --shadow: 0 8px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.15);

  --container: 1200px;
  --header-h: 84px;
  --transition: .3s cubic-bezier(.4,0,.2,1);

  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Inter', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: .9rem; }

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

/* ===== Utilitaires ===== */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.bg-dark { background: var(--black); color: var(--white); }
.bg-gray { background: var(--gray-100); }
.bg-red { background: var(--red); color: var(--white); }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.grid { display: grid; gap: 24px; }
.flex { display: flex; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px;
  border-radius: var(--radius); font-weight: 700; font-size: .95rem; text-transform: uppercase;
  letter-spacing: .03em; transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap; }
.btn-primary { background: #d1d6dd; color: var(--red-dark); box-shadow: 0 4px 14px rgba(0,0,0,.10); }
.btn-primary:hover { background: #bcc2cb; color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--gray-900); color: #fff; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-red { border: 2px solid var(--red); color: var(--red); background: transparent; }
.btn-outline-red:hover { background: var(--red); color: #fff; }
.btn-icon svg { width: 18px; height: 18px; }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title .eyebrow {
  display: inline-block; color: var(--red); font-size: .85rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 12px;
  position: relative; padding: 0 40px;
}
.section-title .eyebrow::before, .section-title .eyebrow::after {
  content: ''; position: absolute; top: 50%; width: 30px; height: 2px; background: var(--red);
}
.section-title .eyebrow::before { left: 0; }
.section-title .eyebrow::after { right: 0; }
.section-title p { color: var(--gray-700); max-width: 700px; margin: 12px auto 0; }

/* ===== Top bar ===== */
.topbar {
  background: var(--black); color: #fff; font-size: .85rem; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar .top-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .top-info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar .top-info svg { width: 14px; height: 14px; color: var(--red); }
.topbar .top-social a { color: rgba(255,255,255,.8); margin-left: 12px; display: inline-flex; }
.topbar .top-social a:hover { color: var(--red); }
.topbar .top-social svg { width: 16px; height: 16px; }

/* ===== Header ===== */
.header {
  background: var(--white); box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 100;
  transition: all var(--transition);
}
.header .container {
  display: flex; justify-content: space-between; align-items: center;
  min-height: var(--header-h); gap: 24px;
}
.logo { display: flex; align-items: center; gap: 14px; transition: transform .3s ease; }
.logo:hover { transform: scale(1.03); }
.logo img { height: 72px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,.08)); }
.logo-text { font-weight: 800; font-size: 1.35rem; color: var(--black); line-height: 1; }
.logo-text span { color: var(--red); display: block; font-size: .78rem; letter-spacing: .15em; font-weight: 600; margin-top: 4px; }

/* Header plus haut pour accommoder le logo agrandi */
:root { --header-h: 96px; }
.mobile-nav .mobile-logo img { height: 56px; }

/* ===== Navigation ===== */
.nav-list { display: flex; gap: 2px; align-items: center; flex-wrap: nowrap; }
.nav-list a {
  display: inline-block; padding: 8px 12px; color: var(--gray-900);
  font-weight: 600; font-size: .9rem; position: relative; border-radius: var(--radius);
  white-space: nowrap;
}
.nav-list a:hover, .nav-list a.active { color: var(--red); background: rgba(150,160,175,.10); }
.nav-list a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 12px; right: 12px; height: 3px;
  background: var(--red); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-actions .btn { padding: 9px 16px; font-size: .82rem; white-space: nowrap; }
.header .container { flex-wrap: nowrap; }

/* ===== Hamburger ===== */
.hamburger {
  display: none; width: 44px; height: 44px; border-radius: var(--radius);
  align-items: center; justify-content: center; background: var(--gray-100);
  z-index: 200;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--black);
  position: relative; transition: all var(--transition);
}
.hamburger span::before, .hamburger span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--black);
  transition: all var(--transition);
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger.active span { background: transparent; }
.hamburger.active span::before { transform: rotate(45deg); top: 0; }
.hamburger.active span::after { transform: rotate(-45deg); top: 0; }

/* ===== Menu mobile (ouverture droite -> gauche) ===== */
.mobile-nav {
  position: fixed; top: 0; right: 0; width: min(380px, 85vw); height: 100vh;
  background: var(--white); z-index: 150; padding: 100px 32px 40px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,.15); overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .mobile-logo { margin-bottom: 40px; display: flex; align-items: center; gap: 12px; }
.mobile-nav .mobile-logo img { height: 48px; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 40px; }
.mobile-nav ul a {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; font-size: 1.05rem;
  font-weight: 600; color: var(--black); border-radius: var(--radius);
  border-left: 3px solid transparent; transition: all var(--transition);
}
.mobile-nav ul a:hover, .mobile-nav ul a.active {
  background: var(--gray-100); color: var(--red); border-left-color: var(--red); padding-left: 22px;
}
.mobile-nav ul a svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-nav .mobile-ctas { display: flex; flex-direction: column; gap: 12px; }
.mobile-nav .mobile-ctas .btn { width: 100%; padding: 14px; }
.mobile-nav .mobile-contact {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--gray-300);
  font-size: .9rem; color: var(--gray-700);
}
.mobile-nav .mobile-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.mobile-nav .mobile-contact svg { width: 16px; height: 16px; color: var(--red); }

.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 120;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.overlay.active { opacity: 1; pointer-events: auto; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 640px; padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(10,20,35,.88) 0%, rgba(1,78,147,.70) 60%, rgba(2,103,188,.45) 100%),
    url('images/photos/equipe-camion-broyage.jpg') center/cover no-repeat,
    linear-gradient(135deg, #1a1a1a 0%, #014e93 100%);
  color: #fff; display: flex; align-items: center;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.hero-content .eyebrow {
  display: inline-block; background: var(--yellow); color: var(--red-dark);
  padding: 6px 14px; border-radius: 30px; font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-content h1 { color: #fff; margin-bottom: 20px; font-size: clamp(2.2rem, 5vw, 4rem); }
.hero-content h1 .red-word { color: var(--yellow); font-style: italic; }
.hero-content .lead { font-size: 1.15rem; color: rgba(255,255,255,.9); margin-bottom: 30px; max-width: 560px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats .stat .num { font-size: 2rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.hero-stats .stat .label { font-size: .85rem; color: rgba(255,255,255,.85); margin-top: 4px; }

/* Badge hexagonal "20+ années d'expérience" — rendu SVG pour éviter bug liseré */
.hero-badge {
  position: relative; width: 260px; height: 260px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; padding: 20px;
}
.hero-badge::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(1,78,147,.95), rgba(2,103,188,.95)),
    url('images/photos/grue-broyage-vhu.jpg') center/cover;
  background-blend-mode: multiply;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
}
.hero-badge::after {
  content: ''; position: absolute; inset: 0;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 260' fill='none'><polygon points='130,8 252,73 252,187 130,252 8,187 8,73' stroke='%23ffd500' stroke-width='3' stroke-dasharray='8 6' /></svg>") no-repeat center/100%;
  z-index: 1;
}
.hero-badge > * { position: relative; z-index: 2; }
.hero-badge .icon { width: 44px; height: 44px; color: var(--yellow); margin-bottom: 8px; }
.hero-badge .years { font-size: 3.2rem; font-weight: 900; line-height: 1; color: var(--yellow); text-shadow: 0 2px 10px rgba(0,0,0,.3); }
.hero-badge .label { font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; margin-top: 6px; font-weight: 600; color: #fff; }

/* Zones / délais — section couverture */
.delay-info { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 24px; }
.delay-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px; background: #fff; border-radius: var(--radius); border-left: 4px solid var(--red); box-shadow: var(--shadow-sm); }
.delay-item p { margin: 0; font-size: .92rem; color: var(--gray-700); }
.delay-item p strong { color: var(--black); }
.delay-badge { flex-shrink: 0; padding: 8px 14px; border-radius: 20px; font-size: .8rem; font-weight: 800; white-space: nowrap; letter-spacing: .02em; }
.delay-fast { background: var(--green); color: #fff; }
.delay-slow { background: var(--yellow); color: var(--red-dark); }
.delay-ship { background: var(--red); color: #fff; }

/* Avatars équipe (sans photo) */
.team-avatar { display: flex !important; align-items: center; justify-content: center; position: relative; }
.team-avatar::before {
  content: attr(data-initials); font-size: 4rem; font-weight: 900;
  font-family: var(--font); color: #fff;
  width: 100%; text-align: center;
}
.team-avatar[data-color="navy"] { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); }
.team-avatar[data-color="yellow"] { background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%); }
.team-avatar[data-color="yellow"]::before { color: var(--red-dark); }

/* ===== Bandeau défilant ===== */
.marquee {
  background: #d1d6dd; color: var(--red-dark); padding: 14px 0; overflow: hidden;
  border-top: 2px solid var(--black); border-bottom: 2px solid var(--black);
}
.marquee-track {
  display: flex; gap: 40px; animation: marquee 35s linear infinite;
  font-weight: 700; white-space: nowrap;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 14px; font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; }
.marquee-track .sep { color: rgba(0,0,0,.35); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Bandeau bénéfices ===== */
.benefits { padding: 40px 0; background: var(--gray-100); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.benefit {
  display: flex; align-items: center; gap: 16px; padding: 20px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.benefit .ico {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(150,160,175,.15); display: flex; align-items: center; justify-content: center;
}
.benefit .ico svg { width: 26px; height: 26px; color: var(--red); }
.benefit h4 { font-size: .95rem; margin-bottom: 2px; }
.benefit p { font-size: .82rem; color: var(--gray-700); margin: 0; }

/* ===== Savoir-faire ===== */
.process-title { text-align: center; margin-bottom: 40px; }
.process-title .eyebrow { color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .2em; font-size: .85rem; }
.process-title h2 { margin-top: 10px; }
.process-title h2 .outline {
  -webkit-text-stroke: 2px var(--black); color: transparent; font-style: italic;
}
.process-steps {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 50px;
}
.process-steps .step {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: #fff; border: 2px solid var(--gray-300);
  border-radius: 30px; font-weight: 700; color: var(--black);
}
.process-steps .step.active { background: var(--red); color: #fff; border-color: var(--red); }
.process-steps .arrow { color: var(--red); font-size: 1.5rem; font-weight: bold; }

.process-visual {
  background: linear-gradient(135deg, #0d2847 0%, #1a3f6b 100%);
  border-radius: var(--radius-lg); padding: 60px 40px; color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.process-visual::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1600&q=80') center/cover; opacity: .15;
}
.process-visual > * { position: relative; z-index: 1; }
.process-visual h3 { color: #fff; margin-bottom: 30px; font-size: 1.5rem; }
.process-flow {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 30px;
}
.process-flow .node {
  padding: 24px 12px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(45,164,78,.8), rgba(31,122,58,.9));
  font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .03em;
  display: flex; align-items: center; justify-content: center; text-align: center; min-height: 100px;
}
.process-visual .agr-label { font-size: .85rem; color: rgba(255,255,255,.75); }

/* ===== Catégories ===== */
.categories-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
.category {
  text-align: center; padding: 24px 12px; background: #fff; border-radius: var(--radius);
  border: 2px solid var(--gray-100); transition: all var(--transition); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-decoration: none;
}
.category:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
.category .cat-icon {
  width: 70px; height: 70px; border-radius: 50%; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.category:hover .cat-icon { background: var(--red); }
.category:hover .cat-icon svg { color: #fff; }
.category .cat-icon svg { width: 34px; height: 34px; color: var(--red); transition: color var(--transition); }
.category .cat-name { font-weight: 700; font-size: .92rem; color: var(--black); }

/* ===== Marques ===== */
.brands { background: var(--white); padding: 50px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.brands-title { text-align: center; margin-bottom: 30px; color: var(--gray-700); font-size: .9rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.brands-track-wrap { overflow: hidden; }
.brands-track { display: flex; gap: 60px; animation: marquee 30s linear infinite; align-items: center; }
.brand-item {
  flex: 0 0 auto; width: 140px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--gray-500); font-size: 1.4rem;
  letter-spacing: .05em; filter: grayscale(1); opacity: .7; transition: all var(--transition);
}
.brand-item:hover { filter: grayscale(0); opacity: 1; color: var(--black); }

/* ===== Équipe ===== */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.team-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid var(--gray-100);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card .photo {
  aspect-ratio: 1 / 1; position: relative; overflow: hidden;
  background-size: cover; background-position: center top;
}
.team-card .photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.75));
}
.team-card .role {
  position: absolute; bottom: 16px; left: 16px; z-index: 1;
  background: var(--red); color: #fff; padding: 4px 12px; border-radius: 30px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.team-card .body { padding: 20px 24px 24px; }
.team-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.team-card p { color: var(--gray-700); font-size: .92rem; margin: 0; }

/* ===== Stats ===== */
.stats {
  background: var(--black); color: #fff; padding: 70px 0;
  background-image:
    linear-gradient(135deg, rgba(13,13,13,.95), rgba(30,30,30,.92)),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=80');
  background-size: cover; background-position: center;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-grid .stat .icon {
  width: 70px; height: 70px; border-radius: 50%; background: rgba(150,160,175,.28);
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--red);
}
.stats-grid .stat .icon svg { width: 32px; height: 32px; color: var(--red-light); }
.stats-grid .num { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; }
.stats-grid .label { font-size: .95rem; color: rgba(255,255,255,.75); margin-top: 8px; letter-spacing: .05em; }

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, #014e93 0%, #0d2847 100%);
  color: #fff; padding: 70px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/photos/grue-broyage-vhu.jpg') center/cover;
  opacity: .12; mix-blend-mode: overlay;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 700px; margin: 0 auto 28px; }
.cta-banner .buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Couverture ===== */
.coverage { background: var(--gray-100); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.coverage-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 20px 0;
}
.coverage-list .dep {
  padding: 10px; background: #fff; border-radius: 8px; text-align: center;
  font-weight: 700; font-size: .9rem; color: var(--black);
  border: 2px solid var(--gray-300); transition: all var(--transition);
}
.coverage-list .dep:hover { border-color: var(--red); color: var(--red); }
.coverage-map {
  background: #fff; border-radius: var(--radius-lg); padding: 20px; text-align: center;
  box-shadow: var(--shadow); min-height: 560px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.coverage-map svg { width: 100%; height: auto; max-width: none; }
.coverage-grid { grid-template-columns: 1fr 1.3fr !important; gap: 40px; align-items: center; }
@media (max-width: 1024px) { .coverage-grid { grid-template-columns: 1fr !important; } .coverage-map { min-height: 480px; } }

/* ===== Carte interactive — vraie carte France + overlay dots ===== */
.france-map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 907 / 1000;   /* viewBox de l'image SVG Wikipedia */
  max-width: 560px;
  margin: 0 auto;
}
.france-bg {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  filter: saturate(.6);
}

/* Zone NE en overlay, stretched sur toute la carte */
.france-zone-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.france-zone-svg .zone-ne {
  fill: var(--red); fill-opacity: .18;
  stroke: var(--red); stroke-width: .5; stroke-dasharray: 1 .6;
  vector-effect: non-scaling-stroke;
  transition: fill-opacity .4s ease;
}
.france-map-wrap:hover .zone-ne { fill-opacity: .3; }

/* Dots départements — positionnés en % */
.dep-marker {
  position: absolute;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red); border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  transform: translate(-50%, -50%);
  cursor: pointer; z-index: 2;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.dep-marker:hover { background: var(--yellow); transform: translate(-50%, -50%) scale(1.7); z-index: 5; }
.dep-marker::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--red-dark); color: #fff;
  font-size: .78rem; font-weight: 700; white-space: nowrap;
  padding: 5px 10px; border-radius: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.dep-marker::before {
  content: ''; position: absolute;
  bottom: calc(100% + 2px); left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--red-dark);
  opacity: 0; transition: opacity .25s ease;
}
.dep-marker:hover::after, .dep-marker:hover::before { opacity: 1; }

/* Marqueur MPO Peltre (siège) */
.hq-marker {
  position: absolute; z-index: 4;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
}
.hq-pulse-dot {
  position: absolute; top: 50%; left: 50%;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--yellow);
  transform: translate(-50%, -50%);
  animation: hq-pulse 2.2s ease-out infinite;
  z-index: 1;
}
.hq-core-dot {
  position: absolute; top: 50%; left: 50%;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--red); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.hq-card {
  position: absolute; top: -10px; left: 14px;
  background: #fff; border: 2px solid var(--red);
  padding: 6px 12px; border-radius: 8px;
  white-space: nowrap; z-index: 3;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}
.hq-card strong { display: block; font-size: .85rem; color: var(--red-dark); line-height: 1.2; }
.hq-card small { display: block; font-size: .72rem; color: var(--gray-700); margin-top: 2px; }
@keyframes hq-pulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: .65; }
  80%  { transform: translate(-50%, -50%) scale(3);   opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(3);   opacity: 0; }
}

/* Légende sous la carte */
.map-legend {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: .85rem; color: var(--gray-700);
  text-align: left;
}
.legend-row { display: flex; align-items: center; gap: 10px; }
.legend-swatch { flex-shrink: 0; width: 22px; height: 14px; border-radius: 3px; }
.legend-zone { background: rgba(150,160,175,.25); border: 1.5px dashed var(--red); }
.legend-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--red); border: 2px solid #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.legend-hq { width: 14px; height: 14px; border-radius: 50%; background: var(--red); border: 2.5px solid var(--yellow); box-shadow: 0 0 0 2px var(--red); }

@media (max-width: 640px) {
  .france-map-wrap { max-width: 100%; }
  .dep-marker { width: 11px; height: 11px; }
  .dep-marker::after { font-size: .7rem; padding: 4px 8px; }
  .hq-card strong { font-size: .75rem; }
  .hq-card small { font-size: .65rem; }
}

/* ===== Testimonials ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: #fff; border-radius: var(--radius-lg); padding: 30px;
  position: relative; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial::before {
  content: '"'; position: absolute; top: 10px; right: 20px;
  font-family: Georgia, serif; font-size: 6rem; color: var(--red); opacity: .2; line-height: 1;
}
.testimonial .stars { color: var(--yellow); margin-bottom: 12px; font-size: 1rem; letter-spacing: 2px; }
.testimonial p { color: var(--gray-700); margin-bottom: 20px; position: relative; z-index: 1; font-size: .95rem; }
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.testimonial .author-info strong { display: block; color: var(--black); font-size: .95rem; }
.testimonial .author-info small { color: var(--gray-500); font-size: .82rem; }

/* ===== Newsletter ===== */
.newsletter {
  background: var(--brand-gradient-diag); color: #fff; padding: 60px 0;
  position: relative; overflow: hidden;
}
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.newsletter h3 { color: #fff; margin-bottom: 10px; }
.newsletter p { color: rgba(255,255,255,.9); margin-bottom: 0; }
.newsletter-form {
  display: flex; gap: 10px; max-width: 500px; flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 14px 18px; border: none;
  border-radius: var(--radius); font-size: 1rem; font-family: inherit;
}
.newsletter-form button {
  background: var(--black); color: #fff; padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em; transition: all var(--transition);
}
.newsletter-form button:hover { background: var(--gray-900); transform: translateY(-2px); }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid var(--gray-100);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.service-card .img {
  height: 200px; background-size: cover; background-position: center; position: relative;
}
.service-card .img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7));
}
.service-card .body { padding: 24px 28px 28px; }
.service-card .icon-wrap {
  width: 50px; height: 50px; border-radius: 12px; background: rgba(150,160,175,.15);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.service-card .icon-wrap svg { width: 26px; height: 26px; color: var(--red); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray-700); margin-bottom: 16px; font-size: .95rem; }
.service-card a { font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; }
.service-card a::after { content: '→'; transition: transform var(--transition); }
.service-card a:hover::after { transform: translateX(4px); }

/* ===== Page hero ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(13,13,13,.9), rgba(2,103,188,.6)),
              url('https://images.unsplash.com/photo-1542282088-fe8426682b8f?w=1920&q=80') center/cover;
  color: #fff; padding: 120px 0 80px; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 700px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  display: flex; justify-content: center; gap: 10px; margin-bottom: 20px;
  font-size: .85rem; color: rgba(255,255,255,.7); flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.9); }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb .sep { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: var(--red-light); font-weight: 700; }

/* ===== Iframe ===== */
.iframe-wrap {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 20px; margin: 20px 0;
}
.iframe-wrap iframe { width: 100%; border-radius: var(--radius); display: block; border: 0; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--gray-700); margin-bottom: 30px; }
.info-item {
  display: flex; gap: 16px; margin-bottom: 24px; padding: 18px;
  background: var(--gray-100); border-radius: var(--radius); border-left: 4px solid var(--red);
}
.info-item .ico {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.info-item .ico svg { width: 22px; height: 22px; color: var(--red); }
.info-item strong { display: block; color: var(--black); margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--gray-700); font-size: .95rem; margin: 0; }
.info-item a:hover { color: var(--red); }

.contact-form {
  background: var(--red); color: #fff; border-radius: var(--radius-lg);
  padding: 40px; position: relative; box-shadow: var(--shadow-lg);
}
.contact-form h3 { color: #fff; margin-bottom: 20px; }
.contact-form .form-eyebrow {
  color: rgba(255,255,255,.9); font-size: .85rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px;
  display: inline-flex; align-items: center; gap: 10px;
}
.contact-form .form-eyebrow::before {
  content: ''; display: inline-block; width: 30px; height: 2px; background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 14px 16px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius);
  color: #fff; font-size: .95rem; font-family: inherit;
  transition: all var(--transition);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.7); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: #fff; background: rgba(255,255,255,.2);
}
.contact-form select option { color: var(--black); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; font-size: .85rem; }
.contact-form .form-check input { width: auto; margin-top: 3px; }
.contact-form button {
  background: var(--black); color: #fff; padding: 16px 36px;
  border-radius: var(--radius); font-weight: 700; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .05em; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 10px;
}
.contact-form button:hover { background: var(--gray-900); transform: translateY(-2px); }

.map-wrap { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius);
  margin-bottom: 14px; overflow: hidden; transition: all var(--transition);
}
.faq-item.open { border-color: var(--red); box-shadow: var(--shadow); }
.faq-question {
  padding: 22px 26px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 700; font-size: 1.02rem; color: var(--black);
  gap: 16px; width: 100%; text-align: left;
}
.faq-question:hover { color: var(--red); }
.faq-question .plus {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 400; transition: all var(--transition);
}
.faq-item.open .plus { background: var(--red); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 26px 22px; color: var(--gray-700); }

/* ===== Reprise ===== */
.repurchase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.repurchase-col {
  background: #fff; border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--red);
}
.repurchase-col h3 { margin-bottom: 20px; color: var(--black); display: flex; align-items: center; gap: 12px; }
.repurchase-col h3 .num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: .9rem;
}
.step-item {
  position: relative; padding-left: 30px; padding-bottom: 18px;
  border-left: 2px dashed var(--gray-300); margin-left: 14px;
}
.step-item:last-child { border-left: 2px dashed transparent; padding-bottom: 0; }
.step-item::before {
  content: attr(data-step); position: absolute; left: -17px; top: -5px; width: 32px; height: 32px;
  border-radius: 50%; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; border: 4px solid #fff;
}
.step-item h5 { font-size: 1rem; margin-bottom: 4px; color: var(--black); }
.step-item p { font-size: .9rem; color: var(--gray-700); margin: 0; }

/* ===== Partenaires ===== */
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.partners-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.partner {
  background: #fff; padding: 20px; border-radius: var(--radius);
  text-align: center; font-weight: 700; color: var(--gray-700);
  border: 2px solid var(--gray-100); transition: all var(--transition);
}
.partner:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }

/* ===== Legal ===== */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { margin-top: 40px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--red); }
.legal-content h3 { margin-top: 24px; margin-bottom: 10px; color: var(--red); }
.legal-content ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content p { color: var(--gray-700); }
.legal-content a { color: var(--red); font-weight: 600; }
.legal-toc {
  background: var(--gray-100); padding: 24px 30px; border-radius: var(--radius);
  margin-bottom: 40px; border-left: 4px solid var(--red);
}
.legal-toc h3 { margin-top: 0; margin-bottom: 14px; color: var(--black); }
.legal-toc ul { list-style: none; padding: 0; }
.legal-toc ul li { margin-bottom: 6px; }
.legal-toc ul li a { color: var(--gray-900); }
.legal-toc ul li a:hover { color: var(--red); }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 580px; margin: 0 auto; background: #fff;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 24px 28px; z-index: 500;
  transform: translateY(200%); transition: transform .5s ease;
  border: 1px solid var(--gray-100);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.cookie-banner h4 svg { color: var(--red); width: 22px; height: 22px; }
.cookie-banner p { font-size: .9rem; color: var(--gray-700); margin-bottom: 16px; }
.cookie-banner .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 10px 20px; font-size: .85rem; }

/* ===== Footer ===== */
.footer {
  background: var(--black); color: rgba(255,255,255,.75); padding: 70px 0 0;
  border-top: 4px solid var(--red);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px;
  margin-bottom: 40px;
}
.footer h4 { color: #fff; margin-bottom: 20px; font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); }
.footer .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer .footer-logo img { height: 54px; }
.footer .footer-logo span { font-weight: 800; color: #fff; font-size: 1.2rem; }
.footer-about p { font-size: .9rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all var(--transition);
}
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,.7); font-size: .92rem; display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition); }
.footer-links ul li a:hover { color: var(--red-light); padding-left: 4px; }
.footer-links ul li a::before { content: '›'; color: var(--red); font-weight: 700; }
.footer-contact p { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .9rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: var(--red-light); }
.footer-bottom {
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .85rem;
}
.footer-bottom .ofaweb { color: rgba(255,255,255,.7); }
.footer-bottom .ofaweb a { color: var(--red-light); font-weight: 700; }
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .legal-links a { color: rgba(255,255,255,.7); }
.footer-bottom .legal-links a:hover { color: var(--red-light); }

/* ===== Scroll to top ===== */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px;
  background: var(--red); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: all var(--transition); z-index: 90;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); color: #fff; }
.scroll-top svg { width: 22px; height: 22px; }

/* ===== Responsive ===== */
/* Écrans moyens : masquer le texte du logo pour gagner de la place */
@media (max-width: 1340px) {
  .logo-text { display: none; }
  .logo img { height: 64px; }
}

/* Écrans légèrement plus petits : menu mobile (hamburger) pour éviter wrap */
@media (max-width: 1200px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-desktop { display: none; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-badge { margin-top: 30px; }
  .hero-stats { justify-content: center; }
  .hero-content .lead { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .team-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .coverage-grid, .partners-grid, .newsletter-grid, .repurchase-grid { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 50px 0; }
  .hero { padding: 60px 0; min-height: auto; }
  .hero-stats { gap: 24px; }
  .hero-stats .stat .num { font-size: 1.5rem; }
  .benefits-grid, .stats-grid, .team-grid, .services-grid, .testimonials-grid, .coverage-list, .categories-grid, .partners-list { grid-template-columns: 1fr; }
  .coverage-list { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .topbar .top-info { font-size: .78rem; gap: 12px; }
  .topbar .top-social { display: none; }
  .logo-text { display: none; }
  .btn { padding: 12px 22px; font-size: .85rem; }
  .section-title { margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-flow { grid-template-columns: 1fr; }
  .process-visual { padding: 40px 24px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .page-hero { padding: 80px 0 60px; }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: all .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media print {
  .header, .footer, .cookie-banner, .scroll-top, .mobile-nav, .overlay { display: none; }
  a { color: var(--black); }
}
