/* ============================================
   TOPIARIA — Styles globaux
   ============================================ */

/* Polices auto-hébergées */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/caveat-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/caveat-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

/* === VARIABLES — Palette extraite du logo SVG === */
:root {
  /* Couleurs marque */
  --noir: #141016;
  --noir-2: #1a171b;
  --jaune: #ffed00;
  --blanc: #ffffff;

  /* Néomorphisme dark (fond --noir) */
  --neo-dark-bg: #141016;
  --neo-dark-ombre: #0a0b0e; /* ombre sombre */
  --neo-dark-lumiere: #1e1a20; /* ombre claire */

  /* Néomorphisme light (fond --gris-neo) */
  --gris-neo: #f0ede8; /* fond light néo — blanc cassé chaud */
  --neo-light-ombre: #d4d0c8; /* ombre sombre */
  --neo-light-lumiere: #ffffff; /* ombre claire */

  /* Textes */
  --texte-dark: rgba(255, 255, 255, 0.85);
  --texte-light: #2a2a2a;
  --texte-muted: rgba(255, 255, 255, 0.45);
}

/* ============================================
   BASE
   ============================================ */

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

body {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  background: var(--gris-neo);
  color: var(--texte-light);
  padding-top: 112px;
  overflow-x: hidden;
}

body > main {
  position: relative;
  z-index: 1;
  background: var(--gris-neo);
  box-shadow: none;
}

/* ============================================
   NAVIGATION
   ============================================ */

/* Topbar */
.neo-topbar {
  background: #ffffff;
  height: 32px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--neo-light-ombre);
}

.neo-topbar-link {
  color: var(--noir);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.9s ease;
}

.neo-topbar-link:hover {
  opacity: 0.6;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

#site-header.header--hidden {
  transform: translateY(-100%);
}

.topiaria-nav {
  background: var(--gris-neo);
  padding: 0.875rem 0;
  box-shadow:
    0 6px 18px var(--neo-light-ombre),
    inset 0 1px 0 var(--neo-light-lumiere);
}

/* Logo */
.navbar-brand img {
  height: 52px;
  width: auto;
  display: block;
}

/* Liens */
.topiaria-nav .nav-link {
  color: var(--texte-light);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.875rem !important;
  border-radius: 10px;
  background: var(--gris-neo);
  transition:
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.topiaria-nav .nav-link:hover {
  color: var(--noir);
  box-shadow:
    4px 4px 10px var(--neo-light-ombre),
    -4px -4px 10px var(--neo-light-lumiere);
}

.topiaria-nav .nav-link.active {
  color: var(--noir);
  font-weight: 600;
  box-shadow:
    inset 3px 3px 7px var(--neo-light-ombre),
    inset -3px -3px 7px var(--neo-light-lumiere);
}

/* Bouton Contact */
.topiaria-nav .nav-cta {
  background: var(--jaune) !important;
  color: var(--noir) !important;
  font-weight: 700;
  padding: 0.45rem 1.375rem !important;
  border-radius: 999px !important;
  box-shadow:
    4px 4px 10px var(--neo-light-ombre),
    -4px -4px 10px var(--neo-light-lumiere);
  transition:
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.topiaria-nav .nav-cta:hover {
  color: var(--noir) !important;
  transform: translateY(-1px);
  box-shadow:
    6px 6px 16px var(--neo-light-ombre),
    -6px -6px 16px var(--neo-light-lumiere);
}

/* Toggler mobile */
.neo-toggler {
  border: none;
  background: var(--gris-neo);
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  box-shadow:
    3px 3px 8px var(--neo-light-ombre),
    -3px -3px 8px var(--neo-light-lumiere);
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  outline: none;
}

.neo-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--noir);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.neo-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.neo-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.neo-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MENU MOBILE — OVERLAY PLEIN ÉCRAN
   ============================================ */
@media (max-width: 991.98px) {
  /* Toggler au-dessus de l'overlay */
  .neo-toggler {
    position: relative;
    z-index: 1001;
  }

  /* Désactive l'animation height de Bootstrap */
  #navbarTopiaria.collapsing {
    height: auto !important;
    transition: none !important;
    overflow: visible !important;
  }

  /* Overlay */
  #navbarTopiaria {
    position: fixed !important;
    inset: 0 !important;
    height: 100dvh !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gris-neo);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.45s ease,
      visibility 0.45s ease;
  }

  #navbarTopiaria.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Header reste visible quand le menu est ouvert */
  #site-header:has(#navbarTopiaria.show) {
    transform: translateY(0) !important;
  }

  /* Liste des liens */
  .topiaria-nav .navbar-nav {
    flex-direction: column !important;
    align-items: center;
    gap: 0;
    margin: 0 !important;
  }

  .topiaria-nav .nav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--neo-light-ombre);
  }

  .topiaria-nav .nav-item:first-child {
    border-top: 1px solid var(--neo-light-ombre);
  }

  .topiaria-nav .nav-item.ms-2 {
    margin-left: 0 !important;
    border-bottom: none;
    border-top: none;
    padding-top: 2rem;
  }

  .topiaria-nav .nav-link {
    display: block;
    font-size: 0.78rem !important;
    letter-spacing: 0.14em;
    box-shadow: none !important;
    background: transparent !important;
    padding: 1.1rem 1.5rem !important;
    border-radius: 0 !important;
    color: var(--texte-light) !important;
    transition:
      color 0.2s ease,
      background 0.2s ease !important;
  }

  .topiaria-nav .nav-link:hover {
    box-shadow: none !important;
    color: var(--noir) !important;
    background: rgba(0, 0, 0, 0.03) !important;
  }

  .topiaria-nav .nav-link.active {
    box-shadow: none !important;
    color: var(--noir) !important;
    font-weight: 700;
  }

  /* CTA Contact */
  .topiaria-nav .nav-cta {
    display: inline-block;
    font-size: 0.8rem !important;
    padding: 0.75rem 2.5rem !important;
    background: var(--jaune) !important;
    color: var(--noir) !important;
    border-radius: 999px !important;
    box-shadow:
      4px 4px 10px var(--neo-light-ombre),
      -4px -4px 10px var(--neo-light-lumiere) !important;
  }

  .topiaria-nav .nav-cta:hover {
    color: var(--noir) !important;
    background: var(--jaune) !important;
  }
}

/* ============================================
   FOOTER
   ============================================ */

#site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  background: var(--gris-neo);
  padding: 3rem 0 0;
  box-shadow: none;
}

/* Logo footer */
.footer-logo img {
  height: 150px;
  width: auto;
  margin-bottom: 0.875rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--texte-light);
  opacity: 0.6;
  line-height: 1.65;
  max-width: 260px;
}

