/* ============================================================================
   BoostMyPresta — Components V9
   ----------------------------------------------------------------------------
   Composants : header, buttons, sections, hero, terminal, services, stack,
   testimonials carousel, agencies, pricing flash, maintenance, cta, footer
   ============================================================================ */

/* ============================================================================
   HEADER
   ============================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg-header, rgba(8, 8, 10, 0.78));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.site-header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--green); color: var(--on-green);
  border-radius: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 13px; letter-spacing: -0.05em;
  box-shadow: 0 0 16px var(--green-glow);
}
.logo-text { font-family: var(--font-sans); font-weight: 600; font-size: 16px; letter-spacing: -0.02em; color: var(--fg); }
.logo-text em { font-style: italic; font-weight: 500; color: var(--fg-soft); }
.logo-text .accent { color: var(--green); font-weight: 700; }

.nav-links { display: flex; gap: 2px; }
.nav-links a { padding: 7px 12px; font-size: 13.5px; font-weight: 400; color: var(--fg-muted); border-radius: var(--r-sm); transition: color 150ms var(--ease), background 150ms var(--ease); position: relative; }
.nav-links a:hover { color: var(--fg); background: var(--graphite); }
.nav-links a.active { color: var(--fg); }

/* Items visibles uniquement dans le drawer mobile */
.nav-mobile-only { display: none; }
.nav-bubble {
  position: absolute;
  top: -14px;
  right: -8px;
  background: var(--graphite-2);
  color: var(--green);
  border: 1px solid rgba(127, 238, 100, 0.30);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 2px 6px 2px 13px;
  border-radius: 8px;
  white-space: nowrap;
  line-height: 1.3;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.30);
  transition: transform 200ms var(--ease), border-color 200ms var(--ease);
  pointer-events: none;
}
.nav-links a:hover .nav-bubble {
  border-color: var(--green);
  transform: translateY(-1px);
}
.nav-bubble::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
  animation: nav-bubble-dot 2s ease-in-out infinite;
}
@keyframes nav-bubble-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(127, 238, 100, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(127, 238, 100, 0); }
}
@keyframes nav-bubble-pulse-legacy {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.lang-trigger {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px;
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted);
  border: 1px solid var(--line); border-radius: var(--r-sm);
}
.lang-trigger:hover { border-color: var(--line-2); color: var(--fg); }

/* Theme toggle + Bookmark */
.theme-toggle, .bookmark-toggle {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: transparent;
  transition: color 150ms var(--ease), border-color 150ms var(--ease), background 150ms var(--ease);
}
.theme-toggle:hover, .bookmark-toggle:hover {
  color: var(--fg); border-color: var(--line-2); background: var(--graphite);
}
.theme-toggle .theme-toggle-icon-sun { display: none; }
.theme-toggle .theme-toggle-icon-moon { display: block; }
[data-theme="light"] .theme-toggle .theme-toggle-icon-sun { display: block; }
[data-theme="light"] .theme-toggle .theme-toggle-icon-moon { display: none; }

/* ====== BOOKMARK BUTTON (favoris) ====== */
.bookmark-toggle { position: relative; transition: color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease); }
.bookmark-toggle:hover { color: var(--green); border-color: rgba(127, 238, 100, 0.30); }
.bookmark-toggle.is-active { color: var(--green); border-color: var(--green); background: var(--green-soft); }
.bookmark-toggle.is-active svg { fill: currentColor; }
.bookmark-toggle.is-pinged { animation: bookmark-ping 480ms var(--ease-out); }
@keyframes bookmark-ping {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.15); }
  70%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}
/* Hint subtil pour inciter au clic après scroll (1x par session) */
.bookmark-toggle.is-hinting::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid var(--green);
  opacity: 0;
  pointer-events: none;
  animation: bookmark-hint 1.6s ease-out 2;
}
@keyframes bookmark-hint {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}
.bookmark-toggle.is-hinting { animation: bookmark-hint-bob 1.6s ease-in-out 2; }
@keyframes bookmark-hint-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

.bookmark-tip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--graphite-3);
  color: var(--fg);
  border: 1px solid var(--line-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
  z-index: 100;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.bookmark-tip.is-visible { opacity: 1; transform: translateY(0); }
.bookmark-tip::before {
  content: "";
  position: absolute;
  top: -4px;
  right: 11px;
  width: 8px;
  height: 8px;
  background: var(--graphite-3);
  border-left: 1px solid var(--line-2);
  border-top: 1px solid var(--line-2);
  transform: rotate(45deg);
}

/* ====== SHARE MENU ====== */
.share-wrap { position: relative; display: inline-flex; }
.share-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--graphite);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 6px;
  box-shadow: var(--shadow-md);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top right;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}
.share-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.share-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--fg-soft);
  background: transparent;
  border: 0;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: background 120ms var(--ease), color 120ms var(--ease);
  position: relative;
}
.share-item:hover { background: var(--graphite-2); color: var(--fg); }
.share-item svg { flex-shrink: 0; opacity: 0.85; }
.share-item span { flex: 1; }
.share-item-feedback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease);
}
.share-item-feedback.is-visible { opacity: 1; }

/* ====== FOOTER CONTACT LIST ====== */
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13.5px;
  color: var(--fg-muted);
}
.footer-contact-list li a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 150ms var(--ease);
}
.footer-contact-list li a:hover { color: var(--green); }
.footer-contact-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--fg-faint);
}


.lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--graphite); border: 1px solid var(--line-2);
  border-radius: var(--r-sm); padding: 4px;
  display: none; flex-direction: column; min-width: 140px;
  box-shadow: var(--shadow-md); z-index: 100;
}
.lang-menu.is-open { display: flex; }
.lang-menu a { display: flex; align-items: center; gap: 8px; padding: 8px 10px; font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); border-radius: var(--r-xs); }
.lang-menu a:hover { background: var(--graphite-2); color: var(--fg); }
.lang-menu a.active { color: var(--green); }

.menu-toggle { display: none; padding: 6px 8px; color: var(--fg-muted); }
.menu-toggle:hover { color: var(--fg); }
.menu-toggle svg { width: 20px; height: 20px; }

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 18px; font-family: var(--font-sans);
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  border-radius: var(--r-md); border: 1px solid transparent;
  transition: all 150ms var(--ease);
  white-space: nowrap; cursor: pointer; user-select: none;
}
.btn-primary { background: var(--green); color: var(--on-green); font-weight: 600; }
.btn-primary:hover { background: var(--green-bright); box-shadow: var(--shadow-cta); transform: translateY(-1px); }

.btn-secondary { background: var(--graphite); color: var(--fg); border-color: var(--line-2); }
.btn-secondary:hover { background: var(--graphite-2); border-color: var(--line-3); }

.btn-ghost { background: transparent; color: var(--fg); }
.btn-ghost:hover { background: var(--graphite); }

.btn-on-yellow { background: var(--soft-lime-ink); color: var(--green); font-weight: 500; }
.btn-on-yellow:hover { transform: translateY(-1px); background: #0d1500; }

.btn-on-cream { background: var(--cream-ink); color: var(--cream); font-weight: 500; }
.btn-on-cream:hover { background: #0A0805; transform: translateY(-1px); }

.btn-arrow { display: inline-block; transition: transform 150ms var(--ease); }
.btn:hover .btn-arrow { transform: translateX(2px); }

.btn-lg { padding: 12px 22px; font-size: 14.5px; }
.btn-sm { padding: 7px 12px; font-size: 13px; }

/* ============================================================================
   SECTIONS COMMON
   ============================================================================ */
section { padding: 120px 0; position: relative; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--fg-muted); text-transform: uppercase;
  margin-bottom: 16px;
}
.kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.section-title {
  font-size: clamp(36px, 4.5vw, 56px); font-weight: 500;
  letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 18px;
}
.section-title .accent { color: var(--green); }

.section-lead {
  font-size: 17px; color: var(--fg-muted);
  max-width: 600px; line-height: 1.55;
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero { position: relative; padding: 88px 0 96px; background: var(--carbon); overflow: hidden; }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000, transparent 75%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px; font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--fg-muted); background: var(--graphite);
  border: 1px solid var(--line); border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 3px var(--green-soft);
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.hero h1 { font-size: clamp(44px, 5.5vw, 76px); font-weight: 500; letter-spacing: -0.04em; line-height: 1; margin-bottom: 24px; color: var(--fg); }
.hero h1 .muted { color: var(--fg-faint); }
.hero h1 .accent { color: var(--green); }

.hero-lead { font-size: 18px; line-height: 1.5; color: var(--fg-muted); max-width: 540px; margin-bottom: 32px; letter-spacing: -0.005em; }
.hero-ctas { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.02em; color: var(--fg-faint); }
.hero-trust-item strong { color: var(--fg); font-weight: 500; }

/* ============================================================================
   TERMINAL
   ============================================================================ */
.terminal {
  background: #0F0F12; border: 1px solid var(--line-2); border-radius: var(--r-lg);
  font-family: var(--font-mono); font-size: 12.5px; line-height: 1.7;
  overflow: hidden; position: relative; width: 100%;
  box-shadow: 0 0 0 1px rgba(127, 238, 100, 0.04), 0 32px 64px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}
.terminal-titlebar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: #08080A; border-bottom: 1px solid var(--line); }
.terminal-dot { width: 11px; height: 11px; border-radius: 50%; background: #3A3A3A; }
.terminal-title { margin-left: 8px; font-size: 11px; color: var(--fg-faint); flex: 1; }
.terminal-title strong { color: var(--fg-muted); font-weight: 500; }

.terminal-stack-icons { display: flex; gap: 6px; align-items: center; padding-left: 10px; border-left: 1px solid var(--line); }
.terminal-stack-icon {
  width: 18px; height: 18px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.04); padding: 2px;
  transition: all 150ms var(--ease);
}
.terminal-stack-icon:hover { background: rgba(255, 255, 255, 0.10); transform: translateY(-1px); }
.terminal-stack-icon svg { width: 100%; height: 100%; display: block; }

.terminal-body { padding: 18px 18px 16px; height: 340px; overflow: hidden; position: relative; }
.terminal-line { display: block; white-space: pre-wrap; margin-bottom: 2px; }
.term-prompt { color: var(--green); font-weight: 600; }
.term-cmd { color: var(--fg); }
.term-out { color: var(--fg-soft); }
.term-ok { color: var(--green); }
.term-dim { color: var(--fg-faint); }
.term-num { color: var(--green-bright); font-weight: 500; }
.term-str { color: #C5DEFF; }
.term-key { color: var(--green); }
.terminal-cursor::after { content: "▋"; color: var(--green); animation: blink 1.05s steps(2) infinite; margin-left: 1px; font-weight: 700; }
@keyframes blink { 50% { opacity: 0; } }
.terminal-status { display: flex; gap: 16px; padding: 9px 14px; background: #08080A; border-top: 1px solid var(--line); font-size: 11px; color: var(--fg-faint); }
.terminal-status .ok { color: var(--green); }

/* ============================================================================
   RATING STRIP — Codeur, Google, Malt + clients
   ============================================================================ */
.rating-strip { padding: 72px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--carbon); }
.rating-strip-inner { display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: flex-start; }
.rating-strip-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--fg-faint); text-transform: uppercase; margin-bottom: 14px; }
.rating-badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.rating-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--graphite); border: 1px solid var(--line); border-radius: var(--r-md); transition: all 150ms var(--ease); }
.rating-badge:hover { border-color: var(--green); transform: translateY(-1px); }
.rating-badge-icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 4px; overflow: hidden; }
.rating-badge-icon img, .rating-badge-icon svg { width: 100%; height: 100%; display: block; }
.rating-badge-icon.codeur { background: transparent; }
.rating-badge-icon.google { background: #FFF; padding: 3px; }
.rating-badge-text { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.rating-badge-name { font-size: 12px; font-weight: 500; color: var(--fg); letter-spacing: -0.005em; }
.rating-badge-rating { font-family: var(--font-mono); font-size: 11px; color: var(--green); letter-spacing: 0.02em; }

.clients-row { display: flex; flex-direction: column; gap: 14px; }
.clients-row-list { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; opacity: 0.55; }
.clients-row-item { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--fg-muted); letter-spacing: -0.02em; }

/* ============================================================================
   SERVICES — TOUS LES MOCKUPS COLORÉS
   ============================================================================ */
.services-section { padding: 120px 0; background: var(--carbon); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.svc-card { border-radius: var(--r-lg); overflow: hidden; transition: transform 320ms var(--ease), box-shadow 320ms var(--ease); display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18); }
.svc-card-mockup { aspect-ratio: 16 / 9; border-bottom: 1px solid rgba(0, 0, 0, 0.08); position: relative; overflow: hidden; }
.svc-card-content { padding: 22px 24px 24px; }
.svc-card-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; display: inline-block; font-weight: 500; }
.svc-card-title { font-size: 17px; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 6px; color: inherit; }
.svc-card h3, .svc-card h2, .svc-card h4 { color: inherit; }
.svc-card-desc { font-size: 13.5px; line-height: 1.55; }

