/* ============================================
   DépannageFrance — Styles
   Clean, minimal, mobile-first
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
  /* Brand — deep professional navy */
  --brand-50:  #EEF2FA;
  --brand-100: #D6DFF2;
  --brand-200: #A9BCE0;
  --brand-400: #456BB0;
  --brand-500: #2A4C92;
  --brand-600: #1B3674;   /* main — deep navy */
  --brand-700: #13275A;
  --brand-800: #0C1B42;
  --brand-900: #06102A;

  /* Accent — warm orange (urgency / pests / energy) */
  --accent-50:  #FFF7ED;
  --accent-100: #FFEDD5;
  --accent-500: #F97316;
  --accent-600: #EA580C;
  --accent-700: #C2410C;

  /* Neutrals — slate */
  --ink:       #0F172A;
  --ink-soft:  #1E293B;
  --body:      #334155;
  --muted:     #64748B;
  --muted-soft:#94A3B8;

  --surface:      #FFFFFF;
  --surface-alt:  #F8FAFC;
  --surface-soft: #F1F5F9;
  --surface-tint: var(--brand-50);

  --border:      #E2E8F0;
  --border-soft: #F1F5F9;

  /* State */
  --success: #10B981;
  --success-bg: #D1FAE5;
  --warning: #F59E0B;
  --warning-bg: #FEF3C7;
  --danger:  #EF4444;
  --danger-bg: #FEE2E2;

  /* Shadows — soft, layered */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.06);
  --shadow-brand: 0 8px 24px rgba(37, 99, 235, 0.25);
  --shadow-accent: 0 8px 24px rgba(249, 115, 22, 0.25);

  /* Motion — pro easing curves */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);       /* smooth ease-out */
  --ease-in-out:cubic-bezier(0.65, 0, 0.35, 1);       /* natural in-out */
  --ease-bounce:cubic-bezier(0.34, 1.56, 0.64, 1);    /* subtle overshoot */
  --ease-snappy:cubic-bezier(0.16, 1, 0.3, 1);        /* quick, crisp */

  --dur-fast: 150ms;
  --dur-base: 220ms;
  --dur-slow: 400ms;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--body);
  background: var(--surface);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* --- UTILITIES --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-blue {
  color: var(--brand-600);
}

.text-white {
  color: #FFFFFF;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--r-sm);
  padding: 12px 24px;
  transition:
    background-color var(--dur-base) var(--ease-out),
    color            var(--dur-base) var(--ease-out),
    border-color     var(--dur-base) var(--ease-out),
    transform        var(--dur-base) var(--ease-snappy),
    box-shadow       var(--dur-base) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.25), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  pointer-events: none;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--brand-600);
  color: #FFFFFF;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--brand-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
  transition-duration: var(--dur-fast);
}

.btn-outline {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--brand-600);
  color: var(--brand-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-white {
  background: var(--surface);
  color: var(--brand-700);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background: var(--brand-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: var(--accent-500);
  color: #FFFFFF;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, var(--shadow-sm);
}

.btn-accent:hover {
  background: var(--accent-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 27, 66, 0.88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.nav.scrolled {
  background: rgba(6, 16, 42, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 24px rgba(6, 16, 42, 0.35);
}

/* Nav content on navy */
.nav .logo { color: #FFFFFF; }
.nav-links a {
  color: rgba(255, 255, 255, 0.78);
}
.nav-links a:hover,
.nav-links a.active {
  color: #FFFFFF;
}
.nav .btn-link {
  color: rgba(255, 255, 255, 0.85);
}
.nav .btn-link:hover { color: #FFFFFF; }
.nav .btn-outline {
  border-color: rgba(255, 255, 255, 0.32);
  color: #FFFFFF;
  background: transparent;
}
.nav .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}
.nav .btn-primary {
  background: #FFFFFF;
  color: var(--brand-700);
}
.nav .btn-primary:hover {
  background: var(--brand-50);
  color: var(--brand-800);
}
.mobile-menu-btn span { background: #FFFFFF; }

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

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-600);
  letter-spacing: -0.03em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--body);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--brand-600);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile menu (dark navy, structured) ---- */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 10px 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--brand-800);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

.mobile-menu > a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 12px 12px;
  display: block;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}
.mobile-menu > a:hover,
.mobile-menu > a:active {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

/* Divider between top links and service groups */
.mobile-menu > a + .mobile-nav-group {
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

/* Service groups */
.mobile-nav-group {
  padding: 10px 0;
}
.mobile-nav-group-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-500);
  padding: 0 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav-group-title::before {
  content: "";
  flex: 0 0 14px;
  height: 2px;
  background: var(--accent-500);
  border-radius: 2px;
}
.mobile-nav-group-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.mobile-nav-group-items a {
  font-size: 0.87rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s ease, color .15s ease;
}
.mobile-nav-group-items a:hover,
.mobile-nav-group-items a:active {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.mobile-menu-auth {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu-auth > div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.mobile-menu-auth .btn-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.9rem;
  padding: 8px 0;
}
.mobile-menu-auth .btn-outline {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
  background: transparent !important;
}

/* ---- Nav dropdown (desktop) ---- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color .2s;
}
.nav-dropdown-toggle:hover { color: #fff; }
.nav-dropdown-toggle svg { transition: transform .2s ease; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 680px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 50px -18px rgba(6, 16, 42, 0.55);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 4px 12px 8px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-heading svg { color: var(--accent-600); }
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--brand-900);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown-item:hover {
  background: var(--brand-50);
  color: var(--brand-700);
}
.nav-dropdown-item-emoji { font-size: 18px; line-height: 1; }
.nav-dropdown-item-label { line-height: 1.2; }
.nav-dropdown-item-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 1px;
}
@media (max-width: 1024px) {
  .nav-dropdown-menu {
    width: 540px;
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-dropdown-col:nth-child(3) {
    grid-column: span 2;
  }
}

/* --- HERO --- */
.hero {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, var(--surface-alt) 0%, #FFFFFF 60%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.hero-text {
  max-width: 560px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-50);
  color: var(--brand-600);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid var(--brand-100);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pillDot 1.8s infinite;
}

@keyframes pillDot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-trust-avatars {
  display: flex;
  padding-left: 8px;
}

.hero-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid #FFFFFF;
  margin-left: -8px;
}

.hero-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--ink);
}

.hero-stars strong {
  margin-left: 6px;
  font-weight: 700;
  font-size: 0.88rem;
}

/* Hero visual */
.hero-visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 22px;
  display: block;
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.28), 0 8px 24px rgba(0, 0, 0, 0.1);
  animation: heroImgFloat 6s ease-in-out infinite;
}

@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-value span {
  color: var(--brand-600);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--ink);
  border-radius: 36px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.phone-indicator {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Phone screens */
.phone-step,
.hiw-phone-step {
  position: absolute;
  inset: 0;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.phone-step.active,
.hiw-phone-step.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.phone-step.exit-left,
.hiw-phone-step.exit-left {
  opacity: 0;
  transform: translateX(-40px);
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.phone-logo {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-600);
}

.phone-header-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  flex: 1;
  text-align: center;
}

.phone-time {
  font-size: 0.7rem;
  color: var(--muted-soft);
  font-weight: 500;
}

.phone-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

/* Phone options (screen 1) */
.phone-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.phone-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}

.phone-option.selected {
  border-color: var(--brand-600);
  background: var(--brand-50);
  color: var(--brand-600);
}

/* Phone date row (screen 2) */
.phone-date-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.phone-date {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.phone-date-day {
  font-size: 0.65rem;
  color: var(--muted-soft);
  font-weight: 500;
}

.phone-date-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  color: #374151;
  transition: all 0.2s;
}

.phone-date-num.selected {
  background: var(--brand-600);
  color: #FFFFFF;
}

/* Phone time slots (screen 2) */
.phone-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.phone-slot {
  padding: 10px;
  text-align: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
}