/* Réseaux sociaux */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.375rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gris-neo);
  color: var(--noir);
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow:
    5px 5px 12px var(--neo-light-ombre),
    -5px -5px 12px var(--neo-light-lumiere);
  transition:
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.footer-social a:hover {
  color: var(--noir);
  box-shadow:
    inset 4px 4px 8px var(--neo-light-ombre),
    inset -4px -4px 8px var(--neo-light-lumiere);
}

/* Titres colonnes */
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--noir);
  opacity: 0.45;
  margin-bottom: 1.25rem;
}

/* Liens nav footer */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texte-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--noir);
}

/* Coordonnées */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--texte-light);
}

.footer-contact-list li span.fc-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.footer-contact-list a {
  color: var(--texte-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--noir);
}

/* --- Page mentions légales --- */
.neo-legal {
  padding-bottom: 4rem;
}

.neo-legal-h2 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--noir);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--jaune);
  display: inline-block;
}

.neo-legal-list {
  padding-left: 1.2em;
  margin-top: 0.75rem;
}

.neo-legal-list li {
  margin-bottom: 0.65rem;
}

.neo-legal-link {
  color: var(--noir);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--jaune);
  transition: text-decoration-color 0.4s ease;
}

.neo-legal-link:hover {
  text-decoration-color: var(--noir);
}

/* Séparateur + bas de footer */
.footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--texte-light);
  opacity: 0.45;
  margin: 0;
}

.footer-francenum-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.9s ease;
}

.footer-francenum-logo:hover {
  opacity: 0.75;
}

.footer-francenum-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-francenum-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--texte-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.footer-francenum-text span {
  display: block;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

/* Wrapper section avec position relative pour ancrer les formes */
.neo-hero,
.neo-section,
.neo-cta-band {
  position: relative;
  overflow: visible;
}

/* Le contenu reste au-dessus des formes */
.neo-hero > *,
.neo-section > *,
.neo-cta-band > * {
  position: relative;
  z-index: 1;
}

/* ============================================
   COMPOSANTS PAGES
   ============================================ */

/* --- Ripple au clic — onde neumorphique --- */
.neo-ripple-wave {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    10px 10px 40px #dedad2,
    -10px -10px 40px #ffffff;
  opacity: 0;
  animation:
    neo-wave-fadein 400ms ease-out forwards,
    neo-wave-grow 5s ease-out forwards,
    neo-wave-fadeout 3s 2s forwards;
}

.neo-ripple-wave::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  box-shadow:
    inset 10px 10px 40px #dedad2,
    inset -10px -10px 40px #ffffff;
  animation: neo-wave-inner-grow 5s ease-out forwards;
}

@keyframes neo-wave-grow {
  from {
    width: 20px;
    height: 20px;
  }
  to {
    width: 160px;
    height: 160px;
  }
}

@keyframes neo-wave-inner-grow {
  from {
    width: 0;
    height: 0;
  }
  to {
    width: 140px;
    height: 140px;
  }
}

@keyframes neo-wave-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes neo-wave-fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* --- Orbes neumorphiques décoratifs --- */
.has-orbs {
  position: relative;
  overflow: hidden;
}

.has-orbs-open {
  position: relative;
}

.neo-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--gris-neo);
  box-shadow:
    28px 28px 50px #d4d0c8,
    -23px -23px 50px #ffffff,
    inset -12px -12px 24px rgba(180, 170, 158, 0.3),
    inset 12px 12px 24px rgba(255, 255, 255, 0.7);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  will-change: transform, opacity;
}

.neo-orb--sm {
  width: 100px;
  height: 100px;
}
.neo-orb--md {
  width: 220px;
  height: 220px;
}
.neo-orb--lg {
  width: 360px;
  height: 360px;
}

/* Positions */
.neo-orb--tr {
  top: -80px;
  right: -100px;
}
.neo-orb--tl {
  top: -80px;
  left: -100px;
}
.neo-orb--mr {
  top: -50px;
  right: -80px;
}
.neo-orb--ml {
  top: 50%;
  left: -60px;
}
.neo-orb--cl {
  top: 40%;
  left: 5%;
}
.neo-orb--cr {
  top: 40%;
  right: 6%;
}

/* --- Curseur personnalisé --- */
* {
  cursor: none !important;
}

.neo-cursor {
  position: fixed;
  width: 9px;
  height: 9px;
  background: var(--noir);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s ease,
    height 0.25s ease;
  will-change: left, top;
}

.neo-cursor--hover {
  width: 16px;
  height: 16px;
}

@media (hover: none) {
  * {
    cursor: auto !important;
  }
  .neo-cursor {
    display: none;
  }
}

/* --- Indicateur de scroll --- */
.neo-scroll-indicator {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gris-neo);
  box-shadow:
    inset 2px 2px 5px #d8d4cc,
    inset -2px -2px 5px #f8f5f0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.neo-scroll-indicator.visible {
  opacity: 1;
}

.neo-scroll-svg {
  width: 44px;
  height: 44px;
}

.neo-scroll-track {
  display: none;
}

.neo-scroll-progress {
  fill: none;
  stroke: var(--jaune);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.15s linear;
}

.neo-scroll-arrow {
  stroke: #d4d0c8;
  transition: stroke 0.3s ease;
}

.neo-scroll-indicator:hover .neo-scroll-arrow {
  stroke: var(--noir);
}

@media (max-width: 767.98px) {
  .neo-scroll-indicator {
    display: none;
  }
}

/* --- Cadre photo réutilisable --- */
.neo-glass-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.neo-glass-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  display: block;
}

/* Valeurs — 3 colonnes avec séparateur vertical */
.neo-values-row {
  display: flex;
  align-items: stretch;
}

/* Méthodologie — timeline interactive */
.neo-methodo-timeline {
  margin-bottom: 2.5rem;
}

.neo-methodo-rail {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.neo-methodo-rail::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  transform: translateY(-50%);
  background: var(--gris-neo);
  box-shadow:
    inset 1px 1px 3px #d4d0c8,
    inset -1px -1px 3px #ffffff;
  border-radius: 2px;
  z-index: 0;
}

.neo-methodo-dot {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--gris-neo);
  box-shadow:
    5px 5px 12px #d4d0c8,
    -5px -5px 12px #ffffff;
  cursor: pointer;
  transition: box-shadow 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neo-methodo-dot.is-active {
  background: var(--jaune);
  box-shadow:
    inset 3px 3px 8px rgba(0, 0, 0, 0.12),
    inset -3px -3px 8px rgba(255, 255, 255, 0.4);
}

