/* ==========================================================================
   O'PAREBRISE LISSIEU — Design System & Premium UI
   ========================================================================== */

:root {
  /* Colors — Brand */
  --color-primary: #e5484d;
  --color-primary-hover: #cc3e42;
  --color-primary-subtle: rgba(229, 72, 77, 0.08);
  --color-secondary: #15171a;
  --color-secondary-hover: #202327;
  --color-secondary-subtle: rgba(21, 23, 26, 0.06);
  --color-accent: #8b93a3;

  /* Neutrals */
  --color-white: #ffffff;
  --color-bg: #f6f7f9;
  --color-bg-muted: #eef0f3;
  --color-bg-elevated: #ffffff;
  --color-border: #dde1e7;
  --color-border-strong: #c9ced6;
  --color-text: #16181d;
  --color-text-muted: #596173;
  --color-text-subtle: #7f8797;
  --color-text-inverse: #ffffff;
  --color-text-inverse-muted: rgba(255, 255, 255, 0.72);

  /* Semantic */
  --color-success: #15803d;
  --color-success-subtle: rgba(21, 128, 61, 0.1);
  --color-warning: #b45309;
  --color-warning-subtle: rgba(180, 83, 9, 0.1);
  --color-error: #b91c1c;
  --color-error-subtle: rgba(185, 28, 28, 0.1);

  /* Legacy aliases */
  --red: var(--color-primary);
  --red-dark: var(--color-primary-hover);
  --navy: var(--color-secondary);
  --navy-light: var(--color-secondary-hover);
  --gray-50: var(--color-bg-muted);
  --gray-100: #eef1f4;
  --gray-200: var(--color-border);
  --gray-400: var(--color-text-subtle);
  --gray-600: var(--color-text-muted);
  --gray-800: var(--color-text);
  --white: var(--color-white);

  /* Spacing — 8px grid */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-9: 72px;
  --space-10: 80px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 9999px;
  --radius: var(--radius-md);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(14, 18, 24, 0.04);
  --shadow-sm: 0 6px 20px rgba(14, 18, 24, 0.06);
  --shadow-md: 0 12px 28px rgba(14, 18, 24, 0.08);
  --shadow-lg: 0 20px 44px rgba(14, 18, 24, 0.12);
  --shadow-xl: 0 32px 72px rgba(14, 18, 24, 0.16);
  --shadow: var(--shadow-md);
  --shadow-lg-legacy: var(--shadow-lg);

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: clamp(2rem, 4.5vw, 3rem);

  --leading-tight: 1.2;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --tracking-tight: -0.02em;
  --tracking-wide: 0.06em;
  --tracking-wider: 0.1em;

  /* Motion */
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 350ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: var(--duration-base) var(--ease-out);

  /* Layout */
  --container-max: 1160px;
  --header-height: 88px;
  --topbar-height: 36px;

  /* Focus */
  --focus-ring: 0 0 0 3px rgba(196, 30, 46, 0.25);
  --focus-ring-offset: 2px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: var(--leading-normal);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  font-weight: 700;
  color: var(--color-secondary);
}

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

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

button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: var(--focus-ring-offset);
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-2);
  z-index: 200;
  padding: var(--space-1) var(--space-2);
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  top: var(--space-2);
}

.container {
  width: min(var(--container-max), calc(100% - var(--space-4)));
  margin-inline: auto;
}

/* ==========================================================================
   Components — Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 12px var(--space-3);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    opacity var(--duration-base) var(--ease-out);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--red {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn--red:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}

.btn--red:focus-visible {
  box-shadow: var(--focus-ring);
}

.btn--outline-red {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border-strong);
}

.btn--outline-red:hover {
  background: var(--color-primary-subtle);
  border-color: var(--color-primary);
  color: var(--color-primary-hover);
}

.btn--on-dark {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--on-dark:hover {
  background: rgba(229, 72, 77, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}

.btn--sm {
  padding: 10px var(--space-2);
  font-size: var(--text-xs);
}

.btn--full {
  width: 100%;
}

/* ==========================================================================
   Components — Cards & Badges
   ========================================================================== */

.card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition:
    border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

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

.section__tag,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  border-radius: var(--radius-full);
  border: 1px solid rgba(229, 72, 77, 0.22);
  margin-bottom: var(--space-2);
}

.section__intro h2 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  margin-bottom: var(--space-2);
}

.section__intro p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.section__intro--bold {
  font-weight: 600;
  color: var(--color-secondary) !important;
}

/* ==========================================================================
   Components — Form
   ========================================================================== */

.form-group {
  margin-bottom: var(--space-2);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-white);
  transition:
    border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-subtle);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--color-border-strong);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--focus-ring);
}

.form-note {
  text-align: center;
  font-size: var(--text-sm);
  margin-top: var(--space-2);
  min-height: 1.4em;
}

.form-note.success {
  color: var(--color-success);
}

.form-note.error {
  color: #c41e3a;
}

