/* PIX|WEB — composants communs : base, header, navigation, footer et blocs partagés. */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.u-nowrap {
  white-space: nowrap;
}

.page-shell {
  width: 100%;
  position: relative;
  min-height: 100vh;
  background: radial-gradient( circle at 18% 22%, rgba(255, 255, 255, 0.06), transparent 34% ), radial-gradient( circle at 85% 12%, rgba(255, 255, 255, 0.04), transparent 28% ), linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%), #050505;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px), linear-gradient( 90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px );
  background-size: 36px 36px;
  mask-image: radial-gradient( circle at center, black 48%, transparent 100% );
  opacity: 0.16;
  pointer-events: none;
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: radial-gradient(circle at 20% 20%, #fff 0.6px, transparent 0.8px), radial-gradient(circle at 80% 10%, #fff 0.6px, transparent 0.8px), radial-gradient(circle at 40% 80%, #fff 0.6px, transparent 0.8px), radial-gradient(circle at 70% 50%, #fff 0.6px, transparent 0.8px);
  background-size: 220px 220px;
  mix-blend-mode: normal;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 80;
  transition: background-color 0.45s var(--ease);
  background: transparent;
}

.site-header.is-scrolled {
  background: #050505;
}

.site-header.mega-open {
  background: #050505;
}

.site-header__inner {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.site-header__inner .site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  transition: none;
}

.brand__logo {
  display: block;
  width: clamp(146px, 14vw, 200px);
  height: auto;
  object-fit: contain;
  filter: grayscale(1) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.3));
  transform-origin: left center;
  transition: none;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.site-nav__chevron {
  display: inline-flex;
  align-items: center;
  opacity: 0.72;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
  flex-shrink: 0;
}

.site-nav__chevron svg {
  display: block;
  width: 10px;
  height: 6px;
}

.site-nav__link:hover .site-nav__chevron {
  opacity: 1;
}

.mega-wrap {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 199;
  pointer-events: none;
}

.mega-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  pointer-events: auto;
}

.mega {
  position: absolute;
  top: 20px;
  left: var(--mega-left, 0px);
  width: var(--mega-w, 860px);
  max-width: calc(100vw - 32px);
  display: none;
  pointer-events: none;
}

.mega.is-open {
  display: block;
  pointer-events: auto;
}

.mega.is-open .mega__panel {
  animation: megaIn 0.22s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.mega__arrow {
  position: absolute;
  top: -7px;
  left: var(--arrow-left, 40px);
  width: 16px;
  height: 8px;
  overflow: hidden;
}

.mega__arrow::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  top: 4px;
  left: 2px;
  transform: rotate(45deg);
}

.mega__panel {
  background: #050505;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75);
  padding: 44px 48px 44px;
  overflow: hidden;
}

.mega__grid {
  display: grid;
  gap: 0 48px;
  align-items: start;
}

.mega--forfaits .mega__grid {
  grid-template-columns: 1fr 1fr 1fr 300px;
  align-items: stretch;
}

.mega--services .mega__grid {
  grid-template-columns: 1fr 1fr 240px;
  align-items: stretch;
}

.mega--parrainage .mega__grid {
  grid-template-columns: 1fr 1fr;
}

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

.mega--forfaits {
  --mega-w: 980px;
}

.mega--services {
  --mega-w: 760px;
}

.mega--parrainage {
  --mega-w: 520px;
}

.mega--contact {
  --mega-w: 520px;
}

.mega__col-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 18px;
}

.mega__col-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mega__link {
  display: block;
  padding: 9px 0;
  font-size: 0.96rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.16s;
  white-space: nowrap;
}

.mega__link:hover {
  color: #fff;
}

.mega__footer-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 2px;
  transition: color 0.18s;
}

.mega__footer-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.mega__featured {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  padding-left: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
}

.mega__featured-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 16px;
}

.mega__img-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: #050505;
}

.mega__img-wrap--services {
  flex: 1;
  min-height: 200px;
}

.mega__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.88);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.3s;
}

.mega__img-wrap:hover img {
  transform: scale(1.04);
  filter: brightness(0.95);
}

.mega__carousel {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #050505;
  aspect-ratio: 4/3;
}

.mega__carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mega__carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}

