
:root {
  /* Couleurs globales */
  --global-color-white: rgb(247, 245, 246);
  --global-color-black: #0f0f0f;
  --global-color-background: #fff;
  --global-color-gray: #cecece;
  --global-color-dark-gray: #383838;
  --global-color-light-gray: #555;
  --global-color-dark: rgba(27, 27, 27, 0.95);
  --global-color-blue: #1b44fe;
  /* Tailles de police responsives */
  --font-xs: clamp(0.8rem, 1vw, 0.9rem);
  --font-sm: clamp(0.935rem, 1.2vw, 1rem);
  --font-md: clamp(1rem, 1.5vw, 1.05rem);
  --font-lg: clamp(1.25rem, 2vw, 1.5rem);
  --font-xl: clamp(1.75rem, 3vw, 2.25rem);
  --font-xxl: clamp(2.5rem, 5vw, 3.6rem);
  --font-hero: clamp(3rem, 7vw, 3.8rem);
  --navbar-offset: 112px;
}

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

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

/* Base */
html,
body {
  margin: 0;
  background-color: var(--global-color-background);
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  transition: background-color 0.5s ease;
  letter-spacing: -0.05em;
  text-align: center;
}

body {
  padding-top: 0;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.section-tag {
  display: block;
  width: fit-content;
  margin: 0 auto 1.5rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  text-align: center;
}

.section-tag--dark {
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.02);
  color: rgba(0, 0, 0, 0.65);
}

.section-tag--light {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.section-title {
  margin: 0 0 2.5rem;
  text-align: center;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-title--dark {
  color: #111111;
  font-size: clamp(2rem, 3.8vw, 4.9rem);
  font-weight: 600;
}

.section-title--light {
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 4.9rem);
  font-weight: 600;
}

.section-grid + .section-grid {
  margin-top: 10rem;
}



/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  z-index: 50;
  padding: 2rem 2.3rem .8rem 2.3rem;
  margin: 0 auto;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: calc(100% - 3.4rem);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}

.navbar.navbar-menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


.nav-center a {
  color: var(--global-color-black);
  margin-right: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-xs);
}

.nav-left .logo {
  width: 70px;
  height: auto;
  display: block;
}

.nav-left {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
}

.nav-menu {
  position: static;
}

.nav-menu-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(15, 15, 15, 0.18);
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  position: relative;
  z-index: 130;
}

.nav-menu.is-open .nav-menu-toggle {
  z-index: 1;
  pointer-events: none;
}

.nav-menu-toggle__arrow {
  width: 7px;
  height: 7px;
  margin-top: -1px;
  margin-left: -1px;
  border-right: 1.8px solid #0f0f0f;
  border-bottom: 1.8px solid #0f0f0f;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 220ms ease;
}

.nav-menu.is-open .nav-menu-toggle__arrow {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-menu-toggle:hover {
  border-color: rgba(15, 15, 15, 0.28);
  background: #ffffff;
}

.nav-menu-dropdown {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  margin: 0;
  text-align: left;
  box-shadow: none;
  padding: 7.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 260ms ease, transform 460ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms ease;
  z-index: 120;
}

.nav-menu.is-open .nav-menu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu-dropdown a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  padding: 0.25rem 0;
  margin-left: 6rem;
  border-radius: 0;
  font-size: clamp(1.6rem, 4.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 0% 2px;
  background-repeat: no-repeat;
  transition: background-size 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-menu-dropdown a:hover {
  background-size: 100% 2px;
}

.nav-menu-close {
  position: absolute;
  top: 4rem;
  left: 6rem;
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  appearance: none;
}

.nav-menu-close::before,
.nav-menu-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 2px;
  border-radius: 1px;
  background: #000;
  transform-origin: center;
}

.nav-menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-menu-dropdown a[aria-disabled="true"] {
  opacity: 0.48;
  pointer-events: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-switch__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.lang-switch__select {
  appearance: none;
  -webkit-appearance: none;
  font-family: "Inter", sans-serif;
  font-size: var(--font-xs);
  font-weight: 500;
  color: #1a1a1a;
  padding: 0.7rem 1.6rem 0.7rem 1rem;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 999px;
  background-image:
    linear-gradient(45deg, transparent 50%, #4a4a4a 50%),
    linear-gradient(135deg, #4a4a4a 50%, transparent 50%);
  background-position:
    calc(100% - 0.95rem) calc(50%),
    calc(100% - 0.65rem) calc(50%);
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
  height: 42px;
  line-height: 1;
}

.whatsapp-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #00b944;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.navbar .contact-button {
  height: 42px;
  min-height: 42px;
  padding: 0 0.95rem;
  font-size: var(--font-xs);
  font-weight: 500;
  line-height: 1;
  justify-content: center;
}

.contact-button {
  position: relative;
  padding: 0.9rem 1.25rem;
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--global-color-white);
  background: var(--global-color-black);
  border-radius: 2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  z-index: 1;
  transition: all 250ms ease-in-out;
  backdrop-filter: blur(10px);
}

main {
  margin-top: 3rem;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  padding: 1.25rem 2rem 2rem;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.hero-proof__avatars {
  display: flex;
  align-items: center;
  padding-left: 0.7rem;
}

.hero-proof__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -0.7rem;
  background: #fff;
}

.hero-proof__text {
  margin: 0;
  font-size: var(--font-sm);
  font-weight: 500;
  color: rgb(0, 0, 0, 0.6);
}


.feature-tag-main-second-page {
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--global-color-black);
    margin: 0 auto;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  text-align: center;
  padding: 10px;
  gap: 6px;
}

.hero-laurel-badge::before,
.hero-laurel-badge::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 58px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: brightness(0) saturate(100%) invert(18%) sepia(98%) saturate(7478%) hue-rotate(231deg) brightness(101%) contrast(99%);
}

