/* ═══════════════════════════════════════════════════════════
   AMP Informatique — Design System
   Orange renforcé · Site multi-pages cohérent
   ═══════════════════════════════════════════════════════════ */
:root {
  --orange: #ff8c00;
  --orange-dark: #e67a00;
  --orange-deep: #cc6d00;
  --orange-light: #ffb347;
  --orange-pale: rgba(255, 140, 0, 0.12);
  --orange-glow: rgba(255, 140, 0, 0.35);
  --dark: #0f0f0f;
  --dark-soft: #1a1a1a;
  --dark-card: #222222;
  --dark-elevated: #2a2a2a;
  --dark-border: rgba(255, 140, 0, 0.15);
  --text: #ececec;
  --text-muted: #a0a8b4;
  --grey: #a0a8b4;
  --grey-light: #1a1a1a;
  --white: #ffffff;
  --font: 'Open Sans', Arial, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 76px;
  --max-w: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: clip;
  max-width: 100%;
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}
main { overflow-x: clip; max-width: 100%; }
@supports not (overflow: clip) {
  html, body, main { overflow-x: hidden; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10001;
  width: auto;
  height: auto;
  padding: 0.65rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--dark-card);
  color: var(--orange-light);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  font-weight: 700;
}

/* ── Scroll progress (bas du header) ── */
.header .scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 5;
  pointer-events: none;
  background: transparent;
  overflow: hidden;
}
.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transition: width 0.06s linear;
}

/* ── Header ── */
#site-header { min-height: var(--header-h); }
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(15,15,15,0.92); backdrop-filter: blur(14px);
  border-bottom: none;
  transition: var(--transition);
  max-width: 100%;
}
.header--scrolled { box-shadow: var(--shadow); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 1rem;
  min-width: 0;
}
@media (min-width: 769px) {
  .header .header__inner.container {
    max-width: none;
    width: 100%;
    padding-inline: clamp(1.25rem, 2.5vw, 2.75rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
  }
  .header__inner > .logo {
    grid-column: 1;
    justify-self: start;
    flex-shrink: 0;
    min-width: 0;
  }
  .header__inner > .nav {
    grid-column: 2;
    justify-self: center;
    flex: none;
    min-width: 0;
  }
  .header__actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .header__inner > .logo .logo__city {
    flex-shrink: 0;
  }
  .header__actions {
    --header-action-size: 2.75rem;
  }
  .header__cta {
    min-height: var(--header-action-size);
    padding-block: 0;
    padding-inline: 1rem;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
}
.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* ── Logo ── */
.logo {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em;
  white-space: nowrap; flex-shrink: 1; min-width: 0;
  display: inline-flex; align-items: center; gap: 0;
}
.logo__amp { color: var(--orange); }
.logo__info { color: var(--text); }
.logo__city {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68em;
  font-weight: 700;
  color: var(--orange-light);
  letter-spacing: 0.03em;
  text-transform: none;
  margin-left: 0.55rem;
  flex-shrink: 1;
  min-width: 0;
}
.logo__city-name {
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.status-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28c840;
  box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.55);
  animation: statusDotPulse 2s ease-in-out infinite;
}
@keyframes statusDotPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.55);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 7px rgba(40, 200, 64, 0);
    opacity: 0.82;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.5rem; border-radius: 8px;
  font-family: var(--font); font-size: 0.95rem; font-weight: 700;
  border: 2px solid transparent; cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--orange); color: #1a1208; border-color: var(--orange); }
.btn--primary:hover {
  background: var(--orange-dark); border-color: var(--orange-dark); color: #1a1208;
  transform: translateY(-2px); box-shadow: 0 8px 24px var(--orange-glow);
}
.btn--outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--ghost { background: transparent; color: var(--text); border-color: var(--dark-border); }
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--white { background: var(--white); color: #a85600; border-color: var(--white); }
.btn--white:hover,
.btn--white:focus-visible {
  background: var(--white);
  color: var(--orange-dark);
  border-color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}
.btn--lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

a.btn--outline:visited { color: var(--orange); }
a.btn--outline:hover,
a.btn--outline:focus-visible { color: var(--white); }
a.btn--primary:visited { color: #1a1208; }
a.btn--primary:hover,
a.btn--primary:focus-visible { color: #1a1208; }
a.btn--white:visited { color: #a85600; }
a.btn--white:hover,
a.btn--white:focus-visible { color: var(--orange-dark); }

.nav > a, .nav__trigger {
  font-size: 0.88rem; font-weight: 700; color: var(--text-muted);
  padding: 0.5rem 0.75rem; border-radius: 6px; transition: var(--transition);
  background: none; border: none; cursor: pointer; font-family: var(--font);
  white-space: nowrap;
}
.nav > a.active,
.nav__dropdown--current > .nav__trigger,
.nav__item--open > .nav__trigger {
  color: var(--orange);
  background: var(--orange-pale);
}
@media (hover: hover) {
  .nav > a:hover:not(.active),
  .nav__trigger:hover {
    color: var(--orange);
    background: var(--orange-pale);
  }
}
.nav > a:focus-visible,
.nav__trigger:focus-visible,
.nav-toggle:focus-visible,
.logo:focus-visible,
.service-switch__btn:focus-visible,
.category-tabs__btn:focus-visible,
.repair-search-select__trigger:focus-visible,
.faq-item summary:focus-visible,
.footer a:focus-visible,
.scroll-hint:focus-visible {
  outline: 2px solid var(--orange-light);
  outline-offset: 2px;
}
.nav__menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
  background: var(--dark-card); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--dark-border);
  padding: 0.5rem; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition); z-index: 50;
}
.nav__item--open .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
@media (hover: hover) and (min-width: 769px) {
  .nav__dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
  }
  .nav__dropdown:hover .nav__menu,
  .nav__dropdown:focus-within .nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__dropdown:hover > .nav__trigger,
  .nav__dropdown:focus-within > .nav__trigger {
    color: var(--orange);
    background: var(--orange-pale);
  }
}
.nav__menu a {
  display: block; padding: 0.65rem 0.85rem; border-radius: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-muted);
}
.nav__menu a.active {
  background: var(--orange-pale);
  color: var(--orange-light);
}
@media (hover: hover) {
  .nav__menu a:hover:not(.active) {
    background: rgba(255, 140, 0, 0.08);
    color: var(--text);
  }
  .nav__menu a.active:hover {
    background: rgba(255, 140, 0, 0.18);
    color: var(--white);
  }
}
.header__cta { display: none; align-items: center; gap: 0.45rem; flex-shrink: 0; }
.header__actions {
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .header__cta { display: inline-flex; }
}
@media (max-width: 768px) {
  .header__actions { display: none; }
}
.header__cta svg {
  flex-shrink: 0;
  animation: pro-phone-ring 3s ease-in-out infinite;
  transform-origin: center bottom;
}
.header__cta:hover,
.header__cta:focus-visible {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 6px 20px var(--orange-glow);
}

/* ── Réseaux sociaux (header, menu mobile, footer) ── */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--dark-border);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.social-link svg { flex-shrink: 0; }
.header__social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header__actions .social-link {
  width: var(--header-action-size, 2.625rem);
  height: var(--header-action-size, 2.625rem);
  padding: 0;
  border-radius: 8px;
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}
.nav__social {
  display: none;
}
.nav__bottom {
  display: none;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .nav__bottom {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: auto;
    position: sticky;
    bottom: 0;
    z-index: 2;
    border-top: 1px solid var(--dark-border);
    background: var(--dark-elevated);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
  }
  .nav__bottom-link {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.75rem 1rem;
    border-radius: 0;
    border: none;
    color: var(--orange);
    background: transparent;
  }
  .nav__bottom-link svg {
    width: 1.35rem;
    height: 1.35rem;
  }
  .nav__bottom-divider {
    width: 1px;
    align-self: stretch;
    background: var(--dark-border);
    flex-shrink: 0;
  }
}
@media (hover: hover) {
  .header__actions .social-link--facebook:hover,
  .header__actions .social-link--facebook:focus-visible,
  .social-link--facebook:hover,
  .social-link--facebook:focus-visible {
    color: #fff;
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
    transform: translateY(-2px);
  }
  .header__actions .social-link--instagram:hover,
  .header__actions .social-link--instagram:focus-visible,
  .social-link--instagram:hover,
  .social-link--instagram:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #833ab4 0%, #c13584 45%, #e1306c 75%, #fd1d1d 100%);
    border-color: #c13584;
    box-shadow: 0 4px 14px rgba(193, 53, 132, 0.4);
    transform: translateY(-2px);
  }
  .footer__social .social-link:hover,
  .footer__social .social-link:focus-visible {
    transform: translateY(-2px);
  }
}
.social-link:active { transform: translateY(0); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  padding: 0.65rem; min-width: 44px; min-height: 44px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition);
}

/* ── Page hero ── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 18% 78%, rgba(255, 140, 0, 0.08) 0%, transparent 52%),
    radial-gradient(ellipse 55% 45% at 88% 22%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
    linear-gradient(160deg, var(--dark-soft) 0%, var(--dark) 100%);
  border-bottom: 3px solid var(--orange);
  color: var(--text);
}
.page-hero > .container {
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb { color: var(--text-muted); }
.page-hero .breadcrumb a { color: var(--orange-light); }
.page-hero .page-hero__lead { color: var(--text-muted); }
.page-hero__title { color: var(--text); }
.breadcrumb {
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero__title {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 1rem;
}
.page-hero__title span { color: var(--orange); }
.page-hero__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 680px; line-height: 1.7;
}

/* ── Sections ── */
.section { padding-block: 4.5rem; background: var(--dark); }
.section--alt { background: var(--dark-soft); }
/* Évite le double padding entre deux blocs alt consécutifs (ex. marques → zone) */
.section--alt:has(+ .section--alt) { padding-bottom: 0; }
.section--dark { background: #0a0a0a; color: var(--text); }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 2.75rem; }
.section__header--left { text-align: left; margin-inline: 0; }
.section__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.section__header h2 { color: var(--text); }
.section__header p { color: var(--text-muted); font-size: 1.05rem; }
.section--dark .section__header p { color: var(--text-muted); }
.section__label {
  display: inline-block; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--orange); margin-bottom: 0.65rem;
}
.section--dark .section__label { color: var(--orange-light); }

/* ── Cards grid ── */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.card {
  background: var(--dark-card); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; box-shadow: var(--shadow);
  border: 1px solid var(--dark-border); transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.card__icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--orange-pale); color: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.15rem;
}
.card h2, .card h3,
.card__title { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.55rem; color: var(--text); }
.card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }

/* ── Feature list ── */
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem;
  padding: 1.5rem; background: var(--dark-card); border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange); box-shadow: var(--shadow);
}
.feature-item h2, .feature-item h3,
.feature-item__title { color: var(--text); }
.feature-item__icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--orange-pale); color: var(--orange-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.feature-item__title,
.feature-item h3 { font-size: 1rem; font-weight: 800; margin: 0 0 0.35rem; }
.feature-item p { font-size: 0.92rem; color: var(--text-muted); }

.repair-timeline__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.35rem;
}

/* ── Tabs ── */
.tabs { margin-top: 2rem; }
.tabs__nav {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem;
}
.tabs__btn {
  padding: 0.65rem 1.2rem; border-radius: 8px;
  border: 2px solid var(--dark-border); background: var(--dark-card);
  font-family: var(--font); font-size: 0.88rem; font-weight: 700;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.tabs__btn:hover:not(.tabs__btn--active) {
  border-color: var(--orange-light); color: var(--orange);
}
.tabs__btn--active {
  background: var(--orange); border-color: var(--orange); color: var(--white);
  box-shadow: 0 4px 16px var(--orange-glow);
}
.tabs__btn--active:hover {
  background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white);
}
.tabs__panel { display: none; animation: fadeIn 0.35s ease; }
.tabs__panel--active { display: block; }
.network-tabs .tabs__nav { justify-content: center; }

