/* =========================================================
   L'Expert Local — Landing page styles
   Palette quadrichrome (B/R/J/V) + neutres
========================================================= */

:root {
  --blue: #1A73E8;
  --blue-dark: #1557B0;
  --blue-soft: #E8F0FE;
  --red: #EA4335;
  --red-soft: #FCE8E6;
  --yellow: #FBBC04;
  --yellow-dark: #F09F00;
  --yellow-soft: #FEF7E0;
  --green: #34A853;
  --green-soft: #E6F4EA;

  --ink: #202124;
  --ink-2: #3C4043;
  --ink-3: #5F6368;
  --ink-4: #80868B;
  --line: #E8EAED;
  --line-2: #DADCE0;
  --bg: #FFFFFF;
  --bg-2: #F8F9FA;
  --bg-3: #F1F3F4;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(60,64,67,0.06), 0 1px 3px rgba(60,64,67,0.04);
  --shadow-md: 0 4px 12px rgba(60,64,67,0.08), 0 2px 6px rgba(60,64,67,0.04);
  --shadow-lg: 0 14px 40px rgba(60,64,67,0.10), 0 4px 12px rgba(60,64,67,0.06);

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 820px; }

/* =========================================================
   HEADER
========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.header.scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}
.header-cta {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark { display: inline-flex; }
.brand-name-accent { color: var(--blue); font-weight: 900; }
.brand-name-light { color: var(--ink); }
.brand-name-com {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #1A73E8;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px 2px 4px;
  border-radius: 5px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0;
  line-height: 1.2;
}
.brand-com-dot { font-size: 9px; opacity: 0.85; }
.brand-name-com-light {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  transition: color .15s ease;
}
.nav-link:hover { color: var(--blue); }
.nav-link-active { color: var(--blue); font-weight: 600; }
.nav-link-with-caret {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .15s ease;
}
.nav-dropdown-menu a:hover {
  background: var(--bg-2);
  color: var(--ink);
}
.nav-dropdown-menu .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-mobile-link .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.nav-toggle {
  display: none;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  background: none;
  border: 0;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.nav-mobile-link {
  padding: 14px 8px;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav-mobile .btn { margin-top: 12px; }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 2px rgba(26,115,232,0.20), 0 2px 8px rgba(26,115,232,0.18);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,115,232,0.30);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--ink-4);
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--bg-2);
}

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.btn.loading .btn-label { opacity: 0.5; }
.btn.loading .btn-spinner { display: inline-block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 80px;
  background: linear-gradient(180deg, #FAFBFF 0%, #FFFFFF 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.blob-blue   { width: 420px; height: 420px; background: #C5DAFE; top: -120px; left: -80px; }
.blob-yellow { width: 380px; height: 380px; background: #FFE7A8; top: 40px; right: -100px; }
.blob-green  { width: 320px; height: 320px; background: #C9EAD4; bottom: -120px; left: 30%; opacity: 0.45; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content { max-width: 600px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(52,168,83,0.20);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(52,168,83,0); } }

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
.word-color {
  display: inline-flex;
  letter-spacing: -0.02em;
}
.word-color span { display: inline-block; }

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}
.hero-pillar {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
}
.hero-pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-pillar-blue   { background: #E8F0FE; color: #1A55C8; }
.hero-pillar-blue   .hero-pillar-dot { background: #1A73E8; }
.hero-pillar-yellow { background: #FEF7E0; color: #B06000; }
.hero-pillar-yellow .hero-pillar-dot { background: #FBBC04; }
.hero-pillar-red    { background: #FCE8E6; color: #C5221F; }
.hero-pillar-red    .hero-pillar-dot { background: #EA4335; }

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0 0 28px;
  text-wrap: pretty;
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.check-blue   { background: var(--blue); }
.check-green  { background: var(--green); }
.check-yellow { background: var(--yellow); color: var(--ink); }
.check-red    { background: var(--red); }

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual: phone mock */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mock {
  width: 320px;
  height: 600px;
  background: #fff;
  border-radius: 38px;
  border: 10px solid #1F2937;
  box-shadow: var(--shadow-lg), 0 0 0 1.5px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.phone-mock::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #1F2937;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  padding: 44px 14px 18px;
  height: 100%;
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 60%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}

.chip-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  background: #fff;
}
.chip-active {
  background: var(--blue-soft);
  border-color: transparent;
  color: var(--blue);
  font-weight: 600;
}