.mega__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.85);
}

.mega__img-caption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.5;
  white-space: nowrap;
}

.mega__img-caption strong {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  margin-bottom: 3px;
}

.login-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.login-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.burger:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.burger__lines {
  position: relative;
  width: 20px;
  height: 14px;
}

.burger__lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}

.burger__lines span:nth-child(1) {
  top: 0;
}

.burger__lines span:nth-child(2) {
  top: 6px;
}

.burger__lines span:nth-child(3) {
  top: 12px;
}

body.menu-open .burger__lines span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

body.menu-open .burger__lines span:nth-child(2) {
  opacity: 0;
}

body.menu-open .burger__lines span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.site-nav__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.site-nav__link.is-active .site-nav__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.1);
}

.btn--secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.visual-card {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1 / 1;
  border-radius: var(--card-radius);
  background: linear-gradient( 180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03) ), rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: auto 18% 10% 18%;
  height: 24%;
  background: radial-gradient( circle, rgba(255, 255, 255, 0.1), transparent 70% );
  filter: blur(24px);
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.85;
  pointer-events: none;
}

.orb--1 {
  width: 110px;
  height: 110px;
  top: 10%;
  right: 12%;
  background: radial-gradient( circle, rgba(255, 255, 255, 0.12), transparent 72% );
  animation: drift 10s ease-in-out infinite;
}

.orb--2 {
  width: 160px;
  height: 160px;
  bottom: 14%;
  left: 8%;
  background: radial-gradient( circle, rgba(255, 255, 255, 0.16), transparent 72% );
  animation: drift 12s ease-in-out infinite reverse;
}

.menu-panel {
  position: fixed;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: min(460px, calc(100vw - 24px));
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient( 180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03) ), rgba(8, 8, 8, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  transform: translateX(calc(100% + 24px));
  transition: transform 0.5s var(--ease);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

body.menu-open .menu-panel {
  transform: translateX(0);
}

.menu-panel__top {
  display: grid;
  gap: 18px;
  margin-top: 64px;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.menu-link::after {
  content: "↗";
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transform: translateX(0);
  transition: transform 0.3s var(--ease);
}

.menu-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.menu-link:hover::after {
  transform: translateX(6px);
}

.menu-panel__bottom {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.6;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  z-index: 85;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
}

.site-footer__col a {
  font-size: clamp(0.98rem, 0.96vw, 1.04rem);
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.22s var(--ease), transform 0.22s var(--ease), opacity 0.22s var(--ease);
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.015em;
  text-align: left;
}

.site-footer__col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.78s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-delay-1 {
  transition-delay: 0.09s;
}

.reveal-delay-2 {
  transition-delay: 0.18s;
}

.reveal-delay-3 {
  transition-delay: 0.27s;
}

.reveal-delay-4 {
  transition-delay: 0.36s;
}

.reveal-delay-5 {
  transition-delay: 0.45s;
}

.fcv-browser {
  width: 90%;
  background: #050505;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fcv-browser__bar {
  padding: 7px 10px;
  display: flex;
  gap: 5px;
  background: #0a0a0a;
}

.fcv-browser__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: block;
}

.fcv-browser__body {
  padding: 10px;
}

.fcv-hero-block {
  height: 36px;
  background: linear-gradient( 90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04) );
  border-radius: 4px;
  margin-bottom: 8px;
}

.fcv-row {
  display: flex;
  gap: 6px;
}