/* ==========================================================================
   Scroll Reveal & FX 2026
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-scale {
  transform: translateY(28px) scale(0.94);
}

.reveal-left {
  transform: translateX(-32px);
  filter: blur(6px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) translateX(0);
  filter: blur(0);
}

.text-gradient {
  background: linear-gradient(
    120deg,
    #ff8a8e 0%,
    #e5484d 35%,
    #c41e3a 55%,
    #15171a 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fx-gradient-flow 6s ease-in-out infinite;
}

@keyframes fx-gradient-flow {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes fx-rise {
  from {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fx-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@keyframes fx-border-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fx-fade-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero.fx-loaded .hero__eyebrow {
  animation: fx-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero.fx-loaded h1 {
  animation: fx-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  opacity: 0;
}

.hero.fx-loaded .hero__sub {
  animation: fx-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  opacity: 0;
}

.hero.fx-loaded .hero__text > .btn--red {
  animation: fx-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
  opacity: 0;
}

.hero.fx-loaded .hero__cta-card {
  animation: fx-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
  opacity: 0;
}

.btn--red {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn--red::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn--red:hover::after {
  transform: translateX(120%);
}

.services-cta-btn {
  position: relative;
  overflow: hidden;
}

.services-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.services-cta-btn:hover::after {
  transform: translateX(120%);
}

.service-card__overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 62%
  );
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}

.service-card:hover .service-card__overlay::before {
  transform: translateX(120%) skewX(-12deg);
}

.intervention-card__overlay::before,
.promo-card__shine {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intervention-card__overlay::before {
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.intervention-card:hover .intervention-card__overlay::before {
  transform: translateX(120%);
}

.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--fx-x, 50%) var(--fx-y, 50%),
    rgba(229, 72, 77, 0.22) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.promo-card:hover::before {
  opacity: 1;
}

.promo-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(229, 72, 77, 0.55),
    rgba(21, 23, 26, 0.4),
    rgba(229, 72, 77, 0.35)
  );
  background-size: 300% 300%;
  animation: fx-border-flow 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
  opacity: 0.55;
}

.promo-card:hover::after {
  opacity: 1;
}

.faq__item[open] .faq__answer {
  animation: fx-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.process-card__body,
.intervention-card,
.benefit-card,
.garantie-stat {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.city-pill {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.city-pill:hover {
  transform: translateY(-4px) scale(1.02);
}

/* ==========================================================================
   Topbar
   ========================================================================== */

.topbar {
  background: var(--color-secondary);
  color: var(--color-text-inverse-muted);
  font-size: var(--text-xs);
  padding: var(--space-1) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.topbar strong {
  color: var(--color-white);
  font-weight: 600;
}

.topbar__phone {
  color: var(--color-white);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  padding: 2px 0;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.topbar__phone:hover {
  opacity: 0.85;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-3);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  height: 64px;
  width: auto;
  max-width: min(300px, 58vw);
  object-fit: contain;
  display: block;
}

.logo__img--footer {
  height: 96px;
  max-width: 420px;
  margin-bottom: var(--space-2);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav a:not(.btn) {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 6px 2px;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width var(--duration-base) var(--ease-out);
}

.nav a:not(.btn):hover,
.nav a:not(.btn):focus-visible {
  color: var(--color-secondary);
}

.nav a:not(.btn):hover::after {
  width: 100%;
}

/* Sous-menu Services */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 6px 2px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav-dropdown__toggle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width var(--duration-base) var(--ease-out);
}

.nav-dropdown__toggle:hover,
.nav-dropdown__toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown__toggle,
.nav-dropdown:focus-within .nav-dropdown__toggle {
  color: var(--color-secondary);
}

.nav-dropdown__toggle:hover::after,
.nav-dropdown.is-open .nav-dropdown__toggle::after,
.nav-dropdown:focus-within .nav-dropdown__toggle::after {
  width: 100%;
}

.nav-dropdown__chevron {
  flex-shrink: 0;
  transition: transform var(--duration-fast) var(--ease-out);
}

.nav-dropdown.is-open .nav-dropdown__chevron,
.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown:focus-within .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 280px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    visibility var(--duration-fast);
  z-index: 100;
}

.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition:
    color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.nav-dropdown__menu a::after {
  display: none !important;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  color: var(--color-secondary);
  background: var(--color-bg-muted);
}

.nav-dropdown__all {
  margin-top: 4px;
  border-top: 1px solid var(--color-border);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm) !important;
  color: var(--color-primary) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 8px;
  transition:
    border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out);
}

.nav-toggle:hover {
  background: var(--color-bg-muted);
  border-color: var(--color-border-strong);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
  transition:
    transform var(--duration-base) var(--ease-out),
    opacity var(--duration-base) var(--ease-out);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: center;
  background: url('assets/images/hero.png') center center / cover no-repeat;
  color: var(--color-white);
  padding: var(--space-8) 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(10, 12, 16, 0.82) 0%,
      rgba(10, 12, 16, 0.45) 42%,
      rgba(10, 12, 16, 0.12) 72%,
      rgba(10, 12, 16, 0.05) 100%
    );
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.hero h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.hero h1 span {
  display: inline;
  background: linear-gradient(135deg, #ff8a8e, #e5484d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--color-text-inverse-muted);
  margin-bottom: var(--space-4);
  max-width: 480px;
  line-height: var(--leading-relaxed);
}

.hero__cta-card {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-xl);
  min-width: 300px;
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.hero__cta-card h2 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-secondary);
}

.hero__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  padding: var(--space-1);
  border-radius: var(--radius-md);
  transition: opacity var(--duration-fast) var(--ease-out);
}

.hero__phone:hover {
  opacity: 0.85;
}

.hero__phone svg {
  flex-shrink: 0;
}

.hero__cta-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

.hero__cta-card__addr {
  margin-top: var(--space-1);
  font-weight: 600;
  color: var(--color-secondary);
}

/* ==========================================================================
   Hamon
   ========================================================================== */

.hamon {
  background: var(--color-bg-elevated);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-border);
}

.hamon__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hamon h2 {
  font-size: var(--text-xl);
  margin-bottom: 6px;
}

.hamon p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 640px;
}

.hamon strong {
  color: var(--color-secondary);
  font-weight: 600;
}

/* ==========================================================================
   Benefits
   ========================================================================== */

