/* ==========================================================================
   QPest Vitrine v2 — design Claude transpilé en HTML statique
   Source : /tmp/claude_design_qpest/qpest/project/ui_kits/vitrine/v2.css
   Adapté : Plus Jakarta Sans (au lieu de Geist), italic synthétique sur .hl
   ========================================================================== */

:root {
  /* Surfaces */
  --bg:            oklch(98.4% 0.008 150);
  --bg-elev:       oklch(99.5% 0.004 150);
  --bg-sink:       oklch(95.2% 0.014 172);
  --bg-soft:       #F7F8FA;

  /* Inks */
  --ink:           oklch(16% 0.02 200);
  --ink-2:         oklch(32% 0.02 200);
  --ink-3:         oklch(52% 0.015 200);
  --hair:          oklch(89% 0.008 200);
  --hair-strong:   oklch(82% 0.012 200);

  /* Brand */
  --mint:          #34D399;
  --mint-50:       #ECFDF5;
  --mint-600:      oklch(72% 0.145 172);
  --mint-700:      #059669;
  --mint-wash:     oklch(94% 0.035 172);
  --cyan:          #22D3EE;
  --cyan-700:      #0891B2;
  --ocean:         #2563EB;
  --ocean-deep:    oklch(26% 0.04 210);
  --amber:         #F59E0B;

  /* Color coding nuisibles — ALIGNÉS sur le site existant */
  --pest-punaises: #FF6B35;  /* orange pompier (au lieu du corail rose) */
  --pest-cafards:  #22D3EE;  /* cyan — inchangé */
  --pest-rats:     #475569;  /* slate-700 neutre (au lieu d'indigo) */
  --pest-guepes:   #F59E0B;  /* amber/jaune — inchangé */
  --pest-fourmis:  #84CC16;  /* vert sauge */
  --pest-pigeons:  #94A3B8;  /* gris-bleu */

  /* Effets */
  --grain-opacity: 0.035;

  /* Type — Plus Jakarta Sans à la place de Geist */
  --f-display: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Shadows */
  --shadow-card:  0 1px 2px oklch(38% 0.05 210 / 0.04),
                  0 8px 24px -8px oklch(38% 0.05 210 / 0.08);
  --shadow-xl:    0 24px 48px -12px oklch(38% 0.05 210 / 0.14),
                  0 2px 8px oklch(38% 0.05 210 / 0.04);
  --shadow-cta:   0 1px 2px oklch(38% 0.05 210 / 0.06),
                  0 12px 32px -8px oklch(78% 0.14 172 / 0.35);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  /* Désactive les common ligatures (fi, ffi, fl, ff) qui bouffent le
     point du i avec Plus Jakarta Sans (fixe, affiché, fixé...) */
  font-variant-ligatures: no-common-ligatures;
}

/* Grain overlay — appliqué uniquement si pas de prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  body::before {
    content: "";
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: var(--grain-opacity);
    pointer-events: none;
    z-index: 100;
    mix-blend-mode: multiply;
  }
}
@media (prefers-reduced-motion: reduce) {
  body::before { display: none; }
}

/* Typography primitives */
.display { font-family: var(--f-display); font-weight: 800; letter-spacing: -0.045em; line-height: 0.92; color: var(--ink); }
.h2 { font-weight: 700; letter-spacing: -0.035em; line-height: 1.0; color: var(--ink); }
.eyebrow { font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.mono { font-family: var(--f-mono); font-variant-numeric: tabular-nums; }

/* Container */
.shell { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .shell { padding: 0 20px; } }
.hair { height: 1px; background: var(--hair); width: 100%; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 999px; font: 600 15px/1 var(--f-display); letter-spacing: -0.01em; cursor: pointer; border: none; transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out); text-decoration: none; white-space: nowrap; min-height: 44px; }
.btn-primary { background: linear-gradient(135deg, #34D399 0%, #22D3EE 50%, #2563EB 100%); color: #fff; box-shadow: 0 1px 2px oklch(38% 0.05 210 / 0.08), 0 14px 36px -8px oklch(62% 0.18 240 / 0.5); font-weight: 700; }
@media (hover: hover) {
  .btn-primary:hover { transform: translateY(-1px); }
}
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--hair-strong); }
@media (hover: hover) {
  .btn-secondary:hover { background: var(--bg-sink); }
}
.btn-mint { background: var(--mint); color: var(--ocean-deep); }
.btn-lg { padding: 18px 30px; font-size: 16px; }

:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus, .skip-link:focus-visible {
  left: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

/* ==========================================================================
   OVERRIDE .hl — gradient mint→cyan→ocean (PAS d'italique, décision finale)
   ========================================================================== */
.hl {
  background: linear-gradient(90deg, #34D399 0%, #22D3EE 50%, #2563EB 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-style: normal !important;
  font-weight: 800 !important;
}

/* Override les définitions du source v2.css qui mettent italic sur .hl dans les titles */
.hero-title .hl,
.section-title .hl,
.cta-title .hl,
.faq-qt .hl {
  font-style: normal !important;
  font-variation-settings: normal !important;
}

/* ============ HERO — format état validé (image #18) ============ */
/* Padding-top adaptatif : 120px mobile (320-768) → 160px desktop pour compenser nav fixed (~80px) + respiration visuelle */
.hero {
  padding: clamp(120px, 10vw, 160px) 0 56px !important;
  min-height: auto !important;
  overflow: hidden;
}

/* H1 grand format */
.hero-title {
  font-size: clamp(44px, 5vw, 76px) !important;
  margin: 0 0 32px !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
}

/* Sub paragraphe taille pleine */
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px) !important;
  line-height: 1.5 !important;
  margin: 0 0 36px !important;
  max-width: 560px;
}

/* Mockup phone taille pleine */
.hero-phone-wrap {
  max-width: 300px !important;
  aspect-ratio: 9/19 !important;
  align-self: center !important;
  margin-bottom: 0 !important;
}
@media (max-width: 1024px) { .hero-phone-wrap { max-width: 260px !important; } }

.hero-grid {
  grid-template-columns: 1.25fr 0.75fr !important;
  align-items: center !important;
  gap: 56px !important;
}
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr !important; gap: 48px !important; } }

/* Gaps internes hero : valeurs design source */
.hero-eyebrow { margin-bottom: 28px !important; }
.hero-actions { margin-bottom: 40px !important; gap: 12px !important; }
.hero-trust { padding-top: 32px !important; gap: 24px !important; margin-bottom: 0 !important; }

/* Floating cards naturelles */
.hero-phone-wrap [class*="float-card"] { transform: scale(0.85); }

/* ============ ANIMATIONS FLOAT (matche le site existant) ============ */
@keyframes float-up-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-phone-wrap > .hero-phone {
  animation: float-up-down 6s ease-in-out infinite;
}
.float-card-a {
  animation: float-up-down 6s ease-in-out infinite;
  animation-delay: 1.5s;
}
.float-card-b {
  animation: float-up-down 6s ease-in-out infinite;
}

/* Empêcher l'animation hero-word de provoquer du scroll sur les viewports compacts */
.hero-title .line { line-height: 1.05; }