.neo-methodo-dot-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--noir);
  transition: color 0.3s ease;
}

.neo-methodo-dot.is-active .neo-methodo-dot-num {
  color: var(--noir);
}

.neo-methodo-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.neo-methodo-labels span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--noir);
  opacity: 0.5;
  width: 52px;
  text-align: center;
}

.neo-methodo-panels {
  position: relative;
}

.neo-methodo-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  padding: 2rem 0 0.5rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.neo-values-sub {
  font-family: "Caveat", cursive;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--noir);
  opacity: 0.85;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 1.75rem 0 1.75rem 1.5rem;
  border-left: 3px solid var(--jaune);
  padding-left: 1rem;
}

.neo-values-col {
  flex: 1;
  padding: 0 2.5rem;
}

.neo-values-col .neo-values-sub {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--noir);
  background: var(--jaune);
  opacity: 1;
  margin: 0.35rem 0 1rem 0;
  padding: 0.3em 0.6em;
  border-left: none;
  display: inline-block;
}

.neo-values-col:first-child {
  padding-left: 0;
}

.neo-values-col:last-child {
  padding-right: 0;
}

.neo-values-sep {
  width: 1px;
  flex-shrink: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    #cec8c0 25%,
    #cec8c0 75%,
    transparent
  );
}

@media (max-width: 991.98px) {
  .neo-values-row {
    flex-direction: column;
  }

  .neo-values-sep {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      #cec8c0 25%,
      #cec8c0 75%,
      transparent
    );
    margin: 1.5rem 0;
  }

  .neo-values-col {
    padding: 0;
  }
}

/* Révélation typo — emerge neumorphique grande taille */
.neo-reveal-wrap {
  padding: 5rem 2rem;
  text-align: center;
}

.neo-emerge-big {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--gris-neo);
  -webkit-text-stroke: 1px transparent;
  text-shadow:
    0px 0px 0px #d4d0c8,
    0px 0px 0px #ffffff;
  transition:
    color 3s ease,
    -webkit-text-stroke-color 3s ease;
  cursor: default;
}

.neo-emerge-big:hover {
  color: transparent;
  -webkit-text-stroke: 1px #1a1a1a;
}

/* --- Étapes numérotées --- */
.neo-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.neo-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gris-neo);
}

.neo-step:last-child {
  border-bottom: none;
}

.neo-step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--noir);
  background: var(--jaune);
  line-height: 1;
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  box-shadow:
    4px 4px 10px #d0cdc5,
    -4px -4px 10px #ffffff;
  letter-spacing: -0.02em;
}

.neo-step .neo-values-sub {
  font-family: "Inter", sans-serif;
}

.neo-step-body {
  flex: 1;
}

/* --- Section différenciation — scroll narratif 2 colonnes --- */
.neo-diff-section {
  position: relative;
  padding: 3rem 0;
  overflow: visible;
}

.neo-diff-inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
  overflow: visible;
}

.neo-diff-left {
  flex: 0 0 50%;
  width: 50%;
}

.neo-diff-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 3rem 4rem clamp(1.5rem, 6vw, 5rem);
}

.neo-diff-panel-content {
  max-width: 480px;
}

.neo-diff-counter {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--jaune);
  padding: 0.2em 0.55em;
  margin-bottom: 0.75rem;
  margin-top: 0.25rem;
}

.neo-diff-right {
  flex: 0 0 50%;
  width: 50%;
  position: sticky;
  top: 0;
  padding: 0;
}

.neo-diff-right .neo-glass-frame {
  width: 100%;
  height: auto;
  aspect-ratio: unset;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  margin: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  animation: none;
  will-change: auto;
}

.neo-diff-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  animation: none;
}

/* --- Tablette (768px → 991px) --- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .neo-diff-right .neo-glass-frame {
    height: calc(100vh - 140px);
    width: auto;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* --- Mobile (< 768px) --- */
@media (max-width: 767.98px) {
  .neo-diff-inner {
    flex-direction: column;
  }

  .neo-diff-left,
  .neo-diff-right {
    flex: none;
    width: 100%;
  }

  .neo-diff-right {
    position: relative;
    top: 0;
    height: auto;
    padding: 3rem 0 1rem;
    overflow: visible;
    justify-content: center;
  }

  .neo-diff-right .neo-glass-frame {
    height: auto;
    width: 72vw;
    max-width: 320px;
    margin: 0 auto;
  }

  .neo-diff-panel {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .neo-diff-panel-content {
    max-width: 100%;
  }
}

/* --- Sections --- */
.neo-hero {
  padding: 6rem 0 5rem;
}

/* --- Section image éditoriale (plein fond + sticky) --- */
.neo-img-edito {
  display: flex;
  align-items: flex-start;
}

.neo-img-edito-left {
  flex: 0 0 50%;
  position: sticky;
  top: 0;
}

.neo-img-edito-img {
  width: 100%;
  height: auto;
  display: block;
}

.neo-img-edito-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5rem;
  padding: 6rem clamp(2rem, 6vw, 5rem);
}

.neo-img-edito-block {
  max-width: 480px;
}

@media (max-width: 991px) {
  .neo-img-edito {
    flex-direction: column;
    min-height: auto;
  }

  .neo-img-edito-left {
    position: static;
    flex: none;
    width: 100%;
    height: 65vw;
  }

  .neo-img-edito-right {
    gap: 3rem;
    padding: 3rem 1.5rem 4rem;
  }
}

/* --- Parallax pleine largeur pages service --- */
.neo-page-parallax {
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  position: relative;
}

.neo-page-parallax-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
}

.neo-section {
  padding: 6rem 0;
}

.neo-cta-band {
  padding: 6rem 0 7rem;
}

/* --- Typographie --- */
.neo-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--noir);
  opacity: 0.4;
  margin-bottom: 0.75rem;
}

.neo-h1-sub {
  display: block;
  width: fit-content;
  margin: 0.65rem auto 0;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--jaune);
  padding: 0.2em 0.55em;
}

.neo-projet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.neo-projet-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--noir);
  border: 1px solid rgba(20, 16, 22, 0.2);
  border-radius: 100px;
  padding: 0.3em 0.75em;
}

.neo-projet-meta span i {
  font-size: 0.85em;
  opacity: 0.6;
}

.neo-h1 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--noir);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

/* --- Hero : emerge neumorphique sur l'eyebrow --- */
.hero-emerge-text {
  opacity: 1 !important;
  color: var(--gris-neo) !important;
  text-shadow: none;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.neo-h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--noir);
  line-height: 1.18;
  margin-bottom: 1rem;
}