.phone-slot.selected {
  background: var(--brand-600);
  color: #FFFFFF;
  border-color: var(--brand-600);
}

.phone-slot.unavail {
  color: var(--border);
  text-decoration: line-through;
  border-color: #F3F4F6;
}

/* Phone estimate (screen 2) */
.phone-estimate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--surface-alt);
  border-radius: 8px;
  margin-bottom: 16px;
}

.phone-estimate-label {
  font-size: 0.75rem;
  color: var(--muted-soft);
  font-weight: 500;
}

.phone-estimate-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

/* Phone button */
.phone-btn {
  padding: 12px;
  background: var(--brand-600);
  color: #FFFFFF;
  border-radius: 10px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: auto;
  cursor: default;
}

.phone-btn-outline {
  background: #FFFFFF;
  color: var(--brand-600);
  border: 1.5px solid var(--brand-600);
}

/* Phone confirm screen */
.phone-confirm-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.phone-confirm-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #10B981;
  text-align: center;
  margin-bottom: 24px;
}

.phone-confirm-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: var(--surface-alt);
  border-radius: 10px;
  margin-bottom: 20px;
}

.phone-confirm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #374151;
}

/* Phone nav dots */
.phone-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.phone-dot.active {
  background: var(--brand-600);
  width: 24px;
  border-radius: 4px;
}

/* --- PROBLEM SELECTOR --- */
.problem-section {
  background: #FFFFFF;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.problem-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px 14px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition:
    border-color var(--dur-base) var(--ease-out),
    background   var(--dur-base) var(--ease-out),
    transform    var(--dur-base) var(--ease-snappy),
    box-shadow   var(--dur-base) var(--ease-out);
  font-family: inherit;
  color: var(--body);
  will-change: transform;
}

.problem-card:hover {
  border-color: var(--brand-500);
  background: var(--surface);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.problem-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.problem-desc {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}

.problem-card.active .problem-title {
  color: var(--brand-600);
}

.problem-card.active .problem-desc {
  color: var(--brand-500);
}

.problem-card.active {
  border-color: var(--brand-600);
  background: var(--brand-50);
  color: var(--brand-600);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
}

.problem-card.active .problem-icon svg {
  stroke: var(--brand-600);
}

.problem-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  border-radius: var(--r-sm);
  transition: background var(--dur-base) var(--ease-out),
              transform  var(--dur-base) var(--ease-bounce);
}

.problem-card:hover .problem-icon {
  transform: scale(1.08);
}

.problem-card.active .problem-icon {
  background: var(--brand-100);
  transform: scale(1.1);
}

.problem-result {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.problem-result.visible {
  max-height: 260px;
  opacity: 1;
}

.result-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, var(--brand-50) 0%, var(--surface-alt) 100%);
  border: 1.5px solid var(--brand-100);
  border-radius: 14px;
  padding: 22px 24px;
  align-items: center;
  text-align: center;
}

.result-cta-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-cta-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.result-cta-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
}

#resultBookBtn {
  white-space: nowrap;
}

/* --- HOW IT WORKS (hiw) --- */
.hiw-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 520px;
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hiw-step:hover {
  border-color: var(--brand-100);
  transform: translateX(2px);
}

.hiw-step.active {
  border-color: var(--brand-600);
  background: linear-gradient(135deg, var(--brand-50) 0%, #FFFFFF 100%);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.hiw-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F3F4F6;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.hiw-step.active .hiw-step-num {
  background: var(--brand-600);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.hiw-step-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}

.hiw-step-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.hiw-phone {
  display: flex;
  justify-content: center;
}

/* --- STEPS (How it works - legacy) --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-600);
  background: var(--brand-50);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card-icon {
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* --- TRUST --- */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid #F3F4F6;
  border-radius: 10px;
  transition: border-color 0.2s;
}

.trust-item:hover {
  border-color: var(--brand-100);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--brand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* --- TRACKING --- */
.tracking-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.tracking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--surface-alt);
  border-bottom: 1px solid #F3F4F6;
  flex-wrap: wrap;
  gap: 8px;
}

.tracking-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.tracking-eta {
  font-size: 0.85rem;
  color: var(--muted);
}

.tracking-body {
  padding: 24px;
}

.tracking-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tracking-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.tracking-info {
  flex: 1;
  min-width: 120px;
}

.tracking-name {
  font-weight: 700;
  font-size: 1rem;
}

.tracking-role {
  font-size: 0.85rem;
  color: var(--muted);
}

.tracking-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

.rating-count {
  font-weight: 400;
  color: var(--muted-soft);
  font-size: 0.85rem;
}

.tracking-progress {
  margin-top: 8px;
}

.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: var(--brand-600);
  border-radius: 3px;
  transition: width 1.5s ease;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted-soft);
}

/* --- SERVICES --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  padding: 24px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition:
    border-color var(--dur-base) var(--ease-out),
    transform    var(--dur-base) var(--ease-snappy),
    box-shadow   var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-snappy);
}

.service-card:hover {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--brand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform var(--dur-base) var(--ease-bounce),
              background var(--dur-base) var(--ease-out);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
  background: var(--brand-100);
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* --- BOOKING --- */
.booking-card {
  max-width: 600px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--ink);
  background: #FFFFFF;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder {
  color: var(--muted-soft);
}

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

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.time-slot {
  padding: 10px 8px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
  transition: all 0.2s;
  background: #FFFFFF;
}

.time-slot:hover {
  border-color: var(--brand-600);
  color: var(--brand-600);
}

.time-slot.selected {
  background: var(--brand-600);
  color: #FFFFFF;
  border-color: var(--brand-600);
}

.time-slot.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-confirmation {
  display: none;
  text-align: center;
  padding: 48px 24px;
  max-width: 600px;
  margin: 0 auto;
}

.booking-confirmation.visible {
  display: block;
  animation: fadeIn 0.5s ease;
}

.confirmation-icon {
  margin-bottom: 16px;
}

.booking-confirmation h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.booking-confirmation p {
  color: var(--muted);
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  transition:
    transform  var(--dur-base) var(--ease-snappy),
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-100);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.author-location {
  font-size: 0.8rem;
  color: var(--muted-soft);
}

/* --- FINAL CTA --- */
.final-cta {
  background: var(--brand-600);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.final-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.final-cta p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* --- FOOTER --- */
.footer {
  padding: 40px 0 100px; /* extra bottom for sticky CTA */
  border-top: 1px solid #F3F4F6;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted-soft);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-600);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted-soft);
}

/* --- CHATBOT --- */
.chatbot {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 95;
}

.chatbot-fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.22), 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  padding: 0;
  overflow: visible;
  opacity: 0.92;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.chatbot-fab:hover {
  transform: translateY(-2px) scale(1.05);
  opacity: 1;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.32), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chatbot-fab-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.chatbot-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--brand-600);
  opacity: 0;
  animation: chatbotPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes chatbotPulse {
  0% { transform: scale(1); opacity: 0.6; }
  80% { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

.chatbot-fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #EF4444;
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

.chatbot-fab-badge.hidden {
  display: none;
}

.chatbot-panel {
  position: absolute;
  bottom: 72px;
  left: 0;
  width: min(360px, calc(100vw - 32px));
  height: min(540px, calc(100vh - 120px));
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 8px 20px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.chatbot.open .chatbot-panel {
  display: flex;
  transform: translateY(0) scale(1);
  opacity: 1;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
  color: #FFFFFF;
}

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

.chatbot-header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.chatbot-header-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.chatbot-header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  opacity: 0.9;
}

.chatbot-status-dot {
  width: 7px;
  height: 7px;
  background: #34D399;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: dotPulse 1.8s infinite;
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
  70% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.chatbot-close {
  width: 30px;
  height: 30px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface-alt);
}

.chat-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.45;
  word-wrap: break-word;
  animation: chatMsgIn 0.25s ease;
}

@keyframes chatMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot {
  align-self: flex-start;
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--brand-600);
  color: #FFFFFF;
  border-bottom-right-radius: 4px;
}