.map-mock {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #E8F0FE 0%, #FEF7E0 100%);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(95,99,104,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(95,99,104,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.map-route {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
  opacity: 0.85;
  transform: rotate(-8deg);
  border-radius: 4px;
}
.map-route::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 30%;
  right: 0;
  height: 4px;
  background: var(--yellow);
  border-radius: 4px;
  transform: rotate(15deg) translateY(40px);
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
}
.map-pin span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 3px auto;
  background: var(--ink);
}
.map-pin-1 { top: 25%; left: 25%; border-color: var(--red); }
.map-pin-1 span { background: var(--red); }
.map-pin-2 {
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(1.4);
  border-color: var(--blue);
  z-index: 2;
}
.map-pin-2 span { background: var(--blue); }
.map-pin-2.map-pin-active::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0.4;
  animation: ping 1.6s ease-out infinite;
}
.map-pin-3 { bottom: 22%; right: 22%; border-color: var(--green); }
.map-pin-3 span { background: var(--green); }

@keyframes ping {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

.result-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-top: auto;
}
.result-top {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.result-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.result-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0 6px, transparent 6px 12px);
}
.result-info { flex: 1; min-width: 0; }
.result-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 2px;
}
.result-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--ink-3);
}
.stars { color: var(--yellow-dark); letter-spacing: 1px; font-size: 11px; }
.result-meta-text { color: var(--ink-3); }
.result-tags { font-size: 11px; color: var(--ink-3); }
.tag-open { color: var(--green); font-weight: 600; }
.result-actions {
  display: flex;
  gap: 4px;
}
.result-btn {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 4px;
  border-radius: 8px;
  background: var(--bg-2);
  color: var(--ink-2);
}
.result-btn-primary {
  background: var(--blue);
  color: #fff;
}

.visual-tag {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 4s ease-in-out infinite;
}
.visual-tag-1 {
  top: 30px;
  right: -10px;
  animation-delay: 0s;
}
.visual-tag-2 {
  bottom: 60px;
  left: -20px;
  animation-delay: 1.5s;
}
.visual-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* =========================================================
   HERO VISUAL CAROUSEL