.neo-lead {
  font-size: 1.0625rem;
  color: var(--texte-light);
  opacity: 0.65;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.neo-body {
  font-size: 0.9375rem;
  color: var(--noir);
  opacity: 1;
  line-height: 1.78;
}

.neo-hint {
  font-size: 0.9rem;
  color: var(--texte-light);
  opacity: 0.55;
  line-height: 1.7;
}

.neo-answer {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--noir);
}

/* --- Boutons --- */
.neo-btn-primary {
  display: inline-block;
  background: var(--gris-neo);
  color: var(--noir);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    5px 5px 14px var(--neo-light-ombre),
    -5px -5px 14px var(--neo-light-lumiere);
  transition:
    box-shadow 0.9s ease,
    background 0.9s ease;
}

.neo-btn-primary:hover {
  color: var(--noir);
  background: var(--jaune);
  box-shadow:
    inset 4px 4px 10px rgba(0, 0, 0, 0.12),
    inset -4px -4px 10px rgba(255, 255, 255, 0.5);
}

.neo-btn-outline {
  display: inline-block;
  background: var(--gris-neo);
  color: var(--noir);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    5px 5px 14px var(--neo-light-ombre),
    -5px -5px 14px var(--neo-light-lumiere);
  transition:
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.neo-btn-outline:hover {
  color: var(--noir);
  box-shadow:
    inset 4px 4px 10px var(--neo-light-ombre),
    inset -4px -4px 10px var(--neo-light-lumiere);
}

.neo-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--texte-light);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: 999px;
  border: 1.5px solid rgba(42, 42, 42, 0.25);
  text-decoration: none;
  transition:
    border-color 0.4s ease,
    color 0.4s ease;
}

.neo-btn-secondary:hover {
  color: var(--noir);
  border-color: var(--jaune);
}

/* --- Bloc transition parcours --- */
.neo-transition-block {
  background: var(--gris-neo);
  padding: 5rem 0 5.5rem;
  box-shadow:
    inset 10px 10px 30px var(--neo-light-ombre),
    inset -10px -10px 30px var(--neo-light-lumiere);
}

.neo-transition-block .neo-h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.neo-transition-block .neo-h2::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--jaune);
  margin: 0 auto 1rem;
}

.neo-transition-block .neo-body {
  margin-bottom: 2rem;
  opacity: 0.7;
}

.neo-transition-block .neo-hint {
  opacity: 0.4;
  margin-top: 1.5rem;
  font-size: 0.8rem;
}

.neo-transition-block .neo-btn-secondary {
  box-shadow:
    5px 5px 14px var(--neo-light-ombre),
    -5px -5px 14px var(--neo-light-lumiere);
  border-color: transparent;
  background: var(--gris-neo);
  font-weight: 700;
}

.neo-transition-block .neo-btn-secondary:hover {
  background: var(--jaune);
  color: var(--noir);
  border-color: transparent;
  box-shadow:
    inset 4px 4px 10px rgba(0, 0, 0, 0.12),
    inset -4px -4px 10px rgba(255, 255, 255, 0.5);
}

/* --- CTA neumorphique --- */
.neo-anchor-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  margin-top: 1.75rem;
  padding: 0.9em 2em;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--noir);
  text-decoration: none;
  background: var(--gris-neo);
  border-radius: 50px;
  box-shadow:
    7px 7px 18px #d4d0c8,
    -6px -6px 16px #ffffff;
  transition:
    background 0.9s ease,
    box-shadow 0.9s ease;
}

.neo-anchor-link::after {
  content: "→";
  font-size: 1.1em;
  transition: transform 0.9s ease;
}

.neo-anchor-link:hover {
  color: var(--noir);
  background: var(--jaune);
  box-shadow:
    5px 5px 14px rgba(200, 185, 0, 0.35),
    -4px -4px 12px rgba(255, 255, 255, 0.85);
}

.neo-anchor-link:hover::after {
  transform: translateX(5px);
}

/* --- Animation néo : émergence du fond au scroll --- */
.neo-pain-card,
.neo-card-flat,
.neo-pricing-card,
.neo-table-wrap {
  opacity: 0;
  transform: translateY(16px);
  box-shadow:
    0px 0px 0px rgba(0, 0, 0, 0),
    0px 0px 0px rgba(255, 255, 255, 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.neo-pain-card.neo-visible,
.neo-card-flat.neo-visible,
.neo-pricing-card.neo-visible,
.neo-table-wrap.neo-visible {
  opacity: 1;
  transform: translateY(0);
}

.neo-pain-card.neo-visible,
.neo-card-flat.neo-visible {
  box-shadow:
    12px 12px 28px #bebebe,
    -12px -12px 28px #ffffff;
}

.neo-pricing-card.neo-visible {
  box-shadow:
    12px 12px 28px #bebebe,
    -12px -12px 28px #ffffff;
}

.neo-pricing-featured.neo-visible {
  box-shadow:
    12px 12px 28px #bebebe,
    -12px -12px 28px #ffffff,
    inset 0 0 0 2px var(--jaune);
}

.neo-table-wrap.neo-visible {
  box-shadow:
    12px 12px 28px #bebebe,
    -12px -12px 28px #ffffff;
}

/* --- Tabs méthode --- */
.neo-tabs {
  margin-left: auto;
  margin-right: auto;
}

.neo-tabs-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 0;
  padding-bottom: 2px;
}

.neo-tabs-nav::-webkit-scrollbar {
  display: none;
}

.neo-tab-btn {
  flex: 1 1 0;
  min-width: 0;
  background: var(--gris-neo);
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 10px 10px 0 0;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--texte-light);
  opacity: 0.55;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  box-shadow:
    4px 4px 10px #d0cdc5,
    -4px -4px 10px #ffffff;
  transition:
    opacity 0.9s ease,
    border-color 0.9s ease,
    box-shadow 0.9s ease;
}

.neo-tab-btn.is-active {
  opacity: 1;
  border-bottom-color: var(--jaune);
  font-weight: 600;
  box-shadow:
    6px 6px 16px #d0cdc5,
    -6px -6px 16px #ffffff;
}

.neo-tabs-panel-wrap {
  padding: 2rem 0.25rem;
}

.neo-tab-panel {
  display: none;
}

.neo-tab-panel.is-active {
  display: block;
}

.neo-tab-panel-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--texte-light);
  margin-bottom: 1.5rem;
}

.neo-tab-questions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.neo-tab-questions li {
  font-size: 0.9375rem;
  color: var(--texte-light);
  line-height: 1.6;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 2px solid transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    border-color 0.4s ease,
    color 0.4s ease;
}

.neo-tab-questions li:last-child {
  border-bottom: none;
}

.neo-tab-questions li:hover {
  border-left-color: var(--jaune);
  color: var(--noir);
}