.benefits {
  position: relative;
  padding: var(--space-8) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #f0f2f6 100%);
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90%, 900px);
  height: 200px;
  background: radial-gradient(ellipse, rgba(229, 72, 77, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.benefits .container {
  position: relative;
  z-index: 1;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.benefit-card {
  position: relative;
  text-align: center;
  padding: var(--space-5) var(--space-3) var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), rgba(229, 72, 77, 0.25));
  opacity: 0.5;
  transition: opacity var(--duration-base) var(--ease-out);
}

.benefit-card:hover {
  border-color: rgba(229, 72, 77, 0.25);
  box-shadow: 0 16px 40px rgba(21, 23, 26, 0.1);
  transform: translateY(-6px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card--highlight {
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  border-color: rgba(229, 72, 77, 0.2);
  box-shadow: 0 8px 28px rgba(229, 72, 77, 0.1);
}

.benefit-card--highlight::before {
  background: linear-gradient(90deg, var(--color-primary), #ff8a8e);
  opacity: 1;
}

.benefit-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-3);
  color: var(--color-primary);
  background: rgba(229, 72, 77, 0.1);
  border: 1px solid rgba(229, 72, 77, 0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:
    background-color var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.benefit-card:hover .benefit-card__icon {
  background: rgba(229, 72, 77, 0.15);
  transform: scale(1.05);
}

.benefit-card__icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-secondary);
  line-height: var(--leading-tight);
}

.benefit-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
  max-width: 240px;
  margin-inline: auto;
}

/* ==========================================================================
   Garanties
   ========================================================================== */

.garanties__stats {
  position: relative;
  background: linear-gradient(165deg, #0f1113 0%, #15171a 45%, #1c2330 100%);
  color: var(--color-white);
  padding: var(--space-9) 0 var(--space-8);
  overflow: hidden;
}

.garanties__stats::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(229, 72, 77, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.garanties__stats::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.garanties__stats .container {
  position: relative;
  z-index: 1;
}

.garanties__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-7);
}

.garanties__intro .section__tag {
  color: var(--color-accent);
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.25);
}

.garanties__intro h2 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.garanties__lead {
  font-size: var(--text-base);
  color: var(--color-text-inverse-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.garanties__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.garantie-stat {
  position: relative;
  text-align: center;
  padding: var(--space-5) var(--space-3) var(--space-4);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition:
    transform var(--duration-base) var(--ease-out),
    background-color var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
  overflow: hidden;
}

.garantie-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), rgba(229, 72, 77, 0.3));
  opacity: 0.6;
  transition: opacity var(--duration-base) var(--ease-out);
}

.garantie-stat:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.garantie-stat:hover::before {
  opacity: 1;
}

.garantie-stat--highlight {
  background: rgba(229, 72, 77, 0.08);
  border-color: rgba(229, 72, 77, 0.25);
}

.garantie-stat--highlight::before {
  background: linear-gradient(90deg, var(--color-primary), #ff8a8e);
  opacity: 1;
}

.garantie-stat__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-3);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(229, 72, 77, 0.12);
  color: #ff8a8e;
  border: 1px solid rgba(229, 72, 77, 0.2);
}

.garantie-stat__number {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-2);
  line-height: 1;
}

.garantie-stat__value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-white);
  background: linear-gradient(180deg, #ffffff 30%, #ff8a8e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.garantie-stat__unit {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0.35em;
  line-height: 1;
}

.garantie-stat h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.garantie-stat p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  max-width: 280px;
  margin-inline: auto;
  line-height: var(--leading-relaxed);
}

.garanties__values {
  background: var(--color-bg-muted);
  padding: var(--space-8) 0 var(--space-9);
  margin-top: calc(var(--space-3) * -1);
}

.valeurs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.valeur-card {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.valeur-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.valeur-card__img {
  height: 200px;
  overflow: hidden;
}

.valeur-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.valeur-card:hover .valeur-card__img img {
  transform: scale(1.04);
}

.valeur-card__body {
  padding: var(--space-3) var(--space-3) var(--space-4);
  border-top: 3px solid var(--color-primary);
}

.valeur-card__body h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-2);
}

.valeur-card__body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: var(--space-9) 0;
}

.section--gray {
  background: var(--color-bg-muted);
}

.section--dark {
  background: var(--color-secondary);
  color: var(--color-white);
}

.section__intro {
  max-width: 680px;
  margin-bottom: var(--space-6);
}

.section__intro--center {
  text-align: center;
  margin-inline: auto;
}

.section--dark .section__intro h2,
.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section__cta {
  text-align: center;
  margin-top: var(--space-5);
}

/* ==========================================================================
   Services — UX 2026
   ========================================================================== */

.services-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #ffffff;
  color: var(--color-secondary);
  overflow: hidden;
}

.services-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.services-section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: services-float 18s ease-in-out infinite;
}

.services-section__orb--1 {
  width: 480px;
  height: 480px;
  top: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(229, 72, 77, 0.2) 0%, transparent 70%);
}

.services-section__orb--2 {
  width: 400px;
  height: 400px;
  top: 20%;
  right: -8%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  animation-delay: -6s;
}

.services-section__orb--3 {
  width: 360px;
  height: 360px;
  bottom: -5%;
  left: 35%;
  background: radial-gradient(circle, rgba(229, 72, 77, 0.1) 0%, transparent 70%);
  animation-delay: -12s;
}

@keyframes services-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.services-section__head,
.services-section__foot,
.services__grid-wrap {
  position: relative;
  z-index: 1;
}

.services-section__intro {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.services-section__intro h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
  line-height: 1.1;
}

.services-section__intro p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.services__grid-wrap {
  width: 100%;
  padding-inline: clamp(12px, 2vw, 24px);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: clamp(12px, 1.5vw, 20px);
  width: 100%;
}

