/* Correctif lisibilité : sépare visuellement les mots mis en avant dans les grands titres */
.service-copy h2 > span,
.compact-hero-grid h1 > span,
.hero-grid-bg h1 > span,
.hero-signature h1 > span {
  display: block;
}

.service-copy h2 > span,
.compact-hero-grid h1 > span,
.hero-grid-bg h1 > span,
.hero-signature h1 > span {
  color: var(--accent, #0b63f6);
}

/* Garde une marge correcte si un navigateur ne rend pas le span en bloc */
.service-copy h2 > span::before,
.compact-hero-grid h1 > span::before,
.hero-grid-bg h1 > span::before,
.hero-signature h1 > span::before {
  content: "";
}

/* Bouton Assistance à distance dans l'en-tête */
.btn-remote-support {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(37, 99, 235, .18);
  background: #ffffff;
  color: #1d4ed8;
  padding: .75rem 1rem;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-remote-support:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, .35);
  background: #eff6ff;
}
.mobile-menu-remote {
  border: 1px solid rgba(37, 99, 235, .18) !important;
  background: #eff6ff !important;
  color: #1d4ed8 !important;
}
@media (max-width: 1180px) {
  .btn-remote-support { padding: .7rem .85rem; font-size: .9rem; }
}