@media (max-width: 767.98px) {
  .neo-tabs-nav {
    flex-wrap: wrap;
  }
  .neo-tab-btn {
    flex: 1 1 auto;
    min-width: 40%;
    white-space: normal;
  }
}

/* --- Pain cards --- */
.neo-pain-card {
  background: var(--gris-neo);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  color: var(--texte-light);
  line-height: 1.6;
  border-left: 3px solid var(--jaune);
}

.neo-pain-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.neo-pain-card-desc {
  font-size: 0.825rem;
  font-weight: 400;
  color: var(--texte-light);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  line-height: 1.55;
  transition:
    opacity 0.9s ease,
    max-height 0.9s ease;
}

.neo-pain-card:hover .neo-pain-card-desc {
  opacity: 0.75;
  max-height: 6rem;
}

@media (max-width: 991px) {
  .neo-pain-card-desc {
    opacity: 0.75;
    max-height: none;
  }
}

/* --- Card plate (stat) --- */
.neo-card-flat {
  background: var(--gris-neo);
  border-radius: 20px;
  padding: 2.5rem 2rem;
}

/* --- Cercle stat neumorphique --- */
.neo-circle-stat {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    12px 12px 28px var(--neo-light-ombre),
    -12px -12px 28px var(--neo-light-lumiere);
  background: var(--gris-neo);
}

.neo-stat {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--jaune);
  /* Ombre de texte néo */
  text-shadow: 2px 2px 6px var(--neo-light-ombre);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.neo-stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--noir);
  opacity: 1;
}

/* --- Pricing cards --- */
.neo-pricing-card {
  background: var(--gris-neo);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.neo-pricing-badge {
  display: inline-block;
  background: var(--jaune);
  color: var(--noir);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.neo-pricing-name {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--noir);
  opacity: 0.45;
  margin-bottom: 0.75rem;
}

.neo-pricing-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--noir);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.neo-pricing-price span {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.5;
}

.neo-pricing-annual {
  font-size: 0.85rem;
  color: var(--texte-light);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.neo-pricing-for-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--texte-light);
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.neo-pricing-for {
  font-size: 0.9rem;
  color: var(--texte-light);
  opacity: 0.65;
  line-height: 1.6;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 1.25rem;
}

.neo-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.neo-feature-list li {
  font-size: 0.9rem;
  color: var(--texte-light);
  line-height: 1.55;
  padding-left: 1.25rem;
  position: relative;
}

.neo-feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--jaune);
  font-weight: 700;
  font-size: 0.8rem;
}

/* --- Tables --- */
.neo-table-wrap {
  background: var(--gris-neo);
  border-radius: 16px;
  overflow: hidden;
}

.neo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.neo-table th {
  background: var(--gris-neo);
  text-align: left;
  padding: 0.875rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--noir);
  opacity: 0.45;
  box-shadow: inset 0 -2px 6px var(--neo-light-ombre);
}

.neo-table td {
  padding: 0.875rem 1.25rem;
  color: var(--texte-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.neo-table tbody tr:last-child td {
  border-bottom: none;
}

/* ========================================
   FORMULAIRE CONTACT
   ======================================== */

.neo-contact-form {
  width: 100%;
}

.neo-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.neo-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texte-light);
  opacity: 0.55;
}

.neo-input,
.neo-select,
.neo-textarea {
  width: 100%;
  background: var(--gris-neo);
  border: none;
  border-radius: 12px;
  padding: 0.875rem 1.125rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--texte-light);
  box-shadow:
    4px 4px 10px var(--neo-light-ombre),
    -4px -4px 10px var(--neo-light-lumiere);
  outline: none;
  transition: box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.neo-input::placeholder,
.neo-textarea::placeholder {
  color: var(--texte-light);
  opacity: 0.35;
}

.neo-input:focus,
.neo-select:focus,
.neo-textarea:focus {
  box-shadow:
    inset 4px 4px 10px var(--neo-light-ombre),
    inset -4px -4px 10px var(--neo-light-lumiere);
}

.neo-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232a2a2a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  padding-right: 2.5rem;
}

.neo-select option {
  background: var(--gris-neo);
  color: var(--texte-light);
}

.neo-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

/* Infos contact */
.neo-contact-info {
  padding: 2.5rem;
  background: var(--gris-neo);
  border-radius: 20px;
  box-shadow:
    8px 8px 20px var(--neo-light-ombre),
    -8px -8px 20px var(--neo-light-lumiere);
}

.neo-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.neo-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--texte-light);
  line-height: 1.55;
}

.neo-contact-icon {
  font-size: 1.1rem;
  color: var(--noir);
  opacity: 0.45;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.neo-contact-list a {
  color: var(--texte-light);
  text-decoration: none;
  transition: color 3s ease;
}

.neo-contact-list a:hover {
  color: var(--noir);
}

.neo-contact-mention {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.neo-contact-mention .neo-body {
  font-size: 0.875rem;
  opacity: 0.65;
}

/* Feedback formulaire */
.neo-contact-feedback {
  margin-bottom: 1.5rem;
}

.neo-contact-feedback--ok,
.neo-contact-feedback--error {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.neo-contact-feedback--ok {
  background: var(--gris-neo);
  box-shadow:
    inset 4px 4px 10px var(--neo-light-ombre),
    inset -4px -4px 10px var(--neo-light-lumiere);
  color: var(--texte-light);
  border-left: 3px solid var(--jaune);
}

.neo-contact-feedback--ok i,
.neo-contact-feedback--error i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.neo-contact-feedback--error {
  background: var(--gris-neo);
  box-shadow:
    inset 4px 4px 10px var(--neo-light-ombre),
    inset -4px -4px 10px var(--neo-light-lumiere);
  color: var(--texte-light);
  border-left: 3px solid rgba(0, 0, 0, 0.35);
}

.neo-contact-feedback--error a {
  color: var(--texte-light);
  font-weight: 600;
}

/* ========================================
   PAGES PROJET
   ======================================== */

/* En-tête : titre + infobar (pas d'image hero) */
.neo-projet-header {
  padding-top: calc(112px + 3.5rem);
  padding-bottom: 4.5rem;
}

/* Image à la une — parallax */
.neo-projet-parallax {
  width: 100%;
  aspect-ratio: 2 / 1;
  max-height: 70vh;
  overflow: hidden;
  position: relative;
}
.neo-projet-parallax img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform-origin: center top;
}

/* Galerie 2 colonnes */
.neo-projet-gallery-section {
  display: flex;
  align-items: flex-start;
}

/* Colonne gauche : texte éditorial sticky */
.neo-projet-gallery-left {
  position: sticky;
  top: 0;
  width: 42%;
  height: calc(100vh - 80px);
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding: 4rem 4rem 4rem clamp(1.5rem, 5vw, 6rem);
  box-sizing: border-box;
  overflow-y: auto;
  scrollbar-width: none;
}
.neo-projet-gallery-left::-webkit-scrollbar {
  display: none;
}

.neo-projet-gallery-text {
  width: 100%;
}

/* Colonne droite : images défilantes */
.neo-projet-gallery-right {
  flex: 1;
  padding: 5rem 3rem 8rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Titre et sous-titre dans la colonne gauche */
.neo-projet-gallery-intro {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.neo-projet-gallery-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--texte-light);
  margin: 1rem 0 1.5rem;
}

/* Mots clés */
.neo-projet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.neo-projet-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--texte-light);
  opacity: 0.7;
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  line-height: 1.4;
  background: var(--gris-neo);
  box-shadow:
    3px 3px 7px var(--neo-light-ombre),
    -3px -3px 7px var(--neo-light-lumiere);
}