.chat-msg.bot a {
  color: var(--brand-600);
  font-weight: 600;
}

.chat-typing {
  align-self: flex-start;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 12px 14px;
  display: flex;
  gap: 4px;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  background: var(--muted-soft);
  border-radius: 50%;
  animation: typingBounce 1.2s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px 0;
  background: #FFFFFF;
  border-top: 1px solid #F3F4F6;
}

.chatbot-quick-btn {
  background: var(--brand-50);
  color: var(--brand-600);
  border: 1px solid var(--brand-100);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.chatbot-quick-btn:hover {
  background: var(--brand-100);
}

.chatbot-quick.hidden {
  display: none;
}

.chatbot-input {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: #FFFFFF;
  border-top: 1px solid #F3F4F6;
}

.chatbot-input input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.chatbot-input input:focus {
  border-color: var(--brand-600);
}

.chatbot-send {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--brand-600);
  color: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.chatbot-send:hover {
  background: var(--brand-700);
  transform: scale(1.05);
}

.chatbot-send:disabled {
  background: var(--muted-soft);
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .chatbot {
    bottom: 14px;
    left: 14px;
  }
  .chatbot-fab {
    width: 52px;
    height: 52px;
  }
  .chatbot-panel {
    bottom: 66px;
    left: -2px;
    width: calc(100vw - 24px);
    height: min(500px, calc(100vh - 110px));
  }
  .sticky-cta.visible ~ .chatbot,
  body:has(.sticky-cta.visible) .chatbot {
    bottom: 74px;
  }
}

/* --- STICKY CTA (mobile) --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes subtleGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.3); }
  50%      { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
}

/* Fade-in on scroll — pro ease */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE: TABLET (640px+) --- */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .result-cta {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 20px 28px;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- RESPONSIVE: DESKTOP (1024px+) --- */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero {
    padding: 140px 0 100px;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }

  .hero-text {
    flex: 1;
  }

  .hero-visual {
    flex: 0 0 auto;
    max-width: 560px;
  }

  .phone-mockup {
    width: 300px;
    height: 600px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 80px;
  }

  .hero-stat-value {
    font-size: 2.25rem;
  }

  .section {
    padding: 100px 0;
  }

  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hiw-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }

  .hiw-steps {
    flex: 1;
    max-width: none;
  }

  .hiw-phone {
    flex: 0 0 auto;
  }

  .sticky-cta {
    display: none; /* hide on desktop */
  }

  .footer {
    padding-bottom: 40px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* --- FOCUS STYLES (a11y) --- */
:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* --- NAV AUTH --- */
.nav-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-link {
  background: none;
  border: none;
  color: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 4px;
  font-family: inherit;
  transition: color 0.2s;
}

.btn-link:hover {
  color: var(--brand-600);
}

/* --- AUTH MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: #FFFFFF;
  border-radius: 14px;
  width: 100%;
  max-width: 400px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted-soft);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--ink);
}

.auth-header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-header .logo {
  display: block;
  margin-bottom: 12px;
}

.auth-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.auth-header p {
  font-size: 0.875rem;
  color: var(--muted);
}

.auth-form .form-group {
  margin-bottom: 16px;
}

.auth-error {
  font-size: 0.8rem;
  color: #EF4444;
  background: #FEF2F2;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  display: none;
}

.auth-error.visible {
  display: block;
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

.auth-switch button {
  background: none;
  border: none;
  color: var(--brand-600);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
}

.auth-switch button:hover {
  text-decoration: underline;
}

/* --- FAQ --- */
.faq-section {
  background: var(--surface-alt);
}

.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--brand-500);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--brand-600); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.25s ease, color 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--brand-600);
}

.faq-answer {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
  animation: faqSlide 0.25s ease;
}

.faq-answer strong { color: var(--ink); }

@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- ESPACE CLIENT --- */
.client-page {
  min-height: 100vh;
  background: var(--surface-alt);
  padding: 96px 0 80px;
}

.client-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.client-welcome h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 6px;
}

.client-welcome p {
  color: var(--muted);
  margin: 0;
  font-size: 14.5px;
}

.client-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.client-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.client-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 18px;
}

.client-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.client-stat {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}

.client-stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.client-stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 6px;
}

.client-booking {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #F3F4F6;
}
.client-booking:last-child { border-bottom: none; }

.client-booking-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-100);
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-booking-body { flex: 1; min-width: 0; }

.client-booking-title {
  font-weight: 600;
  color: var(--ink);
  font-size: 14.5px;
  margin: 0 0 4px;
}

.client-booking-meta {
  color: var(--muted);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-booking-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-pending { background: #FEF3C7; color: #92400E; }
.status-confirmed { background: var(--brand-100); color: var(--brand-800); }
.status-assigned { background: #E0E7FF; color: #3730A3; }
.status-in_progress { background: #FED7AA; color: #9A3412; }
.status-completed { background: #D1FAE5; color: #065F46; }
.status-cancelled { background: #F3F4F6; color: var(--muted); }

.client-empty {
  text-align: center;
  padding: 32px 0;
  color: var(--muted-soft);
  font-size: 14px;
}

.client-profile-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 14.5px;
}
.client-profile-row:last-child { border-bottom: none; }
.client-profile-row span:first-child { color: var(--muted); }
.client-profile-row span:last-child { color: var(--ink); font-weight: 500; }

@media (min-width: 768px) {
  .client-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .client-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

/* --- SELECTION --- */
::selection {
  background: var(--brand-100);
  color: var(--brand-900);
}

/* ============================================
   NUISIBLES PAGE
   ============================================ */

/* --- Section helpers --- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-600);
  background: var(--accent-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-tag.light {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}
.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-header .section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* --- Buttons — pest extensions --- */
.btn-accent {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  color: #FFFFFF;
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.38);
  filter: brightness(1.05);
}
.btn-white {
  background: #FFFFFF;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-light {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* --- HERO --- */
.pest-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 60%, #1E40AF 100%);
  color: #FFFFFF;
  overflow: hidden;
}
.pest-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 15% 10%, rgba(249, 115, 22, 0.25), transparent 60%),
    radial-gradient(800px 400px at 85% 90%, rgba(59, 130, 246, 0.35), transparent 60%);
  pointer-events: none;
}
.pest-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}
.pest-hero-inner { z-index: 1; }

/* --- Hero "shock" (image nuisible immersive) --- */
.pest-hero-shock { padding-top: clamp(90px, 12vw, 130px); }
.pest-hero-shock .pest-hero-photo {
  opacity: 0.95;
  mix-blend-mode: normal;
  filter: saturate(1.05) contrast(1.08);
  object-position: right center;
}
.pest-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 15, 30, 0.92) 0%, rgba(8, 15, 30, 0.55) 45%, rgba(8, 15, 30, 0) 70%),
    linear-gradient(180deg, rgba(8, 15, 30, 0.4) 0%, rgba(8, 15, 30, 0.75) 100%);
}
@media (max-width: 768px) {
  .pest-hero-shock .pest-hero-photo { opacity: 0.5; object-position: center; }
  .pest-hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 15, 30, 0.65) 0%, rgba(8, 15, 30, 0.9) 100%);
  }
}
.pest-hero-shock-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(220, 38, 38, 0.95);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  animation: pest-pulse 2.2s ease-in-out infinite;
}
.pest-hero-shock-badge svg { animation: pest-blink 1s steps(2, start) infinite; }
@keyframes pest-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4); }
  50% { box-shadow: 0 8px 36px rgba(220, 38, 38, 0.75); }
}
@keyframes pest-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@media (max-width: 640px) {
  .pest-hero-shock-badge { top: 12px; font-size: 10.5px; padding: 6px 12px; }
}
.pest-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.pest-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 18px 0 18px;
  color: #FFFFFF;
}
.pest-hero-accent {
  background: linear-gradient(135deg, #FB923C, #F97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pest-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.pest-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #FDBA74;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.pest-pill-dot {
  width: 8px; height: 8px;
  background: #F97316;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  animation: pulsePest 2s infinite;
}
@keyframes pulsePest {
  0%   { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
.pest-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.pest-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pest-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.pest-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  backdrop-filter: blur(14px);
}
.pest-stat {
  text-align: center;
}
.pest-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FDBA74;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.pest-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

/* --- URGENCY BAR --- */
.pest-urgency {
  background: linear-gradient(90deg, #FFF7ED, #FFEDD5);
  border-top: 1px solid var(--accent-100);
  border-bottom: 1px solid var(--accent-100);
  padding: 18px 0;
}
.pest-urgency-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pest-urgency-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-600);
  color: #FFFFFF;
  display: grid;
  place-items: center;
}
.pest-urgency-inner p {
  flex: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.pest-urgency-inner p strong { color: var(--accent-700); }

/* --- PEST GRID --- */
.pest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.pest-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out),
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.pest-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.pest-card:hover {
  border-color: var(--accent-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pest-card:hover .pest-card-emoji {
  transform: scale(1.15) rotate(-6deg);
}
.pest-card-emoji {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 18px;
  transition: transform 0.4s var(--ease-bounce);
  display: inline-block;
}
.pest-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.pest-card-tag {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.pest-card-desc {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.pest-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px dashed var(--border);
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 16px;
}
.pest-card-meta strong {
  color: var(--ink);
  font-size: 1rem;
}
.pest-card-time {
  padding: 4px 10px;
  background: var(--surface-soft);
  border-radius: 999px;
  font-weight: 500;
  font-size: 12px;
}
.pest-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--ink);
  color: #FFFFFF;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.pest-card-cta:hover {
  background: var(--accent-600);
  transform: translateX(2px);
}

/* --- PROCESS --- */
.pest-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.pest-step {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.pest-step.visible {
  opacity: 1;
  transform: translateY(0);
}
.pest-step:hover {
  box-shadow: var(--shadow-md);
}
.pest-step-num {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.pest-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pest-step p {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.6;
}

/* --- TRUST --- */
.pest-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.pest-trust-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), border-color 0.3s var(--ease-out);
}
.pest-trust-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.pest-trust-item:hover {
  border-color: var(--brand-500);
}
.pest-trust-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-lg);
  background: var(--brand-50);
  color: var(--brand-600);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  transition: transform 0.4s var(--ease-bounce);
}
.pest-trust-icon.accent {
  background: var(--accent-50);
  color: var(--accent-600);
}
.pest-trust-item:hover .pest-trust-icon {
  transform: scale(1.08) rotate(-4deg);
}
.pest-trust-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.pest-trust-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* --- FAQ --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.faq-item[open] {
  border-color: var(--brand-400);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  transition: background 0.2s var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--surface-alt); }