/* Variants couleur — texte = noir transparent qui s'adapte automatiquement à la teinte de fond */
.svc-card.bg-cream { background: var(--cream); color: rgba(0, 0, 0, 0.88); }
.svc-card.bg-cream .svc-card-mockup { background: rgba(0, 0, 0, 0.04); }
.svc-card.bg-cream .svc-card-tag { color: rgba(0, 0, 0, 0.55); }
.svc-card.bg-cream .svc-card-desc { color: rgba(0, 0, 0, 0.70); }

.svc-card.bg-blue { background: var(--pastel-blue); color: rgba(0, 0, 0, 0.88); }
.svc-card.bg-blue .svc-card-mockup { background: rgba(0, 0, 0, 0.05); }
.svc-card.bg-blue .svc-card-tag { color: rgba(0, 0, 0, 0.55); }
.svc-card.bg-blue .svc-card-desc { color: rgba(0, 0, 0, 0.70); }

.svc-card.bg-pink { background: var(--pastel-pink); color: rgba(0, 0, 0, 0.88); }
.svc-card.bg-pink .svc-card-mockup { background: rgba(0, 0, 0, 0.05); }
.svc-card.bg-pink .svc-card-tag { color: rgba(0, 0, 0, 0.55); }
.svc-card.bg-pink .svc-card-desc { color: rgba(0, 0, 0, 0.70); }

.svc-card.bg-mint { background: var(--ice-mint); color: rgba(0, 0, 0, 0.88); }
.svc-card.bg-mint .svc-card-mockup { background: rgba(0, 0, 0, 0.04); }
.svc-card.bg-mint .svc-card-tag { color: rgba(0, 0, 0, 0.55); }
.svc-card.bg-mint .svc-card-desc { color: rgba(0, 0, 0, 0.70); }

.svc-card.bg-sage { background: var(--sage); color: rgba(0, 0, 0, 0.88); }
.svc-card.bg-sage .svc-card-mockup { background: rgba(0, 0, 0, 0.04); }
.svc-card.bg-sage .svc-card-tag { color: rgba(0, 0, 0, 0.55); }
.svc-card.bg-sage .svc-card-desc { color: rgba(0, 0, 0, 0.70); }

.svc-card.bg-yellow { background: var(--neon-yellow); color: rgba(0, 0, 0, 0.88); }
.svc-card.bg-yellow .svc-card-mockup { background: rgba(0, 0, 0, 0.05); }
.svc-card.bg-yellow .svc-card-tag { color: rgba(0, 0, 0, 0.55); }
.svc-card.bg-yellow .svc-card-desc { color: rgba(0, 0, 0, 0.70); }