/* Lien "Visiter le site" */
.neo-projet-visit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--texte-light);
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  background: var(--gris-neo);
  box-shadow:
    4px 4px 9px var(--neo-light-ombre),
    -4px -4px 9px var(--neo-light-lumiere);
  transition:
    box-shadow 0.9s ease,
    background 0.9s ease,
    color 0.9s ease;
}
.neo-projet-visit:hover {
  background: var(--jaune);
  box-shadow:
    inset 3px 3px 7px rgba(0, 0, 0, 0.08),
    inset -3px -3px 7px rgba(255, 255, 255, 0.6);
  color: var(--noir);
}

/* Bloc éditorial Approche / Résultat */

/* Lien inline éditorial */
.neo-editorial-link {
  color: var(--noir);
  text-decoration: none;
  border-bottom: 1px solid var(--neo-light-ombre);
  transition:
    border-bottom-color 0.9s ease,
    color 0.9s ease;
}
.neo-editorial-link:hover {
  color: var(--noir);
  border-bottom-color: var(--jaune);
}

/* Image individuelle */
.neo-projet-gallery-img {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.neo-projet-gallery-img img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* Ratios */
.neo-projet-gallery-img--16-9 {
  aspect-ratio: 16 / 9;
}
.neo-projet-gallery-img--4-3 {
  aspect-ratio: 4 / 3;
}
.neo-projet-gallery-img--portrait {
  aspect-ratio: 9 / 16;
  position: relative;
}
.neo-projet-gallery-img--portrait img {
  position: absolute;
  inset: -5% 0;
  width: 100%;
  height: 110%;
}

/* Logo : contain centré */
.neo-projet-gallery-img--logo {
  aspect-ratio: 3 / 1;
  background: var(--gris-neo);
}
.neo-projet-gallery-img--logo img {
  object-fit: contain;
  height: 100%;
  padding: 1.5rem 3rem;
  will-change: unset;
}

/* Label sur image galerie projet */
.neo-projet-img-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--jaune);
  color: var(--noir);
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25em 0.6em;
  pointer-events: none;
  z-index: 2;
}

/* Rangée de plusieurs images côte à côte */
.neo-projet-gallery-row {
  display: flex;
  gap: 1.25rem;
}
.neo-projet-gallery-row .neo-projet-gallery-img {
  flex: 1;
}

/* Retour grille */
.neo-projet-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texte-light);
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.9s ease;
}
.neo-projet-back:hover {
  opacity: 1;
  color: var(--texte-light);
}

/* Barre d'infos horizontale */
.neo-projet-infobar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}
.neo-projet-info-item {
  flex: 1 1 150px;
  padding: 0 2rem 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.neo-projet-info-sep {
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 0 2rem 1rem 0;
  align-self: stretch;
}
.neo-projet-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-light);
  opacity: 0.4;
}
.neo-projet-info-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texte-light);
}

/* Label de section galerie */
.neo-projet-galerie-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-light);
  opacity: 0.4;
  margin-bottom: 0.875rem;
  margin-top: 2.5rem;
}

/* Conteneurs images */
.neo-projet-img {
  border-radius: 14px;
  overflow: hidden;
  background: var(--neo-light-ombre);
  width: 100%;
}
.neo-projet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ratios */
.neo-projet-img--16-9 {
  aspect-ratio: 16 / 9;
}
.neo-projet-img--4-3 {
  aspect-ratio: 4 / 3;
}
.neo-projet-img--portrait {
  aspect-ratio: 9 / 16;
}

/* Logo : contain centré */
.neo-projet-img--logo {
  aspect-ratio: 3 / 1;
  background: var(--gris-neo);
  box-shadow:
    4px 4px 12px var(--neo-light-ombre),
    -4px -4px 12px var(--neo-light-lumiere);
}
.neo-projet-img--logo img {
  object-fit: contain;
  padding: 2rem 3rem;
}

/* Slider pleine largeur */
.neo-projet-slider-wrap {
  position: relative;
  padding: 0 4rem;
}
.neo-projet-slider-wrap .neo-projet-img {
  border-radius: 14px;
}

/* Contrôles carousel */
.neo-carousel-prev,
.neo-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: var(--gris-neo);
  box-shadow:
    4px 4px 10px var(--neo-light-ombre),
    -4px -4px 10px var(--neo-light-lumiere);
  color: var(--texte-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.9s ease;
}
.neo-carousel-prev:hover,
.neo-carousel-next:hover {
  box-shadow:
    inset 3px 3px 8px var(--neo-light-ombre),
    inset -3px -3px 8px var(--neo-light-lumiere);
}
.neo-carousel-prev {
  left: 0;
}
.neo-carousel-next {
  right: 0;
}

/* Navigation prev/next */
.neo-projet-nav-full {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.neo-projet-nav-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2.5rem 3rem;
  text-decoration: none;
  transition: opacity 0.9s ease;
}
.neo-projet-nav-block:hover {
  opacity: 0.55;
}
.neo-projet-nav-block--next {
  justify-content: flex-end;
  text-align: right;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.neo-projet-nav-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.neo-projet-nav-dir {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-light);
  opacity: 0.4;
}
.neo-projet-nav-title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--texte-light);
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .neo-projet-gallery-section {
    flex-direction: column;
  }
  .neo-projet-gallery-left {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    padding: 3rem 1.5rem 2rem;
  }
  .neo-projet-gallery-right {
    padding: 0 0 4rem;
  }
  .neo-projet-parallax {
    max-height: none;
  }
}