/* ============ OVERRIDE PROBLEM CARDS — light comme tout le site ============ */
.problem-card {
  background: var(--bg-elev) !important;
  border: 1px solid var(--hair) !important;
  color: var(--ink) !important;
  box-shadow: var(--shadow-card);
}
.problem-card .pc-k { color: var(--mint-700) !important; }
.problem-card .pc-t { color: var(--ink) !important; }
.problem-card .pc-s { color: var(--ink-2) !important; }
.pc-bad {
  background: rgba(239, 68, 68, 0.08) !important;
  border: 1px solid rgba(239, 68, 68, 0.2) !important;
}
.pc-bad .pc-lbl { color: #B91C1C !important; }
.pc-bad .pc-val { color: #DC2626 !important; text-decoration: line-through; }
.pc-good {
  background: rgba(52, 211, 153, 0.10) !important;
  border: 1px solid rgba(52, 211, 153, 0.3) !important;
}
.pc-good .pc-lbl { color: var(--mint-700) !important; }
.pc-good .pc-val { color: var(--mint-700) !important; }

/* ============ PILL QPest (refonte section problem — pain points client) ============ */
.pc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(52, 211, 153, 0.10);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 10px;
  font: 500 13px/1.3 var(--f-display);
  color: var(--mint-700);
  align-self: flex-start;
}
.pc-pill b {
  font-weight: 700;
  margin-right: 2px;
}
.pc-pill svg {
  flex: none;
  color: var(--mint-700);
}

/* ============ OVERRIDE TIER-BIG (Cafards) — light + gradient prix ============ */
.tier-big {
  background: var(--bg-elev) !important;
  color: var(--ink) !important;
  border: 1px solid var(--hair) !important;
  box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
}
.tier-big .tier-k { color: var(--ink) !important; }
.tier-big .tier-from { color: var(--ink-3) !important; }
.tier-big .tier-amt {
  background: linear-gradient(90deg, #34D399 0%, #22D3EE 50%, #2563EB 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.tier-big .tier-old { color: var(--ink-3) !important; }
.tier-big .tier-feat li { color: var(--ink-2) !important; }
.tier-big .tier-chk {
  background: var(--mint-wash) !important;
  color: var(--mint-700) !important;
}
.tier-big .tier-cta {
  background: linear-gradient(135deg, #34D399 0%, #22D3EE 50%, #2563EB 100%) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 24px -8px rgba(37, 99, 235, 0.4);
}
@media (hover: hover) {
  .tier-big .tier-cta:hover { transform: translateY(-1px); }
}

/* Q-Pest Vitrine v2 — section-specific styles */

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  isolation: isolate;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease-out);
}
.nav.scrolled { border-bottom-color: var(--hair); }
@media (max-width: 768px) {
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: #ffffff; border-bottom-color: var(--hair); }
  body::before { display: none !important; }
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
@media (max-width: 768px) {
  .nav-inner { padding: 8px 0 !important; }
  .nav-logo img { height: 40px !important; width: auto !important; }
  /* Hero padding-top compensé pour la nav réduite mobile */
  .hero { padding: 80px 0 40px !important; }
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font: 800 19px/1 var(--f-display);
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  display: grid; place-items: center;
  color: var(--bg);
  font: 900 15px/1 var(--f-display);
  letter-spacing: -0.05em;
  box-shadow: 0 2px 8px oklch(78% 0.14 172 / 0.35);
}
.nav-links {
  display: flex; gap: 4px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink-2);
  font: 500 14px/1 var(--f-display);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 140ms, color 140ms;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
@media (hover: hover) {
  .nav-links a:hover { background: var(--bg-sink); color: var(--ink); }
}
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Mobile burger button — affichage du burger sous 900px */
.mobile-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  color: var(--ink);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.mobile-burger:focus-visible { outline: 2px solid var(--mint-700); outline-offset: 2px; }
@media (hover: hover) {
  .mobile-burger:hover { background: var(--bg-sink); }
}
.mobile-burger svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-cta .btn-secondary { display: none; }
  .nav-cta .btn-primary { display: none; }
  .mobile-burger { display: inline-flex !important; }
  .mobile-nav-panel {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--bg-elev);
    padding: 24px;
    z-index: 99;
    display: none;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--hair);
    overflow-y: auto;
  }
  .mobile-nav-panel.is-open { display: flex; }
  .mobile-nav-panel a {
    padding: 16px 20px;
    border-radius: 12px;
    color: var(--ink);
    text-decoration: none;
    font: 600 16px/1 var(--f-display);
    min-height: 56px;
    display: flex;
    align-items: center;
  }
  @media (hover: hover) {
    .mobile-nav-panel a:hover { background: var(--bg-sink); }
  }
}
@media (min-width: 901px) {
  .nav-links { display: flex; }
  .mobile-burger { display: none; }
  .mobile-nav-panel { display: none; }
}

/* ============ HERO ============ */
.hero { position: relative; padding: 120px 0 80px; overflow: hidden; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; }
.hero-ambient { position: absolute; inset: -10%; z-index: 0; pointer-events: none; opacity: 0.55; filter: blur(60px); }
.hero-ambient::before, .hero-ambient::after { content: ""; position: absolute; border-radius: 50%; animation: ambient-drift 22s var(--ease-in-out) infinite; }
.hero-ambient::before { top: 10%; left: 20%; width: 50%; height: 55%; background: var(--mint); }
.hero-ambient::after { top: 40%; right: 10%; width: 40%; height: 50%; background: var(--cyan); animation-delay: -11s; }
@keyframes ambient-drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(5%, -3%) scale(1.1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-ambient::before,
  .hero-ambient::after { animation: none; }
}

/* Pages internes — transition hero → section suivante : approche combinée.
   1) Mask-image : le ambient blob s'éteint progressivement (60% visible
      puis fade out sur les derniers 40%) → plus de coupure nette du blob.
   2) Fade ::after adaptatif : couvre la zone basse du hero avec un
      dégradé transparent→couleur-section-suivante, gomme la transition
      de bg-color résiduelle (cas .sim-section bg-sink notamment).
   Home non concernée (hero suivi d'un <div class="marquee">). */
.hero:has(+ section) .hero-ambient {
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}

.hero:has(+ section)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Override : sim-section a un bg gris-vert (var(--bg-sink)) → fader vers
   cette même couleur pour annuler la cassure bg-color sur tarifs. */
.hero:has(+ section.sim-section)::after {
  background: linear-gradient(to bottom, transparent 0%, var(--bg-sink) 100%);
}

/* Surcharge bg-white des sections Tailwind après hero (faq, devenir-tech)
   pour aligner sur var(--bg) et éviter cassure avec le hero. */
.hero + section.bg-white,
.hero + section[class*="bg-white"] {
  background: var(--bg) !important;
}

/* Force le body sur var(--bg) si bg-slate-50 Tailwind (redondance défense)
   pour éviter qu'une zone du body sous le hero/sections révèle bg-slate-50. */
body,
body[class*="bg-slate-"] {
  background: var(--bg) !important;
}

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; width: 100%; }
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--bg-elev);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font: 500 13px/1 var(--f-display);
  color: var(--ink-2);
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--mint);
  position: relative; display: inline-block;
  color: transparent;
  font-size: 0;
}
.hero-eyebrow-dot::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; background: var(--mint);
  opacity: 0.3; animation: pulse-ring 2.2s var(--ease-out) infinite;
}
@keyframes pulse-ring { 0% { transform: scale(0.9); opacity: 0.4; } 100% { transform: scale(1.8); opacity: 0; } }

.hero-title { font-size: clamp(48px, 6.4vw, 92px); letter-spacing: -0.04em; line-height: 0.96; font-weight: 800; margin: 0 0 28px; color: var(--ink); text-wrap: balance; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; }
.hero-title .hl { color: var(--ocean); font-style: italic; font-variation-settings: "wght" 700, "slnt" -10; }

.hero-sub { font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: 540px; margin: 0 0 36px; }
.hero-sub b { font-weight: 600; color: var(--ink); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; padding-top: 32px; border-top: 1px solid var(--hair); }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font: 500 13px/1.2 var(--f-display); color: var(--ink-3); }
.hero-trust-item svg { color: var(--mint-700); flex: none; }

/* ============ HERO PHONE ============ */
.hero-phone-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  justify-self: end;
  aspect-ratio: 380 / 720;
}
@media (max-width: 1024px) { .hero-phone-wrap { justify-self: center; max-width: 360px; } }
@media (max-width: 600px) {
  .hero-phone-wrap { display: none; }
}