/* MOCKUPS (à l'intérieur des cards services) */
.mk-presta { display: grid; grid-template-columns: 48px 1fr; height: 100%; }
.mk-presta-side { padding: 14px 6px; display: flex; flex-direction: column; gap: 5px; background: rgba(0, 0, 0, 0.06); }
.mk-presta-icon { height: 14px; border-radius: 2px; background: rgba(0, 0, 0, 0.10); }
.mk-presta-icon.active { background: rgba(0, 0, 0, 0.55); }
.mk-presta-main { padding: 12px 14px; flex: 1; }
.mk-presta-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.mk-presta-title { font-family: var(--font-sans); font-size: 11px; font-weight: 500; }
.mk-presta-search { width: 60px; height: 14px; border-radius: 3px; background: rgba(0, 0, 0, 0.08); }
.mk-presta-row { display: grid; grid-template-columns: 14px 1fr 36px 28px; gap: 6px; align-items: center; padding: 5px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.mk-presta-row:last-child { border-bottom: none; }
.mk-presta-img { width: 14px; height: 14px; border-radius: 2px; background: rgba(0, 0, 0, 0.18); }
.mk-presta-name { height: 5px; border-radius: 1px; background: rgba(0, 0, 0, 0.18); }
.mk-presta-name.short { width: 60%; }
.mk-presta-price { height: 5px; border-radius: 1px; background: rgba(0, 0, 0, 0.55); }
.mk-presta-status { height: 8px; border-radius: 6px; background: rgba(0, 0, 0, 0.12); border: 1px solid rgba(0, 0, 0, 0.20); }

.mk-sales { padding: 14px; height: 100%; }
.mk-sales-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.mk-sales-label { font-family: var(--font-mono); font-size: 9px; opacity: 0.55; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.mk-sales-value { font-family: var(--font-sans); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.mk-sales-delta { display: inline-flex; align-items: center; gap: 3px; font-family: var(--font-mono); font-size: 10px; font-weight: 500; margin-top: 4px; }
.mk-sales-period { font-family: var(--font-mono); font-size: 9px; opacity: 0.5; letter-spacing: 0.04em; }
.mk-sales-graph { height: 80px; position: relative; margin-top: 8px; }
.mk-sales-graph svg { width: 100%; height: 100%; }

.mk-code { height: 100%; display: flex; flex-direction: column; background: #0E0E12; font-family: var(--font-mono); font-size: 10px; }
.mk-code-tabs { display: flex; gap: 1px; background: #08080A; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.mk-code-tab { padding: 6px 10px; font-size: 9px; color: #5C5C66; background: #0A0A0C; }
.mk-code-tab.active { color: #FAFAFA; background: #0E0E12; border-top: 1px solid #7FEE64; }
.mk-code-code { padding: 12px 14px; flex: 1; display: grid; grid-template-columns: auto 1fr; gap: 0 14px; align-content: start; }
.mk-code-ln { color: #5C5C66; text-align: right; font-size: 9.5px; line-height: 1.7; }
.mk-code-line { line-height: 1.7; color: #FAFAFA; }
.mk-code-key { color: #FF7B9C; }
.mk-code-fn { color: #7FEE64; }
.mk-code-str { color: #C5DEFF; }
.mk-code-com { color: #5C5C66; }
.mk-code-var { color: #FFD479; }

.mk-lh { padding: 14px 18px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.mk-lh-head { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.mk-lh-icon { width: 14px; height: 14px; background: currentColor; border-radius: 50%; position: relative; opacity: 0.7; }
.mk-lh-icon::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; }
.svc-card.bg-cream .mk-lh-icon::after { background: var(--cream); }
.svc-card.bg-blue .mk-lh-icon::after { background: var(--pastel-blue); }
.svc-card.bg-pink .mk-lh-icon::after { background: var(--pastel-pink); }
.svc-card.bg-mint .mk-lh-icon::after { background: var(--ice-mint); }
.svc-card.bg-sage .mk-lh-icon::after { background: var(--sage); }
.svc-card.bg-yellow .mk-lh-icon::after { background: var(--neon-yellow); }
.mk-lh-title { font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.02em; opacity: 0.75; }
.mk-lh-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mk-lh-gauge { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mk-lh-circle { width: 48px; height: 48px; border-radius: 50%; border: 3px solid; display: flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-size: 14px; font-weight: 500; letter-spacing: -0.02em; }
.svc-card.bg-cream .mk-lh-circle { color: #1A6E2A; border-color: #1A6E2A; }
.svc-card.bg-blue .mk-lh-circle { color: #1A4FA0; border-color: #1A4FA0; }
.svc-card.bg-pink .mk-lh-circle { color: #9F1A4F; border-color: #9F1A4F; }
.svc-card.bg-mint .mk-lh-circle { color: #0A6E5C; border-color: #0A6E5C; }
.svc-card.bg-sage .mk-lh-circle { color: #3A6E1A; border-color: #3A6E1A; }
.svc-card.bg-yellow .mk-lh-circle { color: #1A6E2A; border-color: #1A6E2A; }
.mk-lh-label { font-family: var(--font-mono); font-size: 8px; opacity: 0.6; letter-spacing: 0.04em; text-transform: uppercase; }

.mk-sec { padding: 14px; height: 100%; font-family: var(--font-mono); font-size: 10px; }
.mk-sec-status { display: flex; align-items: center; gap: 8px; padding: 6px 10px; background: rgba(0, 0, 0, 0.08); border: 1px solid rgba(0, 0, 0, 0.18); border-radius: 4px; margin-bottom: 10px; }
.mk-sec-pulse { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: secpulse 2s infinite; }
@keyframes secpulse { 70% { box-shadow: 0 0 0 6px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.mk-sec-status-text { font-size: 10px; font-weight: 500; }
.mk-sec-events { display: flex; flex-direction: column; gap: 5px; }
.mk-sec-event { display: grid; grid-template-columns: 46px 12px 1fr; gap: 8px; align-items: center; padding: 3px 0; }
.mk-sec-time { font-size: 9px; opacity: 0.55; }
.mk-sec-tag { width: 8px; height: 8px; border-radius: 1px; background: currentColor; opacity: 0.85; }
.mk-sec-tag.warn { background: #D97706; }
.mk-sec-event-text { font-size: 9.5px; }
.mk-sec-event-text .em { opacity: 0.55; }

.mk-mig { padding: 14px; height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; }
.mk-mig-block { padding: 12px 8px; background: rgba(0, 0, 0, 0.06); border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 6px; text-align: center; }
.mk-mig-block.after { background: rgba(0, 0, 0, 0.85); color: var(--green); border-color: var(--green); }
.mk-mig-version { font-family: var(--font-mono); font-size: 9px; opacity: 0.55; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }
.mk-mig-block.after .mk-mig-version { color: var(--green); opacity: 1; }
.mk-mig-name { font-family: var(--font-sans); font-size: 12px; font-weight: 500; letter-spacing: -0.015em; }
.mk-mig-block.after .mk-mig-name { color: #FFF; }
.mk-mig-meta { font-family: var(--font-mono); font-size: 9px; opacity: 0.55; margin-top: 4px; }
.mk-mig-block.after .mk-mig-meta { color: rgba(255, 255, 255, 0.65); opacity: 1; }
.mk-mig-arrow { display: flex; align-items: center; opacity: 0.7; }

/* ============================================================================
   STACK HORIZONTAL — fond crème
   ============================================================================ */
.stack-section { background: var(--cream); color: rgba(0, 0, 0, 0.88); padding: 120px 0; }
.stack-section .kicker { color: rgba(0, 0, 0, 0.5); }
.stack-section .kicker .kicker-dot { background: rgba(0, 0, 0, 0.85); }
.stack-section .section-title { color: rgba(0, 0, 0, 0.88); font-weight: 500; letter-spacing: -0.045em; font-size: clamp(40px, 5vw, 72px); line-height: 0.98; max-width: 14ch; margin-bottom: 24px; }
.stack-section .section-lead { color: rgba(0, 0, 0, 0.70); max-width: 580px; margin-bottom: 64px; }
.stack-section h1, .stack-section h2, .stack-section h3 { color: inherit; }

.stack-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stack-row { display: grid; grid-template-columns: 64px 1fr auto; gap: 24px; align-items: center; padding: 24px 28px; background: rgba(255, 255, 255, 0.55); border: 1px solid rgba(26, 22, 16, 0.08); border-radius: var(--r-lg); transition: all 240ms var(--ease); }
.stack-row:hover { background: rgba(255, 255, 255, 0.85); border-color: rgba(26, 22, 16, 0.15); transform: translateY(-2px); }
.stack-row-logo { width: 56px; height: 56px; background: #FFFFFF; border: 1px solid rgba(26, 22, 16, 0.10); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; padding: 10px; flex-shrink: 0; }
.stack-row-logo svg, .stack-row-logo img { width: 100%; height: 100%; max-width: 36px; max-height: 36px; }
.stack-row-content { min-width: 0; }
.stack-row-name { font-size: 17px; font-weight: 500; color: rgba(0, 0, 0, 0.88); letter-spacing: -0.02em; margin-bottom: 3px; }
.stack-row-desc { font-size: 13px; color: rgba(0, 0, 0, 0.65); line-height: 1.5; }
.stack-row-meta { font-family: var(--font-mono); font-size: 10px; color: rgba(0, 0, 0, 0.55); letter-spacing: 0.04em; text-transform: uppercase; background: rgba(0, 0, 0, 0.06); padding: 5px 10px; border-radius: var(--r-pill); white-space: nowrap; }

/* ============================================================================
   TESTIMONIALS CAROUSEL — fond noir
   ============================================================================ */
.testimonials-section { background: var(--carbon); padding: 120px 0; position: relative; overflow: hidden; }

/* Reviews sources cards (vrais avis) */
.reviews-sources { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 56px; }
.review-source { display: grid; grid-template-columns: 64px 1fr auto; gap: 20px; align-items: center; padding: 24px 28px; background: var(--graphite); border: 1px solid var(--line-2); border-radius: var(--r-lg); text-decoration: none; transition: border-color 200ms var(--ease), transform 200ms var(--ease), background 200ms var(--ease); }
.review-source:hover { border-color: var(--green); background: var(--graphite-2); transform: translateY(-2px); }
.review-source-icon { width: 64px; height: 64px; border-radius: var(--r-md); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.review-source-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.review-source-content { min-width: 0; }
.review-source-platform { font-size: 16px; font-weight: 500; letter-spacing: -0.015em; color: var(--fg); margin-bottom: 4px; }
.review-source-rating { font-family: var(--font-mono); font-size: 14px; color: var(--green); margin-bottom: 4px; }
.review-source-rating strong { font-weight: 600; }
.review-source-meta { font-size: 12px; color: var(--fg-muted); }
.review-source-arrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--fg-muted); white-space: nowrap; transition: color 200ms var(--ease); }
.review-source:hover .review-source-arrow { color: var(--green); }
@media (max-width: 720px) {
  .reviews-sources { grid-template-columns: 1fr; }
  .review-source { grid-template-columns: 56px 1fr; }
  .review-source-arrow { grid-column: 1 / -1; text-align: right; }
}
.testimonials-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.testimonials-head .section-title { margin-bottom: 0; max-width: 14ch; }
.testimonials-head a { font-size: 13.5px; color: var(--fg-muted); transition: color 150ms var(--ease); }
.testimonials-head a:hover { color: var(--green); }

.carousel-viewport { position: relative; margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter); overflow: hidden; }
.carousel-track { display: flex; gap: 14px; width: max-content; animation: scroll-left 50s linear infinite; }
.carousel-track:hover { animation-play-state: paused; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 7px)); } }

.test-card { border-radius: var(--r-xl); padding: 32px 32px 24px; width: 420px; flex-shrink: 0; min-height: 240px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.test-quote { font-size: 18px; font-weight: 500; letter-spacing: -0.018em; line-height: 1.35; flex: 1; }
.test-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; position: relative; z-index: 2; }
.test-avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(0, 0, 0, 0.10); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 500; font-size: 11px; }
.test-meta-name { font-size: 13px; font-weight: 500; }
.test-meta-role { font-size: 12px; opacity: 0.65; margin-top: 1px; }

.test-cream { background: var(--cream); color: var(--cream-ink); }
.test-cream .test-avatar { background: rgba(26, 22, 16, 0.10); }
.test-blue { background: var(--pastel-blue); color: var(--pastel-blue-ink); }
.test-blue .test-avatar { background: rgba(10, 26, 63, 0.12); }
.test-orange { background: var(--hot-orange); color: var(--hot-orange-ink); }
.test-orange .test-avatar { background: rgba(31, 7, 0, 0.18); }
.test-yellow { background: var(--neon-yellow); color: var(--neon-yellow-ink); }
.test-yellow .test-avatar { background: rgba(10, 15, 0, 0.15); }
.test-pink { background: var(--pastel-pink); color: var(--pastel-pink-ink); }
.test-pink .test-avatar { background: rgba(63, 10, 34, 0.12); }
.test-mint { background: var(--ice-mint); color: var(--ice-mint-ink); }
.test-mint .test-avatar { background: rgba(0, 31, 25, 0.10); }
.test-sage { background: var(--sage); color: var(--sage-ink); }
.test-sage .test-avatar { background: rgba(22, 34, 0, 0.12); }

/* ==== NOUVEAU CARROUSEL D'AVIS (drag/snap) ==== */
.testimonials-controls { display: flex; gap: 8px; }
.testimonials-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--fg-soft);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}
.testimonials-arrow:hover {
  background: var(--graphite-2);
  border-color: var(--green);
  color: var(--green);
}
.testimonials-arrow:active { transform: scale(0.95); }

.testimonials-marquee-wrap {
  position: relative;
  margin: 0 calc(-1 * var(--gutter));
  overflow: hidden;
  /* Masque parfaitement symétrique des deux côtés */
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%);
          mask-image: linear-gradient(90deg,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%);
  padding: 8px 0 32px;
}
.testimonials-marquee {
  display: flex;
  width: max-content;
}
.testimonials-marquee-inner {
  display: flex;
  gap: 18px;
  padding-left: 18px;
  animation: testimonials-scroll 80s linear infinite;
  will-change: transform;
}
.testimonials-marquee-wrap:hover .testimonials-marquee-inner {
  animation-play-state: paused;
}
@keyframes testimonials-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee-inner { animation: none; }
}

.testimonials-track::-webkit-scrollbar { display: none; }

/* Quand pas de wrap (rétrocompat) */
.testimonials-section > .container > .testimonials-track {
  margin: 0 calc(-1 * var(--gutter));
}

.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  position: relative;
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: currentColor;
  opacity: 0.85;
}
.testimonial-content {
  font-size: 15.5px;
  line-height: 1.5;
  letter-spacing: -0.012em;
  flex: 1;
  font-weight: 450;
}
.testimonial-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  border-top-color: rgba(0,0,0,0.10);
}
.testimonial-meta { flex: 1; min-width: 0; }
.testimonial-author { font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; }
.testimonial-role { font-size: 11.5px; opacity: 0.65; margin-top: 1px; }
.testimonial-source {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.testimonials-sources {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonials-source-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--graphite);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  color: var(--fg-soft);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
  min-height: 56px;
}
.testimonials-source-link:hover {
  border-color: var(--green);
  background: var(--graphite-2);
  color: var(--fg);
  transform: translateY(-1px);
}
.testimonials-source-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonials-source-logo img,
.testimonials-source-logo svg {
  width: 28px;
  height: 28px;
  display: block;
}
.testimonials-source-logo-codeur {
  background: #fff;
  border-radius: 50%;
  padding: 3px;
  width: 34px;
  height: 34px;
}
.testimonials-source-logo-codeur img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.testimonials-source-logo-google {
  width: 34px;
  height: 34px;
}
.testimonials-source-text {
  letter-spacing: -0.005em;
}
.testimonials-source-rating {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .testimonial-card { flex: 0 0 86vw; }
  .testimonials-controls { display: none; }
}

.carousel-viewport::before, .carousel-viewport::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 5; pointer-events: none; }
.carousel-viewport::before { left: 0; background: linear-gradient(to right, var(--carbon), transparent); }
.carousel-viewport::after { right: 0; background: linear-gradient(to left, var(--carbon), transparent); }

.test-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 12px; }
.test-meta-text { font-size: 13.5px; color: var(--fg-muted); }
.test-meta-text strong { color: var(--fg); font-weight: 500; }
.test-meta a { font-size: 13.5px; color: var(--fg-muted); }
.test-meta a:hover { color: var(--green); }

/* ============================================================================
   AGENCIES — bloc ex-employeurs (chef de projet)
   ============================================================================ */
.agencies-section { background: var(--graphite); padding: 120px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.agencies-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.agencies-text-title { font-size: clamp(28px, 3vw, 38px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 18px; color: var(--fg); }
.agencies-text-desc { font-size: 15px; line-height: 1.6; color: var(--fg-soft); max-width: 56ch; }
.agencies-logos { display: flex; align-items: center; justify-content: center; gap: 64px; flex-wrap: wrap; padding: 48px 32px; background: var(--carbon); border: 1px solid var(--line-2); border-radius: var(--r-lg); min-height: 200px; }
.agency-logo { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: #ffffff; transition: opacity 200ms var(--ease), transform 200ms var(--ease); text-decoration: none; opacity: 0.85; }
.agency-logo:hover { opacity: 1; transform: translateY(-2px); color: #ffffff; }
.agency-wordmark { font-family: 'Helvetica Neue', 'Inter', 'Geist', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 900; font-size: 38px; letter-spacing: -1px; color: inherit; line-height: 1; }
.agency-logo.babel .agency-wordmark { letter-spacing: -1.5px; }
.agency-logo.pixloc .agency-wordmark { letter-spacing: -2px; }
.agency-tagline { font-family: var(--font-mono); font-size: 9px; letter-spacing: 3px; color: inherit; opacity: 0.65; font-weight: 500; }

/* En light mode, les logos passent en noir */
[data-theme="light"] .agency-logo { color: #0a0a0a; }
[data-theme="light"] .agency-logo:hover { color: #0a0a0a; }
[data-theme="light"] .agencies-logos { background: rgba(0, 0, 0, 0.03); border-color: rgba(0, 0, 0, 0.08); }
.agencies-text-title { font-size: 24px; font-weight: 500; letter-spacing: -0.025em; line-height: 1.2; color: var(--fg); margin-bottom: 8px; }
.agencies-text-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

/* ============================================================================
   PRICING FLASH — section JAUNE FLUO
   ============================================================================ */
.pricing-flash-section { background: var(--soft-lime); color: var(--soft-lime-ink); padding: 120px 0; position: relative; overflow: hidden; }
.pricing-flash-section::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px dashed rgba(26, 34, 0, 0.15);
  pointer-events: none;
  z-index: 0;
}
.pricing-flash-section::after {
  content: '';
  position: absolute;
  top: 80px;
  right: 80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(26, 34, 0, 0.1);
  pointer-events: none;
  z-index: 0;
}
.pricing-flash-section .container { position: relative; z-index: 1; }
.pricing-flash-deco {
  display: none; /* legacy, plus utilisé */
}
.pricing-flash-section .kicker { color: rgba(26, 34, 0, 0.55); }
.pricing-flash-section .kicker .kicker-dot { background: rgba(26, 34, 0, 0.85); }
.pricing-flash-section .section-title { color: var(--soft-lime-ink); font-weight: 500; letter-spacing: -0.04em; }
.pricing-flash-section .section-lead { color: rgba(26, 34, 0, 0.72); }
.pricing-flash-section h1, .pricing-flash-section h2, .pricing-flash-section h3 { color: inherit; }

.pricing-flash-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 48px; }
.price-card { background: rgba(255, 255, 255, 0.40); border: 1px solid rgba(10, 15, 0, 0.10); border-radius: var(--r-lg); padding: 24px 22px 22px; display: flex; flex-direction: column; position: relative; transition: all 240ms var(--ease); }
.price-card:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.55); }
.price-card.is-highlight { background: var(--soft-lime-ink); color: var(--green); border-color: var(--soft-lime-ink); }
.price-card.is-highlight .price-card-name { color: var(--fg); }
.price-card.is-highlight .price-card-tagline { color: rgba(255, 255, 255, 0.6); }
.price-card.is-highlight .price-card-from { color: rgba(255, 255, 255, 0.5); }
.price-card.is-highlight .price-card-amount { color: var(--green); }
.price-card.is-highlight .price-card-tax { color: rgba(255, 255, 255, 0.5); }
.price-card.is-highlight .price-card-features li { color: rgba(255, 255, 255, 0.85); }
.price-card.is-highlight .price-card-features li svg { color: var(--green); }
.price-card-badge { position: absolute; top: -1px; left: 50%; transform: translate(-50%, -50%); background: var(--green); color: var(--on-green); border: 2px solid var(--soft-lime-ink); padding: 4px 12px; border-radius: var(--r-pill); font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.price-card-name { font-size: 16px; font-weight: 500; color: var(--soft-lime-ink); margin-bottom: 4px; }
.price-card-tagline { font-family: var(--font-mono); font-size: 11px; color: rgba(26, 34, 0, 0.55); margin-bottom: 18px; letter-spacing: 0.02em; min-height: 16px; }
.price-card-amount-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; padding-bottom: 18px; border-bottom: 1px solid rgba(26, 34, 0, 0.10); margin-bottom: 18px; }
.price-card.is-highlight .price-card-amount-row { border-color: rgba(255, 255, 255, 0.10); }
.price-card-from { font-family: var(--font-mono); font-size: 10px; color: rgba(26, 34, 0, 0.5); letter-spacing: 0.06em; text-transform: uppercase; width: 100%; margin-bottom: 6px; }
.price-card-amount { font-size: 30px; font-weight: 500; color: var(--soft-lime-ink); letter-spacing: -0.03em; line-height: 1; }
.price-card-tax { font-family: var(--font-mono); font-size: 10px; color: rgba(26, 34, 0, 0.5); letter-spacing: 0.04em; }
.price-card-features { flex: 1; margin-bottom: 20px; }
.price-card-features li { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: rgba(26, 34, 0, 0.75); line-height: 1.5; padding: 5px 0; }
.price-card-features li svg { flex-shrink: 0; color: #1A6E2A; margin-top: 4px; }
.price-card-cta { margin-top: auto; }

/* ==== BUDGETS BANNER (refonte sobre, cohérente avec site) ==== */
.budgets-banner {
  margin-top: 56px;
  padding: 0;
  background: transparent;
  border: none;
  position: relative;
}
.budgets-banner-head {
  margin-bottom: 32px;
  max-width: 720px;
}
.budgets-banner-head .kicker { color: var(--fg-muted); }
.budgets-banner-head .kicker .kicker-dot { background: var(--green); }
.budgets-banner-title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 14px;
}
.budgets-banner-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--fg);
}
.budgets-banner-title em::after { display: none; }
.budgets-banner-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 64ch;
}
.budgets-banner-lead strong {
  font-weight: 500;
  color: var(--fg);
  background: none;
  padding: 0;
}

.budgets-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.budget-card {
  position: relative;
  padding: 28px 26px 32px;
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color 240ms var(--ease), transform 240ms var(--ease);
}
.budget-card:hover {
  border-color: var(--line-3);
  transform: translateY(-2px);
}
.budget-card-rank {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
}
.budget-card-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(127, 238, 100, 0.10);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.budget-card-mid .budget-card-icon { background: rgba(180, 156, 255, 0.10); color: var(--violet); }
.budget-card-pro .budget-card-icon {
  background: linear-gradient(135deg, rgba(127, 238, 100, 0.12), rgba(180, 156, 255, 0.12));
  color: var(--green);
}
.budget-card-amount {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.budget-card-mid .budget-card-amount { color: var(--fg); }
.budget-card-pro .budget-card-amount {
  color: var(--fg);
  -webkit-text-fill-color: var(--fg);
  background: none;
}
.budget-card-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 10px;
  text-transform: none;
  font-family: var(--font-sans);
}
.budget-card-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

.budgets-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 13px 22px;
  background: var(--green);
  color: var(--on-green);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  box-shadow: 0 0 24px var(--green-glow);
}
.budgets-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(127, 238, 100, 0.35);
  color: var(--on-green);
}
.budgets-banner-cta:hover svg { transform: translateX(3px); }
.budgets-banner-cta svg { transition: transform 200ms var(--ease); }

@media (max-width: 800px) {
  .budgets-banner-title { font-size: 26px; }
  .budgets-cards { grid-template-columns: 1fr; gap: 10px; }
  .budget-card { padding: 24px 22px 26px; }
}

/* Anciens flex-banner conservés pour rétrocompat éventuelle */
.flex-banner { display: flex; gap: 20px; align-items: flex-start; padding: 24px 28px; background: rgba(10, 15, 0, 0.06); border: 1px solid rgba(10, 15, 0, 0.10); border-left: 3px solid var(--neon-yellow-ink); border-radius: var(--r-md); margin-top: 32px; }
.flex-banner-icon { flex-shrink: 0; color: var(--neon-yellow-ink); width: 24px; height: 24px; }
.flex-banner h4 { font-size: 15px; font-weight: 500; color: var(--neon-yellow-ink); margin-bottom: 4px; }
.flex-banner p { font-size: 13.5px; color: rgba(10, 15, 0, 0.75); line-height: 1.55; max-width: 78ch; margin: 0; }
.flex-banner strong { color: var(--neon-yellow-ink); font-weight: 500; }

/* ============================================================================
   MAINTENANCE
   ============================================================================ */
.maintenance-section { background: var(--graphite); padding: 120px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.maintenance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.maint-card { background: var(--graphite); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 32px 28px 28px; transition: all 240ms var(--ease); display: flex; flex-direction: column; position: relative; }
.maint-card:hover { border-color: var(--line-3); transform: translateY(-3px); }
.maint-card.is-highlight { border-color: var(--green); background: linear-gradient(180deg, rgba(127,238,100,0.04) 0%, var(--graphite) 100%); box-shadow: 0 0 0 1px var(--green-soft), 0 16px 48px rgba(127, 238, 100, 0.08); }
.maint-card-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--on-green); font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.maint-card-icon { width: 48px; height: 48px; background: var(--graphite-2); border: 1px solid var(--line); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--fg-soft); margin-bottom: 18px; }
.maint-card.is-highlight .maint-card-icon { background: var(--green-soft); border-color: var(--green); color: var(--green); }
.maint-card-name { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 14px; }
.maint-card.is-highlight .maint-card-name { color: var(--green); }
.maint-card-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.maint-card-amount { font-size: 32px; font-weight: 500; color: var(--fg); letter-spacing: -0.03em; line-height: 1; }
.maint-card.is-highlight .maint-card-amount { color: var(--green); }
.maint-card-period { font-family: var(--font-mono); font-size: 12px; color: var(--fg-faint); letter-spacing: 0.04em; }
.maint-card-desc { font-size: 14px; color: var(--fg-soft); line-height: 1.5; margin-bottom: 22px; }
.maint-card-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.maint-card-features li { position: relative; padding: 9px 0 9px 24px; font-size: 13.5px; color: var(--fg-soft); line-height: 1.4; border-bottom: 1px solid var(--line); }
.maint-card-features li:last-child { border-bottom: 0; }
.maint-card-features li::before { content: ""; position: absolute; left: 0; top: 12px; width: 14px; height: 14px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237FEE64' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); background-size: contain; background-repeat: no-repeat; }
.btn-block { width: 100%; justify-content: center; }
@media (max-width: 880px) {
  .maintenance-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   CTA
   ============================================================================ */
.cta-section { padding: 120px 0 96px; background: var(--carbon); }
.cta-box { position: relative; overflow: hidden; padding: 80px 64px; background: radial-gradient(ellipse 80% 100% at 50% 120%, var(--green-glow), transparent 65%), var(--graphite); border: 1px solid var(--line); border-radius: var(--r-xl); text-align: center; }
.cta-box .kicker { justify-content: center; }
.cta-box h2 { font-size: clamp(36px, 4.5vw, 56px); font-weight: 500; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 18px; }
.cta-box h2 .accent { color: var(--green); }
.cta-box .lead { font-size: 17px; color: var(--fg-muted); margin: 0 auto 32px; max-width: 54ch; }
.cta-ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer { padding: 96px 0 36px; border-top: 1px solid var(--line); background: var(--carbon); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 72px; padding-bottom: 8px; }
.footer-brand p { font-size: 13.5px; color: var(--fg-faint); max-width: 34ch; margin: 18px 0 0; line-height: 1.55; }
.footer-col h5 { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: var(--fg-faint); margin-bottom: 16px; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: var(--fg-muted); transition: color 150ms var(--ease); }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); letter-spacing: 0.02em; flex-wrap: wrap; gap: 12px; }
.footer-badges { display: flex; gap: 8px; align-items: center; }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; background: var(--graphite); border: 1px solid var(--line); border-radius: var(--r-sm); font-size: 10px; color: var(--fg-muted); }
.footer-badge:hover { color: var(--green); border-color: var(--green); }

/* ============================================================================
   FORMS
   ============================================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-muted); }
.form-input, .form-textarea, .form-select {
  background-color: var(--graphite); color: var(--fg);
  border: 1px solid var(--line-2); border-radius: var(--r-md);
  padding: 11px 14px; font-size: 14px; font-family: var(--font-sans);
  transition: border-color 150ms var(--ease), background-color 150ms var(--ease);
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--green); background-color: var(--graphite-2); }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888892' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
  cursor: pointer;
}
.form-select:hover {
  border-color: var(--line-3);
}
.form-select:focus {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237FEE64' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}
.form-select option {
  background: var(--graphite);
  color: var(--fg);
  padding: 12px;
}
.form-textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.form-help { font-size: 12px; color: var(--fg-faint); }
.form-error { font-size: 12px; color: #FF6B6B; }
.form-checkbox { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.form-checkbox input { margin-top: 3px; accent-color: var(--green); }
.form-checkbox-label { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* Alerts */
.alert { padding: 14px 18px; border-radius: var(--r-md); border: 1px solid; margin-bottom: 24px; font-size: 14px; }
.alert-success { background: rgba(127, 238, 100, 0.08); border-color: rgba(127, 238, 100, 0.30); color: var(--green-bright); }
.alert-error { background: rgba(255, 107, 107, 0.08); border-color: rgba(255, 107, 107, 0.30); color: #FF8B8B; }
.alert-info { background: rgba(200, 216, 255, 0.06); border-color: rgba(200, 216, 255, 0.20); color: var(--fg-soft); }

/* ============================================================================
   PROSE (articles, legal, guides)
   ============================================================================ */
.prose { color: var(--fg-soft); font-size: 16px; line-height: 1.7; }
.prose h2 { font-size: 28px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.15; margin-top: 48px; margin-bottom: 18px; color: var(--fg); }
.prose h3 { font-size: 21px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.2; margin-top: 32px; margin-bottom: 14px; color: var(--fg); }
.prose h4 { font-size: 17px; font-weight: 500; margin-top: 24px; margin-bottom: 8px; color: var(--fg); }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin-bottom: 18px; padding-left: 24px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; padding-left: 4px; }
.prose strong, .prose b { color: var(--fg); font-weight: 500; }
.prose a { color: var(--green); border-bottom: 1px solid color-mix(in srgb, var(--green) 30%, transparent); transition: border-color 150ms var(--ease); }
.prose a:hover { border-color: var(--green); }
.prose code { font-family: var(--font-mono); font-size: 0.88em; padding: 1px 6px; background: var(--graphite-2); border: 1px solid var(--line); border-radius: var(--r-sm); color: var(--green); }
.prose pre { background: var(--graphite); border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px; overflow-x: auto; margin-bottom: 24px; font-family: var(--font-mono); font-size: 13px; line-height: 1.55; }
.prose pre code { background: transparent; border: 0; padding: 0; color: var(--fg-soft); }
.prose blockquote { border-left: 3px solid var(--green); padding-left: 20px; margin: 24px 0; color: var(--fg-muted); font-style: italic; }
.prose img { border-radius: var(--r-md); margin: 24px 0; }

/* Pages : article, legal, etc. */
.page-hero {
  padding: 88px 0 56px;
  background: var(--carbon);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(127, 238, 100, 0.18), rgba(127, 238, 100, 0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px dashed rgba(127, 238, 100, 0.15);
  pointer-events: none;
  z-index: 0;
  animation: page-hero-rotate 80s linear infinite;
}
@keyframes page-hero-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 { font-size: clamp(36px, 4.5vw, 56px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 18px; }
.page-hero .lead { font-size: 17px; color: var(--fg-muted); max-width: 640px; line-height: 1.55; }

@media (max-width: 720px) {
  .page-hero::before { width: 360px; height: 360px; top: -160px; right: -160px; }
  .page-hero::after { width: 240px; height: 240px; top: -80px; right: -80px; }
}
.page-content { padding: 64px 0 96px; }

/* Tags / chips */
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.02em; border: 1px solid var(--line-2); border-radius: var(--r-pill); color: var(--fg-muted); transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease); }
.chip:hover { color: var(--fg); border-color: var(--line-3); }
.chip-green { background: var(--green-soft); color: var(--green); border-color: rgba(127, 238, 100, 0.20); }
.chip-cream { background: rgba(245, 241, 232, 0.10); color: var(--cream); border-color: rgba(245, 241, 232, 0.22); }
.chip-blue { background: rgba(200, 216, 255, 0.10); color: var(--pastel-blue); border-color: rgba(200, 216, 255, 0.22); }
.chip-pink { background: rgba(255, 212, 230, 0.10); color: var(--pastel-pink); border-color: rgba(255, 212, 230, 0.22); }
.chip-mint { background: rgba(200, 240, 229, 0.10); color: var(--ice-mint); border-color: rgba(200, 240, 229, 0.22); }
.chip-sage { background: rgba(216, 234, 184, 0.10); color: var(--sage); border-color: rgba(216, 234, 184, 0.22); }
.chip-yellow { background: rgba(222, 255, 0, 0.10); color: var(--neon-yellow); border-color: rgba(222, 255, 0, 0.25); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-grid { grid-template-columns: 1fr; }
  .pricing-flash-grid { grid-template-columns: repeat(2, 1fr); }
  .maintenance-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .agencies-inner { grid-template-columns: 1fr; gap: 32px; }
  .agencies-logos { justify-content: flex-start; }
  .rating-strip-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* TABLETTE — entre 720 et 980, liens nav cachés au profit du burger */
@media (max-width: 980px) and (min-width: 721px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 90vw;
    height: calc(100vh - 56px);
    background: var(--carbon);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 0 0 32px;
    margin: 0;
    list-style: none;
    overflow-y: auto;
    z-index: 1500;
    animation: nav-drawer-in 220ms var(--ease-out);
  }
  .nav-links.is-open { display: flex !important; }
  .nav-links li { width: 100%; display: block; list-style: none; }
  .nav-links a {
    display: block;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    color: var(--fg-soft);
    text-decoration: none;
  }
  .nav-links a:hover { background: rgba(255,255,255,0.03); color: var(--fg); }
  .nav-bubble {
    position: static;
    display: inline-block;
    margin-left: 10px;
    transform: none;
    font-size: 10px;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    color: var(--fg-muted);
  }
  .menu-toggle svg { width: 22px; height: 22px; }
  .nav-mobile-only { display: block; }
  .nav-mobile-cta-wrap {
    padding: 32px 20px 20px !important;
    border-bottom: none !important;
    border-top: 1px solid var(--line);
    margin-top: 8px;
    background: transparent !important;
  }
  .nav-mobile-cta-wrap:hover { background: transparent !important; }
  .nav-mobile-cta {
    position: relative;
    display: flex !important;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 24px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    border-radius: var(--r-md) !important;
    border: none !important;
    border-bottom: none !important;
    background: linear-gradient(135deg, #7FEE64 0%, #5FD93F 100%) !important;
    color: #08080A !important;
    box-shadow:
      0 8px 28px rgba(127, 238, 100, 0.35),
      0 2px 6px rgba(127, 238, 100, 0.4),
      0 0 0 1px rgba(127, 238, 100, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  }
  .nav-mobile-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: nav-cta-shine 2.8s ease-in-out infinite;
    animation-delay: 0.6s;
    pointer-events: none;
  }
  .nav-mobile-cta:hover,
  .nav-mobile-cta:active {
    transform: translateY(-2px);
    color: #08080A !important;
    background: linear-gradient(135deg, #8FF274 0%, #6FE54E 100%) !important;
    box-shadow:
      0 12px 32px rgba(127, 238, 100, 0.5),
      0 4px 10px rgba(127, 238, 100, 0.45),
      0 0 0 1px rgba(127, 238, 100, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  .nav-mobile-cta .btn-arrow {
    font-size: 20px;
    font-weight: 600;
    transition: transform 200ms var(--ease);
  }
  .nav-mobile-cta:hover .btn-arrow {
    transform: translateX(4px);
  }
  @keyframes nav-cta-shine {
    0% { left: -100%; }
    50% { left: 110%; }
    100% { left: 110%; }
  }
  /* Tablette : on garde theme/bookmark/share dans le header */
  .header-actions .theme-toggle,
  .header-actions .bookmark-toggle,
  .header-actions .share-wrap > button {
    width: 38px !important;
    height: 38px !important;
  }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  html, body { overflow-x: hidden; }
  section { padding: 80px 0; }
  .hero { padding: 56px 0 64px; }

  /* ============================================================
     HEADER MOBILE — version compacte
     ============================================================ */
  .site-header-inner {
    gap: 8px;
    min-height: 56px;
  }

  /* Sur mobile : on ne garde QUE [logo] [lang compact] [burger] */
  .header-actions {
    gap: 4px;
    flex-shrink: 0;
  }
  /* Sur mobile : on cache uniquement le CTA principal et le chevron langue */
  .header-actions .btn.btn-primary {
    display: none !important;
  }
  /* Forcer l'affichage compact des boutons icônes sur mobile */
  .header-actions .theme-toggle,
  .header-actions .bookmark-toggle,
  .header-actions .share-wrap > button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    padding: 0 !important;
    border-radius: var(--r-sm) !important;
  }
  .header-actions .theme-toggle svg,
  .header-actions .bookmark-toggle svg,
  .header-actions .share-wrap > button svg {
    width: 14px !important;
    height: 14px !important;
  }
  .header-actions .share-wrap {
    position: relative;
  }
  /* Compactage du sélecteur de langue : juste le drapeau (pas de code FR ni chevron) */
  .lang-trigger {
    padding: 6px 8px !important;
    font-size: 13px;
    gap: 0 !important;
    min-height: 32px;
  }
  .lang-trigger > span:not(.lang-flag):not(.lang-menu),
  .lang-trigger svg.lang-chevron {
    display: none !important;
  }
  .lang-trigger .lang-flag {
    margin: 0 !important;
  }

  /* Logo plus compact */
  .logo-text { font-size: 14px !important; }
  .logo-mark { width: 28px !important; height: 28px !important; font-size: 10px !important; }
  .logo-slash { font-size: 16px !important; }

  /* Burger toujours visible sur mobile, taille tactile suffisante */
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    color: var(--fg-muted);
    transition: background 150ms var(--ease), color 150ms var(--ease);
  }
  .menu-toggle:hover,
  .menu-toggle[aria-expanded="true"] {
    background: var(--graphite);
    color: var(--fg);
  }
  .menu-toggle svg { width: 22px; height: 22px; }

  /* ============================================================
     NAV DRAWER — overlay plein écran
     ============================================================ */
  .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100vh - 56px);
    background: var(--carbon);
    border-top: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 0 0 32px;
    margin: 0;
    list-style: none;
    overflow-y: auto;
    z-index: 1500;
    animation: nav-drawer-in 220ms var(--ease-out);
  }
  .nav-links.is-open {
    display: flex !important;
  }
  .nav-links li {
    width: 100%;
    display: block;
    list-style: none;
  }
  .nav-links a {
    display: block;
    font-size: 17px;
    font-weight: 500;
    padding: 18px 24px;
    border-radius: 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    color: var(--fg-soft);
    text-decoration: none;
    background: transparent;
  }
  .nav-links a.active {
    color: var(--green);
    background: rgba(127, 238, 100, 0.04);
  }
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--fg);
  }
  .nav-bubble {
    position: static;
    display: inline-block;
    margin-left: 10px;
    transform: none;
    font-size: 10px;
  }

  /* Items spécifiques drawer mobile */
  .nav-mobile-only { display: block; }
  .nav-mobile-cta-wrap {
    padding: 32px 20px 20px !important;
    border-bottom: none !important;
    border-top: 1px solid var(--line);
    margin-top: 8px;
    background: transparent !important;
  }
  .nav-mobile-cta-wrap:hover { background: transparent !important; }
  .nav-mobile-cta {
    position: relative;
    display: flex !important;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 24px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    border-radius: var(--r-md) !important;
    border: none !important;
    border-bottom: none !important;
    background: linear-gradient(135deg, #7FEE64 0%, #5FD93F 100%) !important;
    color: #08080A !important;
    box-shadow:
      0 8px 28px rgba(127, 238, 100, 0.35),
      0 2px 6px rgba(127, 238, 100, 0.4),
      0 0 0 1px rgba(127, 238, 100, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  }
  .nav-mobile-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: nav-cta-shine 2.8s ease-in-out infinite;
    animation-delay: 0.6s;
    pointer-events: none;
  }
  .nav-mobile-cta:hover {
    transform: translateY(-2px);
    color: #08080A !important;
    background: linear-gradient(135deg, #8FF274 0%, #6FE54E 100%) !important;
    box-shadow:
      0 12px 32px rgba(127, 238, 100, 0.5),
      0 4px 10px rgba(127, 238, 100, 0.45),
      0 0 0 1px rgba(127, 238, 100, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  .nav-mobile-cta .btn-arrow {
    font-size: 20px;
    font-weight: 600;
    transition: transform 200ms var(--ease);
  }
  .nav-mobile-cta:hover .btn-arrow {
    transform: translateX(4px);
  }

  /* Quand le drawer est ouvert, on bloque le scroll body */
  body.nav-open {
    overflow: hidden;
  }

  /* ============================================================
     GRIDS — colonnes simples
     ============================================================ */
  .services-grid { grid-template-columns: 1fr; }
  .pricing-flash-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .agencies-inner { grid-template-columns: 1fr; gap: 32px; }
  .agencies-logos { padding: 32px 24px; gap: 40px; }

  /* CARTES & TEXTES */
  .test-card { width: 320px; padding: 28px; min-height: 220px; }
  .test-quote { font-size: 16px; }
  .testimonial-card { flex-basis: 86vw; padding: 24px; }
  .cta-box { padding: 48px 28px; }
  .terminal-stack-icons { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* TESTIMONIALS HEAD : empiler */
  .testimonials-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonials-controls { display: none; }

  /* Logos agences mobile */
  .agency-wordmark { font-size: 30px; }
}

@keyframes nav-drawer-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================================
   UTILITIES
   ============================================================================ */
.text-green { color: var(--green); }
.text-muted { color: var(--fg-muted); }
.text-faint { color: var(--fg-faint); }
.font-mono { font-family: var(--font-mono); }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }

/* ============================================================================
   ARTICLE CARDS — illustrations SVG + tags colorés
   ============================================================================ */
.article-mockup { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; padding: 24px; }
.article-mockup-icon { width: 100%; max-width: 140px; aspect-ratio: 1; opacity: 0.55; }
.article-mockup-icon svg { width: 100%; height: 100%; display: block; }
.svc-card:hover .article-mockup-icon { opacity: 0.85; transition: opacity 200ms var(--ease); }

/* Tags colorés par catégorie (pastilles distinctes du fond de la card) */
.svc-card-tag.tag-performance { background: rgba(255, 184, 77, 0.18); color: #B86A00; }
.svc-card-tag.tag-securite    { background: rgba(255, 107, 107, 0.18); color: #B12020; }
.svc-card-tag.tag-prestashop  { background: rgba(255, 107, 158, 0.18); color: #A0204C; }
.svc-card-tag.tag-seo         { background: rgba(95, 217, 63, 0.18); color: #2A6F12; }
.svc-card-tag.tag-e-commerce  { background: rgba(127, 200, 255, 0.18); color: #0B4D80; }
.svc-card-tag.tag-marketing   { background: rgba(200, 130, 255, 0.18); color: #5A1A8C; }
.svc-card-tag.tag-innovation  { background: rgba(120, 220, 200, 0.22); color: #0E5448; }
.svc-card-tag.tag-default     { background: rgba(0, 0, 0, 0.10); color: var(--cream-ink); }

/* Override: badges affichés sur cards à fond clair gardent du contraste */
.svc-card-tag { display: inline-block; padding: 4px 10px; border-radius: 999px; font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }

/* ============================================================================
   CONTACT V9.3 — formulaire à gauche, sidebar droite
   ============================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: flex-start;
}
.contact-form {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 36px 28px;
}
.contact-sidebar {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: sticky;
  top: 88px;
}
.contact-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--graphite-2) center/cover no-repeat;
  background-image: url("/assets/img/jesse-profile-square.png");
  border: 1px solid var(--line-2);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.contact-divider {
  height: 1px;
  background: var(--line);
  margin: 0 -24px 22px;
}
.contact-row {
  margin-bottom: 18px;
}
.contact-row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 6px;
}
.contact-row-value {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
}
a.contact-row-value:hover { color: var(--green); }

/* Email reveal au clic */
.contact-email-reveal {
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font: inherit;
  color: var(--green);
  font-size: 14px;
  word-break: break-all;
  transition: color 150ms var(--ease);
}
.contact-email-reveal:hover { color: var(--green-bright); }
.contact-email-reveal[data-revealed="true"] { color: var(--green); cursor: text; }
.contact-email-reveal[data-revealed="true"] .contact-email-hidden { display: none; }
.contact-email-shown { user-select: text; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; order: -1; }
  .contact-form { padding: 28px 24px 24px; }
}

/* Photo Jesse : arrondie + monochrome */
.why-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  border: 1px solid var(--line-2);
  transition: filter 400ms var(--ease);
}
.why-photo:hover {
  filter: grayscale(85%) contrast(1.05);
}

/* ============================================================================
   ANIMATIONS — reveal au scroll, micro-interactions modernes
   ============================================================================ */

/* Reveal au scroll : fade + translate très discret */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variantes */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 480ms; }

/* Reveal-scale : une légère animation d'apparition pour les blocs hero */
.reveal-scale {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Respect des préférences d'accessibilité */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Drag du carrousel d'avis */
.testimonials-track.is-dragging { cursor: grabbing; }
.testimonials-track { cursor: grab; }

/* Animation subtile sur le hero (fade-in initial) */
.hero-content > * {
  animation: hero-fade-up 800ms var(--ease-out) backwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0ms; }
.hero-content > *:nth-child(2) { animation-delay: 100ms; }
.hero-content > *:nth-child(3) { animation-delay: 200ms; }
.hero-content > *:nth-child(4) { animation-delay: 300ms; }
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content > * { animation: none; }
}

/* ============================================================================
   COOKIE BANNER + MODALE RGPD
   ============================================================================ */

/* Bannière en bas */
.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 9000;
  background: var(--graphite-2);
  border: 1px solid var(--line-3);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.45);
  padding: 22px 26px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  animation: cookie-slide-up 360ms var(--ease-out);
  backdrop-filter: blur(12px);
}
.cookie-banner[hidden] { display: none; }
@keyframes cookie-slide-up {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-banner-content { min-width: 0; }
.cookie-banner-actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  width: 100%;
}
.cookie-banner-actions .cookie-btn { width: 100%; }
.cookie-banner-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--fg);
}
.cookie-banner-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
  max-width: 70ch;
}
.cookie-banner-link {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(127, 238, 100, 0.35);
  text-underline-offset: 3px;
  margin-left: 4px;
}
.cookie-banner-link:hover { text-decoration-color: var(--green); }
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
  white-space: nowrap;
}
.cookie-btn:active { transform: scale(0.97); }
.cookie-btn-primary {
  background: var(--green);
  color: var(--on-green);
  border-color: var(--green);
}
.cookie-btn-primary:hover { background: var(--green-bright); border-color: var(--green-bright); }
.cookie-btn-secondary {
  background: transparent;
  color: var(--fg-soft);
  border-color: var(--line-3);
}
.cookie-btn-secondary:hover { color: var(--fg); border-color: var(--fg-muted); background: var(--graphite); }
.cookie-btn-tertiary {
  background: transparent;
  color: var(--fg-muted);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.18);
  padding: 10px 12px;
}
.cookie-btn-tertiary:hover { color: var(--fg); text-decoration-color: var(--fg-muted); }

/* Modale détaillée */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  animation: fade-in 240ms var(--ease-out);
}
.cookie-modal-panel {
  position: relative;
  background: var(--graphite-2);
  border: 1px solid var(--line-3);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 580px;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: cookie-modal-in 320ms var(--ease-out);
}
@keyframes cookie-modal-in {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--line);
}
.cookie-modal-head h2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0;
}
.cookie-modal-close {
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  cursor: pointer;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.cookie-modal-close:hover { background: var(--graphite); color: var(--fg); border-color: var(--green); }

.cookie-modal-body {
  padding: 20px 28px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-intro {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 20px;
}

.cookie-cat {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.015);
}
.cookie-cat:last-child { margin-bottom: 0; }
.cookie-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.cookie-cat-head h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 4px;
}
.cookie-cat-head p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle.is-disabled { cursor: not-allowed; opacity: 0.55; }
.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--graphite-3);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--fg-muted);
  border-radius: 50%;
  transition: transform 220ms var(--ease), background 200ms var(--ease);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--green);
  border-color: var(--green);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
  background: var(--on-green);
}