@media (max-width: 575.98px) {
  .neo-projet-nav-block {
    height: 180px;
    padding: 1.5rem;
  }
  .neo-projet-info-sep {
    display: none;
  }
  .neo-projet-info-item {
    flex: 1 1 120px;
    padding-right: 1rem;
  }
  .neo-projet-gallery-row {
    flex-direction: column;
  }
}

/* ============================================
   GRILLE PROJETS — metro + reveal hover
   ============================================ */

.neo-projets-section {
  padding: 0.5rem 0.5rem 7rem;
}

.neo-projets-grid {
  columns: 3;
  column-gap: 0.5rem;
}

.neo-projet-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5rem;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.neo-projet-card--dimmed {
  opacity: 0.11;
  transform: scale(0.97);
}

.neo-projet-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

/* Image : format naturel */
.neo-projet-card-img {
  margin: 0;
  overflow: hidden;
}

.neo-projet-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Texte : overlay absolu en bas de la carte */
.neo-projet-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1rem 0.75rem;
  background: var(--gris-neo);
  transform: translateY(100%);
  will-change: transform;
}

.neo-projet-card-eyebrow {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: var(--jaune);
  color: var(--noir);
  padding: 0.2em 0.5em;
  margin-bottom: 0.5rem;
}

.neo-projet-card-title {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.neo-projet-card-loc {
  font-size: 0.72rem;
  color: var(--texte-light);
  opacity: 0.5;
  margin-bottom: 0;
  letter-spacing: 0.04em;
}

@media (max-width: 991.98px) {
  .neo-projets-grid {
    columns: 2;
  }
}

@media (max-width: 575.98px) {
  .neo-projets-grid {
    columns: 1;
    column-gap: 0;
  }
}

/* ============================================
   FILTRE PERSONAS — PAGE PROJETS
   ============================================ */

.neo-projets-filter-wrap {
  padding: 1rem 0 0;
}

.neo-projets-filter {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
}

.neo-projets-filter-phrase {
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 600;
  color: var(--texte-light);
  line-height: 1.9;
  margin-bottom: 0.4rem;
}

.neo-select-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.neo-select-wrap select {
  -webkit-appearance: none;
  appearance: none;
  background: var(--gris-neo);
  border: none;
  box-shadow:
    inset 4px 4px 10px var(--neo-light-ombre),
    inset -4px -4px 10px var(--neo-light-lumiere);
  border-radius: 50px;
  padding: 0.22em 2.8em 0.22em 1.25em;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: var(--noir);
  cursor: pointer;
  outline: none;
  transition: box-shadow 3s ease;
}

.neo-select-wrap select:focus {
  box-shadow:
    inset 5px 5px 13px var(--neo-light-ombre),
    inset -5px -5px 13px var(--neo-light-lumiere);
}

.neo-select-arrow {
  position: absolute;
  right: 1.1em;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--noir);
  pointer-events: none;
  opacity: 0.4;
}

.neo-projets-filter-sub {
  font-size: 0.82rem;
  color: var(--texte-light);
  opacity: 0.4;
  margin-top: 0.5rem;
  min-height: 1.4em;
  letter-spacing: 0.03em;
}

/* Placeholder image pour les projets sans photo */
.neo-projet-card-img--placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gris-neo);
  box-shadow:
    inset 3px 3px 8px var(--neo-light-ombre),
    inset -3px -3px 8px var(--neo-light-lumiere);
}

.neo-projet-card-placeholder-text {
  font-size: 0.68rem;
  color: var(--texte-light);
  opacity: 0.28;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================
   AMBIGRAMME — PAGE PROJET CBC
   ============================================ */

.neo-projet-demos {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2.5rem 1rem 1rem;
}

.neo-projet-ambigram-wrap {
  text-align: center;
  flex: 0 0 auto;
}

.neo-projet-ambigram {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  background: var(--gris-neo);
  border-radius: 50%;
  box-shadow:
    8px 8px 20px var(--neo-light-ombre),
    -8px -8px 20px var(--neo-light-lumiere);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

/* Variante sans padding pour les SVG qui doivent remplir le cercle */
.neo-projet-ambigram--full {
  padding: 0.35rem;
}

.neo-projet-ambigram svg {
  width: 100%;
  height: 100%;
  display: block;
}

.neo-projet-ambigram-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  padding: 0.5em 1.4em;
}

.neo-projet-ambigram-hint {
  font-size: 0.75rem;
  color: var(--texte-light);
  opacity: 0.4;
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

/* =====================================================
   PAGE D'ACCUEIL
   ===================================================== */

/* Hero home */
.neo-hero--home {
  padding-top: calc(112px + 5rem);
  padding-bottom: 6rem;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Canvas de mots-clés hero */
.hero-kw-canvas {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  z-index: 0;
  mask-image: radial-gradient(
    ellipse 46% 52% at 50% 50%,
    transparent 55%,
    black 90%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 46% 52% at 50% 50%,
    transparent 55%,
    black 90%
  );
}

.hero-kw-row {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

/* Offsets décalés pour l'effet brique */
.hero-kw-row--1 {
  transform: translateX(0);
}
.hero-kw-row--2 {
  transform: translateX(8%);
}
.hero-kw-row--3 {
  transform: translateX(-6%);
}

.hero-kw {
  color: var(--gris-neo);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-shadow:
    -3px -3px 7px rgba(255, 255, 255, 0.95),
    3px 3px 8px rgba(180, 170, 158, 0.65);
}

/* Taille variée par rangée — débordements voulus */
.hero-kw-row--a .hero-kw {
  font-size: 4rem;
}
.hero-kw-row--b .hero-kw {
  font-size: 5.5rem;
}
.hero-kw-row--c .hero-kw {
  font-size: 4.8rem;
}

@keyframes kw-breathe {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.hero-kw-row--a {
  animation: kw-breathe 8s ease-in-out infinite;
}
.hero-kw-row--b {
  animation: kw-breathe 8s ease-in-out infinite;
  animation-delay: -2.7s;
}
.hero-kw-row--c {
  animation: kw-breathe 8s ease-in-out infinite;
  animation-delay: -5.3s;
}

@media (max-width: 767.98px) {
  .hero-kw-canvas {
    display: none;
  }
}

.hero-trait-jaune {
  height: 3px;
  width: 72px;
  background: var(--jaune);
  margin: 1.5rem auto 0;
  transform: scaleX(0);
  transform-origin: center;
}

.hero-home-logo-wrap {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: hero-logo-light 9s linear infinite;
}

.hero-home-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
}

@keyframes hero-logo-light {
  0% {
    box-shadow:
      -14px -14px 30px #ffffff,
      14px 14px 30px #d4d0c8,
      inset 8px 8px 18px rgba(255, 255, 255, 0.75),
      inset -8px -8px 18px rgba(180, 170, 158, 0.35);
  }
  25% {
    box-shadow:
      14px -14px 30px #ffffff,
      -14px 14px 30px #d4d0c8,
      inset -8px 8px 18px rgba(255, 255, 255, 0.75),
      inset 8px -8px 18px rgba(180, 170, 158, 0.35);
  }
  50% {
    box-shadow:
      14px 14px 30px #ffffff,
      -14px -14px 30px #d4d0c8,
      inset -8px -8px 18px rgba(255, 255, 255, 0.75),
      inset 8px 8px 18px rgba(180, 170, 158, 0.35);
  }
  75% {
    box-shadow:
      -14px 14px 30px #ffffff,
      14px -14px 30px #d4d0c8,
      inset 8px -8px 18px rgba(255, 255, 255, 0.75),
      inset -8px 8px 18px rgba(180, 170, 158, 0.35);
  }
  100% {
    box-shadow:
      -14px -14px 30px #ffffff,
      14px 14px 30px #d4d0c8,
      inset 8px 8px 18px rgba(255, 255, 255, 0.75),
      inset -8px -8px 18px rgba(180, 170, 158, 0.35);
  }
}

/* À propos — accueil */
.neo-section.neo-about {
  padding: 10rem 0;
}

.neo-about-photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    12px 12px 32px #d4d0c8,
    -8px -8px 24px #ffffff,
    inset 5px 5px 14px var(--neo-light-ombre),
    inset -5px -5px 14px var(--neo-light-lumiere);
  display: flex;
  align-items: center;
  justify-content: center;
}

.neo-about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.neo-about-list {
  padding-left: 1.2em;
  margin-top: 0.75rem;
}

.neo-about-list li {
  margin-bottom: 0.5rem;
}

.neo-about-photo-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neo-light-ombre);
  user-select: none;
}

/* Carrousel swipeable */
.neo-img-carousel {
  height: 55vh;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.neo-img-carousel::-webkit-scrollbar {
  display: none;
}

.neo-img-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.neo-img-carousel-inner {
  display: flex;
  gap: 10px;
  height: 100%;
  padding: 0 10px;
}

.neo-img-carousel-item {
  flex-shrink: 0;
  height: 100%;
  overflow: hidden;
  display: block;
  scroll-snap-align: start;
}

.neo-img-carousel-item img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 1.2s ease;
}

.neo-img-carousel-item:hover img {
  transform: scale(1.03);
}

/* Mosaïque parallax */
.neo-mosaic {
  display: flex;
  gap: 0.4rem;
  height: 50vh;
  overflow: hidden;
  padding: 0 0.4rem;
}

.neo-mosaic-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  will-change: transform;
}