.faq-chevron {
  color: var(--muted);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--brand-600);
}
.faq-answer {
  padding: 0 22px 20px;
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.65;
}
.faq-answer strong { color: var(--ink); }

/* --- FINAL CTA --- */
.pest-cta-section { padding-bottom: 100px; }
.pest-cta-card {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E40AF 100%);
  color: #FFFFFF;
  border-radius: var(--r-2xl);
  padding: 56px 36px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.pest-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 350px at 85% 20%, rgba(249, 115, 22, 0.3), transparent 60%),
    radial-gradient(500px 300px at 10% 90%, rgba(59, 130, 246, 0.35), transparent 60%);
  pointer-events: none;
}
.pest-cta-content {
  position: relative;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.pest-cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 18px 0 14px;
  color: #FFFFFF;
}
.pest-cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.pest-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* --- Testimonials grid on pest page --- */
.pest-testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* --- Responsive breakpoints --- */
@media (min-width: 640px) {
  .pest-grid { grid-template-columns: repeat(2, 1fr); }
  .pest-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pest-testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .pest-hero { padding: 140px 0 96px; }
  .pest-hero-inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
  }
  .pest-hero-content h1 { font-size: 3.25rem; }
  .pest-hero-stats { grid-template-columns: 1fr; }
  .pest-hero-stats .pest-stat {
    text-align: left;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .pest-hero-stats .pest-stat:last-child { border-bottom: none; }
  .pest-hero-stats .pest-stat-num { font-size: 2.6rem; }
  .pest-grid { grid-template-columns: repeat(4, 1fr); }
  .pest-process { grid-template-columns: repeat(4, 1fr); }
  .pest-trust-grid { grid-template-columns: repeat(4, 1fr); }
  .pest-testi-grid { grid-template-columns: repeat(3, 1fr); }
  .section-header h2 { font-size: 2.75rem; }
  .pest-cta-content h2 { font-size: 2.5rem; }
  .pest-cta-card { padding: 80px 56px; }
}

/* ============================================
   HOMEPAGE — ORIGINAL SECTIONS (bento, showcase,
   editorial trust, marquee, final CTA)
   ============================================ */

/* --- Shared eyebrow --- */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-600);
  background: var(--brand-50);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow-accent {
  color: var(--accent-600);
  background: var(--accent-50);
}
.eyebrow-light {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.text-accent { color: #FDBA74; }

/* ==========================
   1) PROBLEM BENTO
   ========================== */
.problem-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.problem-headline {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.problem-lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.problem-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
/* Card base */
.problem-bento .problem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    background 0.3s var(--ease-out);
  min-height: 150px;
}
.problem-bento .problem-card:hover {
  border-color: var(--brand-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.problem-bento .problem-card.active {
  border-color: var(--brand-600);
  box-shadow: 0 0 0 3px var(--brand-100), var(--shadow-md);
}
.problem-bento .bento-emoji {
  font-size: 2.4rem;
  line-height: 1;
  transition: transform 0.35s var(--ease-bounce);
}
.problem-bento .problem-card:hover .bento-emoji {
  transform: scale(1.15) rotate(-8deg);
}
.problem-bento .bento-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.problem-bento .problem-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.problem-bento .problem-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}
.problem-bento .bento-price {
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-700);
  letter-spacing: 0.02em;
}
.problem-bento .bento-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-500);
  color: #FFFFFF;
}
.problem-bento .bento-badge-alt {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}
.problem-bento .bento-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-600);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.problem-bento .problem-card:hover .bento-arrow {
  background: var(--brand-600);
  color: #FFFFFF;
  transform: translate(3px, -3px);
}

/* Featured hero card */
.bento-hero {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border-color: transparent !important;
}
.bento-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(37, 99, 235, 0.18), transparent 60%);
  pointer-events: none;
}
.bento-hero .problem-title { font-size: 1.3rem; }
.bento-hero .problem-desc { font-size: 14.5px; max-width: 340px; }
.bento-hero .bento-emoji { font-size: 3.4rem; }
.bento-hero .bento-arrow { top: auto; right: 24px; bottom: 24px; }