/* ── Service block (Réparation & Installation) ── */
.service-block { max-width: 920px; margin-inline: auto; }
.service-switch {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-bottom: 2rem;
}
.service-switch__btn {
  padding: 0.85rem 1.75rem; border-radius: var(--radius);
  border: 2px solid var(--dark-border); background: var(--dark-card);
  font-family: var(--font); font-size: 0.95rem; font-weight: 700;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.service-switch__btn:hover:not(.service-switch__btn--active) {
  border-color: var(--orange-light); color: var(--orange);
}
.service-switch__btn--active {
  background: #9a4e00; border-color: #9a4e00; color: var(--white);
  box-shadow: 0 4px 16px var(--orange-glow);
}
.service-switch__btn--active:hover {
  background: #874400; border-color: #874400; color: var(--white);
}
.service-panel { display: none; }
.service-panel--active { display: block; animation: fadeIn 0.35s ease; }
.category-tabs__nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.category-tabs__btn {
  padding: 0.5rem 1rem; border-radius: 999px;
  border: 1px solid var(--dark-border); background: transparent;
  font-family: var(--font); font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.category-tabs__btn:hover:not(.category-tabs__btn--active) {
  border-color: var(--orange); color: var(--orange-light);
}
.category-tabs__btn--active {
  border-color: var(--orange); background: var(--orange-pale); color: var(--orange-light);
}
.category-tabs__panel { display: none; }
.category-tabs__panel--active { display: block; animation: fadeIn 0.3s ease; }
.category-tabs__panel .repair-chips,
.category-tabs__panel .help-chips { margin-top: 0; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ── Pricing ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.pricing-card {
  background: var(--dark-card); border-radius: var(--radius-lg);
  padding: 2rem; border: 2px solid var(--dark-border);
  text-align: center; transition: var(--transition);
}
.pricing-card:hover, .pricing-card--featured {
  border-color: var(--orange); box-shadow: var(--shadow-lg);
}
.pricing-card--featured { transform: scale(1.03); }
.pricing-card__price {
  font-size: 2.5rem; font-weight: 800; color: var(--orange); line-height: 1;
  margin: 1rem 0;
}
.pricing-card__price small { font-size: 1rem; font-weight: 600; color: var(--grey); }
.pricing-card ul { text-align: left; margin: 1.25rem 0; }
.pricing-card h3 { color: var(--text); }
.pricing-card li {
  font-size: 0.88rem; color: var(--text-muted); padding: 0.4rem 0;
  padding-left: 1.25rem; position: relative;
}
.pricing-card li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--orange); font-weight: 800;
}

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.step {
  background: var(--dark-card); border-radius: var(--radius-lg);
  padding: 1.75rem; border-top: 4px solid var(--orange);
  box-shadow: var(--shadow);
}
.step__num {
  font-size: 2rem; font-weight: 800; color: var(--orange-light); line-height: 1;
  margin-bottom: 0.75rem;
}
.step h3,
.step__title { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text); }
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white); padding-block: 3.5rem; text-align: center;
}
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta-band p { opacity: 0.9; margin-bottom: 1.5rem; font-size: 1.05rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--primary {
  background: var(--white);
  color: var(--orange-deep);
  border-color: var(--white);
}
.cta-band .btn--primary:hover,
.cta-band .btn--primary:focus-visible,
.cta-band a.btn--primary:visited:hover {
  background: var(--white);
  color: var(--orange-dark);
  border-color: var(--white);
}
.cta-band a.btn--primary:visited { color: var(--orange-deep); }
.cta-band .btn--outline,
.cta-band__btn-outline,
a.btn.btn--outline.cta-band__btn-outline:visited {
  border-color: #fff;
  color: #fff;
}
.cta-band .btn--outline:hover,
.cta-band .btn--outline:focus-visible,
.cta-band__btn-outline:hover,
.cta-band__btn-outline:focus-visible,
a.btn.btn--outline.cta-band__btn-outline:visited:hover,
a.btn.btn--outline.cta-band__btn-outline:visited:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: #fff;
}
.cta-band .btn--white:hover,
.cta-band .btn--white:focus-visible {
  background: var(--white);
  color: var(--orange-dark);
  border-color: var(--white);
}
@media (max-width: 640px) {
  .cta-band__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-band__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Map ── */
.map-container {
  position: relative;
  z-index: 1;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--orange);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  contain: layout size style;
}
.map-container .leaflet-container,
.map-container.leaflet-container {
  height: 100%;
  width: 100%;
  z-index: 0;
}
.map-container .leaflet-pane { z-index: 1 !important; }
.map-container .leaflet-top,
.map-container .leaflet-bottom { z-index: 2 !important; }
.map-marker { background: transparent; border: none; }
.map-marker--hq span {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.35);
}
.section__header--compact { margin-bottom: 1.5rem; }
.section__header--compact h2 { margin-bottom: 0; }
.section__header--tight { margin-bottom: 0.5rem; }
.section__header--tight .section__label { margin-bottom: 0.25rem; }
.section__header--tight h2 { margin-bottom: 0.2rem; }
.section__header--tight p { margin: 0; font-size: 0.98rem; line-height: 1.45; }
.section__header--tight + .service-block .service-switch { margin-bottom: 1.25rem; }
body[data-page="reparation"] .section[aria-labelledby="needs-title"] {
  padding-bottom: 3rem;
}
.map-legend {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem;
}
.map-legend__item {
  padding: 1.5rem; background: var(--dark-card); border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}
.map-legend__item h3,
.map-legend__title { color: var(--text); font-size: 1.1rem; font-weight: 700; margin: 0; }

/* ── Home hero ── */
.hero {
  position: relative;
  min-height: auto;
  padding-top: calc(var(--header-h) + 1.25rem);
  padding-bottom: 0;
  display: flex; flex-direction: column; justify-content: flex-start;
  background: linear-gradient(165deg, var(--dark-soft) 0%, var(--dark) 42%, var(--dark-soft) 100%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(80px, 18vh, 180px);
  background: linear-gradient(to bottom, transparent, var(--dark-soft));
  pointer-events: none;
  z-index: 0;
}
.hero__glow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(60px); will-change: transform;
}
.hero__glow--1 {
  top: -15%; right: -5%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,140,0,0.25), transparent 70%);
}
.hero__glow--2 {
  bottom: 10%; left: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,140,0,0.12), transparent 70%);
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero__layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 3rem;
  padding-block: 1.75rem 2.5rem;
}
body[data-page="index"] .hero {
  padding-top: 1.85rem;
}
body[data-page="index"] .hero__layout {
  padding-top: 1.25rem;
}
.hero__content { max-width: 580px; }
.hero__eyebrow {
  font-size: 0.82rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--orange-light); margin-bottom: 0.85rem;
}
.hero__eyebrow-line {
  display: block;
}
.hero__eyebrow-line + .hero__eyebrow-line {
  margin-top: 0.2rem;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin-bottom: 1.1rem;
  padding: 0.35rem 0.7rem 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.84rem;
  color: #b8c0cc;
  transition: var(--transition);
}
.hero__rating:hover {
  border-color: rgba(255, 193, 7, 0.45);
  background: rgba(255, 193, 7, 0.06);
  color: var(--text);
}
.hero__stars {
  color: #ffc107;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 193, 7, 0.35);
}
.hero__rating-score strong { color: var(--white); font-weight: 800; }
.hero__rating-count strong { color: var(--text); font-weight: 700; }
.hero__title { margin-bottom: 1.25rem; }
.hero__line {
  display: block; font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.12;
}
.hero__line--accent { color: var(--orange); }
.hero__line--main { color: var(--text); }

/* Hero entrance — LCP : texte visible immédiatement, animation sur le déplacement uniquement */
.hero-animate__line {
  opacity: 1;
  transform: translateY(28px);
  animation: heroLineIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-animate__line:nth-child(1) { animation-delay: 0.1s; }
.hero-animate__line:nth-child(2) { animation-delay: 0.25s; }
.hero-animate__line:nth-child(3) { animation-delay: 0.4s; }
.hero-animate .hero__eyebrow,
.hero-animate .hero__rating,
.hero-animate .hero__subtitle,
.hero-animate .hero__area,
.hero-animate .hero__actions {
  opacity: 0; animation: heroFadeUp 0.65s ease forwards;
}
.hero-animate .hero__eyebrow { animation-delay: 0.55s; }
.hero-animate .hero__rating { animation-delay: 0.62s; }
.hero-animate .hero__subtitle { animation-delay: 0.65s; }
.hero-animate .hero__area { animation-delay: 0.75s; }
.hero-animate .hero__actions { animation-delay: 0.85s; }
@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Accueil : sections sous la ligne de flottaison — rendu différé sans changer le visuel */
@media (min-width: 769px) {
  body[data-page="index"] #audience,
  body[data-page="index"] #prestations,
  body[data-page="index"] #valeurs,
  body[data-page="index"] #entreprise,
  body[data-page="index"] #zone-intervention,
  body[data-page="index"] .reviews-section,
  body[data-page="index"] #faq {
    content-visibility: auto;
    contain-intrinsic-size: auto 520px;
  }
}

/* Pages intérieures : sections sous le hero */
@media (min-width: 769px) {
  body:not([data-page="index"]) main .section--alt,
  body:not([data-page="index"]) main .reviews-section,
  body:not([data-page="index"]) main .cta-band,
  body:not([data-page="index"]) main .faq-section,
  body[data-page^="ville-"] main .section:nth-of-type(n+3),
  body[data-page="reparation"] main .section:nth-of-type(n+4) {
    content-visibility: auto;
    contain-intrinsic-size: auto 480px;
  }
}

.scroll-hint {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 1.5rem auto clamp(1.5rem, 3vw, 2.5rem);
  color: #b8c0cc;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: scrollBounce 2.2s ease infinite;
}
.scroll-hint svg { color: var(--orange); }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(8px); opacity: 1; }
}
.hero__subtitle { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.hero__area { color: var(--text-muted); margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.hero__badge {
  display: block; color: inherit;
  background: var(--dark-card); border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center; box-shadow: var(--shadow);
  border: 2px solid var(--dark-border); transition: var(--transition);
}
.hero__badge:hover { border-color: var(--orange); transform: translateY(-3px); }
.hero__badge-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.hero__badge strong {
  display: block; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange-light);
}
.hero__domains {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding-block: 2rem 0; position: relative; z-index: 1;
}
.domain-card {
  display: block; color: inherit;
  background: var(--dark-card); border-radius: var(--radius-lg);
  padding: 1.5rem 1rem; text-align: center;
  box-shadow: var(--shadow); border: 2px solid transparent;
  transition: var(--transition);
}
.domain-card:hover {
  border-color: var(--orange); transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--orange-glow);
}
.domain-card__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.domain-card h2 {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text);
}

/* ── Audience (Particuliers / Pro) ── */
.audience { background: var(--dark-soft); position: relative; overflow: hidden; }
.audience::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,140,0,0.04), transparent);
  pointer-events: none;
}
.audience__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.audience-card {
  background: var(--dark-card); border-radius: var(--radius-lg);
  padding: 2rem; border: 2px solid var(--dark-border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.audience-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.audience-card.visible::before { transform: scaleX(1); }
.audience-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.audience-card--pro { border-color: rgba(255,140,0,0.25); }
.audience-card__header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem;
}
.audience-card__icon {
  font-size: 2.2rem; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-pale); border-radius: 14px; flex-shrink: 0;
}
.audience-card h3,
.audience-card__title { font-size: 1.25rem; font-weight: 800; color: var(--text); margin: 0; }
.audience-card__tag {
  font-size: 0.82rem; color: var(--orange-light); font-weight: 600; margin-top: 0.15rem;
}
.audience-card__list {
  list-style: none; margin-bottom: 1.5rem;
}
.audience-card__list li {
  font-size: 0.9rem; color: var(--text-muted); padding: 0.45rem 0;
  padding-left: 1.25rem; position: relative; border-bottom: 1px solid var(--dark-border);
}
.audience-card__list li:last-child { border-bottom: none; }
.audience-card__list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 800;
}
.audience__ribbon {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0.75rem 1.25rem; margin-top: 2.5rem; padding: 1rem 1.5rem;
  background: var(--dark-card); border-radius: 999px;
  border: 1px solid var(--dark-border); max-width: fit-content; margin-inline: auto;
  font-size: 0.88rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted);
}
.audience__ribbon-dot { color: var(--orange); font-size: 0.5rem; }

/* ── Scroll reveal variants ── */
[data-scroll] {
  opacity: 0; transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-scroll="up"] { transform: translateY(40px); }
[data-scroll="left"] { transform: translateX(-48px); }
[data-scroll="right"] { transform: translateX(48px); }
[data-scroll="fade"] { transform: none; }
[data-scroll="scale"] { transform: scale(0.92); }
[data-scroll].scroll-visible {
  opacity: 1; transform: none;
}

/* Stagger delays via JS or nth-child for service links */
.services-grid [data-scroll]:nth-child(1) { transition-delay: 0.05s; }
.services-grid [data-scroll]:nth-child(2) { transition-delay: 0.1s; }
.services-grid [data-scroll]:nth-child(3) { transition-delay: 0.15s; }
.services-grid [data-scroll]:nth-child(4) { transition-delay: 0.2s; }
.services-grid [data-scroll]:nth-child(5) { transition-delay: 0.25s; }
.services-grid [data-scroll]:nth-child(6) { transition-delay: 0.3s; }
.services-grid [data-scroll]:nth-child(7) { transition-delay: 0.35s; }
.hero__domains [data-scroll]:nth-child(1) { transition-delay: 0.1s; }
.hero__domains [data-scroll]:nth-child(2) { transition-delay: 0.18s; }
.hero__domains [data-scroll]:nth-child(3) { transition-delay: 0.26s; }
.hero__domains [data-scroll]:nth-child(4) { transition-delay: 0.34s; }
.cards-grid [data-scroll]:nth-child(1) { transition-delay: 0.05s; }
.cards-grid [data-scroll]:nth-child(2) { transition-delay: 0.1s; }
.cards-grid [data-scroll]:nth-child(3) { transition-delay: 0.15s; }
.cards-grid [data-scroll]:nth-child(4) { transition-delay: 0.2s; }
.cards-grid [data-scroll]:nth-child(5) { transition-delay: 0.25s; }
.cards-grid [data-scroll]:nth-child(6) { transition-delay: 0.3s; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem;
}
.service-link {
  display: block; padding: 2rem 1.5rem; background: var(--dark-card);
  border-radius: var(--radius-lg); border: 2px solid var(--dark-border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-link::after {
  content: '→'; position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--orange); font-size: 1.2rem; font-weight: 800;
  opacity: 0; transform: translateX(-8px); transition: var(--transition);
}
.service-link:hover {
  border-color: var(--orange); box-shadow: 0 12px 40px var(--orange-glow);
  transform: translateY(-5px);
}
.service-link:hover::after { opacity: 1; transform: none; }
.service-link__num {
  font-size: 2.5rem; font-weight: 800; color: var(--orange-light); line-height: 1;
  margin-bottom: 0.75rem;
}
.service-link h3,
.service-link__title { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text); }
.service-link p { font-size: 0.88rem; color: var(--text-muted); }
.service-link--pro {
  border-color: rgba(255, 140, 0, 0.28);
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.07) 0%, var(--dark-card) 60%);
}
.service-link--pro::before {
  content: 'Entreprises';
  position: absolute;
  top: 0.85rem;
  right: 3rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-light);
  opacity: 0.7;
}
.service-link--pro:hover { border-color: var(--orange); }