.neo-mosaic-col img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  display: block;
}

/* Tablet : 3 colonnes */
@media (min-width: 768px) {
  .neo-mosaic {
    height: 70vh;
  }
  .neo-mosaic-col:nth-child(4) {
    display: none;
  }
}

/* Desktop : 4 colonnes */
@media (min-width: 1200px) {
  .neo-mosaic {
    height: 85vh;
  }
  .neo-mosaic-col:nth-child(4) {
    display: flex;
  }
}

/* Mobile : 2 colonnes, sans parallax (géré en JS) */
@media (max-width: 767px) {
  .neo-mosaic-col:nth-child(3),
  .neo-mosaic-col:nth-child(4) {
    display: none;
  }
}

/* Scroll narratif 4 services */
.neo-services-scroll {
  position: relative;
  padding: 3rem 0;
}

.neo-services-inner {
  display: flex;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.neo-services-visual {
  flex: 0 0 50%;
  width: 50%;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Extend panels column by 100vh so sticky range covers all 4 panels */
.neo-services-panels::after {
  content: "";
  display: block;
  height: 100vh;
}

.neo-services-vi {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  opacity: 0;
  pointer-events: none;
}

/* Orbs décoratifs autour des numéros sticky */
.neo-orb--svc-a {
  width: 90px;
  height: 90px;
  top: 14%;
  left: 15%;
  transform: rotate(0.01deg);
}
.neo-orb--svc-b {
  width: 180px;
  height: 180px;
  bottom: 12%;
  right: 15%;
  transform: rotate(0.01deg);
}
.neo-orb--svc-c {
  width: 56px;
  height: 56px;
  top: 52%;
  left: 10%;
  transform: rotate(0.01deg);
}

.neo-services-num {
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gris-neo);
  text-shadow:
    -4px -4px 9px rgba(255, 255, 255, 0.95),
    4px 4px 12px rgba(180, 170, 158, 0.7);
}

.neo-services-icon {
  font-size: 2.75rem;
  color: var(--jaune);
  filter: drop-shadow(0 4px 14px rgba(255, 237, 0, 0.5));
}

.neo-services-panels {
  flex: 0 0 50%;
  width: 50%;
}

.neo-services-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem clamp(1.5rem, 5vw, 4rem) 4rem 3rem;
}

.neo-services-panel-content {
  max-width: 480px;
}

.neo-services-counter {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .neo-services-inner {
    flex-direction: column;
  }
  .neo-services-visual {
    position: relative;
    height: 40vw;
    width: 100%;
    flex: none;
  }
  .neo-services-panels {
    flex: none;
    width: 100%;
  }
  .neo-services-panel {
    min-height: auto;
    padding: 3rem 1.5rem;
  }
  .neo-services-panels::after {
    display: none;
  }
  .neo-services-scroll > .neo-orb {
    display: none;
  }
}

/* Services */
a.neo-card-flat.neo-service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--noir);
  height: 100%;
  padding: 1.75rem;
}

a.neo-card-flat.neo-service-card:hover {
  box-shadow:
    inset 4px 4px 10px var(--neo-light-ombre),
    inset -4px -4px 10px var(--neo-light-lumiere);
}

.neo-service-icon {
  font-size: 1.75rem;
  color: var(--noir);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.neo-service-link {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
}

/* Citation */
.neo-section--citation {
  padding: 2rem 0 3rem;
}

.neo-citation-source {
  margin-top: 0.75rem;
  margin-left: 2.25rem;
}

/* Projets home */
a.neo-home-projet-card {
  display: block;
  text-decoration: none;
  color: var(--noir);
  padding: 0;
  overflow: hidden;
}

.neo-home-projet-img {
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.neo-home-projet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 3s ease;
  display: block;
}

a.neo-home-projet-card:hover .neo-home-projet-img img {
  transform: scale(1.04);
}

.neo-home-projet-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.neo-home-projet-name {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0.3rem 0 0.4rem;
  color: var(--noir);
}