/* Accent card */
.bento-accent {
  background: linear-gradient(135deg, #FEF3C7 0%, #FEE2B9 100%);
  border-color: transparent !important;
}

/* Dark (nuisibles) */
.bento-dark {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-color: transparent !important;
  color: #FFFFFF;
}
.bento-dark .problem-title { color: #FFFFFF; }
.bento-dark .problem-desc { color: rgba(255, 255, 255, 0.72); }
.bento-dark:hover { box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35); }

/* Cards with character illustrations as background */
.problem-bento .problem-card.has-illustration {
  background-color: var(--brand-700);
  background-repeat: no-repeat;
  background-size: auto 118%;
  background-position: right center;
  border-color: transparent !important;
  color: #FFFFFF;
  isolation: isolate;
}
.problem-bento .problem-card.has-illustration::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg,
    rgba(6, 16, 42, 0.92) 0%,
    rgba(12, 27, 66, 0.82) 30%,
    rgba(19, 39, 90, 0.38) 58%,
    rgba(19, 39, 90, 0) 88%);
  z-index: 0;
  pointer-events: none;
}
.problem-bento .problem-card.has-illustration > * {
  position: relative;
  z-index: 1;
}
.problem-bento .problem-card.has-illustration .problem-title {
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.problem-bento .problem-card.has-illustration .problem-desc {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.problem-bento .problem-card.has-illustration .bento-price {
  color: #FDE68A;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.problem-bento .problem-card.has-illustration .bento-emoji {
  display: none;
}
.problem-bento .problem-card.has-illustration .bento-arrow {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.problem-bento .problem-card.has-illustration:hover .bento-arrow {
  background: #FFFFFF;
  color: var(--brand-700);
}
.problem-bento .problem-card.has-illustration:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(6, 16, 42, 0.4);
}
.problem-bento .problem-card.has-illustration.active {
  box-shadow: 0 0 0 3px var(--accent-500), 0 22px 48px rgba(6, 16, 42, 0.4) !important;
}

/* Per-service illustrations (higher-specificity overrides for service-picker) */
.illus-plomberie     { background-image: url('assets/cards/card-plomberie.png'); }
.illus-electricite   { background-image: url('assets/cards/card-electricite.png'); }
.illus-climatisation { background-image: url('assets/cards/card-climatisation.png'); }
.illus-chauffage     { background-image: url('assets/cards/card-chauffage.png'); }

.service-picker .service-card-visual.illus-plomberie     { background-image: url('assets/cards/card-plomberie.png'); }
.service-picker .service-card-visual.illus-electricite   { background-image: url('assets/cards/card-electricite.png'); }
.service-picker .service-card-visual.illus-climatisation { background-image: url('assets/cards/card-climatisation.png'); }
.service-picker .service-card-visual.illus-chauffage     { background-image: url('assets/cards/card-chauffage.png'); }

/* Featured card fits the image larger */
.problem-bento .bento-hero.has-illustration {
  background-size: auto 105%;
  background-position: right bottom;
}

/* Desktop bento grid — 4 cols, varied spans */
@media (min-width: 880px) {
  .problem-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 16px;
  }
  .bento-hero {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 316px;
  }
  .bento-accent { grid-column: span 1; }
  .bento-dark { grid-column: span 2; }
}

/* ==========================
   2) SERVICES SHOWCASE
   ========================== */
.services-showcase { background: var(--surface-alt); }
.showcase-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.showcase-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.showcase-lede { color: var(--muted); font-size: 1.05rem; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 10px;
}
.showcase-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: transparent;
  border-radius: var(--r-md);
  text-align: left;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.showcase-tab:hover { background: var(--surface-alt); }
.showcase-tab.active {
  background: var(--ink);
  color: #FFFFFF;
}
.showcase-tab-num {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
  min-width: 22px;
}
.showcase-tab.active .showcase-tab-num { color: var(--accent-500); }
.showcase-tab-name { flex: 1; }
.showcase-tab-arrow {
  display: none;
  color: currentColor;
  opacity: 0.7;
}
.showcase-tab.active .showcase-tab-arrow { display: inline-flex; }

.showcase-stage {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  min-height: 440px;
  overflow: hidden;
}
.showcase-pane {
  display: none;
  opacity: 0;
  animation: paneIn 0.5s var(--ease-out) forwards;
}
.showcase-pane.active { display: block; }
@keyframes paneIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.showcase-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.showcase-emoji {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--brand-50), var(--accent-50));
  font-size: 2.4rem;
}
.showcase-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.showcase-chip {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
}
.showcase-pane h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.showcase-desc {
  color: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.showcase-points {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  gap: 10px;
}
.showcase-points li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.5;
}
.showcase-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--brand-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.showcase-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px dashed var(--border);
}
.showcase-meta { display: flex; flex-direction: column; }
.showcase-meta-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}
.showcase-meta-value {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 700;
}
.showcase-cta { margin-left: auto; }

@media (min-width: 900px) {
  .showcase-grid {
    grid-template-columns: 280px 1fr;
    gap: 24px;
  }
  .showcase-stage { padding: 40px; min-height: 480px; }
  .showcase-header h2 { font-size: 2.75rem; }
}

/* ==========================
   3) TRUST EDITORIAL
   ========================== */
.trust-editorial { padding: 96px 0; }
.trust-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.trust-headline {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.trust-lede {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 440px;
}
.trust-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-kpi { display: flex; flex-direction: column; gap: 4px; }
.trust-kpi-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--brand-600), var(--accent-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-kpi-label {
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  line-height: 1.3;
}

.trust-manifesto {
  list-style: none;
  counter-reset: manifesto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px dashed var(--border);
  transition: transform 0.3s var(--ease-out);
}
.trust-line:last-child { border-bottom: none; }
.trust-line:hover { transform: translateX(4px); }
.trust-num {
  font-size: 2rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brand-400);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: -webkit-text-stroke-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.trust-line:hover .trust-num {
  color: var(--brand-600);
  -webkit-text-stroke-color: var(--brand-600);
}
.trust-line-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.trust-line-body p {
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .trust-split { grid-template-columns: 1fr 1.2fr; gap: 72px; }
  .trust-headline { font-size: 3rem; }
  .trust-num { font-size: 2.6rem; }
}

/* ==========================
   4) TESTIMONIALS MARQUEE
   ========================== */
.testi-marquee-section {
  padding: 80px 0;
  overflow: hidden;
}
.testi-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.testi-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.testi-aggregate {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface-alt);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.testi-aggregate-stars { display: flex; gap: 2px; }
.testi-aggregate strong {
  display: block;
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 800;
}
.testi-aggregate span { display: block; font-size: 12.5px; color: var(--muted); }

.marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-row {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
}
.marquee-track.reverse {
  animation-direction: reverse;
  animation-duration: 72s;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* duplicate children so loop is seamless */
.marquee-track > * { flex-shrink: 0; }
.marquee-track::after {
  content: '';
  display: block;
  width: 0;
}

/* Mini testimonial card (marquee) */
.testimonial-card.mini {
  width: 340px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.testimonial-card.mini:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial-card.mini.alt {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
}
.testi-quote {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.5;
  color: var(--brand-200);
  margin-top: 12px;
  height: 12px;
}
.testimonial-card.mini .testimonial-text {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}
.testimonial-card.mini .testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.testimonial-card.mini .author-avatar {
  width: 36px; height: 36px;
  background: var(--brand-100);
  color: var(--brand-700);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.testimonial-card.mini .author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.testimonial-card.mini .author-location {
  font-size: 12px;
  color: var(--muted);
}

/* ==========================
   5) FINAL CTA (magnetic)
   ========================== */
.final-cta { background: var(--surface-alt); padding: 80px 0 120px; }
.final-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1E40AF 60%, #2563EB 100%);
  border-radius: var(--r-2xl);
  padding: 72px 32px;
  box-shadow: var(--shadow-xl);
  color: #FFFFFF;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(249, 115, 22, 0.35), transparent 60%),
    radial-gradient(500px 300px at 10% 90%, rgba(96, 165, 250, 0.4), transparent 60%);
  pointer-events: none;
}
.final-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.final-cta-content {
  position: relative;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.final-cta-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin: 18px 0 14px;
}
.final-cta-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.final-cta-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 14px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 999px;
}
.final-cta-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulsePest 2s infinite;
}

@media (min-width: 880px) {
  .final-cta-card { padding: 96px 56px; }
  .final-cta-content h2 { font-size: 2.8rem; }
  .testi-header h2 { font-size: 2.6rem; }
}

/* ==========================
   Scroll-reveal helper
   ========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   HERO v2 — search-bar driven
   ============================================ */
.hero-v2 {
  position: relative;
  padding: 140px 0 72px;
  background: linear-gradient(180deg, var(--brand-900) 0%, var(--brand-800) 55%, var(--brand-700) 100%);
  color: #FFFFFF;
  overflow: hidden;
}
.hero-v2::before { display: none; }

.hero-v2-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 450px at 80% 10%, rgba(249, 115, 22, 0.22), transparent 60%),
    radial-gradient(700px 380px at 10% 90%, rgba(69, 107, 176, 0.45), transparent 60%);
  pointer-events: none;
}
.hero-v2-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-v2-mobile-photo {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero-v2-mobile-photo { display: block; }
}