.hero-laurel-badge::before {
  background-image: url("../img/lauriet-gauche.avif");
  opacity: .85;
}

.hero-laurel-badge::after {
  background-image: url("../img/lauriet-droit.avif");
  opacity: .85;
}

.hero__title {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.65rem, 5.8vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-align: center;
  text-wrap: balance;
  max-width: 24ch;
  color: #0c0c0d;
}

.hero__title-word-wrap {
  display: inline-block;
  position: relative;
  margin-left: 0.55rem;
  vertical-align: -0.08em;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.20em;
  white-space: nowrap;
  transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  line-height: inherit;
}

.hero__title-word {
  display: block;
  color: var(--global-color-blue);
  will-change: transform, opacity, filter;
  transition: opacity 0.34s ease, transform 0.34s ease, filter 0.34s ease;
  line-height: inherit;
}

.hero__title-word-wrap > span {
  color: var(--global-color-blue);
}

.blog-index-page .hero__title-word-wrap > span {
  color: #0c0c0d;
}

.hero__title-word.is-leaving {
  opacity: 0;
  transform: translateY(-0.16em);
  filter: blur(3px);
}

.hero__title-word.is-entering {
  animation: hero-word-in 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes hero-word-in {
  from {
    opacity: 0;
    transform: translateY(0.16em);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 3rem;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  }


.hero__btn--primary {
position: relative;
    padding: 0.7rem 1rem;
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--global-color-white);
  background: var(--global-color-black);
    border-radius: 2rem;
      border: solid 1px rgba(12, 12, 13, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    z-index: 1;
    transition: all 250ms ease-in-out;
}

.hero__btn--secondary {
  color: #0c0c0d;
   padding: 0.7rem 1rem;
    font-size: var(--font-sm);
    font-weight: 500;
    border-radius: 2rem;
    text-decoration: none;
  border: solid 1px rgba(12, 12, 13, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trustpilot_content img {
  margin-top: 3rem;
  width: 18vw;
  height: auto;
  display: block;
  opacity: .8;
  max-width: 300px;
  min-width: 200px;
}

/* Container centre et taille responsive */
.video-hero {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 10px auto;
  margin-top: 3rem;
  padding: 0;
  box-sizing: border-box;
  border-radius: 20px;
  position: relative;
  overflow: visible;
  border: none;
}

/* Lueur animee autour du bord */
.video-hero::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  background: radial-gradient(80% 70% at 50% 50%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  filter: blur(20px);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.video-hero:hover::before {
  transform: scale(1.03);
  opacity: 1;
}

/* La video elle-meme */
.video-hero-content {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8;
  max-height: 82vh;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  object-fit: cover;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.video-hero-player {
  position: relative;
}

.video-hero-controls {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(92%, 760px);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.video-hero-player:hover .video-hero-controls,
.video-hero-player:focus-within .video-hero-controls {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.logo-marquee {
  width: 100%;
  max-width: 1200px;
  margin-top: 2.2rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.hero-companies-proof {
  margin-top: 6rem;
  margin-bottom: 0.2rem;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: var(--global-color-black);
  text-align: center;
}

.hero-companies-proof__count {
  display: inline-block;
  min-width: 1.35ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.logo-marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 3.8rem;
  animation: logo-scroll 30s linear infinite;
  will-change: transform;
}

.logo-marquee__img {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 220ms ease, opacity 220ms ease;
}

.logo-marquee__img:hover,
.logo-marquee__img:focus-visible {
  filter: grayscale(0);
  opacity: 1;
}

.logo-marquee__img--carroz {
  height: 30px;
  max-width: 220px;
}

.hero-scroll-indicator {
  position: relative;
  width: 100px;
  height: 100px;
  margin-top: 0rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #101010;
}

.hero-scroll-indicator__ring {
  width: 100%;
  height: 100%;
  animation: scroll-indicator-spin 9s linear infinite;
}

.hero-scroll-indicator__ring text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: #111111;
}

.hero-scroll-indicator__arrow {
  position: absolute;
  font-size: 2.35rem;
  font-weight: 300;
  line-height: 1;
}

@keyframes scroll-indicator-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.video-unmute-hint {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.72);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.video-unmute-hint i {
  color: #ffffff;
}

.video-unmute-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
}

.video-control-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: none;
}

.video-control-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 1em;
  height: 1em;
}

.video-control-progress {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  --progress: 0%;
  height: 14px;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.video-control-progress::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff var(--progress),
    rgba(255, 255, 255, 0.24) var(--progress),
    rgba(255, 255, 255, 0.24) 100%
  );
}

.video-control-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
  border: 0;
  background: transparent;
  opacity: 0;
}

.video-control-progress::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.video-control-progress::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
}

.video-control-progress::-moz-range-thumb {
  width: 0;
  height: 0;
  border: 0;
  background: transparent;
  opacity: 0;
}

/* Option ratio fixe */
.video-hero--ratio {
  aspect-ratio: 16 / 10;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 12px;
  border-radius: 20px;
  position: relative;
  overflow: visible;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 1rem;
  }

  .hero {
    padding-top: 0.85rem;
  }

  .hero__actions {
    width: 100%;
  }

  .hero-proof {
    gap: 0.55rem;
    margin-bottom: 0.8rem;
  }

  .hero-proof__avatar {
    width: 30px;
    height: 30px;
  }

  .hero__btn {
    min-width: 0;
    width: 100%;
    max-width: 320px;
  }

  .nav-right {
    gap: 0.5rem;
  }

  .lang-switch__select {
    min-width: 66px;
    height: 34px;
    padding: 0.35rem 1.2rem 0.35rem 0.55rem;
    background-position:
      calc(100% - 0.9rem) calc(50% - 2px),
      calc(100% - 0.6rem) calc(50% - 2px);
  }

  .scroll-manifesto {
    min-height: 62vh;
    margin: 0.8rem 0 0.35rem;
  }

  .scroll-manifesto__text {
    font-size: clamp(1rem, 5vw, 1.5rem);
    line-height: 1.08;
    font-weight: 800;
    transform: translateY(0);
  }

}

@media (max-width: 560px) {
  .video-hero {
    padding: 0;
    border-radius: 14px;
  }

  .video-hero-content {
    border-radius: 10px;
    max-height: 70vh;
  }

  .video-hero-controls {
    gap: 0.55rem;
    padding: 0.45rem 0.55rem;
    bottom: 0.7rem;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  .video-control-btn {
    width: 34px;
    height: 34px;
  }

  .video-unmute-hint {
    top: 0.7rem;
    right: 0.7rem;
    font-size: 0.78rem;
    padding: 0.35rem 0.55rem;
  }

  .video-hero::before {
    filter: blur(14px);
  }

  .logo-marquee {
    margin-top: 1.8rem;
  }

  .logo-marquee__track {
    gap: 2.4rem;
    animation-duration: 24s;
  }

  .logo-marquee__img {
    height: 54px;
  }

  .logo-marquee__img--carroz {
    height: 42px;
    max-width: 180px;
  }

  .hero-scroll-indicator {
    width: 98px;
    height: 98px;
    margin-top: 1.2rem;
  }

  .hero-scroll-indicator__ring text {
    font-size: 10px;
  }

  .hero-scroll-indicator__arrow {
    font-size: 1.9rem;
  }

}

@media (hover: none), (pointer: coarse) {
  .video-hero-controls {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}




.realisations-section {
  padding: 4rem 3rem 1.2rem;
  background: #ffffff;
}

.realisations-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.realisations-carousel {
  position: relative;
  margin-top: 1.2rem;
  overflow: hidden;
}

.realisations-track {
  position: relative;
  height: clamp(220px, 34vw, 420px);
}

.realisations-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  width: min(48vw, 560px);
  aspect-ratio: 16 / 10;
  border-radius: 26px;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  filter: saturate(0.75);
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1), opacity 560ms ease, box-shadow 560ms ease, filter 560ms ease;
  border: 3px solid rgba(18, 18, 18, 0.08);
  box-shadow: none;
  pointer-events: auto;
  cursor: default;
}

.realisations-slide.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: saturate(1);
  z-index: 3;
  box-shadow: none;
  cursor: pointer;
}

