/* ==========================================================================
   MOBILYS — Design System Awwwards v2
   Thème clair, palette extraite du logo officiel
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  /* Palette du logo */
  --navy: #1a4a6e;
  --navy-dark: #0f2d44;
  --navy-rgb: 26, 74, 110;
  --teal: #38b2ac;
  --teal-light: #81e6d9;
  --teal-rgb: 56, 178, 172;
  --green: #6cc24a;
  --green-rgb: 108, 194, 74;
  --orange: #e8843a;
  --orange-rgb: 232, 132, 58;

  /* Fonds */
  --bg: #fafaf8;
  --bg-dark: #0f2d44;

  /* Textes */
  --text: #1a1a2e;
  --text-light: #5a6370;

  /* Bordures */
  --border: rgba(26, 74, 110, 0.08);

  /* Typographie */
  --font-display: 'Nunito', sans-serif;
  --font-sans: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --fs-display: clamp(3.5rem, 10vw, 10rem);
  --fs-h2: clamp(2rem, 4vw, 3.2rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-label: 0.75rem;

  /* Espacements */
  --section-py: clamp(100px, 14vw, 180px);
  --section-px: clamp(24px, 6vw, 80px);
  --container-max: 1240px;
  --gap: clamp(20px, 3vw, 40px);

  /* Rayons */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}


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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Lenis base rules */
html.lenis, html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  overscroll-behavior: none;
  cursor: default;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { cursor: text; }
input, textarea { font: inherit; color: inherit; background: none; border: none; outline: none; }



/* --- Grain Overlay --- */
.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.035;
}


/* --- FOUC Prevention --- */
html.js-loading .hero__display,
html.js-loading .hero__pretitle,
html.js-loading .hero__scroll,
html.js-loading .hero__video-wrap,
html.js-loading .nav__logo,
html.js-loading .nav__info-rotator,
html.js-loading .nav__link,
html.js-loading .nav__cta {
  visibility: hidden;
}


/* --- Hero Video Background --- */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay gradient desktop */
.hero__video-wrap--desktop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 45, 68, 0.1) 0%,
    rgba(15, 45, 68, 0.08) 60%,
    rgba(15, 45, 68, 0.12) 100%
  );
  z-index: 1;
}

/* Par défaut : desktop visible, mobile caché */
.hero__video-wrap--desktop { display: block; }
.hero__video-wrap:not(.hero__video-wrap--desktop) { display: none; }

@media (max-width: 768px) {
  .hero__video-wrap--desktop { display: none; }
  .hero__video-wrap:not(.hero__video-wrap--desktop) { display: block; }
  .hero { overflow: hidden; }
}


/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px var(--section-px);
  transition: background 0.4s ease,
              padding 0.4s ease,
              box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 1px 0 var(--border);
}

.nav__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.nav__logo:hover {
  transform: scale(1.03);
}

.nav__logo-img {
  height: 60px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #fff;
  transition: width 0.5s var(--ease-out-expo);
}