.hero-v2-inner {
  position: relative;
  text-align: center;
  max-width: 920px;
}

.hero-v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  margin-bottom: 22px;
}
.hero-v2-pill .hero-pill-dot {
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulsePest 2s infinite;
}

.hero-v2-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #FFFFFF;
}
.hero-v2-title .text-accent {
  background: linear-gradient(135deg, #FDBA74, #F97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-v2-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Search card */
.hero-search {
  background: #FFFFFF;
  border-radius: var(--r-xl);
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 0 auto 32px;
  max-width: 780px;
  box-shadow:
    0 1px 2px rgba(6, 16, 42, 0.08),
    0 24px 56px rgba(6, 16, 42, 0.35);
  text-align: left;
}

.hero-search-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  transition: background 0.2s var(--ease-out);
}
.hero-search-field:focus-within {
  background: var(--surface-soft);
}
.hero-search-icon {
  color: var(--brand-600);
  flex-shrink: 0;
}
.hero-search-field input,
.hero-search-field select {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--ink);
  min-width: 0;
  font-weight: 500;
}
.hero-search-field input::placeholder { color: var(--muted); }
.hero-search-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 22px;
  cursor: pointer;
}

.hero-search-divider { display: none; }

.hero-search-submit {
  justify-content: center;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  color: #FFFFFF;
  border-radius: var(--r-md);
  border: none;
  padding: 14px 22px;
  font-weight: 700;
}
.hero-search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.4);
  filter: brightness(1.05);
}

/* Address suggestions dropdown */
.hero-search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  max-height: 280px;
  overflow-y: auto;
  z-index: 20;
  display: none;
}
.hero-search-suggestions.open { display: block; }
.hero-suggestion {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.15s var(--ease-out);
}
.hero-suggestion:last-child { border-bottom: none; }
.hero-suggestion:hover,
.hero-suggestion[aria-selected="true"] { background: var(--brand-50); }
.hero-suggestion svg { color: var(--muted); flex-shrink: 0; }
.hero-suggestion-sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

.hero-v2-trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
}
.hero-v2-trust .hero-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.hero-v2-trust .hero-stars strong {
  margin-left: 6px;
  color: #FFFFFF;
  font-size: 13.5px;
}
.hero-v2-trust > div span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}
.hero-v2-trust .hero-trust-avatars {
  display: flex;
}
.hero-v2-trust .hero-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 11.5px;
  font-weight: 700;
  border: 2px solid var(--brand-800);
  margin-left: -6px;
}
.hero-v2-trust .hero-avatar:first-child { margin-left: 0; }

/* Hero stats strip on dark */
.hero-v2 + *, .hero-v2 .hero-stats { position: relative; }
.hero-v2 .hero-stats {
  margin-top: 48px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hero-v2 .hero-stat-value {
  color: #FDBA74;
  font-weight: 900;
}
.hero-v2 .hero-stat-value span {
  color: inherit;
}
.hero-v2 .hero-stat-label {
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 720px) {
  .hero-search {
    grid-template-columns: 1.3fr auto 1fr auto;
    gap: 2px;
    padding: 8px;
  }
  .hero-search-divider {
    display: block;
    width: 1px;
    background: var(--border);
    align-self: stretch;
    margin: 8px 0;
  }
}
@media (min-width: 880px) {
  .hero-v2 { padding: 180px 0 90px; }
  .hero-v2-title { font-size: 3.4rem; }
  .hero-v2 .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   SHOWCASE IMAGE SECTION
   ============================================ */
.showcase-image { background: var(--surface); padding: 96px 0; }
.showcase-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.showcase-image-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.showcase-image-lede {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 480px;
}
.showcase-image-badges {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.showcase-image-badges li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.showcase-image-badges svg {
  color: #10B981;
  flex-shrink: 0;
  background: #D1FAE5;
  padding: 4px;
  border-radius: 999px;
  width: 22px;
  height: 22px;
}
.showcase-image-frame {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: visible;
}
.showcase-image-frame::before {
  content: '';
  position: absolute;
  inset: -24px -24px -16px 16px;
  background: linear-gradient(135deg, var(--brand-50), var(--accent-50));
  border-radius: var(--r-2xl);
  z-index: -1;
}
.showcase-image-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
}
.showcase-image-float {
  position: absolute;
  background: #FFFFFF;
  border-radius: var(--r-lg);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.showcase-image-float strong {
  font-weight: 700;
  color: var(--brand-700);
}
.showcase-image-float-a {
  top: 18px;
  left: -16px;
}
.showcase-image-float-a .showcase-image-float-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulsePest 2s infinite;
}
.showcase-image-float-b {
  bottom: 24px;
  right: -16px;
}
.showcase-image-float-b span { color: var(--muted); font-size: 12.5px; }
.showcase-image-float-b strong { color: var(--ink); font-weight: 700; }

@media (min-width: 900px) {
  .showcase-image-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
  }
  .showcase-image-title { font-size: 3rem; }
  .showcase-image-float-a { left: -32px; top: 36px; }
  .showcase-image-float-b { right: -32px; }
}

/* ============================================
   SERVICE PICKER (rewrite of problem section)
   ============================================ */
.service-picker-section {
  background: var(--surface);
  padding: 72px 0 80px;
}
.service-picker-section .problem-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.service-picker-section .problem-headline {
  font-size: clamp(1.9rem, 4.2vw, 2.5rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.service-picker-section .problem-lede {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* Container — default = grid (desktop/tablet) */
.service-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 900px) {
  .service-picker { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (min-width: 1180px) {
  .service-picker { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* Hint bar under mobile slider */
.service-picker-section .picker-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.service-picker-section .picker-hint svg {
  animation: pickerSwipe 1.8s ease-in-out infinite;
}
@keyframes pickerSwipe {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50%      { transform: translateX(6px); opacity: 1; }
}

/* Card */
.service-picker .service-card {
  all: unset;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
  transition:
    border-color 0.25s var(--ease-out),
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    opacity 0.3s var(--ease-out);
  min-height: auto;
  text-align: left;
  padding: 0;
  gap: 0;
  will-change: transform;
}
.service-picker .service-card:hover,
.service-picker .service-card:focus-visible {
  border-color: var(--brand-400);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(12, 27, 66, 0.12);
}
.service-picker .service-card:focus-visible {
  outline: 3px solid var(--brand-100);
  outline-offset: 2px;
}
.service-picker .service-card.active {
  border-color: var(--brand-600);
  background: var(--brand-50);
  transform: translateY(-4px);
  box-shadow: 0 0 0 3px var(--brand-100), 0 20px 40px rgba(12, 27, 66, 0.16);
}
.service-picker .service-card.active .service-card-title { color: var(--brand-700); }
.service-picker .service-card.active .service-card-desc  { color: var(--brand-600); }

/* VISUAL zone (top) */
.service-picker .service-card-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  width: 100%;
  background-color: var(--brand-700);
  background-image: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-900) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: grid;
  place-items: center;
  overflow: hidden;
}
/* Image variant — use the per-service illustration from assets/cards/ */
.service-picker .service-card--image .service-card-visual {
  background-size: cover;
  background-position: center;
}
/* Soft color pop behind icon for no-image cards */
.service-picker .service-card--icon .service-card-visual-tile {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 26px;
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 60%, #2563EB 100%);
  box-shadow:
    0 18px 40px rgba(37, 99, 235, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: rotate(-8deg);
}
.service-picker .service-card--icon .service-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.25), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.2), transparent 55%);
}
.service-picker .service-card--icon .service-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.4;
}
.service-picker .service-card--icon .service-card-visual-icon {
  position: relative;
  z-index: 2;
  font-size: 3.2rem;
  line-height: 1;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
  transition: transform 0.4s var(--ease-bounce);
}
.service-picker .service-card:hover .service-card-visual-icon {
  transform: scale(1.12) rotate(-4deg);
}

/* Badge on visual */
.service-picker .service-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-500);
  color: #FFFFFF;
  box-shadow: 0 8px 16px rgba(249, 115, 22, 0.4);
  z-index: 3;
}
.service-picker .service-card-badge--alt {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
  box-shadow: none;
}