.service-card {
  position: relative;
  grid-column: span 3;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(0,0,0,0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 24px 48px rgba(21, 23, 26, 0.12),
    0 8px 24px rgba(229, 72, 77, 0.08);
}

.service-card:hover::after {
  opacity: 1;
  background: linear-gradient(135deg, rgba(229,72,77,0.6), rgba(167,139,250,0.4), rgba(56,189,248,0.3));
}

.service-card--hero {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 100%;
}

.service-card__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  color: inherit;
  text-decoration: none;
}

.service-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-3);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 12, 16, 0.3) 45%,
    rgba(10, 12, 16, 0.92) 100%
  );
  z-index: 2;
}

.service-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-white);
  background: rgba(229, 72, 77, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(229, 72, 77, 0.4);
}

.service-card__content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px 12px;
  padding: var(--space-2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-card:hover .service-card__content {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card__num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  width: 100%;
}

.service-card h3 {
  flex: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--color-white);
  text-align: left;
  line-height: 1.2;
}

.service-card--hero h3 {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
}

.service-card--hero .service-card__desc {
  width: 100%;
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  text-align: left;
}

.service-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-white);
  background: linear-gradient(135deg, #e5484d, #c41e3a);
  box-shadow: 0 4px 16px rgba(229, 72, 77, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.service-card__action svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__action {
  box-shadow: 0 8px 24px rgba(229, 72, 77, 0.55);
}

.service-card:hover .service-card__action svg {
  transform: translateX(4px);
}

.service-card__img--1 { background-image: url('assets/images/service-parebrise.png'); }
.service-card__img--2 { background-image: url('assets/images/service-vitrage.png'); }
.service-card__img--3 { background-image: url('assets/images/service-optique.png'); }
.service-card__img--4 { background-image: url('assets/images/service-impact.png'); }
.service-card__img--5 { background-image: url('assets/images/service-debosselage.png'); }

.service-card:nth-child(2) { grid-column: 7 / span 3; }
.service-card:nth-child(3) { grid-column: 10 / span 3; }
.service-card:nth-child(4) { grid-column: 7 / span 3; }
.service-card:nth-child(5) { grid-column: 10 / span 3; }

.services-section__foot {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  background: linear-gradient(135deg, #e5484d 0%, #c41e3a 45%, #15171a 100%);
  background-size: 200% 200%;
  box-shadow:
    0 8px 32px rgba(229, 72, 77, 0.35),
    0 4px 16px rgba(21, 23, 26, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.5s ease;
}

.services-cta-btn:hover {
  transform: translateY(-3px);
  background-position: 100% 0;
  box-shadow:
    0 16px 40px rgba(229, 72, 77, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.services-cta-btn svg {
  transition: transform 0.3s ease;
}

.services-cta-btn:hover svg {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .services-section__orb {
    animation: none;
  }
}

/* ==========================================================================
   Interventions — UX 2026
   ========================================================================== */

.interventions-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #ffffff;
  color: var(--color-secondary);
  overflow: hidden;
}

.interventions-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.interventions-section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: services-float 18s ease-in-out infinite;
}

.interventions-section__orb--1 {
  width: 420px;
  height: 420px;
  top: -8%;
  right: -4%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
}

.interventions-section__orb--2 {
  width: 380px;
  height: 380px;
  bottom: -6%;
  left: -5%;
  background: radial-gradient(circle, rgba(229, 72, 77, 0.15) 0%, transparent 70%);
  animation-delay: -8s;
}

.interventions-section__head,
.interventions__grid-wrap {
  position: relative;
  z-index: 1;
}

.interventions-section__intro {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.interventions-section__intro h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
  line-height: 1.1;
}

.interventions-section__intro p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.interventions__grid-wrap {
  width: 100%;
  padding-inline: clamp(12px, 2vw, 24px);
}

.interventions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  width: 100%;
}

.intervention-card {
  position: relative;
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.intervention-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(0,0,0,0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.intervention-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 24px 48px rgba(21, 23, 26, 0.12),
    0 8px 24px rgba(229, 72, 77, 0.08);
}

.intervention-card:hover::after {
  opacity: 1;
  background: linear-gradient(135deg, rgba(229,72,77,0.6), rgba(167,139,250,0.4), rgba(56,189,248,0.3));
}

.intervention-card--highlight {
  box-shadow: 0 12px 32px rgba(229, 72, 77, 0.1);
}

.intervention-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.intervention-card:hover .intervention-card__img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.intervention-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-3);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 12, 16, 0.25) 40%,
    rgba(10, 12, 16, 0.92) 100%
  );
  z-index: 2;
}

.intervention-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-white);
  background: rgba(229, 72, 77, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(229, 72, 77, 0.4);
}

.intervention-card__content {
  padding: var(--space-3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.intervention-card:hover .intervention-card__content {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.intervention-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.intervention-card h3 {
  margin: 0 0 var(--space-1);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-white);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
}

.intervention-card p {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--leading-relaxed);
}

.intervention-card__img--car { background-image: url('assets/images/intervention-pret.png'); }
.intervention-card__img--camera { background-image: url('assets/images/intervention-adas.png'); }
.intervention-card__img--recycle { background-image: url('assets/images/intervention-recyclage.png'); }

@media (prefers-reduced-motion: reduce) {
  .interventions-section__orb {
    animation: none;
  }
}

/* ==========================================================================
   Process — UX 2026
   ========================================================================== */

.process-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 50%, #f8f9fb 100%);
  color: var(--color-secondary);
  overflow: hidden;
}

.process-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.process-section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: services-float 18s ease-in-out infinite;
}

.process-section__orb--1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -6%;
  background: radial-gradient(circle, rgba(229, 72, 77, 0.16) 0%, transparent 70%);
}