/* ── About / stats ── */
.about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
.about__quote p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.about__content h2 { color: var(--text); }
.about__tagline { font-weight: 800; color: var(--orange-deep) !important; }
.about__author {
  display: flex; align-items: center; gap: 1rem; margin-top: 2rem;
  padding-top: 2rem; border-top: 3px solid var(--orange-light);
}
.about__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); color: #1a1208;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; flex-shrink: 0;
}
.about__stat {
  background: var(--dark-card); border-radius: var(--radius-lg);
  padding: 1.75rem; text-align: center; box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.about__stat-value {
  display: block; font-size: 2rem; font-weight: 800;
  color: var(--orange); line-height: 1; margin-bottom: 0.35rem;
}
.about__stat-label { font-size: 0.85rem; color: var(--grey); font-weight: 600; }

/* ── Brands ── */
.brands-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.brands-marquee__track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 28s linear infinite;
}
.brands-marquee__track span {
  font-size: 1.2rem; font-weight: 800; color: #b8c0cc;
  opacity: 0.82; white-space: nowrap;
}
.brands-marquee__track span:hover { opacity: 1; color: var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Page erreur 404 ── */
.error-page {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}
.error-page__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  width: min(520px, 80vw);
  height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.45;
}
.error-page__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}
.error-page__code {
  font-size: clamp(4rem, 18vw, 7rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}
.error-page__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.error-page__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.error-page__nav {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border);
  background: rgba(255, 255, 255, 0.03);
}
.error-page__nav-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-light);
  margin-bottom: 1rem;
}
.error-page__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}
.error-page__nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.contact__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; }
.contact-form {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,140,0,0.2);
  border-radius: var(--radius-lg); padding: 2rem;
}
.form-row { margin-bottom: 1.15rem; }
.form-row label {
  display: block; font-size: 0.85rem; font-weight: 700;
  margin-bottom: 0.35rem; color: rgba(255,255,255,0.85);
}
.form-row input, .form-row textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  background: rgba(255,255,255,0.08); color: var(--white);
  font-family: var(--font); font-size: 0.95rem; transition: var(--transition);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-hint { display: block; text-align: right; font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.25rem; }
.form-hint--left { text-align: left; }
.form-row--invalid input,
.form-row--invalid textarea {
  border-color: rgba(220, 53, 69, 0.75);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
.form-success {
  margin-top: 1rem; padding: 0.85rem; background: rgba(255,140,0,0.15);
  border: 1px solid var(--orange); border-radius: 8px;
  color: var(--orange-light); font-size: 0.9rem; text-align: center;
}
.form-error {
  margin-top: 1rem; padding: 0.85rem; background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.55); border-radius: 8px;
  color: #ffb4bc; font-size: 0.9rem; text-align: center;
}
.contact-form .btn[disabled] { opacity: 0.65; cursor: wait; }

/* ── Repair selector (configurateur appareil) ── */
.repair-selector-section {
  position: relative;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--dark-soft);
  overflow: visible;
}
.repair-selector-section:not(.repair-selector-section--page) {
  padding-top: clamp(2rem, 4vw, 3rem);
  margin-top: 0;
}
.repair-selector-section .container {
  overflow: visible;
}
.repair-selector-section--page {
  padding-block: clamp(1.25rem, 2.5vw, 1.75rem) 0.5rem;
  margin-top: 0;
  background: transparent;
}
body[data-page="reparation"] .repair-selector-section.section {
  padding-block: clamp(1.25rem, 2.5vw, 1.75rem) 0.5rem;
}
body[data-page="reparation"] .repair-selector-section--page + .section {
  padding-top: 1rem;
}
body[data-page="reparation"] [data-repair-selector] {
  min-height: clamp(380px, 78vw, 460px);
}
body[data-page="reparation"] [data-repair-selector][data-repair-compact] {
  min-height: clamp(300px, 62vw, 380px);
}
body[data-page="index"] [data-repair-selector] {
  min-height: clamp(340px, 72vw, 420px);
}
.repair-selector__card {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 140, 0, 0.35);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 140, 0, 0.12), transparent 55%),
    var(--dark-card);
  box-shadow: var(--shadow);
}
.repair-selector__card:has(.repair-search-select.is-open) {
  z-index: 40;
}
.repair-selector__form,
.repair-selector__grid {
  overflow: visible;
}
.repair-selector__card--compact .repair-selector__lead { display: none; }
.repair-selector__card--compact .repair-selector__head { margin-bottom: 1.25rem; }
.repair-selector__card--error {
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.repair-selector__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.repair-selector__badge {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border-radius: 14px;
  background: rgba(255, 140, 0, 0.18);
  border: 1px solid rgba(255, 140, 0, 0.35);
}
.repair-selector__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.repair-selector__lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 52ch;
  line-height: 1.5;
}
.repair-selector__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.repair-selector__field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.35rem;
}
.repair-search-select {
  position: relative;
}
.repair-search-select.is-open {
  z-index: 50;
}
.repair-search-select__panel {
  position: absolute;
  z-index: 60;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  padding: 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 140, 0, 0.35);
  background: rgba(18, 18, 18, 0.97);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.repair-search-select__trigger {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 2.1rem 0.75rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.repair-search-select__trigger::after {
  content: '';
  position: absolute;
  right: 0.95rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--orange-light);
  border-bottom: 2px solid var(--orange-light);
  transform: translateY(-15%) rotate(45deg);
  pointer-events: none;
  opacity: 0.85;
}
.repair-search-select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.repair-search-select__value--placeholder {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}
.repair-search-select__trigger:hover:not(:disabled) {
  border-color: rgba(255, 140, 0, 0.45);
  background: rgba(255, 255, 255, 0.04);
}
.repair-search-select.is-open .repair-search-select__trigger {
  border-color: var(--orange-light);
  background: rgba(255, 140, 0, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.18);
}
.repair-search-select.is-disabled .repair-search-select__trigger {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.08);
}
.repair-search-select__search {
  width: 100%;
  padding: 0.6rem 0.75rem 0.6rem 2rem;
  margin-bottom: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.88rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23a0a8b4' stroke-width='2'%3E%3Ccircle cx='7' cy='7' r='5'/%3E%3Cpath d='M11 11l3 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0.55rem center;
}
.repair-search-select__search:focus {
  outline: none;
  border-color: var(--orange-light);
  box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.15);
}
.repair-search-select__search::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.repair-search-select__list {
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
.repair-search-select__option {
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease;
}
.repair-search-select__option:hover,
.repair-search-select__option.is-active {
  background: rgba(255, 140, 0, 0.12);
  color: var(--white);
}
.repair-search-select__option.is-selected {
  color: var(--orange-light);
}
.repair-search-select__empty {
  padding: 0.65rem 0.7rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.repair-selector__field input[data-repair-brand-other],
.repair-selector__field input[data-repair-model-other] {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.repair-selector__field input[data-repair-brand-other]:hover,
.repair-selector__field input[data-repair-model-other]:hover {
  border-color: rgba(255, 140, 0, 0.45);
  background: rgba(255, 255, 255, 0.04);
}
.repair-selector__field input[data-repair-brand-other]:focus,
.repair-selector__field input[data-repair-model-other]:focus {
  outline: none;
  border-color: var(--orange-light);
  background: rgba(255, 140, 0, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.18);
}
.repair-selector__extras {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.repair-selector__pannes {
  margin-bottom: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 140, 0, 0.28);
  background: rgba(0, 0, 0, 0.22);
}
.repair-selector__pannes-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}
.repair-selector__pannes-hint {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.repair-selector__pannes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.repair-issue-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.repair-issue-chip:hover {
  border-color: rgba(255, 140, 0, 0.5);
  background: rgba(255, 140, 0, 0.08);
  color: var(--white);
}
.repair-issue-chip.is-selected {
  border-color: var(--orange);
  background: rgba(255, 140, 0, 0.2);
  color: var(--orange-light);
  box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.15);
}
.repair-issue-chip__icon {
  font-size: 1rem;
  line-height: 1;
}
.repair-selector__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.repair-selector__cta { min-width: min(100%, 260px); }
.repair-selector__cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.repair-selector__note {
  font-size: 0.82rem;
  color: #b8c0cc;
}
.repair-selector__skeleton { pointer-events: none; }
.repair-selector__skeleton-line {
  display: block;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.repair-selector__skeleton-btn {
  display: block;
  width: min(100%, 260px);
  height: 48px;
  margin-inline: auto;
  border-radius: var(--radius);
  background: rgba(255, 140, 0, 0.18);
}
.repair-prefill {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 140, 0, 0.45);
  background: rgba(255, 140, 0, 0.1);
}
.repair-prefill__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 0.35rem;
}
.repair-prefill__device {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.repair-prefill__hint {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 860px) {
  .repair-selector__grid,
  .repair-selector__extras {
    grid-template-columns: 1fr;
  }
  .repair-selector__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.15rem;
}
.form-fieldset legend {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.85);
}
.contact-form .radio-group { margin-top: 0.15rem; }
.contact-form .radio-pill {
  flex: 1 1 auto;
  min-width: fit-content;
  text-align: center;
}
.contact-form .radio-pill__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.contact-info__block {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,140,0,0.2);
  border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.15rem;
}
.contact-info__block h3 {
  font-size: 0.9rem; font-weight: 800; color: var(--orange-light);
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.contact-info__block li {
  display: flex; gap: 0.75rem; margin-bottom: 0.75rem;
  font-size: 0.92rem; color: rgba(255,255,255,0.8);
}
.contact-info__block a:hover { color: var(--orange-light); }
.hours div {
  display: flex; justify-content: space-between; padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem;
}
.hours dt { color: rgba(255,255,255,0.6); }
.hours dd { font-weight: 700; }

/* ── Footer ── */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.72);
  padding-block: 3rem 2rem; font-size: 0.88rem;
  border-top: 1px solid rgba(255, 140, 0, 0.18);
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
.footer__brand p { margin-top: 0.5rem; line-height: 1.6; }
.footer h3 {
  color: var(--orange-light); font-size: 0.85rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem;
}
.footer ul li { margin-bottom: 0.45rem; }
.footer a:hover { color: var(--orange-light); }
.footer__bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}