.cookie-modal-foot {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding: 16px 28px 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .cookie-banner {
    inset: auto 12px 12px 12px;
    padding: 18px 20px;
  }
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cookie-banner-actions {
    width: 100%;
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .cookie-btn { width: 100%; text-align: center; }
  .cookie-modal { padding: 12px; }
  .cookie-modal-head, .cookie-modal-body, .cookie-modal-foot { padding-left: 20px; padding-right: 20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cookie-banner, .cookie-modal-panel, .cookie-modal-backdrop {
    animation: none;
  }
}

/* ============================================================================
   ZONE D'INTERVENTION (SEO local)
   ============================================================================ */
.reach-section {
  background: var(--carbon);
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reach-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.reach-lead {
  margin-top: 12px;
  color: var(--fg-muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.reach-zone {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease);
}
.reach-zone:hover {
  border-color: var(--line-3);
  transform: translateY(-2px);
}
.reach-zone-paca { border-left: 2px solid var(--green); }
.reach-zone-france { border-left: 2px solid var(--violet); }
.reach-zone-intl { border-left: 2px solid var(--ice-mint-ink); }

.reach-zone-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.reach-zone-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.2;
  margin: 0;
}
.reach-zone-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  flex: 1;
}
.reach-zone-cities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.reach-zone-cities li {
  display: inline-flex;
}
.reach-zone-cities a,
.reach-zone-cities span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  color: var(--fg-soft);
  text-decoration: none;
  transition: border-color 180ms var(--ease), color 180ms var(--ease), background 180ms var(--ease);
}
.reach-zone-cities a:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(127, 238, 100, 0.06);
}
.reach-zone-cities span {
  color: var(--fg-muted);
}