.process-section__orb--2 {
  width: 360px;
  height: 360px;
  bottom: 5%;
  right: -4%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.14) 0%, transparent 70%);
  animation-delay: -10s;
}

.process-section__head,
.process__grid-wrap,
.process-section__foot {
  position: relative;
  z-index: 1;
}

.process-section__intro {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.process-section__intro h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
  line-height: 1.1;
}

.process-section__intro p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.process__grid-wrap {
  width: 100%;
  padding-inline: clamp(12px, 2vw, 24px);
  max-width: var(--container-max);
  margin-inline: auto;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  position: relative;
}

.process__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, rgba(229, 72, 77, 0.2), rgba(167, 139, 250, 0.35), rgba(229, 72, 77, 0.2));
  z-index: 0;
  pointer-events: none;
}

.process-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-card:hover {
  transform: translateY(-6px);
}

.process-card__step-ring {
  width: 72px;
  height: 72px;
  margin-bottom: var(--space-3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 8px 24px rgba(21, 23, 26, 0.08),
    0 0 0 4px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card--highlight .process-card__step-ring {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  border-color: rgba(229, 72, 77, 0.25);
  box-shadow:
    0 12px 32px rgba(229, 72, 77, 0.15),
    0 0 0 4px rgba(255, 255, 255, 0.9);
}

.process-card:hover .process-card__step-ring {
  border-color: rgba(229, 72, 77, 0.3);
  box-shadow:
    0 12px 32px rgba(229, 72, 77, 0.12),
    0 0 0 4px rgba(255, 255, 255, 0.95);
}

.process-card__num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  background: linear-gradient(135deg, #e5484d, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-card__body {
  flex: 1;
  width: 100%;
  padding: var(--space-4) var(--space-3);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(21, 23, 26, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card:hover .process-card__body {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(229, 72, 77, 0.15);
  box-shadow: 0 16px 40px rgba(21, 23, 26, 0.1);
}

.process-card--highlight .process-card__body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 248, 0.9) 100%);
  border-color: rgba(229, 72, 77, 0.18);
  box-shadow: 0 12px 36px rgba(229, 72, 77, 0.1);
}

.process-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-2);
  color: var(--color-primary);
  background: rgba(229, 72, 77, 0.1);
  border: 1px solid rgba(229, 72, 77, 0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.process-card:hover .process-card__icon {
  transform: scale(1.06);
  background: rgba(229, 72, 77, 0.14);
}

.process-card__icon svg {
  width: 24px;
  height: 24px;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-secondary);
}

.process-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.process-section__foot {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (prefers-reduced-motion: reduce) {
  .process-section__orb {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .process__grid::before {
    display: none;
  }
}

/* ==========================================================================
   Promo — UX 2026
   ========================================================================== */

.promo-section {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(165deg, #0f1113 0%, #15171a 45%, #1a1f2e 100%);
  color: var(--color-white);
  overflow: hidden;
}

.promo-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.promo-section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: services-float 20s ease-in-out infinite;
}

.promo-section__orb--1 {
  width: 420px;
  height: 420px;
  top: -20%;
  left: 10%;
  background: radial-gradient(circle, rgba(229, 72, 77, 0.5) 0%, transparent 70%);
}

.promo-section__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -25%;
  right: 8%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, transparent 70%);
  animation-delay: -7s;
}

.promo-section__orb--3 {
  width: 280px;
  height: 280px;
  top: 30%;
  right: 30%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  animation-delay: -14s;
}

.promo-section__inner {
  position: relative;
  z-index: 1;
}

.promo-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.promo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(2rem, 5vw, 2.75rem);
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

@supports (grid-template-rows: subgrid) {
  .promo-card {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    row-gap: var(--space-2);
  }

  .promo-card__chips {
    margin-top: 0;
  }
}

.promo-card__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(229, 72, 77, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.promo-card--alt .promo-card__glow {
  background: radial-gradient(ellipse, rgba(21, 23, 26, 0.35) 0%, transparent 70%);
}

.promo-card h2 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4em;
  margin: 0;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-white);
  line-height: 1.2;
}

.promo-card p {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 4.8em;
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--leading-relaxed);
  max-width: 420px;
}

.promo-card__chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-content: flex-start;
  align-self: start;
  min-height: 84px;
  width: 100%;
  padding-top: var(--space-2);
  margin: 0;
  margin-top: auto;
}

.promo-card__chip {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

/* ==========================================================================
   Zone — UX 2026
   ========================================================================== */

.zone-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #ffffff;
  color: var(--color-secondary);
  overflow: hidden;
}

.zone-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.zone-section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: services-float 18s ease-in-out infinite;
}

.zone-section__orb--1 {
  width: 440px;
  height: 440px;
  top: -10%;
  right: -6%;
  background: radial-gradient(circle, rgba(229, 72, 77, 0.14) 0%, transparent 70%);
}

.zone-section__orb--2 {
  width: 380px;
  height: 380px;
  bottom: -8%;
  left: -5%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  animation-delay: -9s;
}

.zone-section__head,
.zone-section__panel-wrap {
  position: relative;
  z-index: 1;
}

.zone-section__intro {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.zone-section__intro h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
  line-height: 1.1;
}

.zone-section__intro p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.zone-section__panel-wrap {
  width: 100%;
  padding-inline: clamp(12px, 2vw, 24px);
  max-width: var(--container-max);
  margin-inline: auto;
}