/* ── FAB (bouton appel — mobile uniquement, conteneur isolé pour Android/Samsung) ── */
#fab-root {
  display: none;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px var(--orange-glow);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  flex-shrink: 0;
}
.fab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.fab__icon svg {
  display: block;
}
@keyframes fabHaloPulse {
  0%, 100% {
    box-shadow:
      0 8px 28px var(--orange-glow),
      0 0 0 0 rgba(255, 140, 0, 0);
  }
  50% {
    box-shadow:
      0 8px 32px var(--orange-glow),
      0 0 0 7px rgba(255, 140, 0, 0.22),
      0 0 22px rgba(255, 140, 0, 0.32);
  }
}
.fab.fab--halo {
  animation: fabHaloPulse 1.4s ease-in-out 2;
}
@keyframes fabPingOnce {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@media (max-width: 960px) {
  #fab-root {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
    overflow: visible;
  }
  .fab-stack {
    position: fixed;
    right: calc(1rem + env(safe-area-inset-right, 0px));
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: center;
    gap: 0.55rem;
    pointer-events: none;
    z-index: 1101;
  }
  .fab-wrap {
    position: relative;
    flex-shrink: 0;
  }
  .fab__ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 140, 0, 0.55);
    opacity: 0;
    pointer-events: none;
  }
  .fab-stack.fab-stack--active .fab__ping {
    animation: fabPingOnce 0.95s ease-out;
  }
  .fab-stack .fab {
    position: relative;
    display: flex;
    pointer-events: auto;
  }
  .fab__hint {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    font-size: 0.76rem;
    color: var(--white);
    background: rgba(18, 18, 18, 0.96);
    border: 1px solid rgba(255, 140, 0, 0.48);
    padding: 0.45rem 0.5rem 0.45rem 0.72rem;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
    pointer-events: none;
  }
  .fab__hint::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    width: 10px;
    height: 10px;
    background: rgba(18, 18, 18, 0.96);
    border-right: 1px solid rgba(255, 140, 0, 0.48);
    border-top: 1px solid rgba(255, 140, 0, 0.48);
    transform: translateY(-50%) rotate(45deg);
  }
  .fab__hint-body {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    line-height: 1.15;
    position: relative;
    z-index: 1;
  }
  .fab__hint-body strong {
    font-weight: 800;
    letter-spacing: 0.01em;
  }
  .fab__hint-phone {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--orange-light);
  }
  .fab__hint-close {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
  }
  .fab-stack.fab-stack--active .fab__hint {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fab.fab--halo { animation: none; }
  .fab-stack.fab-stack--active .fab__ping { animation: none; }
}
@media (hover: hover) {
  #fab-root .fab:hover {
    background: var(--orange-dark);
    transform: scale(1.08);
  }
}
#fab-root .fab:active {
  background: var(--orange-dark);
  transform: scale(0.96);
}

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Two columns ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.split--center { align-items: center; }
.engage-aside {
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.25rem; width: 100%;
}
.engage-aside__actions {
  display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.25rem;
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .hero__layout, .about, .contact__grid, .split, .footer__grid, .map-legend, .audience__grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .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;
    transform: scaleX(0);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    display: flex;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--dark-card); flex-direction: column; align-items: stretch;
    justify-content: flex-start;
    flex: none;
    padding: 0; gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-105%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease,
      visibility 0.42s ease,
      box-shadow 0.42s ease;
  }
  .nav--open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav.nav--closing {
    transition:
      transform 0.58s cubic-bezier(0.55, 0.06, 0.68, 0.19),
      opacity 0.5s ease 0.04s,
      visibility 0.58s ease 0.04s,
      box-shadow 0.5s ease;
  }
  .nav__dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .nav__dropdown::after { display: none; }
  .nav > a,
  .nav__trigger {
    display: block;
    width: 100%;
    text-align: left;
    border-radius: 0;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--dark-border);
    color: var(--text-muted);
    background: transparent;
  }
  .nav > a.active {
    color: var(--orange);
    background: var(--orange-pale);
  }
  .nav:has(.nav__item--open) > a.active,
  .nav:has(.nav__dropdown--current) > a.active {
    color: var(--text-muted);
    background: transparent;
  }
  .nav__menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    width: 100%;
    min-width: 0;
    background: rgba(255, 255, 255, 0.03);
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: visible;
    transform: none;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s ease;
  }
  .nav.nav--closing .nav__menu {
    transition: max-height 0.38s cubic-bezier(0.55, 0.06, 0.68, 0.19), opacity 0.28s ease;
  }
  .nav__menu a {
    padding: 0.75rem 1.5rem 0.75rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid var(--dark-border);
    color: var(--text-muted);
    background: transparent;
  }
  .nav__menu a.active {
    color: var(--orange);
    background: rgba(255, 140, 0, 0.12);
    font-weight: 700;
  }
  .nav__item--open .nav__menu,
  .nav__dropdown--current .nav__menu {
    max-height: 28rem;
    opacity: 1;
  }
  .nav__item--open > .nav__trigger,
  .nav__dropdown--current > .nav__trigger {
    color: var(--orange);
    background: var(--orange-pale);
    border-bottom: 3px solid var(--orange);
    padding-bottom: calc(0.85rem - 2px);
  }
  .hero__domains { grid-template-columns: repeat(2, 1fr); }
  .scroll-hint { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  [data-scroll="left"],
  [data-scroll="right"] { transform: translateY(28px); }
  .audience__ribbon {
    max-width: 100%;
    width: 100%;
    border-radius: var(--radius-lg);
    padding-inline: 1rem;
  }
  .google-trust-bar__link { display: none; }
  body[data-page="index"] .google-trust-bar { display: none; }
  body[data-page="index"] .amp-stats-banner {
    margin-top: 0;
    padding: 0.45rem 0 0.5rem;
    border-top: none;
  }
  body[data-page="index"] .amp-stats-banner__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding-block: 0;
  }
  body[data-page="index"] .amp-stats-banner__since {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
  body[data-page="index"] .amp-stats-banner__grid {
    gap: 0.35rem 1.1rem;
    width: 100%;
  }
  body[data-page="index"] .amp-stats-banner__stat {
    min-width: 0;
    flex-direction: row;
    align-items: baseline;
    gap: 0.3rem;
  }
  body[data-page="index"] .amp-stats-banner__value {
    font-size: 1.15rem;
  }
  body[data-page="index"] .amp-stats-banner__plus {
    font-size: 0.85rem;
  }
  body[data-page="index"] .amp-stats-banner__label {
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
  }
  body[data-page="index"] .hero {
    padding-top: 0.75rem;
  }
  body[data-page="index"] .hero__layout {
    padding-top: 0.35rem;
  }
  body[data-page="index"] .hero__domains {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
  .logo__city-name { max-width: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, [data-scroll] { opacity: 1; transform: none !important; }
  .hero-animate__line, .hero-animate .hero__eyebrow,
  .hero-animate .hero__rating,
  .hero-animate .hero__subtitle, .hero-animate .hero__area,
  .hero-animate .hero__actions { opacity: 1; animation: none; }
}

/* ── Legal / CGV ── */
.legal-content {
  max-width: 820px; margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.2rem; font-weight: 800; color: var(--orange-light);
  margin: 2.5rem 0 0.85rem; padding-top: 1.5rem;
  border-top: 1px solid var(--dark-border);
}
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 1.25rem 0 0.5rem; }
.legal-content p, .legal-content li {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.65rem;
}
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content a { color: var(--orange-light); text-decoration: underline; }

/* ── Landing pages villes (SEO local) ── */
.page-hero--city {
  background:
    radial-gradient(ellipse 70% 55% at 15% 80%, rgba(255, 140, 0, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark-soft) 0%, var(--dark) 100%);
}
.city-landing__intro {
  max-width: 960px;
}
.city-landing__blocks {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .city-landing__blocks {
    gap: 1.75rem;
    max-width: 820px;
    margin-inline: auto;
  }
}
.city-landing__block {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
}
.city-landing__heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.city-landing__lead {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.city-landing__lead strong { color: var(--text); }
.city-landing__lead--muted { margin-bottom: 1.25rem; }
.city-nearby-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.city-nearby-chips__link,
.city-nearby-chips__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--dark-border);
  background: var(--dark-elevated);
}
.city-nearby-chips__link {
  color: var(--orange-light);
  transition: var(--transition);
}
.city-nearby-chips__link:hover {
  border-color: rgba(255, 140, 0, 0.45);
  background: rgba(255, 140, 0, 0.08);
  color: var(--orange);
}
.city-nearby-chips__label {
  color: var(--text-muted);
}
.city-services-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 520px) {
  .city-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .city-service-group:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 0.85rem) / 2);
  }
}
.city-service-group {
  background: var(--dark-elevated);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  border-left: 3px solid var(--orange);
}
.city-service-group__title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-light);
  margin-bottom: 0.5rem;
}
.city-service-group__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.city-service-group__list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  padding-left: 0.85rem;
  position: relative;
}
.city-service-group__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}
.city-audience {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-border);
}
.city-audience__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-right: 0.25rem;
}
.city-audience__chip {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}
.city-landing__intro p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.city-landing__intro p strong { color: var(--text); }
.city-landing__note {
  font-size: 0.92rem !important;
  font-style: italic;
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
  text-align: center;
}
.city-landing__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0;
}
.city-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
}
.city-pages-grid__link {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
}
.city-pages-grid__link:hover {
  border-color: rgba(255, 140, 0, 0.45);
  color: var(--orange-light);
  background: rgba(255, 140, 0, 0.06);
}

body[data-page="secteur-dintervention"] .section:has(.map-container) {
  padding-bottom: 2.5rem;
}
body[data-page="secteur-dintervention"] .map-container {
  background: var(--dark-card);
  content-visibility: auto;
  contain-intrinsic-size: auto 450px;
}
body[data-page="secteur-dintervention"] .map-container--idle::after {
  content: "Carte interactive — chargement différé";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  pointer-events: none;
}
body[data-page="secteur-dintervention"] .section:has(.map-container) + .section--alt {
  padding-top: 2.25rem;
}

.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem;
}
.location-zone {
  background: var(--dark-card); border-radius: var(--radius-lg);
  padding: 1.75rem; border: 1px solid var(--dark-border);
  border-top: 3px solid var(--orange);
}
.location-zone h3,
.location-zone__title {
  font-size: 1rem; font-weight: 800; color: var(--orange-light);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.location-zone ul { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.location-zone li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 2rem;
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  background: var(--dark-elevated); padding: 0.35rem 0.65rem;
  border-radius: 6px; border: 1px solid var(--dark-border);
  line-height: 1.25;
}
.location-zone li:hover { border-color: var(--orange); color: var(--orange-light); }
.location-zone__item--linked {
  padding: 0;
  border-color: rgba(255, 140, 0, 0.35);
}
.location-zone__item--linked:hover {
  border-color: var(--orange);
}
.location-zone__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  color: var(--orange-light);
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  line-height: 1.25;
}
.location-zone__link:hover,
.location-zone__link:focus-visible {
  color: var(--orange);
}

@media (min-width: 961px) {
  .home-cities {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-cities .location-zone:last-child {
    grid-column: 2;
  }
  body[data-page="notre-entreprise"] .cards-grid:has(.about__stat) {
    grid-template-columns: repeat(3, 1fr);
  }
  body[data-page="notre-entreprise"] .cards-grid:has(.about__stat) .about__stat:last-child {
    grid-column: 2;
  }
  body[data-page="secteur-dintervention"] .locations-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  body[data-page="secteur-dintervention"] .location-zone:nth-child(1) {
    grid-column: 1 / span 2;
  }
  body[data-page="secteur-dintervention"] .location-zone:nth-child(2) {
    grid-column: 3 / span 2;
  }
  body[data-page="secteur-dintervention"] .location-zone:nth-child(3) {
    grid-column: 5 / span 2;
  }
  body[data-page="secteur-dintervention"] .location-zone:nth-child(4) {
    grid-column: 2 / span 2;
  }
  body[data-page="secteur-dintervention"] .location-zone:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* ── Configurator ── */
.configurator {
  display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start;
}
.config-form {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.config-form .form-row label { color: var(--text-muted); }
.config-form .form-row input,
.config-form .form-row select,
.config-form .form-row textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--dark-border); border-radius: 8px;
  background: var(--dark-elevated); color: var(--text);
  font-family: var(--font); font-size: 0.95rem;
}
.config-form .form-row input:focus,
.config-form .form-row select:focus,
.config-form .form-row textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow);
}
.config-form .form-hint { color: var(--text-muted); text-align: left; }
.config-form .form-row--invalid input,
.config-form .form-row--invalid textarea {
  border-color: rgba(220, 53, 69, 0.75);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}
.config-group { margin-bottom: 2rem; }
.config-group h3 {
  font-size: 0.95rem; font-weight: 800; color: var(--orange-light);
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.counter-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem;
}
.counter-item {
  background: var(--dark-elevated); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 1rem;
}
.counter-item label {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.65rem;
}
.counter-controls {
  display: flex; align-items: center; gap: 0.75rem;
}
.counter-btn {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px; border-radius: 8px;
  border: 2px solid var(--orange); background: transparent;
  color: var(--orange); font-size: 1.2rem; font-weight: 800;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.counter-btn:focus-visible {
  outline: 2px solid var(--orange-light);
  outline-offset: 2px;
}
.counter-btn:hover { background: var(--orange); color: var(--white); }
.counter-value {
  font-size: 1.4rem; font-weight: 800; color: var(--text);
  min-width: 2rem; text-align: center;
}
.config-summary {
  position: sticky; top: calc(var(--header-h) + 1.5rem);
  background: var(--dark-card); border: 2px solid var(--orange);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.config-summary h3 {
  font-size: 1rem; font-weight: 800; color: var(--orange-light);
  margin-bottom: 1rem;
}
.config-summary__list { margin-bottom: 1.25rem; }
.config-summary__list div {
  display: flex; justify-content: space-between; padding: 0.4rem 0;
  font-size: 0.88rem; color: var(--text-muted);
  border-bottom: 1px solid var(--dark-border);
}
.config-summary__list strong { color: var(--text); }
.config-summary__total {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem;
  padding-top: 0.75rem; border-top: 2px solid var(--dark-border);
}
.radio-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.radio-pill {
  padding: 0.55rem 1rem; border-radius: 8px;
  border: 2px solid var(--dark-border); background: var(--dark-elevated);
  font-family: var(--font); font-size: 0.85rem; font-weight: 700;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.radio-pill input { display: none; }
.radio-pill:hover:not(:has(input:checked)) {
  border-color: var(--orange-light); color: var(--orange);
}
.radio-pill:has(input:checked),
.radio-pill:has(input:checked):hover {
  border-color: var(--orange); background: var(--orange-pale); color: var(--orange-light);
}

@media (max-width: 960px) {
  .configurator { grid-template-columns: 1fr; }
  .config-summary { position: static; }
}

/* ── Page Réparation ── */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem;
}
.hero-stats__item {
  flex: 1 1 120px; padding: 1rem 1.25rem;
  background: var(--dark-card); border-radius: var(--radius);
  border: 1px solid var(--dark-border); text-align: center;
}
.hero-stats__item strong {
  display: block; font-size: 1.5rem; font-weight: 800;
  color: var(--orange); line-height: 1.1; margin-bottom: 0.25rem;
}
.hero-stats__item span {
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.hero-stats__item--reviews [data-google-review-count] {
  display: inline;
  color: inherit;
  font-weight: 600;
}
.hero-stats__item--reviews .hero-stats__reviews-label {
  display: block;
  text-transform: uppercase;
}
.repair-chips {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
}
.repair-chip {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.45rem; min-width: 118px; max-width: 140px; flex: 1 1 118px;
  padding: 1.1rem 0.65rem; text-align: center;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); cursor: default;
  font-size: 0.82rem; font-weight: 700; color: var(--text);
  line-height: 1.25; transition: var(--transition);
}
.repair-chip:hover {
  border-color: var(--orange); transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.12);
}
.repair-chip__icon {
  font-size: 1.85rem; line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.repair-chip--cta {
  border-style: dashed; border-color: var(--orange);
  color: var(--orange-light);
}
.repair-chip--cta:hover { background: rgba(255, 140, 0, 0.08); }
.repair-footnote {
  text-align: center; margin-top: 1.75rem; font-size: 0.9rem;
  color: var(--text-muted); font-style: italic;
}

/* Timeline parcours réparation */
.repair-timeline-shell { position: relative; }
.repair-timeline {
  position: relative; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 0 1rem;
  padding-top: 2.5rem; margin-top: 0.5rem;
  list-style: none; margin-left: 0; padding-left: 0;
}
.repair-timeline__track {
  position: absolute; top: 2.5rem; left: 12.5%; right: 12.5%;
  height: 4px; background: var(--dark-border); border-radius: 99px;
  transform: translateY(-50%); overflow: hidden; z-index: 0;
}
.repair-timeline__progress {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: inherit; transform-origin: left center;
  animation: timelineGrow 1.2s ease-out forwards;
}
@keyframes timelineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.repair-timeline__step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  height: 100%;
  list-style: none;
}
.repair-timeline__node {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--dark-soft); border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.25rem;
  box-shadow: 0 0 0 6px var(--dark-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  align-self: center;
  flex-shrink: 0;
}
.repair-timeline__step:hover .repair-timeline__node {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px var(--dark-soft), 0 0 20px rgba(255, 140, 0, 0.35);
}
.repair-timeline__card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 1.35rem 1.15rem;
  width: 100%; transition: border-color var(--transition);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.repair-timeline__step:hover .repair-timeline__card { border-color: rgba(255, 140, 0, 0.45); }
.repair-timeline__when {
  display: block; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--orange); margin-bottom: 0.4rem;
}
.repair-timeline__card h3 {
  font-size: 0.95rem; font-weight: 800; color: var(--text);
  margin-bottom: 0.45rem; line-height: 1.3;
}
.repair-timeline__card p {
  font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; margin: 0;
}
.repair-timeline__card strong { color: var(--orange-light); }
.repair-note {
  text-align: center; font-size: 0.82rem; color: var(--text-muted);
  margin-top: 2rem; font-style: italic;
}
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden;
}
.faq-item summary {
  padding: 1.15rem 1.5rem; font-weight: 700; color: var(--text);
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--orange); font-size: 1.3rem; font-weight: 800;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--orange-light); }
.faq-item p {
  padding: 0 1.5rem 1.15rem; font-size: 0.92rem;
  color: var(--text-muted); line-height: 1.65;
}