========================================================= */
.hvc-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hvc-viewport {
  overflow: hidden;
  border-radius: 32px;
}
.hvc-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.hvc-slide {
  flex: 0 0 100%;
}
.hvc-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: background .15s, box-shadow .15s;
  z-index: 2;
}
.hvc-arrow:hover { background: #f1f3f4; box-shadow: 0 4px 12px rgba(0,0,0,.12); }
.hvc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.hvc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D2D4D8;
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.hvc-dot-active {
  background: #EA4335;
  transform: scale(1.2);
}

/* =========================================================
   PHONE SLIDES — styles communs
========================================================= */
.phone-screen.ps-full {
  padding: 0;
  gap: 0;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Chrome Google (barre du haut) */
.ps-g-chrome {
  background: #fff;
  padding: 40px 12px 6px;
  border-bottom: 1px solid #E8EAED;
  flex-shrink: 0;
}
.ps-g-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.ps-g-menu { font-size: 16px; color: #5F6368; cursor: default; }
.ps-g-logo { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; }
.ps-g-avatar { width: 26px; height: 26px; border-radius: 50%; background: #E8EAED; }
.ps-g-searchbar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F1F3F4;
  border-radius: 22px;
  padding: 8px 14px;
  font-size: 13px;
  color: #5F6368;
}
/* Topbar Maps */
.ps-gmaps-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 40px 12px 8px;
}
.ps-gmaps-searchbar {
  flex: 1;
  height: 28px;
  background: #F1F3F4;
  border-radius: 14px;
}
.ps-gmaps-searchicon { font-size: 14px; }
/* Scrollable content area */
.ps-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 12px 12px;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ps-content::-webkit-scrollbar { display: none; }

/* Skeleton lines */
.ps-skel { height: 10px; background: #E8EAED; border-radius: 5px; margin-bottom: 6px; }
.ps-skel-group { display: flex; flex-direction: column; gap: 0; }
.ps-sk-90 { width: 90%; }
.ps-sk-80 { width: 80%; }
.ps-sk-70 { width: 70%; }
.ps-sk-60 { width: 60%; }
.ps-sk-circ { width: 32px !important; height: 32px !important; border-radius: 50% !important; flex-shrink: 0; }
.ps-skel-items { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.ps-skel-item { display: flex; align-items: flex-start; gap: 10px; }
.ps-skel-item > div:last-child { flex: 1; }

/* Action buttons row */
.ps-action-row {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.ps-action-btn {
  flex: 1;
  border: 1px solid #DADCE0;
  border-radius: 20px;
  padding: 5px 4px;
  font-size: 9px;
  font-weight: 500;
  color: #1A73E8;
  text-align: center;
  cursor: default;
  white-space: nowrap;
}

/* ---- Slide 1 : Google Maps GBP popup ---- */
.ps-map-area {
  position: relative;
  height: 340px;
  flex-shrink: 0;
  overflow: hidden;
}
.ps-map-streets {
  position: absolute;
  inset: 0;
  background-color: #E8EBD3;
  background-image:
    linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
}
.ps-map-streets::after {
  content: '';
  position: absolute;
  top: 35%; left: 10%; right: 5%;
  height: 18px; background: rgba(255,255,255,0.95); border-radius: 3px;
  transform: rotate(-12deg);
  box-shadow: 0 22px 0 rgba(255,255,255,0.9), 0 44px 0 rgba(255,255,255,0.85);
}
.ps-map-streets-sm { height: 100%; }
.ps-map-pin-wrap {
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -100%);
  z-index: 4;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
.ps-map-popup {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  min-width: 210px;
  max-width: 240px;
  z-index: 5;
}
.ps-map-popup-name { font-size: 13px; font-weight: 700; color: var(--ink); text-align: center; }
.ps-map-popup-tag  { font-size: 11px; color: #5F6368; text-align: center; margin-top: 2px; }
.ps-map-popup-promo{ font-size: 10px; color: #1A73E8; text-align: center; margin-top: 3px; font-weight: 500; }
.ps-map-close {
  position: absolute; top: 10px; right: 10px;
  width: 22px; height: 22px; background: rgba(255,255,255,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #5F6368; font-weight: 300; cursor: default;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.ps-map-data {
  position: absolute; bottom: 6px; right: 8px;
  font-size: 9px; color: rgba(0,0,0,.4);
}
.ps-gbp-sheet {
  flex: 1;
  background: #fff;
  padding: 10px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ps-gbp-top { display: flex; gap: 10px; align-items: flex-start; }
.ps-gbp-logo {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg,#E8F0FE,#C5D9FF);
  border: 1px solid #E8EAED;
}
.ps-gbp-name  { font-size: 13px; font-weight: 700; color: var(--ink); }
.ps-gbp-hours { font-size: 11px; color: #5F6368; margin-top: 2px; }
.ps-gbp-addr  { font-size: 10px; color: #5F6368; margin-top: 2px; }
.ps-gbp-feat  { font-size: 10px; color: #5F6368; margin-top: 2px; }
.ps-gbp-actions { display: flex; gap: 8px; }
.ps-gbp-btn-o {
  flex: 1; border: 1px solid #DADCE0; border-radius: 20px;
  padding: 8px 6px; font-size: 10px; font-weight: 500;
  color: #1A73E8; background: #fff; cursor: default;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ps-gbp-btn-f {
  flex: 1; background: #1A73E8; border: none; border-radius: 20px;
  padding: 8px 10px; font-size: 10px; font-weight: 600;
  color: #fff; cursor: default;
}
.ps-gbp-btn-full {
  display: block; width: calc(100% - 24px); margin: 0 12px 8px;
  flex: none;
}

/* ---- Slide 2 : Sponsored search result ---- */
.ps-sponsored-card {
  background: #fff;
  border: 1px solid #DADCE0;
  border-radius: 10px;
  padding: 10px 12px;
}
.ps-sp-body { display: flex; gap: 8px; align-items: flex-start; }
.ps-sp-left { flex: 1; }
.ps-sp-label { font-size: 9px; color: #70757A; margin-bottom: 2px; }
.ps-sp-name  { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.ps-sp-meta  { font-size: 10px; color: #5F6368; margin-top: 2px; }
.ps-stars    { color: #FBBC05; font-size: 10px; }
.ps-sp-cat   { font-size: 10px; color: #5F6368; margin-top: 1px; }
.ps-sp-addr  { font-size: 10px; color: #5F6368; margin-top: 1px; }
.ps-sp-desc  { font-size: 10px; color: #4D5156; margin-top: 4px; line-height: 1.4; }
.ps-sp-mapthumb {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: #E8EBD3;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #E8EAED;
  overflow: hidden;
  position: relative;
}
.ps-sp-mapthumb::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.7) 1px, transparent 1px);
  background-size: 14px 14px;
}
.ps-sp-mapthumb svg { position: relative; z-index: 1; }

/* ---- Slide 3 : Google Maps embed ---- */
.ps-embed-map {
  position: relative;
  height: 155px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #E8EAED;
  flex-shrink: 0;
}
.ps-embed-pin {
  position: absolute; top: 38%; left: 50%;
  transform: translate(-50%, -100%); z-index: 3;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.25));
}
.ps-embed-label {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%);
  background: #fff; border-radius: 8px; padding: 6px 10px;
  font-size: 10px; text-align: center; z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,.15); min-width: 160px;
  line-height: 1.4;
}
.ps-embed-footer {
  position: absolute; bottom: 4px; left: 6px; right: 6px;
  display: flex; justify-content: space-between;
  font-size: 8px; color: rgba(0,0,0,.4); z-index: 4;
}
.ps-google-logo { font-weight: 700; color: rgba(0,0,0,.5); }
.ps-map-copy { color: rgba(0,0,0,.3); }
.ps-embed-card {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 6px 2px;
}
.ps-embed-logo {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 6px; border: 1px solid #E8EAED;
  background: linear-gradient(135deg,#E8F0FE,#C5D9FF);
}
.ps-embed-info { font-size: 11px; color: #5F6368; line-height: 1.5; }

/* ---- Slide 4 : Organic search result ---- */
.ps-organic-card {
  background: #fff;
  border: 1px solid #DADCE0;
  border-radius: 10px;
  padding: 10px 12px;
}
.ps-org-source { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.ps-org-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg,#E8F0FE,#C5D9FF);
  border: 1px solid #E8EAED; flex-shrink: 0;
}
.ps-org-bname { font-size: 11px; font-weight: 600; color: var(--ink); }
.ps-org-url   { font-size: 9px; color: #188038; }
.ps-org-locimg {
  margin-left: auto; width: 44px; height: 44px;
  background: #F1F3F4; border-radius: 6px; border: 1px solid #E8EAED;
  flex-shrink: 0;
}
.ps-org-title  { font-size: 14px; font-weight: 600; color: #1A0DAB; line-height: 1.3; margin-bottom: 3px; }
.ps-org-meta   { font-size: 10px; color: #4D5156; }
.ps-org-open   { display: inline-block; font-size: 10px; color: #188038; font-weight: 500; margin-top: 2px; }
.ps-org-desc   { font-size: 10px; color: #4D5156; line-height: 1.5; margin-top: 4px; }

/* =========================================================
   REASSURANCE BAR
========================================================= */
.reassurance {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.reassurance-item {
  text-align: center;
  padding: 4px;
}
.reassurance-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.reassurance-label {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}

/* =========================================================
   SECTIONS — generic
========================================================= */
.section {
  padding: 96px 0;
}
.section-tinted {
  background: var(--bg-2);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  white-space: nowrap;
  background: rgba(26,115,232,0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow-light {
  background: rgba(255,255,255,0.9);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
  text-wrap: pretty;
}

.hl-blue   { color: var(--blue); }
.hl-green  { color: var(--green); }
.hl-red    { color: var(--red); }
.hl-yellow { color: var(--yellow-dark); }

.rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
}
.rating-stars {
  color: var(--yellow-dark);
  letter-spacing: 2px;
  font-size: 0.85em;
}
.rating-num { color: var(--yellow-dark); }

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

.service-visual {
  margin: -28px -26px 16px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  padding: 16px 20px 8px;
  line-height: 0;
}
.service-visual svg { display: block; width: 100%; height: auto; }

/* ---- Service card animations ---- */

/* Card 1 — bouton CTA pulse */
.svc-anim-btn {
  animation: svcBtnPulse 2.4s ease-in-out infinite;
  transform-origin: 76px 118px;
}
@keyframes svcBtnPulse {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 0px rgba(26,115,232,0)); }
  50%       { opacity: .85; filter: drop-shadow(0 0 6px rgba(26,115,232,.6)); }
}

/* Card 1 — image placeholder float */
.svc-anim-img {
  animation: svcImgFloat 3s ease-in-out infinite;
  transform-origin: 174px 94px;
}
@keyframes svcImgFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}

/* Card 2 — pin bounce */
.svc-anim-pin {
  animation: svcPinBounce 2s cubic-bezier(.36,.07,.19,.97) infinite;
  transform-origin: 138px 46px;
}
@keyframes svcPinBounce {
  0%, 100% { transform: translateY(0); }
  20%       { transform: translateY(-7px); }
  40%       { transform: translateY(-2px); }
  60%       { transform: translateY(-5px); }
  80%       { transform: translateY(0); }
}

/* Card 3 — toggle on/off */
.svc-anim-toggle-bg {
  animation: svcToggleBg 2.8s ease-in-out infinite;
}
@keyframes svcToggleBg {
  0%, 40%  { fill: #DADCE0; }
  55%, 90% { fill: #1A73E8; }
  100%     { fill: #DADCE0; }
}
.svc-anim-toggle-dot {
  animation: svcToggleDot 2.8s ease-in-out infinite;
}
@keyframes svcToggleDot {
  0%, 40%  { cx: 209; }
  55%, 90% { cx: 222; }
  100%     { cx: 209; }
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.service-card-featured {}

.service-badge {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0 0 4px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.service-list li {
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent, var(--blue));
  font-weight: 800;
  font-size: 12px;
}

.service-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.service-price {
  font-size: 14px;
  color: var(--ink-3);
}
.service-price strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.service-price span {
  font-size: 13px;
  color: var(--ink-3);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: gap .15s ease;
}
.link-arrow:hover { gap: 8px; }

/* =========================================================
   SECTORS
========================================================= */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.sector-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: attr(data-color);
  background: var(--sector-color, var(--blue));
  opacity: 0;
  transition: opacity .2s ease;
}
.sector-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.sector-emoji {
  font-size: 28px;
  margin-bottom: 4px;
}
.sector-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.sector-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  margin-top: 6px;
}
.sector-card:hover .sector-cta { color: var(--blue); }

.sector-card-other {
  background: transparent;
  border-style: dashed;
}
.sector-card-other .sector-emoji {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink-3);
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* =========================================================
   STEPS — Comment ça marche
========================================================= */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: #fff;
}
.step-num-blue   { background: var(--blue); }
.step-num-red    { background: var(--red); }
.step-num-green  { background: var(--green); }
.step-num-yellow { background: var(--yellow); color: var(--ink); }

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   WHY
========================================================= */
/* ---- Why tabs ---- */
.wtab-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.wtab-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line-2);
  background: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-3);
  cursor: pointer;
  transition: border-color .18s, color .18s, background .18s, box-shadow .18s;
}
.wtab-btn:hover { border-color: var(--ink-3); color: var(--ink); }
.wtab-btn.wtab-active {
  background: var(--blue-soft);
  border-color: var(--blue);
  border-width: 2px;
  color: var(--blue);
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(26,115,232,.18);
}
.wtab-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}
.wtab-btn.wtab-active .wtab-icon { background: rgba(26,115,232,.15) !important; color: var(--blue) !important; }

.wtab-panels { position: relative; }
.wtab-panel { display: none; }
.wtab-panel.wtab-panel-active { display: block; }

.wtab-content {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.wtab-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wtab-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}
.wtab-desc {
  font-size: .975rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0;
}
.wtab-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wtab-visual-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.wtab-visual-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-4);
  margin: 0;
}
.wtab-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  text-align: center;
}
.wtab-metric { display: flex; flex-direction: column; gap: .15rem; }
.wtab-metric-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; line-height: 1; }
.wtab-metric-lbl { font-size: .72rem; color: var(--ink-4); }
.wtab-bar-wrap { display: flex; flex-direction: column; gap: .5rem; }
.wtab-bar-row { display: flex; align-items: center; gap: .75rem; font-size: .78rem; color: var(--ink-3); }
.wtab-bar-row > span { width: 40px; flex-shrink: 0; }
.wtab-bar { flex: 1; height: 8px; background: var(--bg-3); border-radius: 999px; overflow: hidden; }
.wtab-bar > div { height: 100%; border-radius: 999px; transition: width .8s ease; }
.wtab-sector-chip {
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .5rem .75rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--ink-2);
  text-align: center;
}
.wtab-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
}
.wtab-price-label { font-size: .88rem; color: var(--ink-3); }
.wtab-price-val { font-family: var(--font-display); font-size: .95rem; font-weight: 700; }

@media (max-width: 768px) {
  .wtab-content { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
  .wtab-btn { font-size: .82rem; padding: .55rem .9rem; }
}

/* =========================================================
   REVIEWS
========================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  color: var(--yellow-dark);
  font-size: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.review-meta {
  font-size: 12.5px;
  color: var(--ink-3);
}

/* =========================================================
   PRICING
========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: none;
  transform: none;
}
.pricing-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 3px var(--accent), var(--shadow-md);
}

.pricing-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue) 0%, var(--red) 33%, var(--yellow) 66%, var(--green) 100%);
  padding: 2px;
  border-radius: 999px;
}
.pricing-ribbon-text {
  display: block;
  background: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.pricing-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  letter-spacing: -0.01em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.pricing-amount-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.pricing-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-3);
}

.pricing-setup {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
  flex: 1;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-check {
  font-weight: 800;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1.4;
}

.pricing-card .btn { margin-top: 18px; }

.pricing-bottom {
  text-align: center;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pricing-note {
  margin: 0;
  max-width: 700px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
}
.lock-icon { margin-right: 6px; }

/* =========================================================
   FAQ
========================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item[open] {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.08);
}

.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  letter-spacing: -0.005em;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-chev {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-2);
  position: relative;
  transition: background .2s ease, transform .2s ease;
}
.faq-chev::before,
.faq-chev::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: var(--ink-2);
  border-radius: 2px;
  transition: transform .2s ease;
}
.faq-chev::before { transform: translate(-50%,-50%); }
.faq-chev::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] .faq-chev { background: var(--blue); }
.faq-item[open] .faq-chev::before,
.faq-item[open] .faq-chev::after { background: #fff; }
.faq-item[open] .faq-chev::after { transform: translate(-50%,-50%) rotate(0); }

.faq-a {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.6;
}
.faq-a p { margin: 0; }
.faq-a strong { color: var(--ink-2); font-weight: 600; }

/* =========================================================
   CONTACT
========================================================= */
.section-contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.contact-bg .blob-blue   { width: 380px; height: 380px; top: -100px; left: -100px; opacity: 0.5; }
.contact-bg .blob-yellow { width: 320px; height: 320px; bottom: -80px; right: -80px; opacity: 0.4; }

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.contact-left { padding-top: 8px; }
.contact-left .section-title { margin-bottom: 18px; }
.contact-pitch {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0 0 28px;
}
.contact-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
}
.perk-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

/* Contact form */
.contact-form {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-row + .form-field,
.form-field + .form-field { margin-top: 0; }

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.form-field input,
.form-field select {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235F6368' 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 14px center;
  padding-right: 38px;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.18);
}

.form-note {
  text-align: center;
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--ink-3);
}

.contact-form .btn {
  margin-top: 8px;
}

/* Thank you state */
.contact-thanks {
  background: #fff;
  border-radius: 22px;
  padding: 48px 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: fadeIn .4s ease;
}
.thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--green-soft);
  border-radius: 50%;
  margin-bottom: 18px;
}
.thanks-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.thanks-text {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 12px;
}
.thanks-text-small {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   À PROPOS
========================================================= */
.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.badge-pill-blue  { background: #EAF1FD; color: #1A73E8; }
.badge-pill-green { background: #E6F4EA; color: #1E8E3E; }
.badge-pill-yellow{ background: #FEF7E0; color: #B06000; }
.badge-pill-red   { background: #FCE8E6; color: #C5221F; }

/* ===== Franchise block ===== */
.franchise-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.franchise-text { display: flex; flex-direction: column; gap: 1rem; }
.franchise-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-top: .25rem; }
.franchise-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.franchise-list svg { flex-shrink: 0; margin-top: 2px; }
.franchise-visual svg { border-radius: 16px; display: block; width: 100%; }

@media (max-width: 860px) {
  .franchise-block { grid-template-columns: 1fr; gap: 2rem; }
  .franchise-visual { max-width: 380px; margin: 0 auto; }
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-split-text { display: flex; flex-direction: column; gap: 1rem; }
.about-split-text .eyebrow { margin-bottom: 0; }
.about-lead { font-size: 17px; color: var(--ink); line-height: 1.65; font-weight: 500; }
.about-body { font-size: 15px; color: var(--ink-2); line-height: 1.75; }

.about-split-values { display: flex; flex-direction: column; gap: 1rem; }
.value-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}
.value-icon { flex-shrink: 0; margin-top: 2px; }
.value-title { font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.value-body  { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

.cert-card {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1.5px solid #C8DAFF;
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
}
.cert-logo { flex-shrink: 0; text-align: center; }
.cert-logo-label { font-size: 11px; font-weight: 700; color: var(--blue); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.cert-logo-tier  { font-size: 14px; font-weight: 800; color: #F09F00; }
.cert-title { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 0.75rem; }
.cert-text  { font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.cert-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.25rem; }
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #EAF1FD;
  color: #1A73E8;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* Chiffres clés */
.stats-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 8px;
}

/* Équipe */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Équipe v2 — avatars illustrés */
.team-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}
.team-card-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
}
.team-avatar-v2 {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid;
  flex-shrink: 0;
  margin-bottom: .25rem;
}
.team-avatar-v2 svg { display: block; }
@media (max-width: 720px) {
  .team-grid-v2 { grid-template-columns: 1fr; max-width: 340px; }
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}
.team-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.team-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.team-avatar span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.team-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.3;
}
.team-name { font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 2px; }
.team-role { font-size: 13px; color: var(--ink-2); font-weight: 500; margin-bottom: 1rem; }
.team-bio  { font-size: 14px; color: var(--ink-2); line-height: 1.65; margin-bottom: 1.25rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.team-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink-2);
}

/* Approche */
.approach-steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.approach-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.approach-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.approach-connector {
  display: flex;
  justify-content: flex-start;
  padding-left: 23px;
  margin: 4px 0;
}
.approach-title { font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.approach-text  { font-size: 15px; color: var(--ink-2); line-height: 1.7; }

@media (max-width: 980px) {
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .cert-card { flex-direction: column; text-align: center; padding: 1.75rem; }
  .cert-badges { justify-content: center; }
  .team-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .stats-band { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 calc(50% - 0.75rem); }
}

/* =========================================================
   PAGE DEVIS
========================================================= */
.devis-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.devis-left { display: flex; flex-direction: column; gap: 2rem; padding-top: .5rem; }

.devis-process { background: var(--canvas); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.devis-process-title { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-2); margin-bottom: 1.25rem; }
.devis-steps-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.devis-steps-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.devis-steps-list li strong { display: block; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.devis-step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  margin-top: 1px;
}

.devis-social-proof { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.devis-rating { display: flex; align-items: center; gap: 8px; margin-bottom: .75rem; }
.devis-quote { font-size: 14px; color: var(--ink); font-style: italic; line-height: 1.6; margin-bottom: .4rem; }
.devis-quote-author { font-size: 12px; color: var(--ink-2); font-weight: 500; }

.devis-right textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  outline: none;
  resize: vertical;
}
.devis-right textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.18);
}

@media (max-width: 860px) {
  .devis-grid { grid-template-columns: 1fr; gap: 2rem; }
  .devis-left { order: 2; }
  .devis-right { order: 1; }
}

/* =========================================================
   TÉMOIGNAGES DÉFILANTS (sr-* / scroll-*)
========================================================= */
@keyframes scrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.scroll-cols-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  mask-image:         linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  max-height: 760px;
}

.scroll-cols {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: flex-start;
  padding: 0 max(1rem, calc((100vw - 1200px) / 2));
}

.scroll-col {
  flex: 1;
  min-width: 0;
  max-width: 340px;
  overflow: hidden;
}
.scroll-col:nth-child(3) { display: none; }

.scroll-track {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  animation: scrollUp linear infinite;
}
.scroll-track-1 { animation-duration: 36s; }
.scroll-track-2 { animation-duration: 36s; }
.scroll-track-3 { animation-duration: 32s; }

.scroll-col:hover .scroll-track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .scroll-track { animation: none; }
  .scroll-cols-wrap { -webkit-mask-image: none; mask-image: none; max-height: none; overflow: visible; }
  .scroll-cols { flex-wrap: wrap; }
}

.sr-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  cursor: default;
  user-select: none;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.sr-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.04);
  border-color: #D5E3FF;
}

.sr-stars { color: #FBBC04; font-size: 14px; letter-spacing: 1px; margin: 0; }

.sr-text {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
  font-style: normal;
}

.sr-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.sr-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  transition: box-shadow .25s ease;
}
.sr-card:hover .sr-avatar { box-shadow: 0 0 0 3px rgba(26,115,232,.2); }
.sr-name  { display: block; font-size: 14px; font-weight: 700; color: var(--ink); font-style: normal; }
.sr-role  { display: block; font-size: 12px; color: var(--ink-2); margin-top: 1px; }

@media (min-width: 760px) {
  .scroll-col:nth-child(2) { display: block; }
}
@media (min-width: 1080px) {
  .scroll-col:nth-child(3) { display: block; }
}

/* =========================================================
   MARQUEE SECTEURS (mq-*)
========================================================= */
@keyframes marqueeLeft  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.mq-sectors-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image:         linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.mq-row { overflow: hidden; }

.mq-track {
  display: flex;
  flex-direction: row;
  gap: .75rem;
  width: max-content;
  padding: .25rem 0;
}
.mq-track-left  { animation: marqueeLeft  55s linear infinite; }
.mq-track-right { animation: marqueeRight 65s linear infinite; }

.mq-row:hover .mq-track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .mq-track { animation: none; }
  .mq-sectors-wrap { -webkit-mask-image: none; mask-image: none; overflow: visible; flex-wrap: wrap; flex-direction: row; gap: .75rem; }
  .mq-row { overflow: visible; }
  .mq-track { flex-wrap: wrap; width: auto; }
}

.mq-sector-card {
  display: inline-flex;
  flex-direction: column;
  gap: .4rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  min-width: 180px;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  flex-shrink: 0;
}
.mq-sector-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,.09);
  border-color: #BFDBFE;
}
.mq-sector-card--other { display: none; }

.mq-other-cta {
  margin-top: 2rem;
}
.mq-other-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(120deg, #1A73E8 0%, #1558B0 100%);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,115,232,0.22);
}
.mq-other-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.mq-other-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 0 0 5px;
}
.mq-other-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.6;
  max-width: 480px;
}
.mq-other-inner .btn-primary {
  background: #fff;
  color: #1A73E8;
  border-color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.mq-other-inner .btn-primary:hover {
  background: #EAF1FD;
  border-color: #EAF1FD;
  color: #1558B0;
}
@media (max-width: 640px) {
  .mq-other-inner { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .mq-other-inner .btn { align-self: stretch; text-align: center; }
}
.mq-sector-emoji {
  font-size: 28px;
  line-height: 1;
}
.mq-sector-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.mq-sector-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
}

/* =========================================================
   SECTION PROBLÈMES (pb-*)
========================================================= */
.pb-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
.pb-header-left {}
.pb-header-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: .25rem;
}
.pb-header-right p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.pb-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: .5rem;
}
.pb-title em {
  font-style: normal;
  color: var(--blue);
}