/* Check indicator (appears when active) */
.service-picker .service-card-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-700);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-bounce);
  z-index: 3;
  pointer-events: none;
}
.service-picker .service-card.active .service-card-check {
  opacity: 1;
  transform: scale(1);
  background: var(--accent-500);
  color: #FFFFFF;
  border-color: var(--accent-500);
}

/* INFO zone (bottom) */
.service-picker .service-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 18px;
}
.service-picker .service-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-picker .service-card-emoji {
  font-size: 1.15rem;
  line-height: 1;
}
.service-picker .service-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0;
}
.service-picker .service-card-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-picker .service-card-foot {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.service-picker .service-card-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-700);
  letter-spacing: -0.01em;
}
.service-picker .service-card-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-600);
  transition: transform 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.service-picker .service-card-action svg {
  transition: transform 0.25s var(--ease-out);
}
.service-picker .service-card:hover .service-card-action {
  color: var(--brand-700);
}
.service-picker .service-card:hover .service-card-action svg {
  transform: translateX(3px);
}
.service-picker .service-card.active .service-card-action {
  color: var(--accent-600);
}

/* Link variant (nuisibles) — no "selectable" check needed */
.service-picker .service-card--link {
  text-decoration: none;
}
.service-picker .service-card--link.active .service-card-check { display: none; }

/* Selection bar (result) */
.service-picker-section .problem-result {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: max-height 0.35s var(--ease-out), opacity 0.3s ease, transform 0.3s var(--ease-out), margin 0.3s ease;
  margin-top: 0;
}
.service-picker-section .problem-result.visible {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 24px;
}
.service-picker-section .picker-bar {
  background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-900) 100%);
  color: #FFFFFF;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 22px 44px rgba(6, 16, 42, 0.28);
}
.service-picker-section .picker-bar-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-picker-section .picker-bar-check {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-500);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.45);
}
.service-picker-section .picker-bar-labels {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.service-picker-section .picker-bar-kicker {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-picker-section .picker-bar-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.service-picker-section .picker-bar-cta {
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) {
  .service-picker-section .picker-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 14px 20px;
  }
  .service-picker-section .picker-bar-cta {
    width: auto;
  }
}

/* ------- MOBILE SLIDER (≤ 519px) ------- */
@media (max-width: 519px) {
  .service-picker {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 24px 24px;
    margin: 0 -20px;
    scroll-padding-left: 24px;
    grid-template-columns: unset;
  }
  .service-picker::-webkit-scrollbar { display: none; }

  .service-picker .service-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
    min-width: 0;
    transform: scale(0.94);
    opacity: 0.82;
  }
  .service-picker .service-card.in-view,
  .service-picker .service-card.active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 22px 48px rgba(12, 27, 66, 0.2);
  }
  /* Disable desktop hover-translate on touch so scale emphasis wins */
  .service-picker .service-card:hover,
  .service-picker .service-card:focus-visible {
    transform: scale(0.94);
  }
  .service-picker .service-card.in-view:hover,
  .service-picker .service-card.active:hover {
    transform: scale(1);
  }

  /* Bigger visual zone for swipe feel */
  .service-picker .service-card-visual {
    aspect-ratio: 4 / 3;
  }
  .service-picker .service-card--icon .service-card-visual-icon {
    font-size: 4rem;
  }
  .service-picker .service-card--icon .service-card-visual-tile {
    width: 150px;
    height: 150px;
  }

  .service-picker-section .picker-hint {
    display: flex;
  }
}

/* ============================================
   IMG PLACEHOLDERS — for branded illustrations
   ============================================ */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px 20px;
  background:
    repeating-linear-gradient(
      135deg,
      var(--brand-50) 0 10px,
      #ffffff 10px 20px
    );
  border: 2px dashed var(--brand-200);
  border-radius: 18px;
  color: var(--brand-600);
  aspect-ratio: 4 / 3;
  width: 100%;
  transition: border-color .2s ease, background .2s ease;
}
.img-placeholder:hover {
  border-color: var(--brand-400);
}
.img-placeholder svg {
  color: var(--brand-400);
  opacity: .9;
}
.img-placeholder .placeholder-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-700);
  letter-spacing: -0.01em;
}
.img-placeholder .placeholder-sub {
  font-size: 12px;
  color: var(--muted);
  max-width: 240px;
  line-height: 1.4;
}
.img-placeholder--tall {
  aspect-ratio: 3 / 4;
  min-height: 420px;
}

/* Hero visual placeholder — mobile first, floats right on desktop */
.hero-v2-visual {
  margin-top: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .hero-v2-visual {
    display: none; /* hero stays clean on desktop; visual reserved for hero background */
  }
}

/* ============================================
   SIMPLE STEPS SECTION
   ============================================ */
.simple-steps-section {
  background: var(--surface);
  padding-block: clamp(60px, 8vw, 110px);
}
.steps-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.steps-intro .eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
}
.steps-headline {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-900);
  line-height: 1.08;
  margin: 0 0 14px;
}
.steps-lede {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--body);
  line-height: 1.55;
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0 auto;
  max-width: 1100px;
}

.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-200);
  box-shadow: 0 12px 36px -18px rgba(27, 54, 116, 0.25);
}
.step-card-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-600);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 8px 20px -6px rgba(27, 54, 116, 0.45);
}
.step-card-visual {
  margin-top: 8px;
  aspect-ratio: 16 / 10;
}
.step-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-900);
  letter-spacing: -0.015em;
  margin: 4px 0 0;
}
.step-card-desc {
  font-size: 15px;
  color: var(--body);
  line-height: 1.55;
  margin: 0;
}

.steps-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.steps-cta-note {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .step-card {
    padding: 24px 20px 22px;
  }
  .step-card-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .steps-cta {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  background: var(--surface-alt);
  padding-block: clamp(60px, 8vw, 110px);
}
.why-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.why-intro .eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
}
.why-headline {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-900);
  line-height: 1.08;
  margin: 0 0 14px;
}
.why-lede {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--body);
  line-height: 1.55;
  margin: 0;
}

.why-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.why-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  transition: transform .2s ease, border-color .2s ease;
}
.why-stat:hover {
  transform: translateY(-2px);
  border-color: var(--brand-200);
}
.why-stat-value {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-700);
  line-height: 1;
  margin-bottom: 6px;
}
.why-stat-value span {
  font-size: 0.65em;
  color: var(--muted);
  font-weight: 700;
}
.why-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.why-quotes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-quote p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
}
.why-quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-quote-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.why-quote figcaption strong {
  display: block;
  font-size: 14px;
  color: var(--brand-900);
  line-height: 1.2;
}
.why-quote figcaption span {
  font-size: 12px;
  color: var(--muted);
}

.why-visual {
  position: sticky;
  top: 100px;
}