.realisations-slide.is-prev {
  opacity: 0.44;
  transform: translate(calc(-50% - 46%), -50%) scale(0.84) rotate(-3deg);
  z-index: 2;
}

.realisations-slide.is-next {
  opacity: 0.44;
  transform: translate(calc(-50% + 46%), -50%) scale(0.84) rotate(3deg);
  z-index: 2;
}

.realisations-slide.is-far-left {
  opacity: 0;
  transform: translate(calc(-50% - 78%), -50%) scale(0.72);
  z-index: 1;
}

.realisations-slide.is-far-right {
  opacity: 0;
  transform: translate(calc(-50% + 78%), -50%) scale(0.72);
  z-index: 1;
}

.realisations-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
}

.realisations-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.3;
  gap: 0.7rem;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  padding: 1rem;
}

.realisations-slide-overlay i {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 1.4rem;
  transform: rotate(-45deg);
  transition: transform 240ms ease;
}

.realisations-case-link {
  margin-top: 0.2rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-size: 0.8rem;
  text-decoration: none;
}

.realisations-slide:not(.is-active) .realisations-slide-overlay {
  display: none;
}

.realisations-slide.is-active:hover .realisations-slide-overlay {
  opacity: 1;
  transform: scale(1);
}

.realisations-slide.is-active:hover .realisations-slide-overlay i {
  transform: translate(3px, -3px) rotate(-45deg);
}