.pb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.pb-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem 2rem;
  background: #fff;
  transition: background .15s ease;
}
.pb-card:hover { background: #FAFBFF; }
.pb-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-text { display: flex; flex-direction: column; gap: 5px; }
.pb-card-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}
.pb-card-desc {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}

/* ---- Problems section ---- */
.pb-section {
  position: relative;
  background: #F8F9FA;
  overflow: hidden;
}
.pb-blob {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.pb-blob-blue   { background: rgba(26,115,232,.07);  top: -80px;  left: -100px; }
.pb-blob-yellow { background: rgba(251,188,4,.08);   bottom: -80px; right: -100px; }

/* ---- Flow text block ---- */
.pb-flow-box {
  position: relative;
  max-width: 920px;
  margin: 2rem auto 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 52px;
  background: linear-gradient(160deg, #fff 60%, #EAF1FD 100%);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(60,64,67,.06);
}
.pb-flow-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  display: flex;
}
.pb-flow-stripe span { flex: 1; }
.pb-flow-gicon {
  position: absolute;
  top: 16px; right: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 19px; height: 19px;
  opacity: .55;
}
.pb-flow-gicon span { border-radius: 2px; display: block; width: 8px; height: 8px; }
.pb-flow-text {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.75;
  color: #5F6368;
  margin: 0;
}
.pf-pill {
  display: inline;
  background: transparent;
  color: #C5221F;
  font-weight: 700;
  padding: 0;
  border-radius: 4px;
  font-size: 1em;
  transition: background .2s, padding .2s;
}
.pf-pill:hover {
  background: rgba(197,34,31,.12);
  padding: 0 4px;
}
/* Size variants — pills */
.pf-pill.pf-sm  { font-size: .82em; }
.pf-pill.pf-lg  { font-size: 1.1em; }
.pf-pill.pf-xl  { font-size: 1.25em; }
/* Size variants — plain text */
.pf-xs { font-size: .82em; }
.pf-sm { font-size: .92em; }

.pb-flow-sep {
  display: inline-block;
  width: 4px; height: 4px;
  background: #DADCE0;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 .55rem;
  position: relative; top: -1px;
}
.pb-flow-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-left: .5rem;
  vertical-align: middle;
  animation: pbPulse 2s ease-in-out infinite;
}
@keyframes pbPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,168,83,.5); }
  50%       { box-shadow: 0 0 0 5px rgba(52,168,83,0); }
}
.pb-cta-mention {
  font-size: .82rem;
  color: var(--ink-4);
  margin-top: .6rem;
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .pb-flow-box { padding: 32px 24px; }
  .pb-flow-text { font-size: 16px; }
  .pb-flow-gicon { width: 16px; height: 16px; }
  .pb-flow-gicon span { width: 6px; height: 6px; }
}