.nav__link:hover,
.nav__link.active {
  color: #fff;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}


.nav__cta {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #fff;
}

/* Nav scrolled — retour aux couleurs foncées */
.nav.scrolled .nav__link {
  color: var(--text-light);
}
.nav.scrolled .nav__link::after {
  background: var(--teal);
}
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active {
  color: var(--navy);
}
.nav.scrolled .nav__cta {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.nav.scrolled .nav__cta:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}
.nav.scrolled .nav__toggle-bar {
  background: var(--navy);
}
.nav__toggle.active .nav__toggle-bar {
  background: #fff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  z-index: 1002;
}

.nav__toggle-bar {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.5s var(--ease-out-expo),
              opacity 0.3s ease,
              background 0.3s ease;
  transform-origin: center;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active .nav__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 45, 68, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.nav__overlay.visible {
  opacity: 1;
  visibility: visible;
}


/* --- Nav left (logo + rotateur) --- */
.nav__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --- Nav info rotator --- */
.nav__info-rotator {
  position: relative;
  height: 18px;
  /* Pas de overflow:hidden : les items masqués sont gérés par opacity+blur GSAP.
     On évite ainsi le problème de mesure avant chargement des polices web. */
  min-width: 220px; /* largeur minimale garantie pour le texte le plus long */
  padding-left: 20px;
}

/* Séparateur vertical logo / rotateur */
.nav__info-rotator::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}

.nav__info-item {
  position: absolute;
  top: 0;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 450;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav__info-item:hover {
  color: #fff;
}

.nav__info-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* État scrolled — texte foncé sur fond clair */
.nav.scrolled .nav__info-rotator::before {
  background: rgba(26, 58, 92, 0.2);
}

.nav.scrolled .nav__info-item {
  color: var(--text-light);
}

.nav.scrolled .nav__info-item:hover {
  color: var(--navy);
}


/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;    /* fallback navigateurs anciens */
  min-height: 100dvh;   /* viewport dynamique : suit la barre d'adresse */
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 180px var(--section-px) 80px;
  background-color: var(--navy-dark);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
}

.hero__pretitle {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  margin-bottom: 0;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.hero__display {
  font-family: 'Nunito', var(--font-sans);
  font-size: var(--fs-display);
  font-weight: 800;
  font-style: normal;
  line-height: 1.05;
  color: #fff;
  margin: 8px 0;
  margin-left: -0.06em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.hero__display--green {
  color: var(--green);
}

/* Y vert de la marque — réutilisable partout */
.brand-y {
  color: var(--green);
}

/* SplitType word wrapper — hero display */
.hero__display .word {
  overflow: visible;
  display: inline-block;
  vertical-align: top;
}

/* SplitType word wrapper — titres de section ([data-split])
   Les <div class="word"> sont block par défaut. On garantit inline-block
   via CSS plutôt que via JS, pour ne pas dépendre de l'exécution du script. */
[data-split] .word {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.hero__display .char {
  display: inline-block;
  cursor: default;
  /* will-change retiré : GSAP le gère via force3D pendant l'animation */
}

.hero__posttitle-accent {
  font-weight: 600;
}

.hero__posttitle-accent--orange { color: var(--orange); }

/* --- Text Rotator --- */
.hero__rotator {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1.3em;
  vertical-align: bottom;
  text-shadow: none;
}

.hero__rotator-item {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
}


.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  transform-origin: top;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}


/* --- Sections Common --- */
.section {
  padding: var(--section-py) var(--section-px);
  position: relative;
  overflow: hidden;
}

.section__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section__label {
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.section__title-accent {
  color: var(--teal);
}

.section__subtitle {
  font-size: var(--fs-body);
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

/* Sections sur fond sombre */
.section--dark {
  background: var(--navy-dark);
}
.section--dark .section__label {
  color: var(--teal-light);
}
.section--dark .section__title {
  color: #fff;
}
.section--dark .section__title-accent {
  color: var(--teal-light);
}
.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}








/* --- Services --- */

/* Carte vedette */
.service-featured {
  margin-top: 48px;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: rgba(56, 178, 172, 0.04);
  border: 1px solid rgba(56, 178, 172, 0.2);
  border-left: 4px solid var(--teal);
  transition: box-shadow 0.4s ease;
}

.service-featured:hover {
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

.service-featured__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.service-featured__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.service-featured__text {
  font-size: var(--fs-body);
  color: var(--text-light);
  line-height: 1.85;
  max-width: 800px;
}

/* Grille des cartes services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: var(--gap);
}

/* Carte service individuelle */
.service-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(56, 178, 172, 0.15);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.4s ease;
}

/* Pastille de couleur en haut à gauche */
.service-card::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 4px;
  height: 32px;
  border-radius: 0 4px 4px 0;
  background: var(--card-color, var(--teal));
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-card--pmr { --card-color: var(--green); }
.service-card--tad { --card-color: var(--orange); }
.service-card--marches { --card-color: var(--teal-light); }

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card__text {
  font-size: var(--fs-small);
  color: var(--text-light);
  line-height: 1.8;
}



/* --- Contact --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact__info-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact__detail:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.contact__detail-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--teal-light);
  /* Colorise les icônes SVG chargées via <img> en teal-light (#81e6d9) */
  filter: brightness(0) saturate(100%) invert(88%) sepia(32%) saturate(450%) hue-rotate(122deg) brightness(98%) contrast(95%);
}

.contact__detail-label {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.contact__detail-value {
  font-weight: 500;
  color: #fff;
}

.contact__detail-value a {
  color: var(--teal-light);
  text-decoration: none;
}

.contact__detail-value a:hover {
  text-decoration: underline;
}

/* Custom select déroulant */
.contact__select {
  position: relative;
}

.contact__select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact__select__trigger:focus-visible {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(var(--teal-rgb), 0.12);
}

.contact__select.open .contact__select__trigger {
  border-color: var(--teal);
  color: #fff;
}

.contact__select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact__select__value.selected {
  color: #fff;
}

.contact__select__arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s var(--ease-out-expo), color 0.3s ease;
}

.contact__select.open .contact__select__arrow {
  transform: rotate(180deg);
  color: var(--teal-light);
}

/* Bouton × pour effacer la sélection */
.contact__select__clear {
  position: absolute;
  top: 50%;
  right: 38px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden; /* retiré de l'ordre de tabulation tant qu'il est invisible */
  pointer-events: none;
  transition: opacity 0.2s ease, color 0.2s ease, visibility 0.2s;
  z-index: 2;
}

.contact__select__clear svg {
  width: 12px;
  height: 12px;
}

.contact__select.has-value .contact__select__clear {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact__select__clear:hover {
  color: #fff;
}

.contact__select__options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(56, 178, 172, 0.3);
  background: #0d2535;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  list-style: none;
  overflow: hidden;
  /* Animation d'ouverture */
  clip-path: inset(0 0 100% 0 round 8px);
  opacity: 0;
  pointer-events: none;
  transition: clip-path 0.28s var(--ease-out-expo),
              opacity 0.2s ease;
}

.contact__select.open .contact__select__options {
  clip-path: inset(0 0 0% 0 round 8px);
  opacity: 1;
  pointer-events: auto;
}

.contact__select__option {
  padding: 12px 16px;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact__select__option:last-child {
  border-bottom: none;
}

.contact__select__option:hover {
  background: rgba(129, 230, 217, 0.08);
  color: #fff;
}

.contact__select__option.selected {
  color: var(--teal-light);
  background: rgba(129, 230, 217, 0.06);
}

.contact__select__option.selected::before {
  content: '✓\00a0';
  font-size: 0.75em;
}

/* Option "Effacer la sélection" — discrète, en italique */
.contact__select__option--reset {
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  font-size: calc(var(--fs-small) * 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__select__option--reset:hover {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.5);
}

/* Réassurance discrète — une ligne sous le bouton */

.contact__reassurance {
  font-size: var(--fs-label);
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Select déroulant — même apparence que les inputs */
.contact__form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact__form-select option {
  background: #0f2d44;
  color: #fff;
}

.contact__form {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.contact__form-group {
  margin-bottom: 18px;
  position: relative;
}

/* Ligne côte à côte — ex: Prénom | Nom */
.contact__form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.contact__form-row .contact__form-group {
  flex: 1;
  min-width: 0;  /* évite le dépassement sur mobile */
  margin-bottom: 0;
}

.contact__form-group::after {
  content: '✓';
  position: absolute;
  right: 14px;
  bottom: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #10b981;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.contact__form-group.is-valid::after {
  opacity: 1;
  transform: scale(1);
}

.contact__form-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.contact__form-optional {
  font-weight: 400;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 4px;
}

.contact__form-input,
.contact__form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: var(--fs-small);
  caret-color: var(--green); /* curseur de saisie couleur du Y MOBILYS */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact__form-input:focus,
.contact__form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(var(--teal-rgb), 0.12);
}

.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact__form-submit {
  width: 100%;
  padding: 17px 24px;
  border-radius: 12px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-body);
  letter-spacing: 0.04em;
  margin-top: 12px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact__form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(var(--teal-rgb), 0.45);
}

.contact__form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}


/* --- Footer --- */
.footer {
  padding: 64px var(--section-px) 0;
  background: #071620;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(56, 178, 172, 0.3);
}

.footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

/* Colonne marque */
.footer__col--brand {
  padding-right: 20px;
}

.footer__logo {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer__logo:hover {
  transform: scale(1.03);
}

.footer__logo-img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
  line-height: 1.4;
}

.footer__desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: 12px;
}

/* Titres de colonnes */
.footer__col-title {
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

/* Navigation footer */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer__link:hover {
  color: #fff;
  transform: translateX(3px);
}

/* Contact footer */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  /* Colorise les icônes SVG chargées via <img> en teal (#38b2ac) */
  filter: brightness(0) saturate(100%) invert(64%) sepia(25%) saturate(600%) hue-rotate(140deg) brightness(95%) contrast(88%);
  margin-top: 3px;
}

.footer__contact-item a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.footer__contact-item a:hover {
  color: var(--teal-light);
}

/* Partenaires institutionnels */
.footer__partners {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__partners-title {
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer__partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer__partner-link {
  display: inline-block;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  overflow: hidden;
}

.footer__partner-link:hover {
  opacity: 1;
}

.footer__partner-logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* Barre basse */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copyright {
  font-size: var(--fs-label);
  color: rgba(255, 255, 255, 0.6);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__legal-link {
  font-size: var(--fs-label);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer__legal-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: var(--fs-label);
}


/* --- Pour qui ? --- */
.cibles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: 48px;
}

.cible-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease,
              transform 0.5s var(--ease-out-expo),
              box-shadow 0.4s ease;
}

.cible-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cible-card__icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cible-card__icon {
  width: 28px;
  height: 28px;
  color: #fff;
}

.cible-card__separator {
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  background: rgba(56, 178, 172, 0.35);
}

.cible-card__content {
  flex: 1;
  min-width: 0;
}

.cible-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cible-card__text {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}


/* --- Nos engagements --- */
.engagements__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: 48px;
}

.engagement-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(56, 178, 172, 0.15);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.4s ease;
}

.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.engagement-card--soin       { --engagement-color: #38b2ac; } /* teal     — step 1/4 */
.engagement-card--regularite { --engagement-color: #2e8f97; } /* teal→navy — step 2/4 */
.engagement-card--vehicules  { --engagement-color: #246d83; } /* teal→navy — step 3/4 */
.engagement-card--equipe     { --engagement-color: #1a4a6e; } /* navy     — step 4/4 */

.engagement-card__icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--engagement-color, var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
}

.engagement-card__icon {
  width: 28px;
  height: 28px;
  color: #fff;
}

.engagement-card__separator {
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  background: rgba(56, 178, 172, 0.2);
}

.engagement-card__content {
  flex: 1;
  min-width: 0;
}

.engagement-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.engagement-card__text {
  font-size: var(--fs-small);
  color: var(--text-light);
  line-height: 1.7;
}


/* --- Notre flotte --- */
.flotte__content {
  padding-top: 20px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
}

.flotte__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}

.flotte__features .cible-card {
  flex-direction: column;
  text-align: center;
  padding: 36px 28px;
}

.flotte__features .cible-card__separator {
  display: none;
}

.flotte__features .cible-card__content {
  text-align: center;
}

.flotte__features .cible-card__icon-wrapper {
  width: 72px;
  height: 72px;
}

.flotte__features .cible-card__icon {
  width: 44px;
  height: 44px;
}



.flotte__ambition {
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--green);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-body);
  line-height: 1.8;
}

.flotte__ambition strong {
  color: #fff;
  font-weight: 600;
}


/* --- Zone d'intervention --- */
.zone__content {
  padding-top: 20px;
  max-width: 720px;
  color: var(--text-light);
  line-height: 1.85;
}

.zone__content p + p {
  margin-top: 16px;
}

.zone__benefits-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 24px;
}

.zone__benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap);
}