.hero-phone {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #1a1f2a, #0f1320);
  border-radius: 48px;
  padding: 8px;
  box-shadow:
    0 32px 64px -20px rgba(13,18,32,0.35),
    0 12px 24px -8px rgba(13,18,32,0.18),
    inset 0 0 0 1.5px rgba(255,255,255,0.06);
}
.hero-phone-screen {
  width: 100%; height: 100%;
  border-radius: 40px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.hero-phone-notch {
  position: absolute; top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 104px; height: 28px;
  background: #000; border-radius: 100px;
  z-index: 10;
}
.hp-status {
  padding: 14px 26px 0;
  display: flex; justify-content: space-between; align-items: center;
  font: 600 13px/1 var(--f-display); color: var(--ink);
  flex: none;
}
.hp-status-r { display: flex; gap: 5px; align-items: center; color: var(--ink); }

.hp-body { flex: 1; padding: 36px 22px 22px; display: flex; flex-direction: column; gap: 16px; }

.hp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 6px 12px 6px 8px;
  background: var(--mint-50); color: var(--mint-700);
  border-radius: 999px;
  font: 600 10px/1 var(--f-mono);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.hp-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(52,211,153,0.2);
  animation: pulse-ring 2s var(--ease-out) infinite;
}

.hp-title {
  font: 800 26px/1.1 var(--f-display);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.hp-eta {
  background: linear-gradient(90deg, var(--mint) 0%, var(--cyan) 50%, var(--ocean) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.hp-map {
  height: 130px; border-radius: 18px;
  background: linear-gradient(180deg, #F0FDFA, #F0F9FF);
  overflow: hidden; position: relative;
  border: 1px solid var(--hair);
}
.hp-pin {
  position: absolute; transform: translate(-50%, -50%);
  width: 32px; height: 32px; border-radius: 999px;
  display: grid; place-items: center;
  font: 700 12px/1 var(--f-display);
  background: var(--bg);
  border: 2.5px solid var(--cyan);
  color: var(--cyan-700, #0891B2);
  box-shadow: 0 4px 12px rgba(8,145,178,0.25);
}
.hp-pin-tech { left: 32%; top: 60%; }
.hp-pin-home { left: 78%; top: 30%; width: 12px; height: 12px; background: var(--ocean, #2563EB); border: none; box-shadow: 0 0 0 5px rgba(37,99,235,0.18); }

@keyframes route-dash { to { stroke-dashoffset: -30; } }

.hp-tech {
  background: var(--bg-soft, #F7F8FA);
  border-radius: 16px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
}
.hp-tech-avatar {
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--cyan), var(--ocean, #2563EB));
  color: #fff; font: 700 12px/1 var(--f-display);
  display: grid; place-items: center; flex: none;
}
.hp-tech-info { flex: 1; min-width: 0; }
.hp-tech-name { font: 600 13px/1.2 var(--f-display); color: var(--ink); }
.hp-tech-meta { font: 500 11px/1 var(--f-display); color: var(--ink-3); margin-top: 3px; display: flex; align-items: center; gap: 4px; }
.hp-star { color: #F59E0B; }
.hp-tech-actions { display: flex; gap: 6px; }
.hp-icbtn {
  all: unset; cursor: pointer;
  width: 32px; height: 32px; border-radius: 999px;
  display: grid; place-items: center;
  transition: transform 160ms var(--ease-out);
}
.hp-icbtn-ghost { background: var(--bg); border: 1px solid var(--hair); color: var(--ink); }
.hp-icbtn-call { background: var(--mint); color: #fff; }
.hp-icbtn:active { transform: scale(0.94); }

.hp-steps {
  display: flex; gap: 6px; margin-top: 4px;
}
.hp-step { flex: 1; }
.hp-step-bar {
  height: 3px; border-radius: 999px;
  background: var(--bg-sink, #F0F2F5);
  transition: background 220ms var(--ease-out);
}
.hp-step-bar.on {
  background: linear-gradient(90deg, var(--mint), var(--cyan));
}
.hp-step-lbl {
  font: 500 9px/1 var(--f-mono);
  color: var(--ink-muted, #8A95A3);
  margin-top: 6px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.hp-step-lbl.on { color: var(--ocean, #2563EB); }

.hp-home {
  position: absolute; bottom: 7px; left: 50%;
  transform: translateX(-50%);
  width: 124px; height: 4px;
  background: var(--ink); opacity: 0.3;
  border-radius: 999px;
}

/* Floating cards */
.hp-float {
  position: absolute;
  background: var(--bg-elev, #fff);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 12px 14px;
  font: 500 12px/1.3 var(--f-display);
  color: var(--ink);
  box-shadow: 0 12px 28px -10px rgba(13,18,32,0.18), 0 4px 8px -4px rgba(13,18,32,0.06);
  z-index: 4;
}
.hp-float-h { font: 700 16px/1.1 var(--f-display); letter-spacing: -0.01em; }
.hp-float-h .hp-float-dot { display: inline-block; width: 7px; height: 7px; border-radius: 999px; background: var(--mint); margin-right: 6px; transform: translateY(-1px); box-shadow: 0 0 0 3px rgba(52,211,153,0.2); }
.hp-float-s { font: 500 11px/1.3 var(--f-mono); color: var(--ink-3); margin-top: 4px; }
.hp-float-a { top: 20%; left: -10%; animation: hero-word 700ms var(--ease-out) 1.6s both; }
.hp-float-b { bottom: 16%; right: -8%; animation: hero-word 700ms var(--ease-out) 2.0s both; }
@media (max-width: 1024px) {
  .hp-float-a { left: -4%; }
  .hp-float-b { right: -4%; }
}
@media (max-width: 600px) {
  .hp-float-a, .hp-float-b { display: none; }
}
.map-frame-head {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--hair);
  background: color-mix(in oklab, var(--bg-elev) 80%, transparent);
  backdrop-filter: blur(8px);
  z-index: 5;
}
.map-frame-title { font: 500 12px/1 var(--f-mono); color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.map-dots { display: flex; gap: 5px; }
.map-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--hair-strong); }
.map-dots span:nth-child(1) { background: oklch(72% 0.17 30); }
.map-dots span:nth-child(2) { background: oklch(85% 0.15 88); }
.map-dots span:nth-child(3) { background: var(--mint); }

.map-svg { position: absolute; inset: 48px 0 48px; width: 100%; height: calc(100% - 96px); }
.map-path { fill: color-mix(in oklab, var(--mint) 8%, transparent); stroke: var(--mint); stroke-width: 1; stroke-dasharray: 2000; stroke-dashoffset: 2000; animation: draw-map 2.4s var(--ease-out) 0.6s forwards; }
.map-dept { fill: none; stroke: var(--hair-strong); stroke-width: 0.6; opacity: 0; animation: fade-in 600ms var(--ease-out) forwards; }
@keyframes draw-map { to { stroke-dashoffset: 0; } }
@keyframes fade-in { to { opacity: 1; } }

.map-tech { fill: var(--mint); stroke: var(--bg-elev); stroke-width: 2; opacity: 0; animation: tech-in 400ms var(--ease-out) forwards; }
.map-tech-ping { fill: var(--mint); opacity: 0.3; transform-origin: center; animation: tech-ping 2.4s var(--ease-out) infinite; }
@keyframes tech-in { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
@keyframes tech-ping { 0% { r: 4; opacity: 0.6; } 100% { r: 18; opacity: 0; } }

.map-frame-foot {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  border-top: 1px solid var(--hair);
  background: color-mix(in oklab, var(--bg-elev) 80%, transparent);
  backdrop-filter: blur(8px);
  display: flex; justify-content: space-between; align-items: center;
  font: 500 12px/1.3 var(--f-mono); color: var(--ink-3);
}
.map-frame-foot b { color: var(--ink); font-weight: 600; }
.map-count { font: 700 18px/1 var(--f-mono); color: var(--mint-700); }

.map-overlay-card {
  position: absolute; background: var(--bg-elev);
  border: 1px solid var(--hair); border-radius: 12px;
  padding: 12px 14px; box-shadow: var(--shadow-card);
  font: 500 12px/1.3 var(--f-display); color: var(--ink); z-index: 4;
}
.map-overlay-card .h { font-weight: 600; letter-spacing: -0.01em; }
.map-overlay-card .s { color: var(--ink-3); font-size: 11px; margin-top: 3px; }
.map-overlay-a { top: 22%; left: -8%; }
.map-overlay-b { bottom: 24%; right: -6%; }
@media (max-width: 1024px) { .map-overlay-a { top: 18%; left: 0%; } .map-overlay-b { bottom: 20%; right: 0%; } }

/* ============ MARQUEE ============ */
.marquee { overflow: hidden; padding: 18px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); background: var(--bg); }
.marquee-inner { display: flex; gap: 56px; white-space: nowrap; animation: marquee 38s linear infinite; font: 500 14px/1 var(--f-mono); color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase; }
.marquee-inner > span { display: inline-flex; gap: 56px; align-items: center; padding-right: 56px; }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--mint); align-self: center; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-inner, .marquee { animation: none !important; }
}

/* ============ GENERIC SECTION ============ */
.section { padding: 120px 0; position: relative; }
.section-dark { background: var(--ink); color: oklch(96% 0.008 172); }
.section-dark .section-title, .section-dark .section-lede, .section-dark h3, .section-dark h2 { color: oklch(96% 0.008 172); }
.section-dark .section-lede { color: oklch(80% 0.008 200); }
.section-dark .hl { color: var(--mint); }

.section-head { max-width: 900px; margin: 0 0 72px; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 12px/1 var(--f-mono);
  color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.section-dark .section-kicker { color: oklch(70% 0.015 200); }
.section-title { font-size: clamp(40px, 6vw, 88px); letter-spacing: -0.045em; line-height: 0.96; font-weight: 800; margin: 0 0 20px; color: var(--ink); text-wrap: balance; }
.section-title .hl { color: var(--ocean); font-style: italic; font-variation-settings: "wght" 700, "slnt" -10; }
.section-lede { font-size: 19px; line-height: 1.5; color: var(--ink-2); margin: 0; max-width: 640px; text-wrap: pretty; }

/* ============ SOCIAL PROOF ============ */
.social { padding: 48px 0 72px; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 16px; overflow: hidden; }
@media (max-width: 900px) { .stat-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
.stat { background: var(--bg); padding: 32px 28px; display: flex; flex-direction: column; gap: 8px; }
.stat-num { font: 800 clamp(36px, 4.5vw, 52px)/0.9 var(--f-display); letter-spacing: -0.045em; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat-lbl { font: 500 13px/1.4 var(--f-display); color: var(--ink-3); text-wrap: balance; max-width: 220px; }

/* ============ PROBLEM ============ */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card { background: oklch(24% 0.025 200); border: 1px solid oklch(28% 0.025 200); border-radius: 18px; padding: 32px 28px; display: flex; flex-direction: column; gap: 18px; min-height: 360px; color: var(--bg-elev); }
.pc-k { font: 700 13px/1 var(--f-mono); color: oklch(65% 0.12 172); letter-spacing: 0.06em; }
.pc-t { font: 700 26px/1.15 var(--f-display); letter-spacing: -0.025em; margin: 0; color: oklch(96% 0.008 172); text-wrap: balance; }
.pc-s { font: 500 14px/1.55 var(--f-display); color: oklch(78% 0.012 200); margin: 0; flex: 1; text-wrap: pretty; }
.pc-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.pc-cell { padding: 14px 16px; border-radius: 12px; display: flex; flex-direction: column; gap: 4px; }
.pc-bad { background: oklch(30% 0.05 30); border: 1px solid oklch(36% 0.06 30); }
.pc-good { background: oklch(32% 0.08 172); border: 1px solid oklch(40% 0.1 172); }
.pc-lbl { font: 500 10px/1 var(--f-mono); color: oklch(75% 0.015 200); text-transform: uppercase; letter-spacing: 0.06em; }
.pc-val { font: 700 19px/1 var(--f-mono); color: oklch(96% 0.008 172); letter-spacing: -0.01em; }
.pc-bad .pc-val { color: oklch(82% 0.1 30); text-decoration: line-through; text-decoration-thickness: 1.5px; }
.pc-good .pc-val { color: var(--mint); }

/* ============ HOW — pinned ============ */
.how { padding: 0; height: 280vh; }
.how-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; }
@media (max-width: 1024px) { .how-grid { grid-template-columns: 1fr; gap: 48px; } .how { height: auto; } .how-sticky { position: relative; top: auto; height: auto; padding: 80px 0; } }
.how-left .section-kicker { margin-top: 0; }
.how-left .section-title { font-size: clamp(36px, 5vw, 64px); margin-bottom: 48px; }
.how-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.how-item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 20px 18px; border-radius: 14px; cursor: pointer; border: 1px solid transparent; transition: all 400ms var(--ease-out); opacity: 0.5; }
.how-item.is-active { opacity: 1; border-color: var(--hair); background: var(--bg-elev); box-shadow: var(--shadow-card); }
.how-item.is-done { opacity: 0.7; }
.how-k { font: 700 13px/1 var(--f-mono); color: var(--ink-3); padding-top: 6px; }
.how-item.is-active .how-k { color: var(--mint-700); }
.how-t { font: 700 22px/1.15 var(--f-display); letter-spacing: -0.025em; color: var(--ink); margin-bottom: 4px; text-wrap: balance; }
.how-s { font: 500 14px/1.55 var(--f-display); color: var(--ink-3); max-height: 0; overflow: hidden; transition: max-height 500ms var(--ease-out), margin-top 500ms var(--ease-out); margin-top: 0; }
.how-item.is-active .how-s { max-height: 200px; margin-top: 8px; }
.how-chip { display: none; }
.how-item.is-active .how-chip { display: inline-flex; margin-top: 12px; padding: 4px 10px; border-radius: 999px; background: var(--mint-wash); color: var(--mint-700); font: 600 11px/1 var(--f-mono); letter-spacing: 0.05em; text-transform: uppercase; }

.how-right { display: flex; justify-content: center; }
.phone { width: 300px; aspect-ratio: 9/19; background: var(--ink); border-radius: 42px; padding: 10px; box-shadow: var(--shadow-xl); position: relative; }
.phone-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 88px; height: 22px; background: #000; border-radius: 14px; z-index: 3; }
.phone-screen { width: 100%; height: 100%; background: var(--bg-elev); border-radius: 34px; overflow: hidden; position: relative; }
.phone-step { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 48px 18px 18px; gap: 14px; animation: ps-in 500ms var(--ease-out); }
@keyframes ps-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.phone-top { padding: 0 4px; }
.ps-eye { font: 500 11px/1 var(--f-mono); color: var(--mint-700); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.ps-eye-ok { color: var(--mint-700); }
.ps-ttl { font: 700 18px/1.2 var(--f-display); letter-spacing: -0.02em; color: var(--ink); }

/* Step 1 — camera */
.ps-cam { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ps-frame { flex: 1; background: oklch(24% 0.025 200); border-radius: 14px; position: relative; overflow: hidden; display: grid; place-items: center; }
.ps-target { position: absolute; inset: 22px; }
.ps-target span { position: absolute; width: 18px; height: 18px; border: 2px solid var(--mint); }
.ps-target span:nth-child(1) { top: 0; left: 0; border-right: none; border-bottom: none; }
.ps-target span:nth-child(2) { top: 0; right: 0; border-left: none; border-bottom: none; }
.ps-target span:nth-child(3) { bottom: 0; left: 0; border-right: none; border-top: none; }
.ps-target span:nth-child(4) { bottom: 0; right: 0; border-left: none; border-top: none; }
.ps-scan { position: absolute; left: 0; right: 0; height: 2px; background: var(--mint); box-shadow: 0 0 18px var(--mint); animation: scan 2.2s ease-in-out infinite; }
@keyframes scan { 0%,100% { top: 20%; } 50% { top: 75%; } }
.ps-obj { font-size: 56px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4)); }
.ps-analy { padding: 10px 12px; background: oklch(22% 0.02 200); border-radius: 10px; display: flex; flex-direction: column; gap: 6px; }
.ps-line { display: flex; justify-content: space-between; font: 500 11px/1.2 var(--f-mono); color: oklch(70% 0.015 200); }
.ps-line b { font-weight: 700; color: oklch(96% 0.008 172); }
.ps-price { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: var(--ink); color: var(--bg-elev); border-radius: 12px; }
.ps-p-l { font: 500 10px/1 var(--f-mono); color: oklch(75% 0.015 200); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.ps-p-v { font: 800 28px/0.9 var(--f-display); letter-spacing: -0.04em; color: var(--mint); }
.ps-btn { background: var(--mint); color: var(--ocean-deep); border: none; padding: 10px 18px; border-radius: 999px; font: 700 13px/1 var(--f-display); cursor: pointer; }

/* Step 2 — map */
.ps-map { flex: 1; background: var(--bg-sink); border-radius: 14px; overflow: hidden; position: relative; }
.ps-map svg { width: 100%; height: 100%; }
.ps-route { animation: route-flow 1.6s linear infinite; }
@keyframes route-flow { to { stroke-dashoffset: -22; } }
.ps-pulse { animation: ps-pulse 1.4s ease-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes ps-pulse { 0% { opacity: 1; r: 6; } 100% { opacity: 0; r: 16; } }
.ps-tech { display: flex; align-items: center; gap: 12px; padding: 14px; background: var(--bg); border: 1px solid var(--hair); border-radius: 12px; }
.ps-tech-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--mint), var(--cyan)); display: grid; place-items: center; color: var(--ink); font: 700 13px/1 var(--f-display); flex: none; }
.ps-tech-info { flex: 1; min-width: 0; }
.ps-tech-n { font: 700 13px/1.2 var(--f-display); color: var(--ink); letter-spacing: -0.01em; }
.ps-tech-r { font: 500 11px/1 var(--f-mono); color: var(--ink-3); margin-top: 3px; }
.ps-tech-eta { text-align: right; }
.ps-eta-n { font: 800 26px/0.9 var(--f-display); color: var(--mint-700); letter-spacing: -0.03em; }
.ps-eta-u { font: 500 10px/1 var(--f-mono); color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; }

/* Step 3 — PDF */
.ps-pdf { flex: 1; background: var(--bg); border: 1px solid var(--hair); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.ps-pdf-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--hair); }
.ps-pdf-ico { width: 36px; height: 36px; border-radius: 8px; background: var(--mint-wash); color: var(--mint-700); display: grid; place-items: center; flex: none; }
.ps-pdf-t { font: 600 13px/1.2 var(--f-mono); color: var(--ink); }
.ps-pdf-s { font: 500 11px/1 var(--f-mono); color: var(--ink-3); margin-top: 3px; }
.ps-pdf-row { display: flex; justify-content: space-between; font: 500 11px/1.3 var(--f-mono); gap: 8px; }
.ps-pdf-row span { color: var(--ink-3); }
.ps-pdf-row b { color: var(--ink); font-weight: 700; text-align: right; }
.ps-guarantee { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--mint-wash); border-radius: 12px; }
.ps-g-ico { width: 36px; height: 36px; border-radius: 50%; background: var(--mint); color: var(--ocean-deep); display: grid; place-items: center; flex: none; }
.ps-guarantee b { display: block; font: 700 13px/1.1 var(--f-display); color: var(--ink); }
.ps-guarantee span:last-child { font: 500 11px/1.3 var(--f-mono); color: var(--ink-2); }
.ps-guarantee > div { display: flex; flex-direction: column; gap: 3px; }

/* ============ PRICING BENTO ============ */
.pricing-s { padding: 120px 0; }
.bento { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.bento-item { display: flex; }
.bento-item.bento-big { grid-row: span 2; grid-column: 1; }
.bento-item:nth-child(2) { grid-column: 2 / span 2; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } .bento-item.bento-big { grid-row: auto; grid-column: span 2; } .bento-item:nth-child(2) { grid-column: span 2; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .bento-item, .bento-item.bento-big, .bento-item:nth-child(2) { grid-column: auto; } }

.tier { flex: 1; background: var(--bg-elev); border: 1px solid var(--hair); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 18px; transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms; }
@media (hover: hover) {
  .tier:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); border-color: var(--hair-strong); }
}
.tier-big { background: var(--ink); color: var(--bg-elev); border-color: var(--ink); min-height: 480px; padding: 36px; }
.tier-head { display: flex; align-items: center; gap: 14px; }
.tier-ico { font-size: 36px; line-height: 1; }
.tier-big .tier-ico { font-size: 64px; }
.tier-k { font: 700 19px/1.1 var(--f-display); letter-spacing: -0.025em; color: var(--ink); margin: 0; }
.tier-big .tier-k { color: var(--bg-elev); font-size: 28px; }
.tier-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.tier-from { font: 500 12px/1 var(--f-mono); color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; }
.tier-big .tier-from { color: oklch(70% 0.015 200); }
.tier-amt { font: 800 48px/0.9 var(--f-display); letter-spacing: -0.045em; color: var(--ink); }
.tier-big .tier-amt { font-size: 88px; color: var(--mint); }
.tier-old { font: 500 16px/1 var(--f-mono); color: var(--ink-3); text-decoration: line-through; }
.tier-big .tier-old { color: oklch(65% 0.08 30); }
.tier-feat { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier-feat li { display: flex; align-items: flex-start; gap: 10px; font: 500 14px/1.4 var(--f-display); color: var(--ink-2); }
.tier-big .tier-feat li { color: oklch(82% 0.012 200); font-size: 15px; }
.tier-chk { width: 22px; height: 22px; border-radius: 50%; background: var(--mint-wash); color: var(--mint-700); display: grid; place-items: center; flex: none; margin-top: -1px; }
.tier-big .tier-chk { background: var(--mint); color: var(--ocean-deep); }
.tier-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 18px; border-radius: 999px; background: var(--bg-sink); color: var(--ink); font: 600 14px/1 var(--f-display); text-decoration: none; letter-spacing: -0.01em; transition: background 160ms; min-height: 44px; }
@media (hover: hover) {
  .tier-cta:hover { background: var(--hair); }
}
.tier-big .tier-cta { background: var(--mint); color: var(--ocean-deep); padding: 14px 22px; font-size: 14px; }
@media (hover: hover) {
  .tier-big .tier-cta:hover { background: var(--mint-600); }
}

.pricing-foot { margin-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 24px 28px; background: var(--bg-sink); border: 1px solid var(--hair); border-radius: 16px; flex-wrap: wrap; }
.pf-note { font: 500 14px/1.5 var(--f-display); color: var(--ink-2); max-width: 640px; }
.pf-note b { color: var(--ink); }

/* ============ TECHNICIANS ============ */
.techs-s .section-head { margin-bottom: 56px; }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1024px) { .tech-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tech-grid { grid-template-columns: 1fr; } }
.tech-card { background: oklch(24% 0.025 200); border: 1px solid oklch(28% 0.025 200); border-radius: 18px; padding: 24px; display: flex; flex-direction: column; gap: 16px; transition: transform 300ms var(--ease-out); }
@media (hover: hover) {
  .tech-card:hover { transform: translateY(-4px); }
}
.tech-head { display: flex; align-items: center; gap: 12px; }
.tech-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--mint), var(--cyan)); color: var(--ink); display: grid; place-items: center; font: 700 14px/1 var(--f-display); flex: none; letter-spacing: -0.02em; }
.tech-id { flex: 1; min-width: 0; }
.tech-n { font: 700 15px/1.1 var(--f-display); color: oklch(96% 0.008 172); letter-spacing: -0.02em; }
.tech-z { font: 500 11px/1 var(--f-mono); color: oklch(70% 0.015 200); margin-top: 3px; }
.tech-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px; border-radius: 999px; background: oklch(32% 0.08 172); color: var(--mint); font: 600 10px/1 var(--f-mono); text-transform: uppercase; letter-spacing: 0.04em; flex: none; }
.tech-stats { display: flex; gap: 18px; padding: 14px 0; border-top: 1px solid oklch(30% 0.025 200); border-bottom: 1px solid oklch(30% 0.025 200); }
.tech-stats > div { flex: 1; }
.ts-v { font: 700 20px/1 var(--f-display); color: oklch(96% 0.008 172); letter-spacing: -0.02em; }
.ts-l { font: 500 10px/1 var(--f-mono); color: oklch(70% 0.015 200); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 5px; }
.tech-spec { font: 500 12px/1.3 var(--f-mono); color: oklch(78% 0.012 200); }

/* ============ TESTIMONIALS ============ */
.testi-s { padding: 120px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 1024px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { background: var(--bg-elev); border: 1px solid var(--hair); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 16px; margin: 0; }
.testi-stars { color: var(--mint-700); font: 500 15px/1 var(--f-display); letter-spacing: 2px; }
.testi-q { font: 500 17px/1.5 var(--f-display); color: var(--ink); letter-spacing: -0.012em; margin: 0; text-wrap: pretty; flex: 1; }
.testi-cap { display: flex; gap: 6px; align-items: baseline; padding-top: 16px; border-top: 1px solid var(--hair); font: 500 13px/1 var(--f-display); }
.testi-n { font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.testi-z { color: var(--ink-3); }

/* ============ FAQ ============ */
.faq-s { padding: 120px 0; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--hair); }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q { all: unset; width: 100%; display: grid; grid-template-columns: 48px 1fr 32px; gap: 16px; align-items: center; padding: 28px 4px; cursor: pointer; text-align: left; }
.faq-k { font: 500 13px/1 var(--f-mono); color: var(--ink-3); }
.faq-qt { font: 600 20px/1.35 var(--f-display); letter-spacing: -0.022em; color: var(--ink); text-wrap: balance; }
.faq-item.is-open .faq-qt { color: var(--ink); }
.faq-ico { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--hair-strong); display: grid; place-items: center; font: 500 18px/1 var(--f-display); color: var(--ink-2); transition: transform 300ms var(--ease-out), background 200ms, border-color 200ms, color 200ms; }
.faq-item.is-open .faq-ico { background: var(--mint); color: var(--ocean-deep); border-color: var(--mint); }
.faq-a-wrap { max-height: 0; overflow: hidden; transition: max-height 400ms var(--ease-out); }
.faq-item.is-open .faq-a-wrap { max-height: 400px; }
.faq-a { padding: 0 4px 28px 68px; font: 500 15px/1.55 var(--f-display); color: var(--ink-2); max-width: 780px; text-wrap: pretty; }
@media (max-width: 560px) { .faq-q { grid-template-columns: 36px 1fr 28px; gap: 10px; } .faq-a { padding-left: 46px; } }

/* ============ CTA FINAL ============ */
.cta-s { padding: 160px 0; background: var(--ink); color: var(--bg); text-align: center; position: relative; overflow: hidden; }
.cta-s::before { content: ""; position: absolute; top: -50%; left: -20%; width: 140%; height: 200%; background: radial-gradient(circle at 30% 30%, var(--mint), transparent 40%), radial-gradient(circle at 70% 60%, var(--cyan), transparent 40%); opacity: 0.2; filter: blur(80px); pointer-events: none; }
.cta-block { position: relative; max-width: 900px; margin: 0 auto; }
.cta-eye { font: 500 13px/1 var(--f-mono); color: var(--mint); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; }
.cta-title { font-size: clamp(56px, 10vw, 160px); letter-spacing: -0.055em; line-height: 0.88; font-weight: 800; margin: 0 0 48px; color: var(--bg); text-wrap: balance; }
.cta-title .hl { color: var(--mint); font-style: italic; font-variation-settings: "wght" 700, "slnt" -10; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-lg { padding: 18px 30px; font-size: 16px; }
.cta-s .btn-primary { background: var(--mint); color: var(--ocean-deep); box-shadow: 0 12px 32px -8px oklch(78% 0.14 172 / 0.6); }
.cta-s .btn-secondary { background: transparent; color: var(--bg); border: 1px solid oklch(40% 0.02 200); }
@media (hover: hover) {
  .cta-s .btn-secondary:hover { background: oklch(24% 0.025 200); }
}
.cta-trust { display: inline-flex; flex-wrap: wrap; gap: 10px; justify-content: center; font: 500 13px/1.4 var(--f-mono); color: oklch(70% 0.015 200); text-transform: uppercase; letter-spacing: 0.08em; }
.cta-dot { opacity: 0.5; }

/* ============ FOOTER ============ */
.footer { background: var(--bg); border-top: 1px solid var(--hair); padding: 80px 0 0; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.4fr 3fr; gap: 64px; padding-bottom: 72px; }
@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { max-width: 360px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-mark { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--mint), var(--cyan)); display: grid; place-items: center; color: var(--bg); font: 900 16px/1 var(--f-display); letter-spacing: -0.05em; }
.footer-logo-w { font: 800 20px/1 var(--f-display); letter-spacing: -0.04em; color: var(--ink); }
.footer-tag { font: 500 14px/1.5 var(--f-display); color: var(--ink-2); margin: 0 0 20px; text-wrap: pretty; }
.footer-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-chip { padding: 5px 12px; border-radius: 999px; background: var(--bg-sink); font: 500 11px/1 var(--f-mono); color: var(--ink-2); }

.footer-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
@media (max-width: 900px) { .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }
.footer-h { font: 700 12px/1 var(--f-mono); color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink-2); text-decoration: none; font: 500 14px/1.3 var(--f-display); letter-spacing: -0.005em; }
@media (hover: hover) {
  .footer-col a:hover { color: var(--ink); }
}

.footer-wordmark { font-size: clamp(100px, 22vw, 320px); font-weight: 900; letter-spacing: -0.06em; line-height: 0.85; color: transparent; -webkit-text-stroke: 1px var(--hair-strong); text-align: center; white-space: nowrap; user-select: none; padding: 0; margin-bottom: -24px; pointer-events: none; }

.footer-bot { border-top: 1px solid var(--hair); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font: 500 12px/1.4 var(--f-mono); color: var(--ink-3); }
.footer-bot a { color: var(--ink-3); text-decoration: none; }
@media (hover: hover) {
  .footer-bot a:hover { color: var(--ink); }
}
.footer-bot-r { display: flex; gap: 8px; align-items: center; }

/* ==========================================================================
   OVERRIDES INTER-PAGES — harmonise les pages Tailwind avec design v3
   Cible : pages portées dont seuls nav + footer ont été swapés
   ========================================================================== */

/* Backgrounds sections : warm white forcé partout */
section.bg-slate-50,
section[class*=" bg-slate-50"],
section[class*="bg-slate-50 "],
main > section.bg-slate-50 {
  background: var(--bg) !important;
}

/* Sections blanches → warm white (cohérent home v3) */
section.bg-white,
section[class*=" bg-white"],
section[class*="bg-white "] {
  background: var(--bg) !important;
}

/* Section blue-50/50 (Notre Histoire) → warm white */
section.bg-blue-50\/50 {
  background: var(--bg) !important;
}

/* H1 sections Tailwind → tokens v3 (typo plus serrée, ink color) */
section h1[class*="text-4xl"][class*="lg:text-6xl"],
section h1[class*="text-4xl"][class*="lg:text-5xl"],
section h1[class*="text-3xl"][class*="lg:text-5xl"] {
  font-size: clamp(36px, 4vw, 60px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
}
section h1[class*="text-2xl"][class*="lg:text-4xl"] {
  font-size: clamp(28px, 3vw, 44px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
}

/* H2 sections Tailwind → tokens v3 */
section h2[class*="text-3xl"][class*="lg:text-5xl"],
section h2[class*="text-3xl"][class*="lg:text-4xl"] {
  font-size: clamp(28px, 3.2vw, 48px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
}
section h2[class*="text-2xl"][class*="lg:text-3xl"] {
  font-size: clamp(24px, 2.6vw, 36px) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
}

/* H3 sections : poids et color cohérents */
section h3[class*="font-bold"] {
  color: var(--ink) !important;
  letter-spacing: -0.02em !important;
}

/* Cards Tailwind shadows → tokens v3 */
section .rounded-2xl.shadow-lg,
section .rounded-2xl.shadow-xl,
section .rounded-2xl[class*="shadow-2xl"],
section .rounded-3xl.shadow-lg,
section .rounded-3xl.shadow-xl,
section .rounded-3xl[class*="shadow-2xl"] {
  box-shadow: var(--shadow-card) !important;
}
@media (hover: hover) {
  section .rounded-2xl.shadow-lg:hover,
  section .rounded-2xl.shadow-xl:hover,
  section .rounded-3xl.shadow-lg:hover,
  section .rounded-3xl.shadow-xl:hover {
    box-shadow: var(--shadow-xl) !important;
  }
}

/* Cards bg-white sur warm-white → border subtle pour les détacher */
section .bg-white.rounded-2xl,
section .bg-white.rounded-3xl {
  border: 1px solid var(--hair);
}

/* Text-slate-* → tokens v3 ink */
section .text-slate-900 { color: var(--ink) !important; }
section .text-slate-600,
section .text-slate-700 { color: var(--ink-2) !important; }
section .text-slate-500,
section .text-slate-400 { color: var(--ink-3) !important; }

/* CTAs gradient existants : align shadow avec v3 */
a[style*="linear-gradient(90deg, #34D399"] {
  box-shadow: 0 14px 36px -8px rgba(37, 99, 235, 0.4) !important;
}

/* Hero héritière Tailwind (gradient bleu-cyan pâle) → wash mint/cyan/blue saturé v3 */
section.bg-gradient-to-br.from-blue-50,
section[class*="from-blue-50"][class*="via-white"][class*="to-cyan-50"] {
  background:
    radial-gradient(ellipse 75% 75% at 55% 45%, #6EE7B7 0%, rgba(110,231,183,0.55) 35%, rgba(110,231,183,0) 72%),
    radial-gradient(ellipse 65% 65% at 78% 65%, #67E8F9 0%, rgba(103,232,249,0.45) 40%, rgba(103,232,249,0) 75%),
    linear-gradient(180deg, #F0FDF4 0%, #ECFEFF 100%) !important;
}

/* Body bg warm white forcé (override Tailwind bg-slate-50 du body) */
body.bg-slate-50,
body[class*="bg-slate-50"] {
  background: var(--bg) !important;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ============ CTA DISABLED ============
   DEPRECATED: CTAs réactivés vers app.qpest.fr — class encore présente pour
   usage spécifique (features pas encore live). */
.cta-disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============ PATTERN AFFICHAGE PAR PASSAGE (Punaises, Cafards Pulvé Choc) ============ */
.tier-per-pass {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.tier-per-pass-amt {
  font: 800 clamp(36px, 4.5vw, 56px)/1 var(--f-display);
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #34D399 0%, #22D3EE 50%, #2563EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.tier-per-pass-unit {
  font: 500 14px/1 var(--f-mono);
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.tier-big .tier-per-pass-amt { font-size: clamp(48px, 5.5vw, 80px); }
.tier-pack-line {
  font: 600 14px/1.4 var(--f-display);
  color: var(--ink);
  margin: 4px 0 12px;
}
.tier-pack-line .tier-pack-amt {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.tier-edu {
  font: 500 12px/1.45 var(--f-display);
  color: var(--ink-3);
  margin: 0 0 14px;
  padding: 10px 12px;
  background: var(--bg-sink);
  border-left: 3px solid var(--mint);
  border-radius: 0 8px 8px 0;
}
.tier-edu b { color: var(--ink); font-weight: 600; }
.tier-badge-incl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(52, 211, 153, 0.10);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 999px;
  font: 600 11px/1 var(--f-mono);
  color: var(--mint-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: 14px;
}

/* ============ PRICING GRID v3 (tarifs.html — refonte tableau → cards) ============ */
.pricing-grid-section { padding: 80px 0; }
.pricing-filters {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 48px;
}
.pfilter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--bg-elev);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font: 600 14px/1 var(--f-display);
  color: var(--ink-2);
  cursor: pointer;
  transition: all 200ms var(--ease-out);
}
@media (hover: hover) {
  .pfilter:hover { border-color: var(--ink-3); color: var(--ink); }
}
.pfilter.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.pricing-grid-v3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.pcard {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 300ms var(--ease-out), box-shadow 300ms, border-color 300ms;
  box-shadow: var(--shadow-card);
}
@media (hover: hover) {
  .pcard:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
  }
}
.pcard[data-pest="punaises"] { border-top: 4px solid var(--pest-punaises); }
.pcard[data-pest="cafards"]  { border-top: 4px solid var(--pest-cafards); }
.pcard[data-pest="rats"]     { border-top: 4px solid var(--pest-rats); }
.pcard[data-pest="guepes"]   { border-top: 4px solid var(--pest-guepes); }
.pcard[data-pest="fourmis"]  { border-top: 4px solid var(--pest-fourmis); }
.pcard-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 11px/1 var(--f-mono);
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pcard-method {
  font: 800 22px/1.15 var(--f-display);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.pcard-per-pass {
  display: flex; align-items: baseline; gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.pcard-amt {
  font: 800 clamp(32px, 3.5vw, 44px)/1 var(--f-display);
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #34D399 0%, #22D3EE 50%, #2563EB 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-variant-numeric: tabular-nums;
}
.pcard-unit {
  font: 500 14px/1 var(--f-mono);
  color: var(--ink-3);
}
.pcard-pack {
  font: 600 14px/1.3 var(--f-display);
  color: var(--ink);
  margin: 0;
}
.pcard-pack b { font-variant-numeric: tabular-nums; }
.pcard-feat {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.pcard-feat li {
  display: flex; align-items: flex-start; gap: 8px;
  font: 500 13px/1.5 var(--f-display);
  color: var(--ink-2);
}
.pcard-feat svg { color: var(--mint-700); flex: none; margin-top: 3px; }
.pcard-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: rgba(52, 211, 153, 0.10);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 8px;
  font: 600 11px/1 var(--f-mono);
  color: var(--mint-700);
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.pcard-other {
  font: 500 11px/1.5 var(--f-mono);
  color: var(--ink-3);
  padding-top: 12px;
  border-top: 1px dashed var(--hair);
}
.pcard-other b { color: var(--ink-2); font-weight: 600; }
.pcard-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font: 700 14px/1 var(--f-display);
  text-decoration: none;
  transition: all 200ms var(--ease-out);
  margin-top: 4px;
  min-height: 44px;
}
@media (hover: hover) {
  .pcard-cta:hover {
    background: linear-gradient(135deg, #34D399 0%, #22D3EE 50%, #2563EB 100%);
  }
}
.pricing-grid-note {
  margin-top: 32px;
  padding: 20px 28px;
  background: var(--bg-sink);
  border: 1px solid var(--hair);
  border-radius: 14px;
  font: 500 14px/1.55 var(--f-display);
  color: var(--ink-2);
}
.pricing-grid-note b { color: var(--ink); }

/* ============ TABLEAU RÉCAPITULATIF v3 ============ */
.recap-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hair);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  background: var(--bg-elev);
  -webkit-overflow-scrolling: touch;
}
.recap-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-display);
}
.recap-table thead {
  background: var(--bg-sink);
  border-bottom: 2px solid var(--hair);
}
.recap-table thead th {
  padding: 18px 16px;
  font: 700 12px/1.3 var(--f-mono);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  white-space: nowrap;
}
.recap-table thead th small {
  display: block;
  font: 500 11px/1.2 var(--f-mono);
  color: var(--ink-3);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.recap-table thead th.th-size,
.recap-table thead th.th-pass { text-align: center; }
.recap-table tbody tr {
  border-bottom: 1px solid var(--hair);
  transition: background 160ms var(--ease-out);
}
.recap-table tbody tr:last-child { border-bottom: none; }
@media (hover: hover) {
  .recap-table tbody tr:hover { background: var(--bg-sink); }
}

/* Color coding subtil par nuisible */
.recap-table tbody tr[data-pest="punaises"] { background: color-mix(in oklab, var(--pest-punaises) 4%, var(--bg-elev)); }
.recap-table tbody tr[data-pest="cafards"]  { background: color-mix(in oklab, var(--pest-cafards) 4%, var(--bg-elev)); }
.recap-table tbody tr[data-pest="rats"]     { background: color-mix(in oklab, var(--pest-rats) 4%, var(--bg-elev)); }
.recap-table tbody tr[data-pest="guepes"]   { background: color-mix(in oklab, var(--pest-guepes) 5%, var(--bg-elev)); }
.recap-table tbody tr[data-pest="fourmis"]  { background: color-mix(in oklab, var(--pest-fourmis) 5%, var(--bg-elev)); }
@media (hover: hover) {
  .recap-table tbody tr[data-pest="punaises"]:hover { background: color-mix(in oklab, var(--pest-punaises) 9%, var(--bg-elev)); }
  .recap-table tbody tr[data-pest="cafards"]:hover  { background: color-mix(in oklab, var(--pest-cafards) 9%, var(--bg-elev)); }
  .recap-table tbody tr[data-pest="rats"]:hover     { background: color-mix(in oklab, var(--pest-rats) 9%, var(--bg-elev)); }
  .recap-table tbody tr[data-pest="guepes"]:hover   { background: color-mix(in oklab, var(--pest-guepes) 10%, var(--bg-elev)); }
  .recap-table tbody tr[data-pest="fourmis"]:hover  { background: color-mix(in oklab, var(--pest-fourmis) 10%, var(--bg-elev)); }
}

.recap-table td {
  padding: 16px;
  font: 500 14px/1.4 var(--f-display);
  color: var(--ink-2);
  vertical-align: middle;
}
.td-pest {
  font: 700 14px/1.2 var(--f-display) !important;
  color: var(--ink) !important;
  white-space: nowrap;
  border-right: 1px solid var(--hair);
  background: var(--bg-elev);
}
.td-pest-emoji { font-size: 22px; display: inline-block; margin-right: 4px; vertical-align: -3px; }
.td-method b { color: var(--ink); font-weight: 700; }
.td-method small { font: 500 11px/1.3 var(--f-mono); color: var(--ink-3); display: block; margin-top: 2px; }
.td-price {
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.td-price b { color: var(--ink); font: 700 15px/1 var(--f-display); }
.td-price small {
  display: block;
  font: 500 11px/1.3 var(--f-mono);
  color: var(--ink-3);
  margin-top: 4px;
}
.td-pp {
  font: 500 11px/1 var(--f-mono);
  color: var(--ink-3);
  letter-spacing: 0.02em;
  margin-left: 1px;
}
.td-price-fixed {
  text-align: center;
  background: linear-gradient(90deg, rgba(52, 211, 153, 0.04), rgba(34, 211, 238, 0.04));
}
.td-pass {
  text-align: center;
  white-space: nowrap;
  font: 600 12px/1.3 var(--f-mono);
  color: var(--ink-2);
}
.td-pass small { font: 500 11px/1.2 var(--f-mono); color: var(--ink-3); display: block; margin-top: 2px; }

@media (max-width: 768px) {
  .recap-table thead th, .recap-table td { padding: 10px 8px; font-size: 12px; }
  .td-price b { font-size: 13px; }
  .recap-table thead th small, .td-price small { display: none; }
}

/* ============ SIMULATEUR DE PRIX v3 ============ */
.sim-section { padding: 80px 0; background: var(--bg-sink); }
.sim-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-elev);
  border: 1px solid var(--hair);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) { .sim-wrap { padding: 24px; } }
.sim-step {
  margin-bottom: 28px;
}
.sim-step-label {
  display: flex; align-items: center; gap: 10px;
  font: 700 13px/1 var(--f-mono);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.sim-step-num {
  width: 24px; height: 24px;
  border-radius: 9999px;
  background: var(--mint-wash);
  color: var(--mint-700);
  display: grid; place-items: center;
  font: 700 12px/1 var(--f-mono);
}
.sim-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.sim-opt {
  padding: 14px 16px;
  background: var(--bg);
  border: 2px solid var(--hair);
  border-radius: 14px;
  font: 600 14px/1.3 var(--f-display);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: all 180ms var(--ease-out);
}
.sim-opt small {
  display: block;
  font: 500 11px/1.3 var(--f-mono);
  color: var(--ink-3);
  margin-top: 4px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
@media (hover: hover) {
  .sim-opt:hover { border-color: var(--mint); }
}
.sim-opt.active {
  border-color: var(--mint);
  background: var(--mint-wash);
  color: var(--ink);
}
.sim-prio-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
}
.sim-prio-row input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--mint-700);
  cursor: pointer;
}
.sim-prio-row span {
  font: 500 14px/1.4 var(--f-display);
  color: var(--ink-2);
}
.sim-prio-row b { color: var(--ink); }

.sim-result {
  margin-top: 8px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.08), rgba(34, 211, 238, 0.06), rgba(37, 99, 235, 0.04));
  border: 1px solid var(--hair);
  border-radius: 18px;
}
.sim-result-label {
  font: 500 13px/1 var(--f-mono);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.sim-result-price-row {
  display: flex; align-items: baseline; gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.sim-result-price {
  font: 800 clamp(40px, 5vw, 56px)/1 var(--f-display);
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #34D399 0%, #22D3EE 50%, #2563EB 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-variant-numeric: tabular-nums;
}
.sim-result-unit {
  font: 600 14px/1 var(--f-mono);
  color: var(--ink-3);
}
.sim-result-pack {
  font: 600 13px/1.4 var(--f-display);
  color: var(--ink-2);
  margin: 6px 0 12px;
}
.sim-result-pack b { color: var(--ink); font-variant-numeric: tabular-nums; }
.sim-result-detail {
  font: 500 13px/1.4 var(--f-display);
  color: var(--ink-3);
  margin-bottom: 16px;
}
.sim-result-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #34D399 0%, #22D3EE 50%, #2563EB 100%);
  color: #fff;
  border-radius: 999px;
  font: 700 14px/1 var(--f-display);
  text-decoration: none;
  box-shadow: 0 14px 36px -8px rgba(37, 99, 235, 0.4);
  transition: transform 200ms var(--ease-out);
  min-height: 44px;
}
@media (hover: hover) {
  .sim-result-cta:hover { transform: translateY(-1px); }
}