.zone-section__panel {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px);
  box-shadow:
    0 16px 48px rgba(21, 23, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.zone-section__map-col {
  min-height: 360px;
  display: flex;
}

.zone-map {
  flex: 1;
  width: 100%;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(21, 23, 26, 0.06);
  z-index: 0;
}

.zone-map .leaflet-control-zoom a {
  border-radius: 8px !important;
  color: var(--color-secondary) !important;
}

.zone-map .leaflet-popup-content-wrapper {
  border-radius: 12px;
  font-family: var(--font-display);
  box-shadow: 0 8px 24px rgba(21, 23, 26, 0.12);
}

.zone-map .leaflet-popup-content {
  margin: 10px 14px;
  font-size: 14px;
  line-height: 1.4;
}

.zone-marker-wrap {
  background: transparent;
  border: none;
}

.zone-marker-wrap--hub {
  overflow: visible !important;
  background: transparent !important;
  border: none !important;
}

.zone-marker {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #94a3b8;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(21, 23, 26, 0.25);
  transition: transform 0.2s ease;
}

.zone-hub-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  margin-left: -80px;
}

.zone-hub-marker__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #15171a;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(21, 23, 26, 0.35);
  white-space: nowrap;
}

.zone-hub-marker__label strong {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.zone-hub-marker__label span {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.zone-hub-marker__arrow {
  line-height: 0;
  margin: -1px 0 2px;
}

.zone-hub-marker__pin {
  display: block;
  filter: drop-shadow(0 6px 14px rgba(229, 72, 77, 0.55));
  animation: zone-hub-float 2.4s ease-in-out infinite;
}

.zone-hub-marker__pulse {
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 24px;
  height: 12px;
  margin-left: -12px;
  border-radius: 50%;
  background: rgba(229, 72, 77, 0.45);
  animation: zone-hub-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes zone-hub-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes zone-hub-pulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.leaflet-marker-icon:hover .zone-marker {
  transform: scale(1.15);
  background: #e5484d;
}

.zone-section__cities-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-2);
}

.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(21, 23, 26, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.city-pill:hover {
  transform: translateY(-3px);
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(229, 72, 77, 0.35);
}

.city-pill--primary {
  background: linear-gradient(135deg, #e5484d, #c41e3a);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(229, 72, 77, 0.3);
}

.city-pill--primary:hover {
  background: linear-gradient(135deg, #ff5a5f, #e5484d);
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(229, 72, 77, 0.45);
}

.city-pill.is-active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(229, 72, 77, 0.35);
}

.city-pill--primary.is-active {
  background: linear-gradient(135deg, #ff5a5f, #e5484d);
  border-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .promo-section__orb,
  .zone-section__orb {
    animation: none;
  }
}

@media (max-width: 768px) {
  .promo-section__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .promo-card {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    grid-template-rows: none;
    row-gap: 0;
  }

  .promo-card h2 {
    min-height: 0;
    margin-bottom: var(--space-2);
  }

  .promo-card p {
    min-height: 0;
    margin-bottom: var(--space-3);
  }

  .promo-card__chips {
    min-height: 0;
    padding-top: 0;
  }

  .zone-section__panel {
    grid-template-columns: 1fr;
  }

  .zone-section__map-col {
    min-height: 280px;
  }

  .zone-map {
    min-height: 280px;
  }

  .zone-section__cities-label {
    text-align: center;
  }

  .cities {
    justify-content: center;
  }

  .promo-card__chips {
    gap: 8px;
  }
}

/* ==========================================================================
   Technicians
   ========================================================================== */

.technicians {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0b0d 0%, #15171a 45%, #1c1f26 100%);
  color: var(--color-white);
}

.technicians__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.technicians__visual {
  height: 400px;
  border-radius: var(--radius-xl);
  background: url('assets/images/techniciens.png') center/cover no-repeat;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.technicians__visual:hover {
  transform: scale(1.015);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5);
}

.technicians__content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2);
  color: var(--color-white);
}

.technicians__content p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-2);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.technicians__content .btn {
  margin-top: var(--space-2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.technicians__content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   FAQ — UX 2026
   ========================================================================== */

.faq-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 50%, #f8f9fb 100%);
  color: var(--color-secondary);
  overflow: hidden;
}

.faq-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.faq-section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: services-float 18s ease-in-out infinite;
}

.faq-section__orb--1 {
  width: 400px;
  height: 400px;
  top: -8%;
  left: -5%;
  background: radial-gradient(circle, rgba(229, 72, 77, 0.14) 0%, transparent 70%);
}

.faq-section__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -6%;
  right: -4%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.12) 0%, transparent 70%);
  animation-delay: -9s;
}

.faq-section__head,
.faq-section__wrap {
  position: relative;
  z-index: 1;
}

.faq-section__intro {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.faq-section__intro h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
  line-height: 1.1;
}