.realisations-slide.is-active img {
  opacity: 1;
  filter: none;
}

.realisations-slide.is-prev img,
.realisations-slide.is-next img {
  filter: grayscale(0.04);
}

.project-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 280ms ease, visibility 0s linear 280ms;
}

.project-preview-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 280ms ease;
}

.project-preview-modal.is-closing {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.project-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 260ms ease;
}

.project-preview-modal.is-open .project-preview-backdrop {
  opacity: 1;
}

.case-studies-section {
  padding: 1.6rem 3rem 1.2rem;
  background: #ffffff;
}

.case-studies-inner {
  max-width: 1320px;
  margin: 0 auto;
  margin-top: 3rem;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.case-study-card {
  display: block;
  text-align: left;
  color: #111;
  height: 100%;
}

.case-study-card__media {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(18, 18, 18, 0.1);
  box-shadow: none;
}

.case-study-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-study-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.3;
  gap: 0.7rem;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  padding: 1rem;
}

.case-study-card__overlay i {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 1.4rem;
  transform: rotate(-45deg);
  transition: transform 240ms ease;
}

.case-study-card:hover .case-study-card__overlay {
  opacity: 1;
  transform: scale(1);
}

.case-study-card:hover .case-study-card__overlay i {
  transform: translate(3px, -3px) rotate(-45deg);
}