@media (max-width: 960px) {
  .repair-timeline {
    grid-template-columns: 1fr; gap: 0; padding-top: 0; padding-left: 1.75rem;
  }
  .repair-timeline__track {
    top: var(--timeline-track-top, 0);
    bottom: auto;
    left: 0.65rem; right: auto;
    width: 4px;
    height: var(--timeline-track-height, calc(100% - 2rem));
    transform: none;
    visibility: hidden;
  }
  .repair-timeline__track--synced {
    visibility: visible;
  }
  .repair-timeline__progress {
    animation: timelineGrowV 1.2s ease-out forwards;
  }
  @keyframes timelineGrowV {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
  }
  .repair-timeline__step {
    flex-direction: row; align-items: stretch; text-align: left;
    gap: 1.25rem; padding-bottom: 2rem;
    height: auto;
  }
  .repair-timeline__step:last-child { padding-bottom: 0; }
  .repair-timeline__node {
    flex-shrink: 0; width: 46px; height: 46px;
    font-size: 1.15rem; margin-bottom: 0;
    margin-left: -1.75rem; position: relative; z-index: 2;
    align-self: center;
  }
  .repair-timeline__card {
    flex: 1;
    min-height: 7.5rem;
    justify-content: flex-start;
  }
}
@media (max-width: 520px) {
  .hero-stats__item { flex: 1 1 calc(50% - 0.5rem); }
  .repair-chip { min-width: calc(50% - 0.75rem); flex: 1 1 calc(50% - 0.75rem); max-width: none; }
  .logo { font-size: 1.15rem; }
}

/* ── Google trust bar (accueil) ── */
.google-trust-bar {
  background: linear-gradient(90deg, var(--dark-soft) 0%, rgba(255, 140, 0, 0.08) 50%, var(--dark-soft) 100%);
  border-bottom: 1px solid var(--dark-border);
  padding: 0.85rem 0;
}
.google-trust-bar__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem 1.5rem; text-align: center;
}
.google-trust-bar__score {
  display: flex; align-items: baseline; gap: 0.35rem;
}
.google-trust-bar__stars {
  color: #fbbc04; font-size: 1rem; letter-spacing: 0.05em;
  margin-right: 0.25rem;
}
.google-trust-bar__value {
  font-size: 1.5rem; font-weight: 800; color: var(--orange); line-height: 1;
}
.google-trust-bar__of {
  font-size: 0.85rem; font-weight: 600; color: #b8c0cc;
}
.google-trust-bar__text {
  font-size: 0.92rem; color: #b8c0cc; margin: 0;
  display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 0.35rem;
}
.google-trust-bar__text strong { color: var(--text); }
.google-trust-bar__google {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-weight: 700; color: var(--text);
}
.google-trust-bar__link {
  font-size: 0.85rem; font-weight: 700; color: var(--orange-light);
  white-space: nowrap; transition: color var(--transition);
}
.google-trust-bar__link:hover { color: var(--orange); }

/* ── Bandeau chiffres clés ── */
.amp-stats-banner {
  background: linear-gradient(90deg, rgba(255, 140, 0, 0.14) 0%, rgba(255, 140, 0, 0.06) 50%, rgba(255, 140, 0, 0.14) 100%);
  border-block: 1px solid rgba(255, 140, 0, 0.35);
  padding-block: 1.25rem;
}
.amp-stats-banner--page {
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
.amp-stats-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}
.amp-stats-banner__since {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b8c0cc;
}
.amp-stats-banner__since span {
  color: var(--orange-light);
}
.amp-stats-banner__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem 3rem;
  width: 100%;
}
.amp-stats-banner__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 9rem;
}
.amp-stats-banner__value-wrap {
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}
.amp-stats-banner__value {
  font-size: clamp(1.65rem, 3.8vw, 2.1rem);
  font-weight: 800;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.amp-stats-banner__plus {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 800;
  color: var(--orange-light);
  margin-left: 0.1rem;
  line-height: 1.2;
}
.amp-stats-banner__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
@media (max-width: 520px) {
  .amp-stats-banner { padding-block: 1.1rem; }
  .amp-stats-banner__grid { gap: 1.25rem 2rem; }
  .amp-stats-banner__stat { min-width: 7.5rem; }
  .amp-stats-banner__label { font-size: 0.88rem; }
  body[data-page="index"] .amp-stats-banner {
    padding: 0.45rem 0 0.5rem;
  }
  body[data-page="index"] .amp-stats-banner__grid { gap: 0.35rem 0.85rem; }
  body[data-page="index"] .amp-stats-banner__stat { min-width: 0; }
  body[data-page="index"] .amp-stats-banner__label { font-size: 0.72rem; }
}

/* ── Avis clients ── */
.reviews-section { padding-bottom: 2rem; }
.reviews-section .section__header { margin-bottom: 2rem; }

/* Carrousel pleine largeur — animation CSS (GPU), pause au survol / toucher */
.reviews-marquee {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-block: 0 2rem;
  touch-action: pan-y pinch-zoom;
}
.reviews-marquee__viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 98%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 98%, transparent 100%);
}
.reviews-marquee__track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  padding-inline: 0;
  will-change: transform;
}
.reviews-marquee--running .reviews-marquee__track {
  animation: reviews-marquee-scroll var(--reviews-marquee-duration, 72s) linear infinite;
}
.reviews-marquee--paused .reviews-marquee__track,
.reviews-marquee:hover .reviews-marquee__track {
  animation-play-state: paused;
}
@keyframes reviews-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.review-card {
  flex: 0 0 clamp(300px, 36vw, 400px);
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover {
  border-color: rgba(255, 140, 0, 0.4);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}
.reviews-marquee .review-card:hover {
  transform: none;
}
.review-card__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem;
}
.review-card__author {
  display: flex; align-items: center; gap: 0.75rem; min-width: 0;
}
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; border: 2px solid rgba(255, 140, 0, 0.35);
}
.review-card__avatar--fallback {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 140, 0, 0.18); color: var(--orange-light);
  font-size: 0.95rem; font-weight: 800;
}
.review-card__meta {
  display: flex; flex-direction: column; gap: 0.35rem;
}
.review-card__name {
  font-size: 0.95rem; font-weight: 800; color: var(--text);
}
.review-card__stars {
  color: #fbbc04; font-size: 0.9rem; letter-spacing: 0.06em;
}
.review-card__source {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: #b8c0cc; flex-shrink: 0;
}
.review-card__quote { margin: 0; flex: 1; }
.review-card__quote p {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.65;
  font-style: italic;
}
.review-card__quote p::before {
  content: '\00AB\00a0'; color: var(--orange); font-style: normal; font-weight: 800;
}
.review-card__quote p::after {
  content: '\00a0\00BB'; color: var(--orange); font-style: normal; font-weight: 800;
}
.reviews-cta { text-align: center; margin-top: 0; }
#avis .reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__track {
    animation: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }
  .reviews-marquee__viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .review-card { scroll-snap-align: start; }
}

@media (max-width: 520px) {
  .google-trust-bar__inner { flex-direction: column; gap: 0.5rem; }
  .reviews-marquee__viewport {
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 97%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 97%, transparent 100%);
  }
  .reviews-marquee__track { gap: 0.85rem; }
  .review-card { flex: 0 0 calc(100vw - 1.5rem); max-width: none; }
}

/* ── Page Aide à l'utilisation ── */
.help-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.help-pillar {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.35rem;
  text-align: center; transition: var(--transition);
}
.help-pillar:hover {
  border-color: var(--orange); transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(255, 140, 0, 0.1);
}
.help-pillar__icon {
  display: block; font-size: 2.25rem; margin-bottom: 0.85rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.help-pillar h3,
.help-pillar__title {
  font-size: 1rem; font-weight: 800; color: var(--orange-light);
  margin-bottom: 0.5rem;
}
.help-pillar p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
}
.help-pillar em { color: var(--text); font-style: normal; font-weight: 600; }
.help-tabs { margin-top: 0.5rem; }
.help-tabs .tabs__nav { justify-content: center; }
.help-tabs .help-chip { flex: 0 1 118px; }
.help-lead {
  text-align: center; font-size: 1rem; color: var(--text-muted);
  margin: 0 0 1.75rem; line-height: 1.6;
}
.help-lead strong { color: var(--orange-light); }
.help-chips {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
}
.help-chip {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.45rem; min-width: 118px; max-width: 150px; flex: 1 1 118px;
  padding: 1.1rem 0.65rem; text-align: center;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); cursor: default;
  font-size: 0.82rem; font-weight: 700; color: var(--text);
  line-height: 1.25; transition: var(--transition);
}
.help-chip:hover {
  border-color: var(--orange); transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.12);
}
.help-chip__icon { font-size: 1.85rem; line-height: 1; }
.help-footnote {
  text-align: center; margin-top: 1.75rem; font-size: 0.9rem;
  color: var(--text-muted); font-style: italic;
}
.help-timeline { margin-top: 0.5rem; }
.help-audience {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  max-width: 920px; margin-inline: auto;
}
.help-audience__card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; text-align: center;
  transition: var(--transition);
}
.help-audience__card:hover { border-color: var(--orange); transform: translateY(-3px); }
.help-audience__card span {
  display: block; font-size: 2.5rem; margin-bottom: 0.75rem;
}
.help-audience__card h3 {
  font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 0.45rem;
}
.help-audience__card p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.55;
}