.reach-foot {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-faint);
  font-style: italic;
  max-width: 80ch;
  margin: 0 auto;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (max-width: 800px) {
  .reach-grid { grid-template-columns: 1fr; gap: 12px; }
  .reach-section { padding: 80px 0; }
  .reach-zone { padding: 28px 22px 24px; }
}

/* ============================================================================
   WHY — COUVERTURE GÉOGRAPHIQUE
   ============================================================================ */
.why-coverage {
  background: var(--graphite);
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
.why-coverage-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.why-coverage-text .section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 16px;
}
.why-coverage-text .lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-soft);
}
.why-coverage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}
.why-stat {
  background: var(--carbon);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 240ms var(--ease);
}
.why-stat:hover { border-color: var(--green); }
.why-stat-num {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
}
.why-stat-label {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--fg-muted);
  letter-spacing: -0.005em;
}

@media (max-width: 800px) {
  .why-coverage { padding: 80px 0; }
  .why-coverage-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-coverage-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-stat { padding: 22px 18px; }
  .why-stat-num { font-size: 36px; }
}

/* ============================================================================
   PORTFOLIO PHOTOS (mockups réels)
   ============================================================================ */
.pf-photo {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.pf-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 600ms var(--ease);
}
.svc-card:hover .pf-photo img {
  transform: scale(1.03);
}