.case-study-card__title {
  margin: 0.9rem 0 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.case-study-card__description {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #3d3d3d;
}

.case-study-card--text {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  transition: border-color 240ms ease, transform 240ms ease;
}

.case-study-card--text .case-study-card__title {
  margin-top: 0;
  margin-bottom: 0.42rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.case-study-card__tag {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: rgba(0, 0, 0, 0.72);
  background: rgba(17, 17, 17, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.case-study-card__tag--blog {
  background: rgba(17, 17, 17, 0.2);
}

.case-study-card__tag--seo {
  background: rgba(17, 94, 89, 0.2);
}

.case-study-card__tag--siteweb {
  background: rgba(29, 78, 216, 0.2);
}

.case-study-card__tag--landing {
  background: rgba(217, 119, 6, 0.2);
}

.case-study-card__tag--ia {
  background: rgba(67, 56, 202, 0.2);
}

.case-study-card__tag--local {
  background: rgba(21, 128, 61, 0.2);
}

.case-study-card__tag--conversion {
  background: rgba(185, 28, 28, 0.2);
}

.case-study-card__meta {
  margin: 0;
  margin-top: auto;
  padding-top: 0.8rem;
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.88rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.05em;
  order: 3;
}

.case-study-card--clickable:hover {
  border-color: rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.case-study-card--clickable .case-study-card__overlay {
  border-radius: 14px;
}

.case-study-card--clickable:hover .case-study-card__overlay {
  opacity: 1;
  transform: scale(1);
}

.case-study-card--clickable:hover .case-study-card__overlay i {
  transform: translate(3px, -3px) rotate(-45deg);
}

.case-study-card--text .case-study-card__description {
  margin: 0;
  order: 2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(0, 0, 0, 0.62);
}

.case-study-detail-section {
  padding: 1.6rem 3rem 1.2rem;
  background: #ffffff;
}

.case-study-detail-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.case-study-detail-image {
  width: 100%;
  border-radius: 18px;
  border: 2px solid rgba(18, 18, 18, 0.1);
  display: block;
  box-shadow: none;
}

.case-study-preview-trigger {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.case-study-preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 240ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  border-radius: 18px;
}

.case-study-preview-overlay i {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  font-size: 1.35rem;
  transform: rotate(-45deg);
  transition: transform 220ms ease;
}

.case-study-preview-trigger:hover .case-study-preview-overlay {
  opacity: 1;
  transform: scale(1);
}

.case-study-preview-trigger:hover .case-study-preview-overlay i {
  transform: translate(3px, -3px) rotate(-45deg);
}

.case-study-detail-content {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.case-study-detail-content .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.case-study-detail-content p {
  margin: 0 0 2rem;
  color: #222;
  font-size: 1.03rem;
  line-height: 1.65;
}

.case-study-detail-content h2 {
  margin: 3rem 0 0.7rem;
  color: #111;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.case-study-detail-content ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.case-study-detail-content li {
  margin: 0 0 0.45rem;
  color: #222;
  font-size: 1.02rem;
  line-height: 1.6;
}

/* Contact page */
.contact-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.contact-page__layout {
  display: block;
}

.contact-form {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: #fff;
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: left;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.contact-form__field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.contact-form__field label {
  font-size: 0.86rem;
  color: rgba(16, 16, 16, 0.76);
  font-weight: 500;
  text-align: left;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(16, 16, 16, 0.18);
  border-radius: 0.82rem;
  background: #fff;
  padding: 0.78rem 0.85rem;
  font: inherit;
  color: #111;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: rgba(16, 16, 16, 0.42);
  box-shadow: 0 0 0 3px rgba(16, 16, 16, 0.07);
}

.contact-form__submit {
  margin-top: 0.25rem;
  margin-left: 0;
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(12, 12, 13, 0.2);
  background: #111;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: var(--font-sm);
  font-weight: 500;
  letter-spacing: -0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: none;
}

.contact-form__submit:hover {
  transform: none;
  opacity: 1;
}

.contact-form__status {
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  color: #4b4b4b;
  text-align: left;
}

.contact-page__card {
  display: block;
  text-align: left;
  padding: 1.2rem 1.2rem 1.25rem;
  border: 1px solid rgba(16, 16, 16, 0.14);
  border-radius: 1rem;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-page__card:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 16, 16, 0.28);
}

.contact-page__card--static:hover {
  transform: none;
  border-color: rgba(16, 16, 16, 0.14);
}

.contact-page__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: #111;
}

.contact-page__card h2 {
  margin: 0 0 0.35rem;
  color: #111;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-page__card p {
  margin: 0;
  color: #3b3b3b;
  font-size: 0.98rem;
  line-height: 1.5;
}

/* Blog article pages */
.blog-article-shell {
  max-width: 860px;
  margin: 0 auto 4rem;
  display: block;
  text-align: left;
}

.blog-article-page .hero__title {
  font-size: clamp(1.45rem, 4.3vw, 3.1rem);
}

.blog-article-page .hero__actions {
  margin-bottom: 2.6rem;
}

.blog-breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: 0.2rem;
  font-size: 0.86rem;
  color: rgba(17, 17, 17, 0.66);
}

.blog-breadcrumb a {
  color: rgba(17, 17, 17, 0.76);
  transition: color 160ms ease;
}

.blog-breadcrumb a:hover {
  color: #111;
}

.blog-toc {
  position: sticky;
  top: calc(var(--navbar-offset) + 0.8rem);
  border: 1px solid rgba(15, 15, 15, 0.12);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.95) 100%);
  padding: 1rem 0.9rem;
}

.blog-toc h2 {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.blog-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.18rem;
}

.blog-toc li a {
  display: block;
  padding: 0.42rem 0.55rem;
  border-radius: 0.6rem;
  color: rgba(18, 18, 18, 0.78);
  font-size: 0.88rem;
  line-height: 1.25;
  transition: background-color 160ms ease, color 160ms ease;
}

.blog-toc li a:hover {
  background: rgba(17, 17, 17, 0.07);
  color: #111;
}

.blog-toc .toc-l3 a {
  padding-left: 1rem;
  font-size: 0.84rem;
  color: rgba(18, 18, 18, 0.68);
}

.blog-article-content {
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 0;
}

.blog-article-content > img {
  border: 0;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
  color: #111;
  letter-spacing: -0.02em;
}

.blog-article-content h2 {
  margin: 3rem 0 0.7rem;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 500;
}

.blog-article-content h3 {
  margin: 1.6rem 0 0.55rem;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 500;
}

.blog-article-content p {
  margin: 0 0 2rem;
  color: #222;
  font-size: 1.03rem;
  line-height: 1.65;
}

.blog-article-content a {
  color: var(--global-color-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.blog-article-content ul,
.blog-article-content ol {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.blog-article-content li {
  margin: 0 0 0.45rem;
  line-height: 1.6;
  color: #1f1f1f;
  font-size: 1.02rem;
}

.blog-article-content blockquote {
  margin: 1.2rem 0;
  padding: 0.95rem 1rem;
  border-left: 3px solid #101010;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.03);
}

.blog-article-content hr {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.11);
}

.blog-article-content pre {
  margin: 1rem 0;
  overflow-x: auto;
  padding: 0.85rem;
  border-radius: 0.75rem;
  background: #111;
}

.blog-article-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.88em;
}

.blog-article-content pre code {
  color: #f3f3f3;
}

.blog-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.1rem 0 1.3rem;
}

.blog-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.95rem;
  border: 0;
}

.blog-table th,
.blog-table td {
  border: 0;
  padding: 0.64rem 0.66rem;
  text-align: left;
  vertical-align: top;
}

.blog-table th {
  background: rgba(0, 0, 0, 0.02);
  font-weight: 600;
}

.blog-article-meta {
  margin: 0.85rem 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.92rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}

.blog-search {
  width: min(680px, calc(100% - 2.4rem));
  margin: 0 auto 1.4rem;
}

.blog-search__inner {
  position: relative;
}

.blog-search__icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.95rem;
  pointer-events: none;
}

.blog-search__input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0.8rem;
  padding: 0.78rem 0.95rem 0.78rem 2.4rem;
  font-size: 0.98rem;
  font-family: inherit;
  color: #111;
  background: #fff;
}

.blog-search__input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.45);
}

.blog-search__input::placeholder {
  letter-spacing: -.02em;
}

.blog-search__empty {
  margin: 0.62rem 0 0;
  color: rgba(0, 0, 0, 0.52);
  font-size: 0.9rem;
}

.blog-related {
  margin-top: 4rem;
}

.blog-internal-links {
  margin-top: 2.4rem;
}

.blog-internal-links h2 {
  margin: 0 0 0.75rem;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.blog-internal-links__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.blog-internal-links__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #121212;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  font-size: 0.95rem;
}