.faq-section__intro p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.faq-section__wrap {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.faq {
  min-width: 0;
}

.faq__item {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(21, 23, 26, 0.04);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.faq__item:last-child {
  margin-bottom: 0;
}

.faq__item:hover {
  border-color: rgba(229, 72, 77, 0.15);
  box-shadow: 0 8px 28px rgba(21, 23, 26, 0.08);
}

.faq__item[open] {
  border-color: rgba(229, 72, 77, 0.25);
  box-shadow:
    0 12px 36px rgba(229, 72, 77, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.faq__item summary {
  padding: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-secondary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: background-color 0.3s ease;
}

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

.faq__item summary:hover {
  background: rgba(229, 72, 77, 0.04);
}

.faq__item[open] summary {
  background: rgba(229, 72, 77, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq__num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(229, 72, 77, 0.45);
  min-width: 28px;
  transition: color 0.3s ease;
}

.faq__item[open] .faq__num {
  color: var(--color-primary);
}

.faq__question {
  flex: 1;
  text-align: left;
  line-height: 1.35;
}

.faq__item summary::after {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(229, 72, 77, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23e5484d' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq__item[open] summary::after {
  transform: rotate(180deg);
  background-color: rgba(229, 72, 77, 0.18);
}

.faq__answer {
  padding: 0 var(--space-3) var(--space-3);
  padding-left: calc(var(--space-3) + 28px + var(--space-2));
}

.faq__answer p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.faq-section__aside {
  position: sticky;
  top: calc(var(--header-height) + var(--space-3));
}

.faq-help-card {
  padding: var(--space-4) var(--space-3);
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(21, 23, 26, 0.08);
}

.faq-help-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-2);
  color: var(--color-primary);
  background: rgba(229, 72, 77, 0.1);
  border: 1px solid rgba(229, 72, 77, 0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.faq-help-card__icon svg {
  width: 26px;
  height: 26px;
}

.faq-help-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-secondary);
}

.faq-help-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-3);
}

.faq-help-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-help-card__actions .btn,
.faq-help-card__actions .services-cta-btn {
  width: 100%;
  justify-content: center;
}

.services-cta-btn--sm {
  padding: 12px 20px;
  font-size: var(--text-sm);
}

@media (prefers-reduced-motion: reduce) {
  .faq-section__orb {
    animation: none;
  }
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(229, 72, 77, 0.07), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(21, 23, 26, 0.05), transparent 50%),
    linear-gradient(180deg, #eef0f3 0%, #f6f7f9 48%, #eceef2 100%);
}

.reviews__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.reviews__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.reviews__orb--1 {
  width: 280px;
  height: 280px;
  top: -80px;
  right: 8%;
  background: rgba(229, 72, 77, 0.18);
  animation: reviews-orb-drift 14s ease-in-out infinite alternate;
}

.reviews__orb--2 {
  width: 320px;
  height: 320px;
  bottom: -120px;
  left: 5%;
  background: rgba(21, 23, 26, 0.08);
  animation: reviews-orb-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes reviews-orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-24px, 18px) scale(1.08); }
}

.reviews__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

.reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
}

.reviews__eyebrow {
  margin: 0 0 var(--space-1);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.reviews__head-copy h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.reviews__score {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 18px 14px 16px;
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(21, 23, 26, 0.22);
  animation: reviews-score-in 0.7s var(--ease-out) both;
}

@keyframes reviews-score-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reviews__score-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  background: linear-gradient(180deg, #fff 30%, rgba(255, 255, 255, 0.72));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews__score-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: var(--space-2);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.reviews__score-stars {
  display: flex;
  gap: 3px;
}

.reviews__score-stars span {
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: reviews-star-pop 0.45s var(--ease-out) both;
}

.reviews__score-stars span:nth-child(2) { animation-delay: 0.06s; }
.reviews__score-stars span:nth-child(3) { animation-delay: 0.12s; }
.reviews__score-stars span:nth-child(4) { animation-delay: 0.18s; }
.reviews__score-stars span:nth-child(5) { animation-delay: 0.24s; }

@keyframes reviews-star-pop {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}

.reviews__score-meta p {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.reviews__score-meta strong {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}

.reviews__stage {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(0.5rem, 1.5vw, 1rem);
  border-top: 1px solid rgba(21, 23, 26, 0.08);
}

.reviews__quote-wrap {
  position: relative;
  min-height: clamp(160px, 22vw, 220px);
  outline: none;
}

.reviews__quote-wrap::before {
  content: '«';
  position: absolute;
  top: -0.35em;
  left: -0.08em;
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

.reviews__quote {
  margin: 0;
  max-width: 42rem;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
  pointer-events: none;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  visibility: hidden;
}

.reviews__quote.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.reviews__quote p {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-secondary);
}

.reviews__quote footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.reviews__quote cite {
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.reviews__quote footer span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 4px 10px;
  background: var(--color-primary-subtle);
  border-radius: 6px;
}

.reviews__controls {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.reviews__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--color-border-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-secondary);
  cursor: pointer;
  transition:
    background-color var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.reviews__nav-btn:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}

.reviews__nav-btn:active {
  transform: scale(0.95);
}

.reviews__dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 4px;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--color-border-strong);
  cursor: pointer;
  transition:
    width 0.3s var(--ease-out),
    background-color 0.3s var(--ease-out);
}

.reviews__dot.is-active {
  width: 28px;
  background: var(--color-primary);
}

.reviews__rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(21, 23, 26, 0.1);
}

.reviews__rail-item {
  padding: var(--space-3) var(--space-2) var(--space-2);
  border-right: 1px solid rgba(21, 23, 26, 0.08);
  cursor: pointer;
  transition: background-color 0.25s var(--ease-out);
}

.reviews__rail-item:last-child {
  border-right: 0;
}

.reviews__rail-item:hover {
  background: rgba(255, 255, 255, 0.45);
}

.reviews__rail-item.is-active {
  background: rgba(255, 255, 255, 0.65);
}

.reviews__rail-item.is-active .reviews__rail-index {
  color: var(--color-primary);
}

.reviews__rail-index {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-subtle);
  transition: color 0.25s var(--ease-out);
}

.reviews__rail-item p {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-text-muted);
}

.reviews__rail-item.is-active p {
  color: var(--color-secondary);
}

.reviews__rail-item.is-active {
  box-shadow: inset 0 3px 0 var(--color-primary);
}

@media (max-width: 900px) {
  .reviews__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews__rail-item:nth-child(2) {
    border-right: 0;
  }

  .reviews__rail-item:nth-child(1),
  .reviews__rail-item:nth-child(2) {
    border-bottom: 1px solid rgba(21, 23, 26, 0.08);
  }
}