/* ============================================================================
   MOCKUP — FIGMA WIREFRAME (Service 4 : Design & UX)
   ============================================================================ */
.mk-fig {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--font-mono);
}
.mk-fig-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.mk-fig-tool {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.18);
}
.mk-fig-spacer { flex: 1; }
.mk-fig-frame-label {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.02em;
}
.mk-fig-canvas {
  flex: 1;
  padding: 16px 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mk-fig-frame {
  width: 100%;
  max-width: 280px;
  background: #fff;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mk-fig-block {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 3px;
}
.mk-fig-header { height: 12px; width: 60%; }
.mk-fig-row { display: flex; }
.mk-fig-hero { height: 48px; width: 100%; background: rgba(0, 0, 0, 0.18); }
.mk-fig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mk-fig-card { height: 36px; }
.mk-fig-cursor {
  position: absolute;
  bottom: 18px;
  right: 24px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.mk-fig-cursor-label {
  background: var(--green, #7FEE64);
  color: #0a0a0a;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 12px;
  margin-left: 2px;
  letter-spacing: 0.02em;
}

/* ============================================================================
   MOCKUP — SEO ANALYTICS DASHBOARD (Service 5 : Marketing & SEO)
   ============================================================================ */
.mk-seo {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  gap: 12px;
  font-family: var(--font-mono);
}
.mk-seo-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.mk-seo-title {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.65);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mk-seo-delta {
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
}
.mk-seo-chart {
  height: 60px;
  width: 100%;
}
.mk-seo-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}
.mk-seo-keywords {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mk-seo-kw {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  font-size: 10.5px;
}
.mk-seo-kw-text {
  color: rgba(0, 0, 0, 0.78);
  letter-spacing: -0.005em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 8px;
}
.mk-seo-kw-pos {
  color: #0a0a0a;
  font-weight: 600;
  flex-shrink: 0;
}

/* ============================================================================
   MOCKUP — EMAIL CAMPAIGN (Service 6 : Emailing)
   ============================================================================ */
.mk-mail {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.06);
  font-family: var(--font-mono);
}
.mk-mail-header {
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mk-mail-header-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green, #7FEE64);
}
.mk-mail-body {
  flex: 1;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mk-mail-subject {
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
  font-family: var(--font-display, var(--font-mono));
  line-height: 1.3;
}
.mk-mail-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.55);
}
.mk-mail-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.mk-mail-step {
  background: rgba(0, 0, 0, 0.08);
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 9.5px;
  color: rgba(0, 0, 0, 0.78);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.mk-mail-step.is-active {
  background: var(--green, #7FEE64);
  color: #0a0a0a;
  font-weight: 600;
}
.mk-mail-arrow {
  color: rgba(0, 0, 0, 0.35);
  font-size: 11px;
}
.mk-mail-stats {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mk-mail-stat {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.78);
}
.mk-mail-stat strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  font-family: var(--font-display, var(--font-mono));
}

/* ============================================================================
   SECTION FLEXIBILITÉ — refonte sans tranches de tarifs
   ============================================================================ */
.flexibility-banner {
  margin-top: 64px;
  padding: 56px 48px 48px;
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.flexibility-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green) 30%, var(--green) 70%, transparent);
  opacity: 0.4;
}
.flexibility-banner-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.flexibility-banner-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 18px;
}
.flexibility-banner-title em {
  font-style: normal;
  color: var(--green);
}
.flexibility-banner-lead {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 680px;
  margin: 0 auto;
}
.flexibility-banner-lead strong {
  color: var(--fg);
  font-weight: 600;
}
.flexibility-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.flexibility-pillar {
  background: var(--carbon);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease);
}
.flexibility-pillar:hover {
  border-color: var(--line-3);
  transform: translateY(-2px);
}
.flexibility-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(127, 238, 100, 0.1);
  border: 1px solid rgba(127, 238, 100, 0.25);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flexibility-pillar-title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg);
  line-height: 1.25;
  margin: 0;
}
.flexibility-pillar-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}
.flexibility-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--green);
  color: #08080A;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  text-decoration: none;
  margin: 0 auto;
  width: fit-content;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.flexibility-banner-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px -8px rgba(127, 238, 100, 0.5);
}
.flexibility-banner > .flexibility-banner-cta {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .flexibility-banner { padding: 40px 22px 36px; margin-top: 40px; }
  .flexibility-pillars { grid-template-columns: 1fr; gap: 12px; }
  .flexibility-pillar { padding: 24px 22px 22px; }
  .flexibility-banner-head { margin-bottom: 32px; }
}