.blog-related h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.blog-related-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.blog-related-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #121212;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  font-size: 0.96rem;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.blog-related-card {
  display: block;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-related-card__media {
  position: relative;
  display: block;
  border-radius: 0.9rem;
  overflow: hidden;
}

.blog-related-card__media img {
  width: 100%;
  height: 100%;
  min-height: 86px;
  object-fit: cover;
  display: block;
}

.blog-related-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: rgba(0, 0, 0, 0.44);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-align: center;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 240ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-related-card__overlay i {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 1.2rem;
  transform: rotate(-45deg);
  transition: transform 220ms ease;
}

.blog-related-card__content {
  padding: 0.7rem 0.72rem 0.8rem;
}

.blog-related-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.blog-related-card:hover .blog-related-card__overlay {
  opacity: 1;
  transform: scale(1);
}

.blog-related-card:hover .blog-related-card__overlay i {
  transform: translate(2px, -2px) rotate(-45deg);
}


.project-preview-window {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 56px)) scale(0.965);
  width: min(1320px, 95vw);
  height: min(88vh, 860px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #151515;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  opacity: 0;
  filter: blur(1px);
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 240ms ease,
    filter 320ms ease;
}

.project-preview-modal.is-open .project-preview-window {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: blur(0);
}

.project-preview-modal.is-closing .project-preview-window {
  transform: translate(-50%, calc(-50% + 30px)) scale(0.985);
  opacity: 0;
  filter: blur(0.5px);
}

.project-preview-toolbar {
  height: 52px;
  background: #1e1e1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1rem;
}

.project-preview-traffic {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.project-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.project-dot--red { background: #ff5f57; }
.project-dot--yellow { background: #febc2e; }
.project-dot--green { background: #28c840; }

.project-dot--red {
  cursor: pointer;
}

.project-preview-address {
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #2a2a2a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 0 0.85rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.project-preview-close {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #2a2a2a;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.project-preview-open-external {
  height: 36px;
  padding: 0 1rem;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #2a2a2a;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.project-preview-open-external.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.project-preview-window iframe {
  width: 134%;
  height: calc((100% - 52px) * 1.34);
  border: 0;
  display: block;
  background: #ffffff;
  transform: scale(0.74);
  transform-origin: top left;
}

.scroll-manifesto {
  position: relative;
  min-height: 78vh;
  margin: 10rem 0 0.5rem;
}

.scroll-manifesto__pin {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
}

.scroll-manifesto__text {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.45rem, 4.6vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: rgba(14, 14, 14, 0.98);
  transform: translateY(-3vh);
}

.scroll-manifesto__word {
  display: inline-block;
  white-space: pre;
  opacity: 0.14;
  transform: translateY(24px);
  filter: blur(10px);
  will-change: transform, opacity, filter;
}

.scroll-manifesto__word--muted {
  color: var(--global-color-blue) !important;
}

.scroll-manifesto__break {
  display: block;
  height: 0;
}

.scroll-manifesto__text.scroll-manifesto__text--annecy {
  font-size: clamp(0.68rem, 2.8vw, 2.55rem);
  line-height: 1.06;
}

.scroll-manifesto__text--annecy .scroll-manifesto__line {
  display: block;
  white-space: nowrap;
}

.realisations-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(15, 15, 15, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: #101010;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 4;
}

.realisations-nav--prev {
  left: 4%;
}

.realisations-nav--next {
  right: 4%;
}

.realisations-ctas {
  margin: 1.6rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.realisations-cta {
  margin: 0;
}

.realisations-cta--ghost {
  color: #0f0f0f;
  background: transparent;
  border: 1px solid rgba(15, 15, 15, 0.26);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.process-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem 1.2rem;
}

.process-inner {
  width: 100%;
}

.process-intro {
  max-width: 760px;
  margin: -1.2rem auto 1.4rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(15, 15, 15, 0.72);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 2rem 1.5rem 1.2rem 1.5rem;
  background: #f8f8f8;
  border-radius: 2rem;
  overflow: hidden;
}

.process-step__day {
  display: inline-flex;
  margin-bottom: 0.65rem;
  margin-left: 0.2rem;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 auto 0.65rem;
  letter-spacing: -0.05em;
  color: rgba(15, 15, 15, 0.4);
}

.process-step__image {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 1.2rem;
  margin: 0 auto 2rem;
  filter: saturate(1.05) hue-rotate(9deg) contrast(1.03) brightness(0.99);
  transition: filter 220ms ease;
}

.process-step h4 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.02rem, 1.9vw, 1.22rem);
  letter-spacing: -0.02em;
  color: #0f0f0f;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--global-color-black);
  opacity: .7;
}

.section-reviews {
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 13rem;
  margin-bottom: 13rem;
}


.review-videos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
}

.review-video {
  position: relative;
  width: 230px;
  aspect-ratio: 9 / 16;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: #0f0f0f;
}

.review-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.review-video__cover {
  position: absolute;
  inset: 0;
  border: 0;
  background: #121212;
  cursor: pointer;
  padding: 0;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  transition: opacity 260ms ease, transform 260ms ease;
}

.review-video__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-video__veil {
  position: absolute;
  inset: 0;
  background: transparent;
}

.review-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 1rem;
}

.review-video__label {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.16);
}