/* Final CTA card */
.why-final-cta {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-900) 100%);
  border-radius: 24px;
  padding: 36px clamp(22px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(249, 115, 22, 0.18), transparent 60%),
    radial-gradient(500px 260px at 0% 100%, rgba(42, 76, 146, 0.35), transparent 60%);
  pointer-events: none;
}
.why-final-cta > * {
  position: relative;
  z-index: 1;
}
.why-final-cta-text {
  flex: 1 1 320px;
}
.why-final-cta-text h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.why-final-cta-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  margin: 0;
}
.why-final-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.why-final-cta .btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.why-final-cta .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-visual {
    position: static;
    order: -1;
    min-height: 320px;
  }
  .why-visual.img-placeholder--tall {
    aspect-ratio: 16 / 10;
    min-height: 260px;
  }
}
@media (max-width: 560px) {
  .why-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .why-stat {
    padding: 16px 14px;
  }
  .why-final-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }
  .why-final-cta-actions {
    width: 100%;
  }
  .why-final-cta-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* ============================================
   DOMAIN SEO PAGES (plomberie, électricité, etc.)
   ============================================ */

.domain-hero {
  position: relative;
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-900) 100%);
  color: #fff;
  padding-block: clamp(80px, 10vw, 140px) clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.domain-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 85% 0%, rgba(249, 115, 22, 0.22), transparent 60%),
    radial-gradient(600px 320px at 0% 100%, rgba(42, 76, 146, 0.45), transparent 60%);
  pointer-events: none;
}
.domain-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.domain-hero-text .eyebrow {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}
.domain-hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.domain-hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 28px;
}
.domain-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.domain-hero-actions .btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.domain-hero-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}
.domain-hero-meta {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.domain-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.domain-hero-meta-item svg {
  color: #F97316;
}

.domain-hero-visual {
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 10px, rgba(255,255,255,0.08) 10px 20px);
  border: 2px dashed rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  padding: 30px;
  text-align: center;
}
.domain-hero-visual .placeholder-title { color: #fff; font-weight: 700; }
.domain-hero-visual .placeholder-sub   { color: rgba(255, 255, 255, 0.6); font-size: 12px; }

@media (max-width: 900px) {
  .domain-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .domain-hero-visual {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 18px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--brand-600);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 8px; color: var(--muted-soft); }

/* --- Prestations grid --- */
.prestations-section {
  padding-block: clamp(60px, 8vw, 100px);
  background: var(--surface);
}
.section-intro {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-intro .eyebrow { display: inline-flex; margin-bottom: 14px; }
.section-intro h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-900);
  line-height: 1.1;
  margin: 0 0 12px;
}
.section-intro p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.55;
  margin: 0;
}
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.prestation-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.prestation-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-200);
  box-shadow: 0 14px 32px -18px rgba(27, 54, 116, 0.28);
}
.prestation-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-600);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.prestation-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-900);
  letter-spacing: -0.01em;
  margin: 0;
}
.prestation-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  margin: 0;
}
.prestation-card-price {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-600);
}
@media (max-width: 900px) {
  .prestations-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .prestations-grid { grid-template-columns: 1fr; }
}

/* --- Articles --- */
.articles-section {
  padding-block: clamp(60px, 8vw, 100px);
  background: var(--surface-alt);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(27, 54, 116, 0.3);
}
.article-card-visual {
  aspect-ratio: 16 / 9;
  background: var(--brand-50);
  display: grid;
  place-items: center;
  color: var(--brand-400);
  border-bottom: 1px solid var(--border);
}
.article-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.article-card-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-600);
  background: var(--accent-50);
  padding: 4px 10px;
  border-radius: 999px;
}
.article-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-900);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}
.article-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.article-card-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
@media (max-width: 900px) {
  .articles-grid { grid-template-columns: 1fr; }
}

/* --- FAQ --- */
.faq-section {
  padding-block: clamp(60px, 8vw, 100px);
  background: var(--surface);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] {
  border-color: var(--brand-200);
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--brand-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
  font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--brand-600);
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item-body {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}

/* --- Domain final CTA (reuses why-final-cta base) --- */
.domain-final-cta {
  padding-block: clamp(60px, 7vw, 90px);
  background: var(--surface-alt);
}
.domain-final-cta .why-final-cta { margin-top: 0; }

/* --- Related domains --- */
.related-domains {
  padding-block: clamp(50px, 6vw, 80px);
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.related-domains-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-900);
  margin: 0 0 20px;
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.related-card {
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-900);
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, border-color .15s ease;
}
.related-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-400);
}
.related-card-emoji { font-size: 20px; }

/* --- Zones d'intervention (nuisibles) --- */
.zones-section { padding-block: clamp(60px, 8vw, 100px); }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.zones-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  transition: transform .18s ease, border-color .18s ease;
}
.zones-col:hover { transform: translateY(-2px); border-color: var(--brand-400); }
.zones-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-900);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.zones-col h4::before {
  content: "📍";
  font-size: 16px;
}
.zones-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.zones-col li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.zones-col li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-500);
  flex-shrink: 0;
}

/* --- Pest promise (separator banner) --- */
.pest-promise {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0;
  background: #06122E;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.pest-promise-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(700px 380px at 18% 30%, rgba(249, 115, 22, 0.18), transparent 65%),
    radial-gradient(800px 460px at 85% 75%, rgba(37, 99, 235, 0.22), transparent 65%),
    linear-gradient(180deg, #050d22 0%, #0a1638 100%);
}
.pest-promise-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  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: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.pest-promise-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.pest-promise-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
}
.pest-promise-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-500);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.8);
  animation: pest-pulse-dot 2s ease-in-out infinite;
}
@keyframes pest-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
.pest-promise-quote {
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  color: #fff;
}
.pest-promise-mark {
  color: var(--accent-500);
  font-weight: 400;
  font-size: 1.4em;
  line-height: 0;
  vertical-align: middle;
  margin: 0 6px;
  opacity: 0.6;
}
.pest-promise-emphasis {
  display: block;
  background: linear-gradient(135deg, #FB923C, #F97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 4px;
}
.pest-promise-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  margin: 0 auto 32px;
}
.pest-promise-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 720px;
  margin: 0 auto 32px;
}
.pest-promise-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pest-promise-stat strong {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.pest-promise-stat span {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pest-promise-signature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}
.pest-promise-signature svg { color: var(--accent-500); }
@media (max-width: 640px) {
  .pest-promise-meta {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 280px;
  }
  .pest-promise-stat {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
  }
  .pest-promise-stat span { text-align: right; }
}

/* --- Hero rating (Google social proof) --- */
.pest-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pest-hero-rating-stars {
  display: inline-flex;
  gap: 1px;
  line-height: 0;
}
.pest-hero-rating-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}
.pest-hero-rating-text strong { color: #fff; font-weight: 700; }
.pest-hero-rating-text span { color: rgba(255, 255, 255, 0.6); }

/* --- Sticky mobile CTA (nuisibles) --- */
.pest-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px;
  background: rgba(6, 18, 46, 0.95);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.45);
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2, .9, .3, 1);
}
.pest-sticky-cta.visible {
  transform: translateY(0);
}
.pest-sticky-call,
.pest-sticky-book {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform .15s ease, background .15s ease;
}
.pest-sticky-call {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.pest-sticky-call span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.pest-sticky-call small {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}
.pest-sticky-call:active { background: rgba(255, 255, 255, 0.14); }
.pest-sticky-book {
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: #fff;
  box-shadow: 0 6px 18px -4px rgba(249, 115, 22, 0.55);
}
.pest-sticky-book:active { transform: scale(0.97); }
@media (max-width: 768px) {
  .pest-sticky-cta { display: flex; }
}

/* --- Pest grid note (tarifs / devis) --- */
.pest-grid-note {
  margin-top: 32px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 14px;
  color: var(--brand-900);
  font-size: 14px;
  line-height: 1.55;
}
.pest-grid-note svg {
  color: var(--brand-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.pest-grid-note strong { color: var(--brand-900); font-weight: 700; }