/* ============================================================================
   REACH — illustrations zones d'intervention
   ============================================================================ */
.reach-zone-illus {
  width: 100%;
  height: 130px;
  margin-bottom: 16px;
  background: var(--carbon);
  border-radius: var(--r-md);
  border: 1px solid var(--line-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reach-zone-illus svg {
  width: 100%;
  height: 100%;
  display: block;
}
.reach-zone:hover .reach-zone-illus {
  border-color: var(--line-3);
}

@media (max-width: 800px) {
  .reach-zone-illus { height: 110px; }
}

/* ============================================================================
   MOCKUP : FIGMA WIREFRAME (Service Design & UX)
   ============================================================================ */
.mk-fig {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  overflow: hidden;
}
.mk-fig-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mk-fig-tool {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.18);
}
.mk-fig-tool:nth-child(2) { border-radius: 50%; }
.mk-fig-spacer { flex: 1; }
.mk-fig-frame-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
}
.mk-fig-canvas {
  flex: 1;
  padding: 14px;
  position: relative;
}
.mk-fig-frame {
  background: #fff;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}
.mk-fig-block {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 3px;
}
.mk-fig-header { height: 14px; }
.mk-fig-row { flex: 0 0 auto; }
.mk-fig-hero { height: 50px; background: rgba(0, 0, 0, 0.18); }
.mk-fig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  flex: 1;
}
.mk-fig-card { min-height: 28px; }
.mk-fig-cursor {
  position: absolute;
  bottom: 22px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.mk-fig-cursor-label {
  background: #0a0a0a;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

/* ============================================================================
   MOCKUP : ANALYTICS SEO (Service Marketing & SEO)
   ============================================================================ */
.mk-seo {
  padding: 14px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.mk-seo-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.mk-seo-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
}
.mk-seo-delta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: #16803c;
}
.mk-seo-chart {
  height: 60px;
  width: 100%;
}
.mk-seo-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}
.mk-seo-keywords {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}
.mk-seo-kw {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(0, 0, 0, 0.75);
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
.mk-seo-kw-text {
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mk-seo-kw-pos {
  font-weight: 600;
  color: #16803c;
  flex-shrink: 0;
}

/* ============================================================================
   MOCKUP : EMAIL CAMPAIGN (Service Emailing)
   ============================================================================ */
.mk-email {
  padding: 14px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mk-email-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mk-email-from {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
}
.mk-email-time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(0, 0, 0, 0.45);
}
.mk-email-subject {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.3;
}
.mk-email-preview {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.4;
}
.mk-email-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
}
.mk-email-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}
.mk-email-flow-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}
.mk-email-flow-step.active .mk-email-flow-icon {
  background: #16803c;
  color: #fff;
}
.mk-email-flow-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
}
.mk-email-flow-arrow {
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
}

/* ============================================================================
   SECTION APPROCHE — adaptée à tous projets et budgets
   ============================================================================ */