.zone__benefits-grid .engagement-card {
  flex-direction: column;
  text-align: center;
  padding: 32px 20px;
}

.zone__benefits-grid .engagement-card__separator {
  display: none;
}

.zone__benefits-grid .engagement-card__content {
  text-align: center;
}

.zone__benefits-grid .engagement-card__icon-wrapper {
  width: 64px;
  height: 64px;
}

/* SVG externes chargés via <img> : inversion en blanc.
   brightness(0) = force tout à noir, invert(1) = inverse en blanc.
   N'affecte pas le SVG inline de "Solution flexible" (géré via currentColor). */
.zone__benefits-grid img.engagement-card__icon {
  filter: brightness(0) invert(1);
}

.zone__benefits-grid .engagement-card__icon {
  width: 30px;
  height: 30px;
}

.zone__closing {
  margin-top: 36px;
  max-width: 720px;
  font-size: var(--fs-body);
  color: var(--text-light);
  line-height: 1.85;
}

.engagement-card--interlocuteur { --engagement-color: #38b2ac; } /* teal     — step 1/5 */
.engagement-card--organisation  { --engagement-color: #31989d; } /* teal→navy — step 2/5 */
.engagement-card--confort       { --engagement-color: #297e8d; } /* teal→navy — step 3/5 */
.engagement-card--flexibilite   { --engagement-color: #22647e; } /* teal→navy — step 4/5 */
.engagement-card--securite      { --engagement-color: #1a4a6e; } /* navy     — step 5/5 */



/* Rotateur de contact masqué sous 1200px :
   - évite le chevauchement avec les liens de nav entre 1025px et 1200px
   - évite l'empilement des 3 items (sans animation GSAP) entre 769px et 1024px */
@media (max-width: 1200px) {
  .nav__info-rotator {
    display: none;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .zone__benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 55%;
    max-width: 200px;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 45, 68, 0.96);
    /* backdrop-filter supprimé pour performance mobile */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 24px;
    transition: right 0.8s var(--ease-out-expo), opacity 0.8s var(--ease-out-expo);
    box-shadow: -8px 0 30px rgba(0,0,0,0.2);
    z-index: 1001;
    border-left: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
  }

  .nav__links.open {
    right: 0;
    opacity: 1;
    transition: right 0.8s var(--ease-out-expo), opacity 0.8s var(--ease-out-expo);
  }

  .nav__link {
    font-size: 0.95rem;
    color: #fff !important;
    padding: 16px 0;
    letter-spacing: 0.03em;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.3s ease;
  }

  .nav__link:hover {
    color: #fff !important;
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta {
    margin-top: 20px;
    background: #38b2ac !important;
    border-color: #38b2ac !important;
    color: #fff !important;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 50px;
  }

  .nav__toggle {
    display: flex;
  }

  /* --- [proposition-v2.1] Hero mobile : cadrage ---
     - 93dvh au lieu de 100dvh : montre plus du véhicule en largeur (object-fit:cover)
     - background blanc (var(--bg)) sur .hero : supprime la bande bleue au scroll
     ---------------------------------------------------------------------- */
  .hero {
    min-height: 93vh;     /* fallback navigateurs anciens */
    min-height: 93svh;    /* svh : verrouillé, ne change pas avec la barre d'adresse */
    background-color: var(--bg);
    padding-top: 12vh;    /* fallback */
    padding-top: 12svh;   /* verrouillé aussi */
  }


  .hero__rotator-wrap {
    display: none;
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
    margin-top: 0;
  }





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

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

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

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

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


  .hero__scroll {
    display: none;
  }

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

  .footer__col--brand {
    padding-right: 0;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* --- Performance mobile : neutraliser le grain --- */
  .grain {
    display: none;
  }

  .nav.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(250, 250, 248, 0.98);
  }

  /* --- [proposition-v2.1] Performance scroll mobile ---
     backdrop-filter cause des freeze aléatoires du scroll iOS Safari.
     Désactivé sur nav.scrolled, nav__cta et contact__form.
     ---------------------------------------------------------------------- */
  .nav__cta {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.3);
  }

  .contact__form {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.1);
  }

  /* Pré-promotion GPU : hero uniquement */
  .hero__display,
  .hero__pretitle {
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  /* Animations scroll mobile via IntersectionObserver + CSS transitions */
  [data-reveal],
  [data-split] {
    opacity: 0;
    transform: translateY(20px) translateZ(0);
  }

  [data-reveal].is-visible,
  [data-split].is-visible {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  [data-reveal].is-visible,
  [data-split].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  [data-stagger] > * {
    opacity: 0;
    transform: translateY(15px) translateZ(0);
  }

  [data-stagger] > .is-visible {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  [data-stagger] > .is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .contact__form {
    padding: 24px 16px;
  }
}


/* --- Utilitaires (remplacent les attributs style= inline pour la CSP) --- */

/* Marge supérieure de la grille contact */
.contact__grid--spaced {
  margin-top: 48px;
}

/* Honeypot anti-bots : invisible pour les humains */
.u-hidden {
  display: none;
}

/* Logo partenaires — dimensions fixes */
.footer__partner-logo--fixed {
  height: 55px;
  width: auto;
}


/* ==========================================================================
   Pages légales (mentions légales, politique de confidentialité, 404)
   Pages sans JavaScript : la nav porte la classe "scrolled" en dur pour
   être lisible sur fond clair, et le contenu est décalé sous la nav fixe.
   ========================================================================== */
.nav__back {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: #fff;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.nav__back:hover {
  background: var(--navy-dark);
}

.legal {
  padding: 160px var(--section-px) 100px;
}
.legal__container {
  max-width: 800px;
  margin: 0 auto;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 12px;
}
.legal__updated {
  font-size: var(--fs-small);
  color: var(--text-light);
  margin-bottom: 40px;
}
.legal h2 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 12px;
}
.legal p,
.legal li {
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal ul {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: 16px;
}
.legal li {
  margin-bottom: 8px;
}
.legal a:not(.nav__back) {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}
.legal a:not(.nav__back):hover {
  color: var(--navy);
}
.legal address {
  font-style: normal;
}
.legal--center {
  text-align: center;
  min-height: 70vh;
}
.legal--center .nav__back {
  display: inline-block;
  margin-top: 8px;
}

/* Marqueur des informations en attente du client : bien visible en relecture */
.a-completer {
  background: #fff3bf;
  color: #7a5a00;
  padding: 0 6px;
  border-radius: 3px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal {
    padding-top: 120px;
    padding-bottom: 64px;
  }
}

/* Mention d'information RGPD sous le bouton du formulaire de contact */
.contact__form-rgpd {
  font-size: var(--fs-label);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-top: 14px;
  text-align: center;
}
.contact__form-rgpd a {
  color: var(--teal-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ==========================================================================
   Revue pré-livraison du 7 septembre 2026
   ========================================================================== */

/* Bouton d'appel dans le header, mobile uniquement (le rotateur téléphone est
   masqué sous 1200 px et le bouton Contact est dans le menu replié) */
.nav__call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.nav__call svg {
  width: 20px;
  height: 20px;
}
.nav.scrolled .nav__call {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
@media (max-width: 768px) {
  .nav__call {
    display: inline-flex;
  }
  /* Zone tactile du bouton menu portée à 44 px sans changer son dessin */
  .nav__toggle {
    padding: 13px 9px;
    margin: -13px -9px;
    box-sizing: content-box;
  }
  /* Champs à 16 px : évite le zoom automatique d'iOS Safari au focus */
  .contact__form-input,
  .contact__form-textarea {
    font-size: 16px;
  }
}

/* Focus clavier visible sur les options du sélecteur de besoin */
.contact__select__option:focus {
  outline: 2px solid var(--teal-light);
  outline-offset: -2px;
}

/* Message d'état du formulaire (succès / erreur), annoncé aux lecteurs d'écran */
.contact__form-status {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.contact__form-status:empty {
  display: none;
}

/* Liens et étiquettes des pages légales : contraste suffisant sur fond clair */
.legal a:not(.nav__back) {
  color: #246d83;
}
.legal .section__label {
  color: #246d83;
}

/* Mode sans animation (html.no-anim) : bibliothèques absentes, chargement trop
   lent, ou préférence système « réduire les animations ». Tout est visible. */
html.no-anim .hero__display,
html.no-anim .hero__pretitle,
html.no-anim .hero__scroll,
html.no-anim .hero__video-wrap,
html.no-anim .nav__logo,
html.no-anim .nav__info-rotator,
html.no-anim .nav__link,
html.no-anim .nav__cta {
  visibility: visible;
}
html.no-anim [data-reveal],
html.no-anim [data-split],
html.no-anim [data-stagger] > * {
  opacity: 1;
  transform: none;
  transition: none;
}
html.no-anim .hero__rotator-item:not(:first-child),
html.no-anim .nav__info-item:not(:first-child) {
  display: none;
}
html.no-anim .hero__rotator {
  position: relative;
  display: inline-block;
}
html.no-anim .hero__rotator-item {
  position: static;
}
html.no-anim .hero__scroll-line {
  animation: none;
}

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