@media (max-width: 960px) {
  .help-pillars { grid-template-columns: 1fr 1fr; }
  .help-audience { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 520px) {
  .help-pillars { grid-template-columns: 1fr; }
  .help-chip { min-width: calc(50% - 0.75rem); flex: 1 1 calc(50% - 0.75rem); max-width: none; }
}

/* ── Page Réseaux & Opérateurs ── */
.operator-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.operator-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 1.15rem 1rem 1.25rem;
  text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.operator-card::before {
  content: ''; position: absolute; top: 0; left: 1.25rem; right: 1.25rem;
  height: 2px; background: var(--operator-color, var(--orange));
  border-radius: 0 0 2px 2px; opacity: 0.85;
}
.operator-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 140, 0, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.operator-card--orange { --operator-color: #FF7900; }
.operator-card--sfr { --operator-color: #E2001A; }
.operator-card--bouygues { --operator-color: #009DCC; }
.operator-card--free { --operator-color: #CD0200; }
.operator-card__logo {
  display: flex; align-items: center; justify-content: center;
  min-height: 2.75rem;
}
.operator-card__logo img {
  display: block;
  width: auto;
  max-width: 88%;
  max-height: 2.35rem;
  height: auto;
  object-fit: contain;
}
.operator-card--bouygues .operator-card__logo img {
  max-height: 2.6rem;
}
.operator-note {
  text-align: center; margin-top: 1.5rem; font-size: 0.85rem;
  color: var(--text-muted); font-style: italic;
}

@media (max-width: 960px) {
  .operator-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .operator-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .operator-card { padding: 1rem 0.75rem; }
  .operator-card__logo img { max-height: 2rem; }
}

/* ── Page Dépannage à domicile ── */
.page-hero--home {
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(255, 140, 0, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--dark-soft) 0%, var(--dark) 100%);
}
/* Orbite interventions — pentagone symétrique */
.home-orbit {
  max-width: 720px;
  margin-inline: auto;
}
.home-orbit__stage {
  position: relative;
  width: min(540px, 100%);
  aspect-ratio: 1;
  height: auto;
  max-width: 100%;
  margin: 0 auto 1.75rem;
  overflow: hidden;
  --orbit-r: 34%;
}
.home-orbit__canvas {
  position: absolute;
  inset: 0;
}
.home-orbit__ring {
  position: absolute;
  inset: calc(50% - var(--orbit-r));
  border: 2px dashed rgba(255, 140, 0, 0.28);
  border-radius: 50%;
  animation: homeOrbitSpin 50s linear infinite;
}
@keyframes homeOrbitSpin {
  to { transform: rotate(360deg); }
}
.home-orbit__spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: var(--orbit-r);
  background: linear-gradient(180deg, rgba(255, 140, 0, 0.55), rgba(255, 140, 0, 0.05));
  transform-origin: top center;
  transform: translate(-50%, 0) rotate(calc(var(--orbit-a) + 90deg));
  opacity: 0.65;
}
.home-orbit__spoke--1 { --orbit-a: 90deg; }
.home-orbit__spoke--2 { --orbit-a: 18deg; }
.home-orbit__spoke--3 { --orbit-a: -54deg; }
.home-orbit__spoke--4 { --orbit-a: -126deg; }
.home-orbit__spoke--5 { --orbit-a: -198deg; }
.home-orbit__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255, 140, 0, 0.12), 0 10px 32px rgba(255, 140, 0, 0.28);
  z-index: 2;
}
.home-orbit__hub-icon { font-size: 1.75rem; line-height: 1; }
.home-orbit__hub-label {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.home-orbit__nodes {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.home-orbit__node {
  position: absolute;
  width: 120px;
  left: calc(50% + var(--orbit-r) * cos(var(--orbit-a)));
  top: calc(50% - var(--orbit-r) * sin(var(--orbit-a)));
  transform: translate(-50%, -50%);
  text-align: center;
  cursor: pointer;
}
.home-orbit__node--1 { --orbit-a: 90deg; }
.home-orbit__node--2 { --orbit-a: 18deg; }
.home-orbit__node--3 { --orbit-a: -54deg; }
.home-orbit__node--4 { --orbit-a: -126deg; }
.home-orbit__node--5 { --orbit-a: -198deg; }

@supports not (top: calc(50% - 1% * sin(90deg))) {
  .home-orbit__node--1 { left: 50%;    top: 16%; }
  .home-orbit__node--2 { left: 82.3%;  top: 39.5%; }
  .home-orbit__node--3 { left: 70%;    top: 77.5%; }
  .home-orbit__node--4 { left: 30%;    top: 77.5%; }
  .home-orbit__node--5 { left: 17.7%;  top: 39.5%; }
}

.home-orbit__hex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 83px;
  margin: 0 auto 0.5rem;
  background: var(--dark-card);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: none;
  position: relative;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.home-orbit__hex::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--dark-card);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
}
.home-orbit__hex::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 140, 0, 0.5), rgba(255, 140, 0, 0.08));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.home-orbit__hex-icon {
  position: relative;
  z-index: 1;
  font-size: 1.65rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  transition: transform 0.35s ease;
}
.home-orbit__node h3,
.home-orbit__node-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1.25;
  margin: 0;
  transition: color 0.35s ease;
}
.home-orbit__node:hover .home-orbit__hex,
.home-orbit__node.is-active .home-orbit__hex {
  transform: scale(1.1);
}
.home-orbit__node:hover .home-orbit__hex::after,
.home-orbit__node.is-active .home-orbit__hex::after {
  opacity: 1;
}
.home-orbit__node:hover .home-orbit__hex-icon,
.home-orbit__node.is-active .home-orbit__hex-icon {
  transform: scale(1.08);
}
.home-orbit__node:hover h3,
.home-orbit__node.is-active h3 {
  color: var(--orange-light);
}
.home-orbit__node:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 8px;
}

.home-orbit__detail {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  padding: 1.35rem 1.75rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 999px;
  position: relative;
}
.home-orbit__detail::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--dark-card);
  border-left: 1px solid var(--dark-border);
  border-top: 1px solid var(--dark-border);
}
.home-orbit__detail-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  transition: opacity 0.25s ease;
}

/* Parcours route */
.home-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 3.5rem;
  margin-top: 0.5rem;
}
.home-journey__road {
  position: absolute;
  top: 1.75rem;
  left: 8%;
  right: 8%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--dark-border) 0,
    var(--dark-border) 12px,
    transparent 12px,
    transparent 22px
  );
  border-radius: 99px;
  z-index: 0;
}
.home-journey__road::before {
  content: '';
  position: absolute;
  inset: -3px 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: inherit;
  opacity: 0.35;
  animation: homeRoadPulse 3s ease-in-out infinite;
}
@keyframes homeRoadPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.55; }
}
.home-journey__van {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -60%);
  font-size: 1.5rem;
  animation: homeVanDrive 8s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
@keyframes homeVanDrive {
  0%, 100% { left: 0; }
  50% { left: 100%; }
}
.home-journey__stop {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}
.home-journey__pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: var(--dark-soft);
  border: 3px solid var(--orange);
  border-radius: 50%;
  font-size: 1.25rem;
  box-shadow: 0 0 0 6px var(--dark-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.home-journey__stop:hover .home-journey__pin {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px var(--dark-soft), 0 0 18px rgba(255, 140, 0, 0.35);
}
.home-journey__stop h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.home-journey__stop p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.home-journey__stop strong { color: var(--orange-light); }
.home-journey__stop--alt .home-journey__pin {
  border-color: var(--orange-light);
  background: rgba(255, 140, 0, 0.1);
}
.home-footnote {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2rem;
  font-style: italic;
}

/* Zone hub + split */
.home-zone-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.home-zone-block header { margin-bottom: 1.5rem; }
.home-zone-block header h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  margin: 0.35rem 0 0.65rem;
}
.home-zone-block header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.home-zone-block header strong { color: var(--orange-light); }

/* Carte SVG zone d'intervention */
.home-map {
  margin: 0;
  max-width: 360px;
  margin-inline: auto;
}
.home-map__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.home-map__ring {
  fill: none;
  stroke-width: 1.5;
}
.home-map__ring--75 {
  stroke: rgba(255, 140, 0, 0.4);
  stroke-dasharray: 5 4;
}
.home-map__ring--25 {
  stroke: rgba(255, 140, 0, 0.15);
  stroke-width: 1;
}
.home-map__spoke {
  stroke: rgba(255, 140, 0, 0.28);
  stroke-width: 1;
}
.home-map__link {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}
.home-map__dot {
  fill: var(--text-muted);
}
.home-map__center {
  fill: url(#home-map-gradient);
  filter: drop-shadow(0 2px 6px rgba(255, 140, 0, 0.3));
}
.home-map__center-label {
  fill: #fff;
  font-family: var(--font);
  font-size: 7px;
  font-weight: 800;
  text-anchor: middle;
}
.home-map__label {
  fill: var(--text-muted);
  font-family: var(--font);
  font-size: 7px;
  font-weight: 700;
}
.home-map__legend {
  fill: rgba(255, 140, 0, 0.55);
  font-family: var(--font);
  font-size: 6.5px;
  font-weight: 700;
  text-anchor: middle;
}
.home-map__caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.65rem;
}
.home-zone-link { text-align: center; margin-top: 1.25rem; }
@media (max-width: 960px) {
  #zone-intervention .home-zone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    min-height: 6.5rem;
    padding-inline: 0.5rem;
  }
  #zone-intervention.section {
    padding-bottom: 2rem;
  }
}
@media (min-width: 961px) {
  #zone-intervention .home-zone-link {
    margin-top: 2.75rem;
    margin-bottom: 0.25rem;
  }
  #zone-intervention.section {
    padding-bottom: 3.25rem;
  }
}

.home-split {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home-split__card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.home-split__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
}
.home-split__card--shop::before { background: var(--orange-light); }
.home-split__card:hover {
  border-color: rgba(255, 140, 0, 0.4);
  transform: translateX(4px);
}
.home-split__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}
.home-split__card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.65rem;
}
.home-split__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-split__card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}
.home-split__card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

@media (max-width: 960px) {
  .home-orbit__stage {
    width: 100%;
    height: auto;
    min-height: 0;
    display: block;
    aspect-ratio: auto;
    overflow: visible;
  }
  .home-orbit__canvas { display: none; }
  .home-orbit__nodes {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: 100%;
    max-width: none;
  }
  .home-orbit__node {
    position: static;
    width: 100%;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    text-align: left;
    padding: 0.85rem 1rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    transition: border-color var(--transition), background var(--transition);
  }
  .home-orbit__node.is-active {
    border-color: var(--orange);
    background: rgba(255, 140, 0, 0.08);
  }
  .home-orbit__hex {
    width: 42px;
    height: 42px;
    min-width: 42px;
    margin: 0;
    clip-path: none;
    border-radius: 10px;
    background: var(--orange-pale);
    flex-shrink: 0;
  }
  .home-orbit__hex::before,
  .home-orbit__hex::after { display: none; }
  .home-orbit__hex-icon { font-size: 1.25rem; }
  .home-orbit__node h3,
.home-orbit__node-title {
    font-size: 0.88rem;
    text-align: left;
    color: var(--text);
    flex: 1;
    min-width: 0;
    line-height: 1.35;
  }
  .home-orbit__node.is-active h3 { color: var(--orange-light); }
  .home-orbit__node--5 { grid-column: auto; max-width: none; margin-inline: 0; }
  .home-orbit__detail {
    border-radius: var(--radius-lg);
    margin-top: 0.75rem;
  }
  .home-orbit__detail::before { display: none; }
  .home-journey {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-left: 1.75rem;
    gap: 0;
  }
  .home-journey__road {
    top: 0; bottom: 2rem;
    left: 0.65rem; right: auto;
    width: 6px; height: auto;
    background: repeating-linear-gradient(
      180deg,
      var(--dark-border) 0,
      var(--dark-border) 12px,
      transparent 12px,
      transparent 22px
    );
  }
  .home-journey__road::before {
    inset: 0 -3px;
    background: linear-gradient(180deg, var(--orange), var(--orange-light));
  }
  .home-journey__van { display: none; }
  .home-journey__stop {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding-bottom: 2rem;
  }
  .home-journey__stop:last-child { padding-bottom: 0; }
  .home-journey__pin {
    flex-shrink: 0;
    margin: 0 0 0 -1.75rem;
    width: 46px; height: 46px;
    font-size: 1.1rem;
  }
  .home-zone-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Page Dépannage à distance ── */
.page-hero--remote {
  background:
    radial-gradient(circle at 15% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 48%),
    radial-gradient(ellipse 65% 45% at 88% 18%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 85%, rgba(255, 140, 0, 0.04) 0%, transparent 45%),
    linear-gradient(180deg, var(--dark-soft) 0%, var(--dark) 100%);
}

/* Mockup bureau */
.remote-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}
.remote-showcase__copy h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  margin: 0.35rem 0 0.85rem;
}
.remote-showcase__copy p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.remote-showcase__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.remote-showcase__points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.remote-showcase__points span {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-pale);
  border-radius: 10px;
  font-size: 1rem;
  flex-shrink: 0;
}