.fcv-col {
  flex: 1;
  height: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.fcv-palette {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.fcv-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fcv-typo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fcv-typo__h {
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.fcv-typo__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fcv-typo__body {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}

.fcv-mail-icon {
  font-size: 3.5rem;
  opacity: 0.8;
}

.fcv-pin {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.fcv-search-bar {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  width: 80%;
}

.fcv-result {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: #ffffff;
  width: 80%;
  text-align: center;
}

.fcv-ad-card {
  width: 85%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.fcv-ad-img {
  height: 70px;
  background: linear-gradient( 135deg, rgba(255, 255, 255, 0.06), rgba(200, 200, 200, 0.08) );
}

.fcv-ad-body {
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.fcv-ad-body em {
  color: rgba(255, 255, 255, 0.3);
  font-style: normal;
}

.fcv-shield {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.fcv-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 85%;
}

.fcv-bar {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 7px 10px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.fcv-bar b {
  color: #ffffff;
  font-weight: 500;
}

.feat-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  grid-column: 2;
}

.feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.feat-dot--active {
  background: #050505;
  width: 24px;
}

.feat-navs {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  grid-column: 3;
}

.feat-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: transparent;
  font-size: 1.1rem;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.feat-nav:hover {
  background: #050505;
  color: #fff;
  border-color: #111;
}

.site-footer__legal a {
  transition: color 0.2s;
  color: rgba(255, 255, 255, 0.36);
}

.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
  width: min(1240px, calc(100vw - 96px));
  max-width: none;
  margin: 0 auto;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 2px;
  min-width: 0;
}

.site-footer__heading {
  margin-bottom: 24px;
  display: block;
  min-height: 17px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer__cookie {
  transition: color 0.22s var(--ease), transform 0.22s var(--ease), opacity 0.22s var(--ease);
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 0.96vw, 1.04rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.015em;
  text-align: left;
  margin-top: 0;
  padding-bottom: 0;
  border-bottom: 0;
  cursor: pointer;
}

.site-footer__cookie:hover {
  transform: translateX(3px);
  color: #fff;
}

.site-footer__legal {
  gap: 16px;
  flex-wrap: wrap;
  display: none;
}

.site-footer__logo {
  align-items: center;
  display: block;
  width: clamp(188px, 12vw, 232px);
  max-width: 100%;
  max-height: none;
  overflow: visible;
  margin: 0;
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  filter: grayscale(1) drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
  object-position: left top;
}

.site-footer__brand-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: clamp(0.94rem, 0.94vw, 1.02rem);
  line-height: 1.55;
  letter-spacing: -0.012em;
  padding-left: 2px;
  max-width: 220px;
}

.site-footer__top > .site-footer__col:nth-child(4) {
  justify-self: center;
  width: max-content;
}

.site-footer__top > .site-footer__col:nth-child(4) .site-footer__heading {
  width: 100%;
  text-align: center;
}

.site-footer__brand {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  padding-top: 0;
  min-width: 0;
  gap: 20px;
  margin-top: -22px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  overflow: hidden;
  padding: var(--section-y) 0 clamp(34px, 3.2vw, 48px);
  background: radial-gradient( circle at 9% 28%, rgba(255, 255, 255, 0.035), transparent 22% ), radial-gradient( circle at 82% 10%, rgba(255, 255, 255, 0.025), transparent 24% ), #050505;
}

.site-footer__top {
  gap: clamp(58px, 6vw, 112px);
  display: grid;
  grid-template-columns: minmax(220px, 1.18fr) minmax( 150px, 0.82fr ) minmax(190px, 0.98fr) minmax(210px, 1.08fr) minmax( 155px, 0.78fr );
  column-gap: clamp(34px, 4.2vw, 72px);
  row-gap: 42px;
  align-items: start;
  justify-content: center;
  margin-bottom: clamp(42px, 4vw, 58px);
}

.site-footer__bottom {
  gap: 18px;
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  padding-top: clamp(24px, 2.4vw, 32px);
}

@media (min-width: 1600px) {
  .site-header__inner {
    max-width: var(--layout-shell-max);
    margin: 0 auto;
    padding-inline: 36px;
  }

  .site-footer__inner {
    width: min(var(--layout-wide-max), calc(100vw - (var(--section-x) * 2)));
  }

  .mega {
    max-width: min(960px, calc(100vw - 64px));
  }
}

.feat-track {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

#inclus {
  --seo-align-width: min(1280px, calc(100vw - (clamp(24px, 5vw, 80px) * 2)));
}

.anchor-target {
  display: block;
  position: relative;
  top: calc(var(--header-h) * -1 - 16px);
  visibility: hidden;
  pointer-events: none;
  height: 0;
}

@keyframes megaIn {
from {
          opacity: 0;
          transform: translateY(-6px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
}

@keyframes float {
0%,
        100% {
          transform: translateY(10px) scale(1.01);
        }

        50% {
          transform: translateY(-8px) scale(1.035);
        }
}

@keyframes drift {
0%,
        100% {
          transform: translate3d(0, 0, 0);
        }

        50% {
          transform: translate3d(0, -16px, 0);
        }
}

@keyframes serviceFloat {
0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-12px);
      }
}

@keyframes servicePulse {
0%,
      100% {
        transform: scale(1);
        opacity: .65;
      }

      50% {
        transform: scale(1.08);
        opacity: 1;
      }
}

@keyframes serviceMarquee {
from {
        transform: translateX(0);
      }

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

@keyframes serviceBar {
from {
        filter: saturate(.9) brightness(.95);
      }

      to {
        filter: saturate(1.2) brightness(1.06);
      }
}

@keyframes seoHeroBreath {
0% {
        transform: scale(1.025);
      }

      100% {
        transform: scale(1.07);
      }
}

@keyframes pp-reveal {
to {
        opacity: 1;
        transform: translateY(0);
      }
}@media (min-width: 861px) {
  .site-header {
    height: var(--header-h);
  }

  .site-header__inner {
    padding: 0 42px;
  }

  .site-header__inner .site-nav {
    left: 50%;
    transform: translateX(-50%);
  }

  .site-nav {
    gap: 28px;
  }

  .site-nav__link {
    min-height: var(--header-h);
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.86);
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    background: transparent;
  }

  .login-link {
    min-height: var(--header-h);
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.86);
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    background: transparent;
  }

  .site-nav__link:hover {
    color: #ffffff;
    background: transparent;
  }

  .login-link:hover {
    color: #ffffff;
    background: transparent;
  }

  .site-nav__link.is-active {
    color: #ffffff;
    background: transparent;
  }

  .site-nav__chevron svg {
    width: 10px;
    height: 6px;
  }
}@media (max-width: 1240px) {
.site-footer__top {
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 48px 68px;
  }
}@media (max-width: 860px) {
.site-nav {
    display: none;
  }

  .mega-wrap {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  #inclus {
    --seo-align-width: calc(100vw - (clamp(24px, 5vw, 80px) * 2));
  }
}@media (max-width: 1080px) {

  .content-spacer {
    padding-top: 80px;
  }

  .site-footer__top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 44px 56px;
  }
}@media (max-width: 760px) {

  :root {
    --header-h: 92px;
    --header-h-scrolled: 72px;
    --section-x: 24px;
    --section-y: 62px;
    --section-y-compact: 52px;
    --card-radius: 8px;
  }


  .site-header__inner {
    width: 100%;
    padding: 0 18px;
  }

  .site-actions {
    gap: 18px;
  }

  .login-link {
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .feat-dots {
    grid-column: 1;
    justify-content: center;
  }

  .feat-navs {
    grid-column: 1;
    justify-content: center;
  }

  .site-footer__col {
    gap: 14px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__legal {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
  }

  .site-footer__inner {
    width: calc(100vw - 42px);
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }

  .site-footer__logo {
    width: 210px;
  }

  .site-footer__heading {
    margin-bottom: 8px;
  }

  .site-footer__top > .site-footer__col:nth-child(4) {
    justify-self: stretch;
    width: auto;
  }

  .site-footer__top > .site-footer__col:nth-child(4) .site-footer__heading {
    text-align: left;
  }

  .site-footer__brand {
    gap: 18px;
    margin-top: 0;
  }

  .site-footer {
    padding: var(--section-y) 0 34px;
  }
}@media (max-width: 1180px) {
.site-footer__inner {
    width: min(960px, calc(100vw - 64px));
  }

  .site-footer__top {
    grid-template-columns: 1.1fr 1fr 1fr;
    column-gap: clamp(42px, 6vw, 74px);
    row-gap: 44px;
  }
}@media (prefers-reduced-motion: reduce) {
html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: 0.001ms;
  }

  *::before {
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: 0.001ms;
  }

  *::after {
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: 0.001ms;
  }

  .reveal {
    transition-duration: .001ms;
    animation-duration: .001ms;
  }
}


/* Firefox : garde-fou de fluidité sur les calques fixes décoratifs au-dessus de la vidéo. */
@supports (-moz-appearance: none) {
  .page-shell::before,
  .page-shell::after {
    content: none;
  }
}