@media (max-width: 640px) {
  .reviews__score {
    width: 100%;
  }

  .reviews__head-copy h2 {
    max-width: none;
  }

  .reviews__rail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews__orb,
  .reviews__score,
  .reviews__score-stars span,
  .reviews__quote {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

.contact__info h2 {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.contact__info > p {
  color: var(--color-text-inverse-muted);
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.contact__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
  transition: opacity var(--duration-fast) var(--ease-out);
}

.contact__phone:hover {
  opacity: 0.85;
}

.contact__details p {
  color: var(--color-text-inverse-muted);
  margin-bottom: 6px;
  font-size: var(--text-sm);
}

.contact__map {
  margin-top: var(--space-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  color: var(--color-text);
  box-shadow: var(--shadow-lg);
}

.contact__form h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.form-actions {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.form-actions .btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: #0f1113;
  color: var(--color-text-inverse-muted);
  padding: var(--space-8) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-5);
}

.footer__col h4 {
  font-size: var(--text-sm);
  color: var(--color-white);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-weight: 600;
}

.footer__col p {
  font-size: var(--text-sm);
  margin-top: var(--space-2);
  line-height: var(--leading-relaxed);
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: var(--space-1);
}

.footer__col a {
  font-size: var(--text-sm);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__col a:hover {
  color: var(--color-white);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer__social a {
  font-size: var(--text-sm);
  font-weight: 500;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-3) 0;
}

.footer__bottom p {
  font-size: var(--text-xs);
  opacity: 0.6;
  text-align: center;
  line-height: 1.6;
}

/* ==========================================================================
   Float Call
   ========================================================================== */

.is-feature-off {
  display: none !important;
}

.feature-disabled-banner {
  margin: var(--space-3) auto;
  max-width: 720px;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  text-align: center;
}

.feature-disabled-banner p {
  margin: 0;
}

.float-call {
  position: fixed;
  bottom: var(--space-3);
  right: var(--space-3);
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    background-color var(--duration-base) var(--ease-out);
}

.float-call::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid rgba(229, 72, 77, 0.55);
  animation: fx-pulse-ring 2.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
}

.float-call:hover {
  transform: scale(1.06);
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-xl);
}

.float-call:active {
  transform: scale(0.98);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 769px) {
  .services-section__intro,
  .interventions-section__intro,
  .process-section__intro,
  .zone-section__intro,
  .faq-section__intro,
  .garanties__intro,
  .section__intro--center {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
  }

  .section__intro--center {
    margin-inline: 0;
  }
}

@media (max-width: 1024px) {
  .valeurs__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

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

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(220px, auto);
  }

  .service-card,
  .service-card--hero,
  .service-card:nth-child(n) {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 240px;
  }

  .interventions__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .intervention-card {
    min-height: 300px;
  }

  .process__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .process-card__step-ring {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-2);
  }

  .faq-section__wrap {
    grid-template-columns: 1fr;
  }

  .faq-section__aside {
    position: static;
  }

  .technicians__grid {
    grid-template-columns: 1fr;
  }

  .technicians__visual {
    height: 280px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .topbar {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header__inner {
    position: relative;
    justify-content: flex-end;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .logo__img {
    height: 52px;
    max-width: min(240px, 62vw);
  }

  .logo__img--footer {
    height: 88px;
    max-width: min(360px, 78vw);
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-3);
    gap: var(--space-1);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform var(--duration-base) var(--ease-out),
      opacity var(--duration-base) var(--ease-out);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav a:not(.btn) {
    padding: var(--space-2);
    border-radius: var(--radius-md);
  }

  .nav a:not(.btn):hover {
    background: var(--color-bg-muted);
  }

  .nav a:not(.btn)::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    padding: var(--space-2);
    border-radius: var(--radius-md);
  }

  .nav-dropdown__toggle::after {
    display: none;
  }

  .nav-dropdown__toggle:hover,
  .nav-dropdown.is-open .nav-dropdown__toggle {
    background: var(--color-bg-muted);
  }

  .nav-dropdown__menu {
    position: static;
    left: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    margin: 0 0 4px;
    padding: 4px 0 4px 12px;
    border: none;
    border-left: 2px solid var(--color-primary);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transition:
      max-height var(--duration-base) var(--ease-out),
      opacity var(--duration-fast) var(--ease-out),
      visibility var(--duration-fast);
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    /* Sur mobile, seul le clic (is-open) ouvre le sous-menu */
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown__chevron,
  .nav-dropdown:focus-within .nav-dropdown__chevron {
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown__chevron {
    transform: rotate(180deg);
  }

  .nav-dropdown__menu a {
    padding: 10px 12px;
  }

  .nav-dropdown__all {
    border-top: none;
    margin-top: 0;
  }

  .nav .btn {
    margin-top: var(--space-1);
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: var(--space-6) 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-4);
  }

  .hero__sub {
    margin-inline: auto;
  }

  .hero__cta-card {
    min-width: unset;
    width: 100%;
  }

  .hamon__inner {
    text-align: center;
    justify-content: center;
  }

  .hamon .btn {
    width: 100%;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .garanties__stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .garantie-stat {
    padding: var(--space-4) var(--space-3);
  }

  .garantie-stat__value {
    font-size: 3rem;
  }

  .services__grid-wrap {
    padding-inline: var(--space-2);
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card--hero,
  .service-card:nth-child(n) {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 280px;
  }

  .service-card__content {
    flex-direction: column;
    align-items: stretch;
  }

  .service-card__desc {
    display: none;
  }

  .service-card__action {
    width: 100%;
    justify-content: center;
  }

  .faq__answer {
    padding-left: var(--space-3);
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .footer__grid > .footer__col:first-child {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__grid > .footer__col:first-child p {
    max-width: 28ch;
  }

  .section {
    padding: var(--space-7) 0;
  }

  .float-call {
    bottom: var(--space-2);
    right: var(--space-2);
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - var(--space-3));
  }

  .hero h1 {
    font-size: var(--text-3xl);
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