.review-video.is-active iframe {
  opacity: 1;
  pointer-events: auto;
}

.review-video.is-active .review-video__cover {
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
}




/* Carrousels avis */
.avis-carousel-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.avis-track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
}

.avis-left-quote img {
  width: 80px;
  height: auto;
  opacity: 0.3;
}

.avis-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem 1.5rem 1.2rem 1.5rem;
  background: #f8f8f8;
  border-radius: 2rem;
  text-align: left;
  min-width: 400px;
  overflow: hidden;
}

.avis-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
  margin-left: 0.2rem;
}

.avis-header img {
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

.avis-stars {
  display: flex;
  align-items: center;
}

.avis-stars img {
  height: 18px;
  opacity: 1;
  width: auto;
  filter: brightness(0) saturate(100%) invert(18%) sepia(98%) saturate(7478%) hue-rotate(231deg) brightness(101%) contrast(99%);
}



.avis-card p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
  color: var(--global-color-black);
  white-space: normal;
}

.avis-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.avis-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.avis-name {
  font-weight: 500;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.avis-description {
  font-size: 0.85rem;
  opacity: 0.8;
}


/* Photo et texte */
.avis-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}


/* Animation infinie */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.track-left {
  animation: scroll-left 60s linear infinite;
}

.track-right {
  animation: scroll-right 60s linear infinite;
}


.avis-carousel-container::before,
.avis-carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  /* accentuÃƒÂ© */
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.avis-carousel-container::before {
  left: 0;
  background: linear-gradient(to right,
      var(--global-color-background) 0%,
      var(--global-color-background) 40%,
      transparent 100%);
}

.avis-carousel-container::after {
  right: 0;
  background: linear-gradient(to left,
      var(--global-color-background) 0%,
      var(--global-color-background) 40%,
      transparent 100%);
}







.founder-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 8rem auto 8rem auto;
}

.founder-video-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

.founder-video-link {
  display: block;
  position: relative;
}

.founder-video-thumb {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.founder-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 40%, rgba(0, 0, 0, 0.5) 100%);
}

.play-button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.4rem;
  margin-bottom: 0rem;
}