.approach-section {
  background: var(--neon-yellow, #DDFF55);
  color: #08080A;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.approach-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  z-index: 1;
}
.approach-deco {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.5;
  color: #08080A;
  z-index: 0;
}
.approach-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.approach-content .kicker { color: #08080A; opacity: 0.7; margin-bottom: 16px; }
.approach-content .kicker-dot { background: #08080A; }
.approach-title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #08080A;
  margin: 0 0 28px;
}
.approach-title em {
  font-style: normal;
  background: #08080A;
  color: var(--neon-yellow, #DDFF55);
  padding: 0 12px;
  border-radius: 6px;
}
.approach-lead {
  font-size: 17px;
  line-height: 1.55;
  color: #08080A;
  opacity: 0.88;
  max-width: 68ch;
  margin: 0 0 48px;
}
.approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.approach-pillar {
  background: rgba(8, 8, 10, 0.06);
  border: 1px solid rgba(8, 8, 10, 0.12);
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}
.approach-pillar:hover {
  background: rgba(8, 8, 10, 0.09);
  border-color: rgba(8, 8, 10, 0.22);
  transform: translateY(-2px);
}
.approach-pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: #08080A;
  color: var(--neon-yellow, #DDFF55);
  margin-bottom: 14px;
}
.approach-pillar-title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #08080A;
  margin: 0 0 8px;
  line-height: 1.25;
}
.approach-pillar-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(8, 8, 10, 0.78);
  margin: 0;
}
.approach-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: #08080A;
  color: var(--neon-yellow, #DDFF55);
  text-decoration: none;
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}
.approach-cta:hover {
  background: #1a1a1f;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .approach-pillars { grid-template-columns: 1fr; gap: 14px; }
  .approach-section { padding: 80px 0; }
  .approach-deco { right: -200px; opacity: 0.3; }
}
@media (max-width: 720px) {
  .approach-title { font-size: 32px; }
  .approach-lead { font-size: 15px; margin-bottom: 32px; }
  .approach-pillar { padding: 22px 20px; }
}

/* ============================================================================
   MODULE RÉSERVATION (Lot 8)
   ============================================================================ */

/* Flash messages */
.booking-flash {
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.booking-flash-success {
  background: rgba(127, 238, 100, 0.1);
  border: 1px solid rgba(127, 238, 100, 0.3);
  color: var(--green);
}
.booking-flash-error {
  background: rgba(255, 90, 90, 0.08);
  border: 1px solid rgba(255, 90, 90, 0.25);
  color: #ff7878;
}

/* Card commune (success / view existing) */
.booking-card {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 36px;
}
.booking-success {
  text-align: center;
  padding: 56px 40px;
}
.booking-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(127, 238, 100, 0.12);
  color: var(--green);
  margin: 0 auto 24px;
}
.booking-success h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: var(--fg);
}
.booking-success-subtitle {
  color: var(--fg-muted);
  margin: 0 0 28px;
  font-size: 14px;
}

/* Récap (lignes label : valeur) */
.booking-recap {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 20px;
}
.booking-recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  gap: 16px;
}
.booking-recap-row:last-child { border-bottom: none; }
.booking-recap-row span {
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.booking-recap-row strong {
  font-weight: 500;
  color: var(--fg);
  text-align: right;
}

/* Grille principale : calendrier + form */
.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 880px) {
  .booking-grid { grid-template-columns: 1fr; gap: 24px; }
}

.booking-step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 16px;
}
.booking-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--carbon);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
}

/* Calendrier — grille des jours */
.booking-calendar {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 32px;
}
.booking-days {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}
.booking-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 12px 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 150ms var(--ease), border-color 150ms var(--ease), transform 150ms var(--ease);
  color: var(--fg);
  font-family: inherit;
}
.booking-day:hover:not(.is-disabled) {
  background: rgba(127, 238, 100, 0.06);
  border-color: rgba(127, 238, 100, 0.4);
  transform: translateY(-1px);
}
.booking-day.is-active {
  background: rgba(127, 238, 100, 0.12);
  border-color: var(--green);
}
.booking-day.is-today {
  position: relative;
}
.booking-day.is-today::before {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.booking-day.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.booking-day-weekday {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.booking-day-num {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.booking-day-month {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.booking-day-count {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--green);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.booking-day.is-disabled .booking-day-count {
  color: var(--fg-muted);
}

/* Slots horaires */
.booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 56px;
}
.booking-slot {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 150ms var(--ease), border-color 150ms var(--ease), transform 150ms var(--ease);
}
.booking-slot:hover {
  background: rgba(127, 238, 100, 0.06);
  border-color: rgba(127, 238, 100, 0.4);
}
.booking-slot.is-active {
  background: var(--green);
  color: var(--carbon);
  border-color: var(--green);
}
.booking-slots-empty {
  color: var(--fg-muted);
  font-size: 13px;
  padding: 12px 0;
  margin: 0;
}

/* Formulaire */
.booking-form-wrap {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 32px;
}
.booking-form .form-group { margin-bottom: 16px; }
.booking-form .form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--fg);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 150ms var(--ease), background 150ms var(--ease);
}
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(127, 238, 100, 0.04);
}
.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .booking-form .form-row { grid-template-columns: 1fr; }
}
.booking-form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
}
.booking-form button[type="submit"]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.booking-form-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
  text-align: center;
}

.booking-selected-recap {
  background: rgba(127, 238, 100, 0.06);
  border: 1px solid rgba(127, 238, 100, 0.25);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  margin-bottom: 18px;
}
.booking-selected-recap-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.booking-selected-recap-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

/* ============================================================================
   BANDEAU "JE M'ADAPTE AUX PETITS BUDGETS" — sous la grille tarifs jaune
   ============================================================================ */
.pricing-flash-adapt {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 56px;
  padding: 32px 36px;
  background: rgba(8, 8, 10, 0.06);
  border: 1px solid rgba(8, 8, 10, 0.18);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}
.pricing-flash-adapt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: #08080A;
  color: var(--neon-yellow, #DDFF55);
  flex-shrink: 0;
}
.pricing-flash-adapt-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #08080A;
  margin: 0 0 8px;
  line-height: 1.2;
}
.pricing-flash-adapt-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(8, 8, 10, 0.78);
  margin: 0 0 16px;
  max-width: 72ch;
}
.pricing-flash-adapt-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #08080A;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #08080A;
  transition: gap 180ms var(--ease);
}
.pricing-flash-adapt-cta:hover {
  gap: 14px;
}

@media (max-width: 720px) {
  .pricing-flash-adapt {
    grid-template-columns: 1fr;
    padding: 24px 22px;
    margin-top: 40px;
  }
  .pricing-flash-adapt-title { font-size: 19px; }
  .pricing-flash-adapt-desc  { font-size: 13.5px; }
}

/* ============================================================================
   ILLUSTRATION HERO LANDING VILLE — pin animé sur grille
   ============================================================================ */
.city-hero-illus {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
}
.city-hero-illus::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, var(--green-glow), transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.city-hero-illus svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .city-hero-illus {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ============================================================================
   AJOUTS PRICING — descriptifs + lien vers détail
   ============================================================================ */
.price-card-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(10, 15, 0, 0.72);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10, 15, 0, 0.1);
}
.price-card.is-highlight .price-card-desc {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.pricing-flash-link-row {
  text-align: center;
  margin: 32px 0 0;
}
.pricing-flash-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #08080A;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #08080A;
  transition: gap 180ms var(--ease);
}
.pricing-flash-link:hover {
  gap: 14px;
}

/* ============================================================================
   BANDEAU STRIPE — Page Maintenance / Abonnements
   ============================================================================ */
.stripe-trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  max-width: 720px;
  flex-wrap: wrap;
}
.stripe-trust-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(127, 238, 100, 0.1);
  color: var(--green);
  flex-shrink: 0;
}
.stripe-trust-bar-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stripe-trust-bar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.stripe-trust-bar-logo {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 6px;
  padding: 6px 10px;
}
.stripe-trust-bar-logo img {
  height: 24px;
  width: auto;
  display: block;
  /* Logo Stripe en violet officiel #6772E5, conservé tel quel */
}
.stripe-trust-bar-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: var(--fg-soft);
  margin-left: auto;
}
.stripe-trust-bar-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.stripe-trust-bar-features svg {
  color: var(--green);
}
@media (max-width: 720px) {
  .stripe-trust-bar {
    padding: 16px 20px;
    gap: 14px;
  }
  .stripe-trust-bar-features {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    gap: 6px;
  }
}

/* ============================================================================
   CALENDRIER LUDIQUE — vrai layout mensuel (lun → dim)
   ============================================================================ */
.booking-month {
  margin-bottom: 16px;
}
.booking-month[hidden] { display: none; }

.booking-month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 4px;
}
.booking-month-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg);
  text-align: center;
  flex: 1;
}
.booking-month-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--fg-soft);
  cursor: pointer;
  transition: background 150ms var(--ease), color 150ms var(--ease);
}
.booking-month-nav:hover:not(:disabled) {
  background: rgba(127, 238, 100, 0.1);
  color: var(--green);
  border-color: rgba(127, 238, 100, 0.3);
}
.booking-month-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.booking-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px;
}
.booking-cal-weekday {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
  padding: 6px 0 10px;
  font-weight: 500;
}
.booking-cal-cell {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-family: inherit;
  color: var(--fg);
  position: relative;
  transition: background 120ms var(--ease), border-color 120ms var(--ease), transform 120ms var(--ease);
  min-height: 44px;
  padding: 0;
}
.booking-cal-cell.is-empty {
  visibility: hidden;
  cursor: default;
}
.booking-cal-cell.booking-day:not(.is-disabled):hover {
  background: rgba(127, 238, 100, 0.08);
  border-color: rgba(127, 238, 100, 0.4);
  transform: scale(1.05);
}
.booking-cal-cell.is-active {
  background: var(--green) !important;
  border-color: var(--green);
  color: var(--carbon);
  font-weight: 600;
}
.booking-cal-cell.is-active .booking-cal-dot {
  background: var(--carbon);
}
.booking-cal-cell.is-today {
  border-color: rgba(127, 238, 100, 0.5);
  border-style: dashed;
}
.booking-cal-cell.is-disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.booking-cal-cell.is-past {
  opacity: 0.2;
}
.booking-cal-day {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.booking-cal-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}
.booking-cal-dot.is-static {
  display: inline-block;
  margin-right: 4px;
}
.booking-cal-dot-empty {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 4px;
}

.booking-cal-legend {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  justify-content: center;
}
.booking-cal-legend span {
  display: inline-flex;
  align-items: center;
}

/* On masque l'ancien layout des jours en bande */
.booking-days {
  display: none;
}

@media (max-width: 720px) {
  .booking-cal-cell { min-height: 40px; }
  .booking-cal-day { font-size: 13px; }
  .booking-cal-grid { padding: 10px; gap: 3px; }
}

/* Icône calendrier inline dans les CTAs "Réserver un créneau" */
.btn-cal-icon {
  margin-right: 4px;
  display: inline-block;
  vertical-align: -3px;
}