.remote-desktop {
  background: #1a1d24;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.remote-desktop__titlebar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  background: #252830;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.remote-desktop__dots {
  display: flex;
  gap: 5px;
}
.remote-desktop__dots i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}
.remote-desktop__dots i:nth-child(2) { background: #febc2e; }
.remote-desktop__dots i:nth-child(3) { background: #28c840; }
.remote-desktop__title { flex: 1; font-weight: 600; }
.remote-desktop__live {
  color: #28c840;
  font-weight: 700;
  animation: remoteLiveBlink 2s ease-in-out infinite;
}
@keyframes remoteLiveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.remote-desktop__screen {
  display: grid;
  grid-template-columns: 48px 1fr;
  min-height: 200px;
  background: linear-gradient(160deg, #2d3140 0%, #1e2128 100%);
}
.remote-desktop__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  background: rgba(0, 0, 0, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.remote-desktop__sidebar span {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}
.remote-desktop__sidebar span:first-child {
  background: rgba(255, 140, 0, 0.25);
  border: 1px solid rgba(255, 140, 0, 0.4);
}
.remote-desktop__main {
  position: relative;
  padding: 1.25rem;
}
.remote-desktop__window {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 1rem;
  max-width: 220px;
}
.remote-desktop__msg {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
}
.remote-desktop__progress {
  height: 6px;
  background: var(--dark-border);
  border-radius: 99px;
  overflow: hidden;
}
.remote-desktop__progress span {
  display: block;
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: inherit;
  animation: remoteProgress 2.5s ease-in-out infinite;
}
@keyframes remoteProgress {
  0%, 100% { width: 45%; }
  50% { width: 85%; }
}
.remote-desktop__cursor {
  position: absolute;
  top: 55%;
  left: 58%;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff' stroke='%23000' stroke-width='1'%3E%3Cpath d='M5 3l14 9-6 1-3 7z'/%3E%3C/svg%3E") center/contain no-repeat;
  animation: remoteCursor 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}
@keyframes remoteCursor {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-40px, 20px); }
  50% { transform: translate(-20px, -15px); }
  75% { transform: translate(25px, 10px); }
}
.remote-desktop__status {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.85rem;
  background: #252830;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Tags problèmes */
.remote-issues {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.remote-issues__group {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.15rem;
  transition: var(--transition);
}
.remote-issues__group:hover {
  border-color: rgba(255, 140, 0, 0.35);
}
.remote-issues__group h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.remote-issues__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.remote-issues__tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--dark-soft);
  border: 1px solid var(--dark-border);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  transition: var(--transition);
}
.remote-issues__tags span:hover {
  border-color: var(--orange);
  color: var(--orange-light);
  background: rgba(255, 140, 0, 0.08);
}
.remote-issues__note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Pipeline vertical */
.remote-pipeline {
  max-width: 640px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 1.25rem;
  row-gap: 2rem;
  position: relative;
}
.remote-pipeline::before {
  content: '';
  position: absolute;
  top: var(--remote-pipe-top, 24px);
  left: var(--remote-pipe-left, 22.5px);
  width: 3px;
  height: var(--remote-pipe-height, calc(100% - 48px));
  background: var(--dark-border);
  border-radius: 99px;
  z-index: 0;
}
.remote-pipeline::after {
  content: '';
  position: absolute;
  top: var(--remote-pipe-top, 24px);
  left: var(--remote-pipe-left, 22.5px);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--orange), var(--orange-light));
  border-radius: 99px;
  z-index: 1;
  animation: remotePipeGrow 1.4s ease-out forwards;
}
@keyframes remotePipeGrow {
  to { height: var(--remote-pipe-height, calc(100% - 48px)); }
}
.remote-pipeline__step {
  display: contents;
}
.remote-pipeline__node {
  grid-column: 1;
  justify-self: center;
  align-self: center;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--dark-soft);
  border: 3px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--dark-soft);
}
.remote-pipeline__node-label {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
}
.remote-pipeline__body {
  grid-column: 2;
  align-self: center;
  flex: 1;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  transition: var(--transition);
}
.remote-pipeline__body:hover {
  border-color: rgba(255, 140, 0, 0.4);
}
.remote-pipeline__body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.remote-pipeline__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.remote-pipeline__body strong { color: var(--orange-light); }

/* Forfaits remote */
.remote-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.remote-pricing__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--dark-card);
  border: 2px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.remote-pricing__card:hover {
  border-color: rgba(255, 140, 0, 0.4);
  transform: translateY(-4px);
}
.remote-pricing__card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 40px rgba(255, 140, 0, 0.12);
}
.remote-pricing__card--featured:hover {
  transform: translateY(-4px);
}
.remote-pricing__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--orange);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.remote-pricing__duration {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.remote-pricing__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin: 0.5rem 0 1rem;
}
.remote-pricing__price small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey);
}
.remote-pricing__card ul {
  flex: 1;
  text-align: left;
  margin: 0 0 1.5rem;
  list-style: none;
  padding: 0;
}
.remote-pricing__card .btn {
  margin-top: auto;
}
.remote-pricing__card li {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 0.38rem 0 0.38rem 1.25rem;
  position: relative;
}
.remote-pricing__card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

/* Confiance */
.remote-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 920px;
  margin-inline: auto;
}
.remote-trust__item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.remote-trust__item:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.remote-trust__icon {
  display: block;
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}
.remote-trust__item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.remote-trust__item p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 960px) {
  .remote-showcase { grid-template-columns: 1fr; }
  .remote-desktop { max-width: 480px; margin-inline: auto; }
  .remote-issues { grid-template-columns: 1fr; }
  .remote-pricing { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .remote-trust { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .home-journey__van,
  .home-journey__road::before,
  .home-orbit__ring,
  .remote-desktop__cursor,
  .remote-desktop__progress span,
  .remote-desktop__live,
  .remote-pipeline::after {
    height: var(--remote-pipe-height, calc(100% - 48px));
    animation: none;
  }
}

/* ── Page Alarme & Télésurveillance ── */
.page-hero--alarm {
  background:
    radial-gradient(ellipse 70% 55% at 20% 30%, rgba(255, 140, 0, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(100, 149, 237, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, var(--dark-soft) 0%, var(--dark) 100%);
}
.page-hero--entreprise {
  background:
    radial-gradient(ellipse 65% 50% at 15% 25%, rgba(255, 140, 0, 0.09) 0%, transparent 55%),
    linear-gradient(180deg, var(--dark-soft) 0%, var(--dark) 100%);
}
.page-hero--entreprise .hero-stats { margin-top: 1.5rem; }

.alarm-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-top: 1.75rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.03) 100%);
  border: 1px solid rgba(255, 140, 0, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.alarm-hero-cta__phone {
  border-color: rgba(255, 140, 0, 0.55);
  color: var(--orange-light);
}
.alarm-hero-cta__phone:hover,
.alarm-hero-cta__phone:focus-visible {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.alarm-hero-cta__note {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.alarm-showcase {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}
.alarm-showcase__copy h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  margin: 0.35rem 0 0.85rem;
}
.alarm-showcase__copy p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.alarm-showcase__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.alarm-showcase__points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.alarm-showcase__points span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-pale);
  border-radius: 10px;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Orbite équipements alarme */
.alarm-orbit {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}
.alarm-orbit__stage {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  --orbit-r: 36%;
}
.alarm-orbit__canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.alarm-orbit__ring {
  position: absolute;
  inset: calc(50% - var(--orbit-r));
  border: 2px dashed rgba(255, 140, 0, 0.26);
  border-radius: 50%;
}
.alarm-orbit__spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: var(--orbit-r);
  background: linear-gradient(180deg, rgba(255, 140, 0, 0.5), rgba(255, 140, 0, 0.04));
  transform-origin: top center;
  transform: translate(-50%, 0) rotate(calc(var(--orbit-a) + 90deg));
  opacity: 0.7;
}
.alarm-orbit__spoke--1 { --orbit-a: 90deg; }
.alarm-orbit__spoke--2 { --orbit-a: 30deg; }
.alarm-orbit__spoke--3 { --orbit-a: -30deg; }
.alarm-orbit__spoke--4 { --orbit-a: -90deg; }
.alarm-orbit__spoke--5 { --orbit-a: -150deg; }
.alarm-orbit__spoke--6 { --orbit-a: 150deg; }
.alarm-orbit__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 140, 0, 0.1), 0 8px 28px rgba(255, 140, 0, 0.22);
  z-index: 2;
}
.alarm-orbit__hub-icon { font-size: 1.6rem; line-height: 1; }
.alarm-orbit__hub-label {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
}
.alarm-orbit__nodes {
  position: absolute;
  inset: 0;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
}
.alarm-orbit__node {
  position: absolute;
  width: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  left: calc(50% + var(--orbit-r) * cos(var(--orbit-a)));
  top: calc(50% - var(--orbit-r) * sin(var(--orbit-a)));
  transform: translate(-50%, -50%);
}
.alarm-orbit__node--1 { --orbit-a: 90deg; }
.alarm-orbit__node--2 { --orbit-a: 30deg; }
.alarm-orbit__node--3 { --orbit-a: -30deg; }
.alarm-orbit__node--4 { --orbit-a: -90deg; }
.alarm-orbit__node--5 { --orbit-a: -150deg; }
.alarm-orbit__node--6 { --orbit-a: 150deg; }
@supports not (top: calc(50% - 1% * sin(90deg))) {
  .alarm-orbit__node--1 { left: 50%;   top: 12%; }
  .alarm-orbit__node--2 { left: 84%;   top: 31%; }
  .alarm-orbit__node--3 { left: 84%;   top: 69%; }
  .alarm-orbit__node--4 { left: 50%;   top: 88%; }
  .alarm-orbit__node--5 { left: 16%;   top: 69%; }
  .alarm-orbit__node--6 { left: 16%;   top: 31%; }
}
.alarm-orbit__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 1.35rem;
  line-height: 1;
  background: var(--dark-card);
  border: 1px solid rgba(255, 140, 0, 0.32);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.alarm-orbit__node:hover .alarm-orbit__chip {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.15);
}
.alarm-orbit__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.card__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
  margin-bottom: 1rem;
}
.card__brand img {
  display: block;
  width: auto;
  max-width: 112px;
  max-height: 28px;
  object-fit: contain;
}

/* Modes alarme / télésurveillance */
.alarm-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 880px;
  margin-inline: auto;
}
.alarm-mode {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
}
.alarm-mode:hover {
  border-color: rgba(255, 140, 0, 0.35);
  transform: translateY(-3px);
}
.alarm-mode--featured {
  border-color: rgba(255, 140, 0, 0.45);
  background: linear-gradient(155deg, rgba(255, 140, 0, 0.07) 0%, var(--dark-card) 55%);
  box-shadow: 0 8px 28px rgba(255, 140, 0, 0.08);
}
.alarm-mode__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.55rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
}
.alarm-mode__icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.alarm-mode h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange-light);
  margin-bottom: 0.55rem;
}
.alarm-mode p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.alarm-mode__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.alarm-mode__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}
.alarm-mode__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.alarm-mode__note {
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--dark-border);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.alarm-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.alarm-pillar {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  text-align: center;
  transition: var(--transition);
}
.alarm-pillar:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(255, 140, 0, 0.1);
}
.alarm-pillar__icon {
  display: block;
  font-size: 2.25rem;
  margin-bottom: 0.85rem;
}
.alarm-pillar h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange-light);
  margin-bottom: 0.5rem;
}
.alarm-pillar p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .alarm-showcase { grid-template-columns: 1fr; gap: 2rem; }
  .alarm-orbit { max-width: 360px; }
  .alarm-pillars { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .alarm-modes { grid-template-columns: 1fr; max-width: 440px; }
}
@media (max-width: 520px) {
  .alarm-orbit__stage {
    width: 100%;
    max-width: 320px;
    aspect-ratio: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .alarm-orbit__canvas { display: none; }
  .alarm-orbit__nodes {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .alarm-orbit__node {
    position: static;
    width: auto;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    transform: none;
    text-align: left;
  }
  .alarm-orbit__chip {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .alarm-orbit__label { font-size: 0.82rem; }
  .alarm-hero-cta { padding: 1.1rem 1.15rem; }
  .alarm-hero-cta .btn--lg { width: 100%; justify-content: center; }
}

/* ── Bannière cross-link professionnels (pages alarme / domicile) ── */
.pro-crosslink-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.09) 0%, rgba(255, 140, 0, 0.03) 100%);
  border: 1px solid rgba(255, 140, 0, 0.28);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}
.pro-crosslink-banner__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 12px;
}
.pro-crosslink-banner__body {
  flex: 1;
  min-width: 0;
}
.pro-crosslink-banner__body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.pro-crosslink-banner__body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 640px) {
  /* Bannière pro : section enveloppante réduite */
  section[aria-label="Professionnels"].section {
    padding-block: 1.5rem;
  }
  .pro-crosslink-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1.1rem 1rem;
    text-align: left;
  }
  /* Ligne icône + titre sur la même rangée */
  .pro-crosslink-banner__icon {
    display: none;
  }
  .pro-crosslink-banner__body strong {
    font-size: 0.92rem;
    line-height: 1.35;
  }
  .pro-crosslink-banner__body p {
    font-size: 0.82rem;
    margin-top: 0.3rem;
  }
  .pro-crosslink-banner .btn {
    width: 100%;
    text-align: center;
    padding-block: 0.65rem;
    font-size: 0.9rem;
  }
}

/* ══════════════════════════════════════════════════════
   Page Services Professionnels
   ══════════════════════════════════════════════════════ */

/* ── Hero Pro ── */
.page-hero--pro {
  background:
    radial-gradient(ellipse 60% 50% at 5% 20%, rgba(255, 140, 0, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 95% 80%, rgba(30, 60, 120, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(255, 140, 0, 0.04) 0%, transparent 60%),
    linear-gradient(160deg, var(--dark-soft) 0%, var(--dark) 100%);
  overflow: hidden;
}

.pro-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.1rem;
  animation: pro-badge-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes pro-badge-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.9); }
  to   { opacity: 1; transform: none; }
}
.pro-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.6);
  animation: pro-dot-pulse 2s ease-in-out infinite;
}
@keyframes pro-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(255, 140, 0, 0); }
}

/* CTA bloc hero */
.pro-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-top: 1.75rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.03) 100%);
  border: 1px solid rgba(255, 140, 0, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.pro-hero-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.pro-hero-cta__phone svg {
  animation: pro-phone-ring 3s ease-in-out infinite;
  transform-origin: center bottom;
}
@keyframes pro-phone-ring {
  0%, 80%, 100% { transform: rotate(0); }
  85% { transform: rotate(-12deg); }
  90% { transform: rotate(12deg); }
  95% { transform: rotate(-8deg); }
}
.pro-hero-cta__note {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pro-hero-cta__note span::before {
  color: var(--orange);
  margin-right: 0.25em;
}

.pro-section--tight-bottom { padding-bottom: 2rem; }
.pro-section--tight-top    { padding-top: 2rem; }

/* ── Deux approches ── */
.pro-approaches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.pro-approach {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pro-approach:hover {
  border-color: rgba(255, 140, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}
.pro-approach--featured {
  border-color: rgba(255, 140, 0, 0.4);
  background: linear-gradient(160deg, rgba(255, 140, 0, 0.08) 0%, var(--dark-card) 50%);
}
.pro-approach--featured:hover { border-color: var(--orange); }
.pro-approach__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  align-self: flex-start;
}
.pro-approach__tag--orange {
  color: var(--orange-light);
  background: rgba(255, 140, 0, 0.12);
}
.pro-approach__icon {
  font-size: 2.2rem;
}
.pro-approach h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text);
  margin: 0;
}
.pro-approach > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.pro-approach__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.pro-approach__list li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pro-approach__list li::first-letter { color: var(--orange); }
.pro-approach__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-border);
}
.pro-approach__amount {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--orange-light);
}
.pro-approach__unit {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}
.pro-approach__cta { margin-top: 0.25rem; text-align: center; justify-content: center; }