.founder-caption {
  display: flex;
  flex-direction: column;
  color: white;
  text-align: left;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.founder-caption strong {
  font-weight: 700;
}

.founder-caption span {
  font-size: var(--font-xs);
  opacity: 0.8;
}

.founder-quote {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}



.founder-text {
  font-size: clamp(1.45rem, 2.35vw, 1.95rem);
  line-height: 1.2;
  margin-top: -.5rem;
  color: #0f0f14;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.05rem;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: underline;
  margin-top: 1rem;
  color: #0f0f14;
  font-weight: 600;
}

.founder-link i {
  transition: transform 0.2s ease;
}

.founder-link:hover i {
  transform: rotateZ(-45deg);
}




/* FAQ SECTION */
.faq {
  background: #ffffff;
  padding: 4rem 3rem 4rem;
  margin-top: 4rem;
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}



.faq-item {
  border-radius: 16px;
  background: #ffffff;
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}


.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #131313;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.2rem 1.25rem;
  font-size: clamp(0.98rem, 1.45vw, 1.08rem);
  font-weight: 500;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.faq-question .icon {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.faq-question:hover .icon {
  background: #0f0f0f;
  color: #ffffff;
  border-color: #0f0f0f;
}

.faq-item.is-open .faq-question .icon {
  transform: rotate(180deg);
  background: #0f0f0f;
  color: #ffffff;
  border-color: #0f0f0f;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease, padding 280ms ease;
  opacity: 0;
  padding: 0 1.25rem;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
  padding: 0 1.25rem 1.2rem;
}

.faq-answer p {
  margin: 0;
  color: rgba(0, 0, 0, 0.75);
  font-size: 0.99rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
  text-align: left;
  font-style: italic;
}

/* BOOKING SECTION */
.booking-section {
  background: var(--global-color-black);
  color: #ffffff;
  padding: 6rem 3rem 0;
  margin-top: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.booking-section__embed {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.booking-section__embed iframe {
  width: 100%;
  min-height: 700px;
  border: 0;
  display: block;
}

/* FOOTER GLOBAL */
.site-footer {
  background: var(--global-color-black);
  padding: 4rem 3rem 2rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
  color: #ffffff;
  width: 100%;
  margin: 0 auto;
  margin-top: 0;

}

.site-footer a:hover {
  text-decoration: underline;
}

/* CONTAINER PRINCIPAL */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* BLOC GAUCHE : LOGO + TAGLINE */

.footer-logo {
  width: 70px;
  height: auto;
  display: block;
  margin-bottom: 0;
  filter: invert(1);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-right: 0;
}

/* BLOC DROIT : CONTACT + RESEAUX + CTA */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  padding-left: 0;
}

.footer-contact-text {
  margin: 0;
  font-size: 0.95rem;
  color: #ffffff;
  opacity: 1;
  line-height: 1.5;
}

.footer-contact-title {
  display: inline-block;
  margin-bottom: 0.2rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #ffffff;
  opacity: .7;
  letter-spacing: -0.05em;
}

.footer-contact-text a {
  color: #ffffff;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  color: #ffffff;
  opacity: .6;
  font-size: 1.4rem;
  transition: opacity 0.2s ease;
}


.footer-cities {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3.2rem;
  opacity: .6;
}

.footer-cities ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-offices {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0.9rem 2rem;
  min-width: 260px;
  padding: 0;
}

.footer-office-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-office-city {
  margin: 0;
  font-size: 0.95rem;
  color: #ffffff;
  opacity: .7;
  font-weight: 400;
}

.footer-office-time {
  margin: 0.35rem 0 0.45rem;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.footer-office-address {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #ffffff;
  opacity: 0.65;
}

/* LIENS LEGAUX */
.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #888;
}

@media (max-width: 620px) {
  .realisations-section {
    padding: 2.6rem 1rem 1rem;
  }

  .realisations-track {
    height: 200px;
  }

  .realisations-slide {
    width: 72vw;
    border-radius: 16px;
  }

  .realisations-slide.is-prev {
    transform: translate(calc(-50% - 58%), -50%) scale(0.84) rotate(-2deg);
  }

  .realisations-slide.is-next {
    transform: translate(calc(-50% + 58%), -50%) scale(0.84) rotate(2deg);
  }

  .realisations-slide.is-far-left {
    transform: translate(calc(-50% - 88%), -50%) scale(0.7);
  }

  .realisations-slide.is-far-right {
    transform: translate(calc(-50% + 88%), -50%) scale(0.7);
  }

  .realisations-nav {
    width: 44px;
    height: 44px;
  }

  .realisations-nav--prev {
    left: 2%;
  }

  .realisations-nav--next {
    right: 2%;
  }

  .project-preview-window {
    width: 97vw;
    height: 88vh;
  }

  .project-preview-toolbar {
    grid-template-columns: auto 1fr auto;
  }

  .process-section {
    padding: 3.2rem 1rem 0.8rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .project-preview-close {
    position: absolute;
    right: 0.8rem;
    top: 0.55rem;
  }

  .project-preview-open-external {
    position: absolute;
    right: 3.5rem;
    top: 0.5rem;
    height: 34px;
    padding: 0 0.75rem;
    font-size: 0.72rem;
  }

  .faq {
    padding: 3.6rem 1rem 3rem;
  }

  .faq .section-title {
    margin-bottom: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-answer {
    padding: 0 1rem;
  }

  .faq-item.is-open .faq-answer {
    padding: 0 1rem 1rem;
  }

  .booking-section {
    padding: 2.2rem 1rem 0;
  }

  .booking-section__embed,
  .booking-section__embed iframe {
    min-height: 620px;
  }

  .footer-offices {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .footer-contact {
    align-items: flex-start;
    padding-left: 0;
  }

  .footer-left {
    padding-right: 0;
  }
}


body.page-404 .site-footer {
  margin-top: 7rem;
}

.glossary-section {
  max-width: 1180px;
  margin: 0 auto 6rem;
}

.glossary-intro {
  max-width: 980px;
  margin: 0 auto 1.4rem;
}

.glossary-intro p {
  margin: 0;
  color: #232323;
  font-size: 1.02rem;
  line-height: 1.65;
}

.glossary-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(12, 12, 13, 0.12);
  border-radius: 16px;
  background: #fff;
}

.glossary-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.glossary-table th,
.glossary-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(12, 12, 13, 0.08);
}

.glossary-table th {
  background: #f7f7f7;
  color: #111;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.glossary-table td:first-child {
  width: 230px;
  min-width: 230px;
  font-weight: 600;
  color: #111;
}

.glossary-table td:last-child {
  color: #2e2e2e;
  line-height: 1.55;
}

.glossary-table tbody tr:last-child td {
  border-bottom: 0;
}

/* Hide Google Translate UI chrome (top banner + tooltip) */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
  margin-top: 0 !important;
}

#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

iframe.goog-te-banner-frame,
iframe.skiptranslate,
.skiptranslate iframe {
  display: none !important;
  visibility: hidden !important;
}

.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-gadget-icon,
.goog-te-ftab,
.goog-logo-link {
  display: none !important;
}


/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.breadcrumb {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255,255,255,0.5);
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "›";
  margin-right: 0.25rem;
  opacity: 0.4;
}
.breadcrumb__item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.breadcrumb__item a:hover {
  color: #fff;
}
.breadcrumb__item[aria-current="page"] {
  color: rgba(255,255,255,0.8);
}

/* ── Related services (cross-links) ─────────────────────────────────────── */
.related-services {
  background: #f7f7f5;
  padding: 2.5rem 1.5rem;
}
.related-services__inner {
  max-width: 900px;
  margin: 0 auto;
}
.related-services__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.related-services__list a {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #111;
  text-decoration: none;
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.related-services__list a:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

/* ── Footer city services ───────────────────────────────────────────────── */
.footer-city-services {
  padding: 2.25rem 2rem 0;
  text-align: center;
}


.footer-city-services__title {
  font-size: 0.75rem;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.45);
  margin: 0 0 0.5rem;
  font-size: .8rem;
}

.footer-city-services ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-city-services a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer-city-services a:hover { color: #fff; }