.pb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  gap: 2rem;
}
.pb-footer-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  max-width: 520px;
}
.pb-footer-text span { color: var(--blue); }

@media (max-width: 860px) {
  .pb-header { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
  .pb-grid { grid-template-columns: 1fr; }
  .pb-footer { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: #f7f9fb;
  color: #3C4043;
  padding: 64px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .brand-name-light { color: var(--ink); }
.footer-tagline {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 340px;
}
.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--ink-3);
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--blue); }

.footer-rule {
  display: flex;
  height: 4px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
.footer-rule span { flex: 1; height: 100%; }

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-4);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-cert {
  font-weight: 500;
  color: var(--ink-3);
}

/* =========================================================
   RESPONSIVE — tablet
========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: 2; }
  .hero-content { max-width: 100%; }
  .phone-mock { transform: scale(0.85); transform-origin: center; }

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

  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); margin: -4px auto; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .reassurance-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* =========================================================
   RESPONSIVE — mobile (375px first)
========================================================= */
@media (max-width: 720px) {
  .container { padding: 0 18px; }

  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }
  .header-cta { display: none; }

  .hero { padding: 40px 0 56px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; }

  .phone-mock { transform: scale(0.78); }
  .visual-tag { font-size: 12px; padding: 8px 12px; }
  .visual-tag-1 { right: 0; top: 10px; }
  .visual-tag-2 { left: 0; bottom: 30px; }

  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .services-grid,
  .pricing-grid,
  .reviews-grid,
  .sectors-grid { grid-template-columns: 1fr; }

  .sectors-grid { gap: 12px; }
  .sector-card { padding: 20px; }

  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }

  .reassurance-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .reassurance-num { font-size: 26px; }
  .reassurance-label { font-size: 12px; }

  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-field { margin-bottom: 14px; }

  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 8px; }

}

@media (max-width: 420px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 26px; }
  .badge { font-size: 12px; padding: 6px 12px; }
}

/* =========================================================
   FOCUS / A11Y
========================================================= */
.btn:focus-visible,
.nav-link:focus-visible,
.faq-q:focus-visible {
  outline: 3px solid rgba(26,115,232,0.4);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