/* ── Grille de tarifs ── */
.pro-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
}
.pro-pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pro-pricing-card:hover {
  border-color: rgba(255, 140, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}
.pro-pricing-card--featured {
  border-color: rgba(255, 140, 0, 0.5);
  background: linear-gradient(160deg, rgba(255, 140, 0, 0.1) 0%, var(--dark-card) 60%);
  transform: scale(1.02);
}
.pro-pricing-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
  border-color: var(--orange);
}
.pro-pricing-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.85rem;
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
}
.pro-pricing-card__head h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 0.3rem;
}
.pro-pricing-card__target {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pro-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--dark-border);
}
.pro-pricing-card__amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange-light);
  line-height: 1;
}
.pro-pricing-card__currency {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange-light);
  align-self: flex-start;
  margin-top: 0.4rem;
}
.pro-pricing-card__period {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 0.2rem;
}
.pro-pricing-card__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin: -0.5rem 0 0;
}
.pro-pricing-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1 1 auto;
}
.pro-pricing-card__features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.45;
}
.pro-pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.82rem;
}
.pro-pricing-card__postes {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-light);
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  align-self: flex-start;
}
.pro-pricing-card__postes::before {
  content: '🖥';
  font-size: 0.75rem;
}
.pro-pricing-card__delay {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: auto;
}
.pro-pricing-card__delay strong {
  color: var(--text);
  font-weight: 900;
}
.pro-pricing-card__delay--fast {
  background: rgba(255, 140, 0, 0.08);
  border-color: rgba(255, 140, 0, 0.22);
  color: var(--orange-light);
}
.pro-pricing-card__delay--fast strong { color: var(--orange-light); }
.pro-pricing-card__delay--urgent {
  background: rgba(255, 80, 0, 0.1);
  border-color: rgba(255, 80, 0, 0.3);
  color: #ff9966;
}
.pro-pricing-card__delay--urgent strong { color: #ff7744; }
.pro-pricing-card__delay-icon { font-size: 1rem; flex-shrink: 0; }
.pro-pricing-card__cta {
  margin-top: 0.5rem;
  text-align: center;
  justify-content: center;
}

/* ── Services à la carte ── */
.pro-extras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.pro-extra {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}
.pro-extra:hover {
  border-color: rgba(255, 140, 0, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.pro-extra--featured {
  border-color: rgba(255, 140, 0, 0.35);
  grid-column: span 1;
}
.pro-extra__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
}
.pro-extra__icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 14px;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.pro-extra:hover .pro-extra__icon {
  background: rgba(255, 140, 0, 0.18);
  transform: scale(1.08) rotate(-3deg);
}
.pro-extra__body { flex: 1; min-width: 0; }
.pro-extra__body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.45rem;
}
.pro-extra__body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.pro-extra__price {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange-light);
}
.pro-extra__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.3rem 0 0;
  font-style: italic;
}
.pro-extra__price small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 0.3rem;
}
.pro-extra__sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.pro-extra--link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.pro-extra__arrow {
  display: inline-block;
  margin-left: 0.3rem;
  transition: transform 0.2s;
}
.pro-extra--link:hover .pro-extra__arrow { transform: translateX(4px); }

/* ── Responsive nouveaux blocs ── */
@media (max-width: 1100px) {
  .pro-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .pro-approaches { grid-template-columns: 1fr; }
  .pro-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pro-pricing-card--featured { transform: none; }
  .pro-pricing-card--featured:hover { transform: translateY(-4px); }
  .pro-extras { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pro-pricing-grid { grid-template-columns: 1fr; }
}

/* ── Barre de réassurance ── */
@media (max-width: 640px) {
  .pro-trust-bar { display: none; }
}
.pro-trust-bar {
  background: linear-gradient(90deg, rgba(255, 140, 0, 0.07) 0%, rgba(255, 140, 0, 0.03) 50%, rgba(255, 140, 0, 0.07) 100%);
  border-top: 1px solid rgba(255, 140, 0, 0.12);
  border-bottom: 1px solid rgba(255, 140, 0, 0.12);
  padding: 1.5rem 0;
}
.pro-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.pro-trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1 1 180px;
  min-width: 0;
}
.pro-trust-bar__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 140, 0, 0.35));
}
.pro-trust-bar__item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.pro-trust-bar__item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.pro-trust-bar__sep {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ── Profils pro ── */
.pro-profiles-section .container {
  max-width: 1440px;
}
.pro-profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.pro-profile-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pro-profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse 80% 60% at 10% 0%, rgba(255, 140, 0, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.pro-profile-card:hover::before { opacity: 1; }
.pro-profile-card:hover {
  border-color: rgba(255, 140, 0, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 140, 0, 0.1);
}
.pro-profile-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pro-profile-card__icon {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 14px;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.pro-profile-card:hover .pro-profile-card__icon {
  background: rgba(255, 140, 0, 0.18);
  transform: scale(1.08) rotate(-3deg);
}
.pro-profile-card__head h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.2rem;
}
.pro-profile-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.pro-profile-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.pro-profile-card__list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.pro-profile-card__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}
.pro-profile-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-light);
  margin-top: auto;
  transition: color 0.2s, gap 0.2s;
}
.pro-profile-card__cta:hover {
  color: var(--orange);
  gap: 0.5rem;
}

/* ── Situations courantes ── */
.pro-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.pro-scenario {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  cursor: default;
}
.pro-scenario::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.pro-scenario:hover::after { transform: scaleX(1); }
.pro-scenario:hover {
  border-color: rgba(255, 140, 0, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.pro-scenario__num {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 900;
  color: rgba(255, 140, 0, 0.2);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.pro-scenario:hover .pro-scenario__num { color: rgba(255, 140, 0, 0.5); }
.pro-scenario__icon {
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 0, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.pro-scenario:hover .pro-scenario__icon { background: rgba(255, 140, 0, 0.16); }
.pro-scenario__body h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.35rem;
  padding-right: 2.5rem;
}
.pro-scenario__body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.pro-scenarios__note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1.75rem;
}
.pro-scenarios__note a {
  color: var(--orange-light);
  font-weight: 700;
  margin-left: 0.25em;
  transition: color 0.2s;
}
.pro-scenarios__note a:hover { color: var(--orange); }
@media (max-width: 640px) {
  .pro-scenarios__note a {
    display: block;
    margin-left: 0;
    margin-top: 0.3em;
  }
}

/* ── Étapes (process) ── */
.pro-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 0;
  margin-top: 2rem;
  position: relative;
  align-items: stretch;
}
.pro-steps::before {
  content: '';
  position: absolute;
  top: 2.1rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 140, 0, 0.3) 15%,
    rgba(255, 140, 0, 0.5) 50%,
    rgba(255, 140, 0, 0.3) 85%,
    transparent 100%
  );
  z-index: 0;
}
.pro-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
  height: 100%;
}
.pro-step__connector { display: none; }
.pro-step__num {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: var(--dark-card);
  border: 2px solid rgba(255, 140, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 6px rgba(255, 140, 0, 0.06);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
}
.pro-step:hover .pro-step__num {
  background: rgba(255, 140, 0, 0.12);
  border-color: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 140, 0, 0.08), 0 0 20px rgba(255, 140, 0, 0.2);
}
.pro-step__body {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pro-step:hover .pro-step__body {
  border-color: rgba(255, 140, 0, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.pro-step__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.pro-step__body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.6rem;
}
.pro-step__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Inclus ── */
.pro-includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.pro-include {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}
.pro-include:hover {
  border-color: rgba(255, 140, 0, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}
.pro-include__check {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.12);
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.pro-include:hover .pro-include__check { background: rgba(255, 140, 0, 0.22); }
.pro-include > div strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.pro-include > div p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── FAQ Pro ── */
.pro-faq {
  max-width: 780px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pro-faq__item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s;
}
.pro-faq__item[open] {
  border-color: rgba(255, 140, 0, 0.35);
}
.pro-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
  user-select: none;
}
.pro-faq__question::-webkit-details-marker { display: none; }
.pro-faq__question:hover { background: rgba(255, 140, 0, 0.05); }
.pro-faq__item[open] .pro-faq__question { color: var(--orange-light); }
.pro-faq__arrow {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}
.pro-faq__arrow::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--orange-light);
  border-bottom: 2px solid var(--orange-light);
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.3s;
}
.pro-faq__item[open] .pro-faq__arrow {
  background: rgba(255, 140, 0, 0.18);
  transform: rotate(180deg);
}
.pro-faq__answer {
  padding: 0 1.35rem 1.25rem;
  animation: pro-faq-open 0.25s ease both;
}
@keyframes pro-faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.pro-faq__answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.pro-faq__answer a { color: var(--orange-light); font-weight: 600; }
.pro-faq__answer a:hover { color: var(--orange); }

/* ── CTA Final ── */
.pro-final-cta {
  padding: 3rem 0 4rem;
}
.pro-final-cta__card {
  position: relative;
  background: var(--dark-soft);
  border: 1px solid rgba(255, 140, 0, 0.28);
  border-radius: var(--radius-lg);
  padding: 3rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.pro-final-cta__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at -10% 50%, rgba(255, 140, 0, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 110% 50%, rgba(30, 60, 120, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.pro-final-cta__content { position: relative; z-index: 1; }
.pro-final-cta__content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--text);
  margin: 0.4rem 0 0.85rem;
}
.pro-final-cta__content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 0.5rem;
}
.pro-final-cta__sub {
  font-size: 0.82rem !important;
  font-weight: 600;
  opacity: 0.7;
}
.pro-final-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}
.pro-final-cta__phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .pro-profiles {
    grid-template-columns: 1fr;
  }
  .pro-scenarios {
    grid-template-columns: repeat(2, 1fr);
  }
  .pro-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pro-steps::before { display: none; }
  .pro-step {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
    padding-block: 0.6rem;
    position: static;
  }
  .pro-step::after { display: none; }
  /* Colonne gauche : ligne entrante (flex:1) + cercle + ligne sortante (flex:1) */
  .pro-step__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 3rem;
  }
  /* Ligne entrante — flex:1 sur TOUS, transparent sur le 1er */
  .pro-step__left::before {
    content: '';
    flex: 1;
    width: 2px;
    background: rgba(255, 140, 0, 0.45);
  }
  .pro-step:first-child .pro-step__left::before {
    background: transparent;
  }
  .pro-step__num {
    width: 3rem;
    height: 3rem;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  /* Ligne sortante — flex:1 sur TOUS, transparent sur le dernier */
  .pro-step__connector {
    display: block !important;
    flex: 1;
    width: 2px;
    background: rgba(255, 140, 0, 0.45);
  }
  .pro-step:last-child .pro-step__connector {
    background: transparent !important;
  }
  .pro-step__body {
    flex: 1;
    align-self: center;
    text-align: left;
  }
  .pro-includes {
    grid-template-columns: repeat(2, 1fr);
  }
  .pro-final-cta__card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
  .pro-final-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .pro-trust-bar__sep { display: none; }
}
@media (max-width: 600px) {
  .pro-scenarios {
    grid-template-columns: 1fr;
  }
  .pro-includes {
    grid-template-columns: 1fr;
  }
  .pro-hero-cta {
    padding: 1rem 1.1rem;
  }
  .pro-hero-cta .btn--lg {
    width: 100%;
    justify-content: center;
  }
  .pro-trust-bar__inner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .pro-final-cta__actions { flex-direction: column; }
  .pro-final-cta__actions .btn--lg { width: 100%; justify-content: center; }
}

/* ── Popup congés annuels (client-side, sans impact SEO) ── */
body.vacation-notice-open { overflow: hidden; }
.vacation-notice {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
}
.vacation-notice--visible { pointer-events: auto; }
.vacation-notice__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.72);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.vacation-notice--visible .vacation-notice__backdrop { opacity: 1; }
.vacation-notice__panel {
  position: relative;
  width: min(100%, 28rem);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 140, 0, 0.35);
  background: linear-gradient(165deg, var(--dark-soft) 0%, var(--dark-card) 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.vacation-notice--visible .vacation-notice__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.vacation-notice__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.vacation-notice__close:hover {
  color: var(--text);
  border-color: rgba(255, 140, 0, 0.45);
  background: rgba(255, 140, 0, 0.08);
}
.vacation-notice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.12);
  color: var(--orange-light);
}
.vacation-notice__title {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  color: var(--text);
}
.vacation-notice__period {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange-light);
}
.vacation-notice__message,
.vacation-notice__reopen,
.vacation-notice__hint {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.vacation-notice__reopen {
  color: var(--text);
  font-weight: 600;
}
.vacation-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.1rem;
}
.vacation-notice__actions .btn {
  min-width: 8.5rem;
}
@media (max-width: 520px) {
  .vacation-notice__actions {
    flex-direction: column;
  }
  .vacation-notice__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vacation-notice__backdrop,
  .vacation-notice__panel {
    transition: none;
  }
  .vacation-notice__panel {
    transform: none;
    opacity: 1;
  }
}
