/* =========================
   VOXALYA V3 – INDEX
   Refactor responsive-first (mobile-first + min-width breakpoints)
   IMPORTANT: animation hooks (classes/IDs referenced in script.js) are preserved.
========================= */

/* #region GLOBAL RESET & TOKENS */
:root {
  --vx-font-base:
    "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --vx-color-bg: #050505;
  --vx-color-surface: #111111;
  --vx-color-text: #f5f5f5;
  --vx-color-text-muted: #b5b5b5;
  --vx-color-accent: #fcc658;
  --vx-color-grey: #616160;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--vx-font-base);
  color: var(--vx-color-text);
  background-color: var(--vx-color-bg);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid rgba(252, 198, 88, 0.7);
  outline-offset: 3px;
}

#wrapper {
  overflow: hidden;
}
#content {
  overflow: visible;
}

/* #endregion GLOBAL RESET & TOKENS */

/* #region GLOBAL CONTAINER & ROW */
.container {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

@media (min-width: 480px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1600px;
  }
}

.row {
  width: 100%;
}

.row.lg-marg {
  margin-left: -18px;
  margin-right: -18px;
}

.row.lg-marg > * {
  padding-left: 18px;
  padding-right: 18px;
}

@media (min-width: 480px) {
  .row.lg-marg {
    margin-left: -24px;
    margin-right: -24px;
  }
  .row.lg-marg > * {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 768px) {
  .row.lg-marg {
    margin-left: -32px;
    margin-right: -32px;
  }
  .row.lg-marg > * {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 1024px) {
  .row.lg-marg {
    margin-left: -40px;
    margin-right: -40px;
  }
  .row.lg-marg > * {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/* #endregion GLOBAL CONTAINER & ROW */

/* #region NAVBAR VOXALYA */
/* =========================
   NAVBAR GLOBAL (MOBILE FIRST)
========================= */

/* Conteneur principal */

.vx-nav {
  position: sticky;
  top: 0px;
  z-index: 100;
  background-color: #000000;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.6);
}

/* .vx-nav n'a pas de breakpoint spécifique pour l’instant */

/* Conteneur interne */

.vx-nav__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* NAVBAR – BREAKPOINT 480px : vx-nav__inner */
@media (min-width: 480px) {
  .vx-nav__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* NAVBAR – BREAKPOINT 768px : vx-nav__inner */
@media (min-width: 768px) {
  .vx-nav__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* NAVBAR – BREAKPOINT 1440px : vx-nav__inner */
@media (min-width: 1440px) {
  .vx-nav__inner {
    max-width: 1400px;
  }
}

/* Logo */

.vx-logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.vx-logo__img {
  display: block;
  height: 40px;
  width: auto;
}

/* ≥ 480px : téléphones plus larges */
@media (min-width: 480px) {
  .vx-logo__img {
    height: 40px;
    width: auto;
  }
}

/* ≥ 768px : tablettes */
@media (min-width: 768px) {
  .vx-logo__img {
    height: 50px;
    width: auto;
  }
}

/* ≥ 1024px : laptops / petits desktops */
@media (min-width: 1024px) {
  .vx-logo__img {
    height: 60px;
    width: auto;
  }
}


/* Layout mobile par défaut (< 1024px) */

.vx-nav__desktop {
  display: none;
}

.vx-nav__mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vx-nav__mobile-right {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

/* Pas de breakpoint ici : mobile = base */

/* Langues */

.vx-nav__lang {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 4px;
}

.vx-nav__lang--sm {
  column-gap: 4px;
}

.vx-lang__btn {
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  transition: color 200ms ease-in-out;
}

.vx-lang__btn:hover {
  color: var(--vx-color-accent);
}

.vx-lang__btn--active {
  color: var(--vx-color-accent);
}

.vx-lang__separator {
  font-size: 12px;
  color: #4b5563;
}

/* Pas de breakpoint spécifique ici pour l’instant */

/* Burger (mobile) */

.vx-burger {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.vx-burger__line {
  width: 20px;
  height: 2px;
  background-color: var(--vx-color-accent);
  display: block;
  transition-property: transform, opacity;
  transition-duration: 200ms;
}

.vx-burger__line:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.vx-burger--open .vx-burger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.vx-burger--open .vx-burger__line:nth-child(2) {
  opacity: 0;
}

.vx-burger--open .vx-burger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Burger = mobile only → pas de version desktop */

/* Menu mobile déroulant */

.vx-mobile-menu {
  overflow: hidden;
  max-height: 0px;
  opacity: 0;
  transition-property: max-height, opacity, margin-top;
  transition-duration: 300ms;
  transition-timing-function: ease;
}

/* NAVBAR – BREAKPOINT 1024px : cacher le menu mobile */
@media (min-width: 1280px) {
  .vx-mobile-menu {
    display: none;
  }
}

/* #region NAVBAR VOXALYA – LANGUE DANS MENU MOBILE */
/* =========================
   LANG SWITCHER – MENU MOBILE
========================= */

.vx-mobile-menu__lang {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #262626;
  margin-bottom: 8px;
}

.vx-mobile-menu__lang .vx-lang__btn {
  font-size: 12px;
}

/* #endregion NAVBAR VOXALYA – LANGUE DANS MENU MOBILE */

.vx-mobile-menu--open {
  max-height: 384px;
  opacity: 1;
  margin-top: 16px;
}

.vx-mobile-menu__list {
  list-style: none;
  margin: 0px;
  padding: 16px;
  border-radius: 8px;
  background-color: #18181b;
}

.vx-mobile-menu__link {
  display: block;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 14px;
  color: var(--vx-color-accent);
  transition-property: color, background-color, transform;
  transition-duration: 200ms;
}

.vx-mobile-menu__link:last-child {
  margin-bottom: 0px;
}

.vx-mobile-menu__link:hover {
  color: var(--vx-color-accent);
  background-color: #27272a;
}

/* Layout desktop (≥ 1024px) */

.vx-nav__center {
  display: none;
}

/* NAVBAR – BREAKPOINT 1024px : layout desktop complet */
@media (min-width: 1280px) {
  .vx-nav__desktop {
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 160px;
    align-items: center;
    justify-content: center;
  }

  .vx-nav__mobile {
    display: none;
  }

  .vx-nav__center {
    display: flex;
    justify-content: center;
  }

  .vx-nav__list {
    display: flex;
    align-items: center;
    column-gap: 32px;
    margin: 0px;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    list-style: none;
    background-color: #18181b;
    border-radius: 999px;
  }

  .vx-nav__link {
    display: inline-block;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.16em;
    font-size: 13px;
    color: var(--vx-color-accent);
    text-transform: uppercase;
  }
}

/* =========================
   ROLLING TEXT NAVBAR
========================= */

.rolling-text {
  display: inline-block;
  overflow: hidden;
  line-height: 1.4;
  height: 1.4em;
}

.rolling-text__block {
  display: block;
}

.rolling-text .letter {
  display: inline-block;
  transition: transform 500ms cubic-bezier(0.76, 0, 0.24, 1);
}

.rolling-text:hover .letter,
.rolling-text.play .letter {
  transform: translateY(-100%);
}

.letter:nth-child(1) {
  transition-delay: 0ms;
}
.letter:nth-child(2) {
  transition-delay: 15ms;
}
.letter:nth-child(3) {
  transition-delay: 30ms;
}
.letter:nth-child(4) {
  transition-delay: 45ms;
}
.letter:nth-child(5) {
  transition-delay: 60ms;
}
.letter:nth-child(6) {
  transition-delay: 75ms;
}
.letter:nth-child(7) {
  transition-delay: 90ms;
}
.letter:nth-child(8) {
  transition-delay: 105ms;
}
.letter:nth-child(9) {
  transition-delay: 120ms;
}
.letter:nth-child(10) {
  transition-delay: 135ms;
}
.letter:nth-child(11) {
  transition-delay: 150ms;
}
.letter:nth-child(12) {
  transition-delay: 165ms;
}
.letter:nth-child(13) {
  transition-delay: 180ms;
}
.letter:nth-child(14) {
  transition-delay: 195ms;
}
.letter:nth-child(15) {
  transition-delay: 210ms;
}
.letter:nth-child(16) {
  transition-delay: 225ms;
}
.letter:nth-child(17) {
  transition-delay: 240ms;
}
.letter:nth-child(18) {
  transition-delay: 255ms;
}
.letter:nth-child(19) {
  transition-delay: 270ms;
}
.letter:nth-child(20) {
  transition-delay: 285ms;
}

/* #region HERO + SENTINEL */
.vx-nav-sentinel {
  height: 1px;
  width: 100%;
  pointer-events: none;
}

.vx-hero {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
  background-color: var(--vx-color-bg);
  padding-top: 20px;
}

/* ≥ 480px */
@media (min-width: 480px) {
  .vx-hero {
    padding-top: 40px;
    height: 90vh;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .vx-hero {
    padding-top: 110px;
    height: 90vh;
  }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .vx-hero {
    padding-top: 140px;
    height: 100vh;
  }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  .vx-hero {
    padding-top: 160px;
    height: 100vh;
    margin-top: 60px;
  }
}

/* =========================
   HERO VOXALYA – GRID
========================= */

/* #region HERO GRID */
/* ---------- .vx-hero__grid : base (<480px) ---------- */
.vx-hero__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
  width: 100%;
  gap: 0px;
  position: absolute;
  top: 30%;
}

/* ≥ 480px */
@media (min-width: 480px) {
  .vx-hero__grid {
    top: 25%;
  }
}

/* ≥ 768px : 6 colonnes */
@media (min-width: 768px) {
  .vx-hero__grid {
    grid-template-columns: repeat(6, 1fr);
    top: 30%;
  }

  /* ajustements 768px+ */
}

/* ≥ 1024px : laptops / petits desktops */
@media (min-width: 1024px) {
  .vx-hero__grid {
    top: 20%;
  }
}

/* ≥ 1440px : grands écrans */
@media (min-width: 1440px) {
  .vx-hero__grid {
    top: 35%;
  }
}
/* #endregion HERO GRID */

/* =========================
   HERO VOXALYA – COLONNES
========================= */

.vx-hero__column {
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Colonnes 4 à 6 masquées en mobile */
.vx-hero__column:nth-child(n + 4) {
  display: none;
}

/* ≥ 768px : on affiche les 6 colonnes */
@media (min-width: 768px) {
  .vx-hero__column:nth-child(n + 4) {
    display: block;
  }
}

/* Séparateur vertical entre colonnes visibles */
.vx-hero__column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  width: 2px;
  /* background-color: #050505; */
  z-index: 10;
}

/* =========================
   HERO VOXALYA – IMAGES
========================= */

.vx-hero__img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 300%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  margin-top: -150px;
}

/* Positions des 3 tranches (mobile) */
.vx-hero__column:nth-child(1) .vx-hero__img {
  left: 0%;
}

.vx-hero__column:nth-child(2) .vx-hero__img {
  left: -100%;
}

.vx-hero__column:nth-child(3) .vx-hero__img {
  left: -200%;
}

/* ≥ 768px : 6 tranches */
@media (min-width: 768px) {
  .vx-hero__img {
    width: 600%;
  }

  .vx-hero__column:nth-child(1) .vx-hero__img {
    left: 0%;
  }

  .vx-hero__column:nth-child(2) .vx-hero__img {
    left: -100%;
  }

  .vx-hero__column:nth-child(3) .vx-hero__img {
    left: -200%;
  }

  .vx-hero__column:nth-child(4) .vx-hero__img {
    left: -300%;
  }

  .vx-hero__column:nth-child(5) .vx-hero__img {
    left: -400%;
  }

  .vx-hero__column:nth-child(6) .vx-hero__img {
    left: -500%;
  }
}

/* #region HERO VOXALYA – CONTENU TEXTE ====================================== */

/* #region HERO CONTENT */
/* ---------- .vx-hero__content : base (<480px) ---------- */
.vx-hero__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 20;
  pointer-events: none;
  width: 100%;
  max-width: 1200px;
}

/* ≥ 480px */
@media (min-width: 480px) {
  .vx-hero__content {
    top: 8%;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .vx-hero__content {
    top: 8%;
  }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .vx-hero__content {
    top: 5%;
  }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  .vx-hero__content {
    top: 15%;
  }
}
/* #endregion HERO CONTENT */

/* ---------- .vx-hero__title : base ---------- */
.vx-hero__title {
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ≥ 480px */
@media (min-width: 480px) {
  .vx-hero__title {
    font-size: 25px;
    margin-bottom: 2px;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .vx-hero__title {
    font-size: 30px;
    margin-bottom: 2px;
  }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .vx-hero__title {
    font-size: 30px;
    margin-bottom: 2px;
  }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  .vx-hero__title {
    font-size: 40px;
  }
}

/* #region HERO SUBTITLE */
/* ---------- .vx-hero__subtitle : base (<480px) ---------- */
.vx-hero__subtitle {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fcc658;
}

/* ≥ 480px */
@media (min-width: 480px) {
  .vx-hero__subtitle {
    font-size: 15px;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .vx-hero__subtitle {
    font-size: 16px;
  }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .vx-hero__subtitle {
    font-size: 18px;
  }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  .vx-hero__subtitle {
    font-size: 18px;
  }
}
/* #endregion HERO SUBTITLE */

/* #region SECTION À PROPOS VOXALYA
================================== */

/* ========================
   .vx-about
======================== */
/* #endregion HERO + SENTINEL */

/* #region À PROPOS */
.vx-about {
  margin-top: -30px;
  padding-top: 0px;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--vx-color-bg);
}

/* ≥ 480px */
@media (min-width: 480px) {
  .vx-about {
    margin-top: -40px;
    padding-bottom: 90px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .vx-about {
    margin-top: -50px;
    padding-bottom: 100px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .vx-about {
    margin-top: -70px;
    padding-bottom: 120px;
    padding-left: 80px;
    padding-right: 80px;
  }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  .vx-about {
    margin-top: -80px;
    padding-bottom: 140px;
  }
}

.section-heading_apropos {
  margin-bottom: 35px;
}

/* ========================
   .vx-about__inner
======================== */

.vx-about__inner_about {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ≥ 480px */
@media (min-width: 480px) {
  .vx-about__inner_about {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .vx-about__inner_about {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .vx-about__inner_about {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  .vx-about__inner_about {
    max-width: 1500px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* ========================
   .vx-about__content
======================== */

.vx-about__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ≥ 480px */
@media (min-width: 480px) {
  .vx-about__content {
    gap: 48px;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .vx-about__content {
    gap: 56px;
  }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .vx-about__content {
    gap: 60px;
  }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  .vx-about__content {
    gap: 70px;
  }
}

/* ========================
   .vx-about__intro
======================== */

.vx-about__intro {
  max-width: 1100px;
  font-size: 20px;
  line-height: 1.5;
  color: #ffffff;
}

/* ≥ 480px */
@media (min-width: 480px) {
  .vx-about__intro {
    font-size: 22px;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .vx-about__intro {
    font-size: 24px;
  }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .vx-about__intro {
    font-size: 24px;
    line-height: 1.4;
  }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  .vx-about__intro {
    font-size: 26px;
  }
}

/* ========================
   .vx-about__grid
======================== */

.vx-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* ≥ 480px */
@media (min-width: 480px) {
  .vx-about__grid {
    gap: 36px;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .vx-about__grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
  }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .vx-about__grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  .vx-about__grid {
    gap: 48px;
  }
}

/* ========================
   .vx-about__text
======================== */

.vx-about__text {
  font-size: 16px;
  line-height: 1.6;
  color: #d0d0d0;
}

/* ≥ 480px */
@media (min-width: 480px) {
  .vx-about__text {
    font-size: 18px;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .vx-about__text {
    font-size: 20px;
  }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .vx-about__text {
    font-size: 22px;
  }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  .vx-about__text {
    font-size: 24px;
  }
}

/* ========================
   .vx-about__list
======================== */

.vx-about__list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

/* ≥ 480px */
@media (min-width: 480px) {
  .vx-about__list {
    font-size: 17px;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .vx-about__list {
    font-size: 18px;
  }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .vx-about__list {
    font-size: 20px;
  }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  .vx-about__list {
    font-size: 20px;
  }
}

/* #endregion SECTION À PROPOS VOXALYA */

/* =========================
/* #endregion À PROPOS */

/* #region SECTION HEADING (reusable) */
.section-heading {
  width: 100%;
}

.section-heading__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  row-gap: 12px;
  margin-top: 30px;
}

@media (min-width: 480px) {
  .section-heading__row {
    column-gap: 20px;
  }
}
@media (min-width: 768px) {
  .section-heading__row {
    column-gap: 24px;
    margin-top: 50px;
  }
}

.section-heading__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  justify-self: center;
}

.section-heading__title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 24px;
  line-height: 1.1;
  margin: 0;
}

@media (min-width: 480px) {
  .section-heading__title {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .section-heading__title {
    font-size: 32px;
  }
}

.section-heading__title-light {
  color: var(--vx-color-accent);
  font-weight: 500;
}
.section-heading__title-strong {
  color: #ffffff;
  font-weight: 700;
}

.section-heading__subtitle {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--vx-color-text-muted);
  max-width: 640px;
}

@media (min-width: 768px) {
  .section-heading__subtitle {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .section-heading__subtitle {
    font-size: 18px;
  }
}

/* #endregion SECTION HEADING (reusable) */

/* #region NOS FORFAITS (Pricing) */
#forfaits {
  scroll-margin-top: 120px;
}


/* Grille principale des cartes */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
  align-items: stretch; /* Force toutes les cartes à avoir la même hauteur */
}

@media (min-width: 480px) {
  .pricing-grid {
    gap: 22px;
  }
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
}

/* Structure interne de la carte corrigée */
.pricing-card {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 26px 20px;

  /* Utilisation du grid interne pour l'alignement */
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 20px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 40px 30px;
  }
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.card-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 0; /* Espacement géré par le gap du grid */
}

.features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.features li {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 24px;
  position: relative;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.6;
}

.features li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 24px;
  color: var(--vx-color-accent);
  line-height: 1;
  top: 10px;
}

/* Style du prix */
.price {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 400;
  color: var(--vx-color-accent);
  margin-top: auto; /* Sécurité supplémentaire pour pousser vers le bas */
}

/* Style du bouton */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background-color: var(--vx-color-accent);
  color: #111111;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
  width: 100%; /* Optionnel : bouton pleine largeur pour un look plus pro */
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}



/* #endregion NOS FORFAITS (Pricing) */

/* #region NOS SERVICES (Titre) */
.titre-service {
  padding-top: 40px;
  /* padding-bottom: 40px; */
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--vx-color-bg);
  border-top: 1px solid #2a2a2a;
}

@media (min-width: 480px) {
  .titre-service {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 768px) {
  .titre-service {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.titre-service__container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}


/* #endregion NOS SERVICES (Titre) */

/* #region PORTFOLIO-STYLE2 (Bento responsive) */
.portfolio-style2 {
  padding: 30px 0;
  background: linear-gradient(180deg, #050506 0%, #0a0a0b 100%);
}

@media (min-width: 1024px) {
  .portfolio-style2 {
    padding: 50px 0 140px;
  }
}

.gallery {
  position: relative;
  width: 100%;
  height: 100%;
  flex: none;
}

.portfolio-style2 .gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .portfolio-style2 .gallery {
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .portfolio-style2 .gallery {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    max-width: 1500px;
    gap: 50px;
  }
}

/* Items: reset (avoid transforms injected by legacy libs) */
.portfolio-style2 .gallery .items {
  position: relative !important;
  transform: none !important;
  width: 100%;
}

/* L’agencement Bento ne s’applique qu’en desktop pour éviter le casse en mobile */
@media (min-width: 1024px) {
  .portfolio-style2 .gallery .items:nth-child(1) {
    display: none;
    position: absolute;
    visibility: hidden;
    height: 0;
    width: 0;
    margin: 0;
    padding: 0;
  }

  .portfolio-style2 .gallery .items:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1;
  }
  .portfolio-style2 .gallery .items:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .portfolio-style2 .gallery .items:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .portfolio-style2 .gallery .items:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }
  .portfolio-style2 .gallery .items:nth-child(6) {
    grid-column: 1;
    grid-row: 3;
  }
  .portfolio-style2 .gallery .items:nth-child(7) {
    grid-column: 2 / 4;
    grid-row: 3;
  }
  .portfolio-style2 .gallery .items:nth-child(8) {
    grid-column: 1 / 4;
    grid-row: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
  }
}

.portfolio-style2 .item {
  width: 100%;
  height: 100%;
  margin-top: 0 !important;
}

.portfolio-style2 .item .fit-img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  height: 350px;
}

@media (min-width: 480px) {
  .portfolio-style2 .item .fit-img {
    height: 380px;
  }
}
@media (min-width: 768px) {
  .portfolio-style2 .item .fit-img {
    height: 400px;
  }
}
@media (min-width: 1024px) {
  .portfolio-style2 .item .fit-img {
    height: 450px;
  }
}

@media (min-width: 1024px) {
  .portfolio-style2 .gallery .items:nth-child(7) .item .fit-img {
    height: 400px;
  }
}

.portfolio-style2 .item .fit-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.portfolio-style2 .item .fit-img img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-style2 .item .fit-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.portfolio-style2 .item:hover .fit-img::after {
  opacity: 1;
}

.portfolio-style2 .item .fit-img .tag {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  font-size: 14px;
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0;
  transition: all 0.4s;
}

.portfolio-style2 .item:hover .fit-img .tag {
  opacity: 1;
}

.portfolio-style2 .item .cont {
  margin-top: 24px;
}

.portfolio-style2 .item .cont .mb-10px {
  margin-bottom: 12px;
  opacity: 1;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--vx-color-accent);
}

.portfolio-style2 .item .cont h5 {
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  color: #ffffff;
}

/* Bouton circulaire */
.circle-button {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(252, 212, 98, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(252, 212, 98, 0.05), transparent);
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Restore: rotation + visibilité du texte "Tous nos services" */
.circle-button .rotate-circle {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 25s linear infinite;
  will-change: transform;
  pointer-events: none; /* laisse le <a> cliquable sans que le SVG capte */
}

.circle-button .rotate-circle svg {
  width: 100%;
  height: 100%;
  fill: rgba( 252, 212, 98, 0.8 ); /* rend le texte visible (sinon noir sur noir) */
}

/* Si ton @keyframes rotate a disparu, remets-le aussi */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 480px) {
  .circle-button {
    width: 180px;
    height: 180px;
  }
}
@media (min-width: 768px) {
  .circle-button {
    width: 200px;
    height: 200px;
  }
}

.circle-button:hover {
  border-color: rgba(252, 212, 98, 0.6);
  transform: scale(1.05);
  background: radial-gradient(
    circle at center,
    rgba(252, 212, 98, 0.1),
    transparent
  );
}

.rotate-circle {
  animation: rotate 12s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* #endregion PORTFOLIO-STYLE2 (Bento responsive) */


/* =========================
   SECTION NOS DERNIÈRES CRÉATIONS (CAROUSEL)
========================= */

.vx-creations {
  padding-top: 40px;
  padding-bottom: 20px; /* pas plus de 20px en bas */
  padding-left: 18px;
  padding-right: 18px;
  background-color: var(--vx-color-bg);
  /* border-top: 1px solid #2a2a2a; */
}

.vx-creations__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* En-tête */

.vx-creations__header {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  text-align: center;
}

.vx-creations__label-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.vx-creations__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--vx-color-accent);
}

.vx-creations__label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vx-color-text-muted);
}

.vx-creations__title {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 8px 0;
  color: var(--vx-color-text);
}

.vx-creations__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--vx-color-text-muted);
}

/* Carousel */

.vx-creations__carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vx-creations__viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.vx-creations__track {
  display: flex;
  width: 100%;
}

/* Slide / carte – toutes même taille */

.creation-card {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  border-radius: 30px;
  overflow: hidden;
  background-color: var(--vx-color-surface);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Image même taille (aspect ratio fixe) */

.creation-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.creation-card__image {
  width: auto;
  height: auto;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

/* Tag */

.creation-card__tag {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  color: #ffffff;
}

/* Contenu glass */

.creation-card__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 16px 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.72));
  backdrop-filter: blur(14px);
}

.creation-card__title {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.creation-card__meta {
  margin: 0 0 10px 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--vx-color-text-muted);
}

/* Bouton */

.creation-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(252, 198, 88, 0.4);
  background-color: transparent;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.creation-card__btn-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(252, 198, 88, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.creation-card__btn-label {
  white-space: nowrap;
}

/* Hover */

.creation-card:hover .creation-card__image {
  transform: scale(1.12) translateY(-6px);
}

.creation-card:hover .creation-card__btn {
  background-color: var(--vx-color-accent);
  border-color: var(--vx-color-accent);
  color: #111111;
  transform: translateY(-2px);
}

/* Dots */

.vx-creations__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.vx-creations__dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background-color: #444444;
  cursor: pointer;
  transition:
    width 0.25s ease,
    background-color 0.25s ease;
}

.vx-creations__dot-btn.is-active {
  width: 18px;
  background-color: var(--vx-color-accent);
}

/* Responsive */

.vx-creations__title {
  font-size: 24px;
}

.creation-card__content {
  left: 18px;
  right: 18px;
  bottom: 16px;
}

@media (min-width: 768px) {
  .vx-creations {
    padding-top: 30px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .vx-creations__title {
    font-size: 30px;
  }

  .creation-card__content {
    left: 26px;
    right: 26px;
    bottom: 20px;
  }
}

.creation-card__btn[hidden] {
  display: none !important;
}

/* #endregion NOS DERNIÈRES CRÉATIONS (CAROUSEL) */

/* #region FOOTER CTA */
/*--================================ FOOTER =========================== */

.footer-cta {
  background: #111111;
  padding: 35px 10px 80px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .footer-cta {
    padding: 60px 40px 80px;
  }
}

.footer-cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  background: #181818;
  border-radius: 28px;
  padding: 50px 30px 40px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
}

@media (min-width: 960px) {
  .footer-cta__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    column-gap: 40px;
    row-gap: 0;
  }
}

/* Colonne gauche */

.footer-cta__left {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  row-gap: 30px;
  position: relative;
  overflow: hidden;
}

.footer-cta__headline {
  border-bottom: 1px solid #292929;
  padding-bottom: 24px;
}

.footer-cta__eyebrow {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
}

.footer-cta__logo-image img {
  display: block;
  max-width: 160px; /* largeur max du logo */
  width: 100%;
  height: auto;
}

/* Bouton principal */
.footer-cta__primary-btn {
  margin-top: 16px;
  align-self: flex-start;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  /* largeur contrôlable ici */
  width: 210px;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 16px;
  background: #f6f6f6;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
}

.footer-cta__primary-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--vx-color-accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Logo + baseline */
.footer-cta__bottom-left {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-cta__baseline {
  font-size: 12px;
  letter-spacing: 0.16em;
}

/* Pills */
.footer-cta__pills {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid #fff;
  color: var(--vx-color-accent);
  font-size: 14px;
  text-decoration: none;
  background: #1d1d1d;
}

/* Colonne droite */

.footer-cta__right {
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 30px;
}

.footer-cta__right-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  flex-direction: column;
}

@media (min-width: 960px) {
  .footer-cta__right-top {
    flex-direction: row;
  }
}

.footer-cta__right-title {
  font-size: 25px;
  line-height: 1.5;
}

.footer-cta__socials {
  display: flex;
  gap: 10px;
}

/* Formulaire */
.footer-cta__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-cta__input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 8px;
  align-items: center;
}

.footer-cta__email-input {
  border-radius: 999px;
  border: 1px solid #2a2a2a;
  padding: 14px 18px;
  background: #151515;
  color: #ffffff;
  font-size: 14px;
}

.footer-cta__email-input::placeholder {
  color: #666666;
}

.footer-cta__submit-btn {
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #111111;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
}

.footer-cta__legal {
  font-size: 12px;
  color: #9a9a9a;
  line-height: 1.8;
}



.footer-cta__legal a {
  color: #ffffff;
  text-decoration: underline;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--vx-color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: transparent;
  color: #f6f6f6; /* couleur des icônes */
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.2s ease,
    color 0.3s ease;
}

.social-circle svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-circle:hover {
  background-color: var(--vx-color-accent);
  border-color: var(--vx-color-accent);
  color: #111111; /* l’icône change de couleur au hover */
  transform: translateY(-2px);
}

/* Responsive */
.footer-cta__right-top {
  flex-direction: column;
  flex-direction: column;
}

/* #endregion FOOTER CTA */

* {
  box-sizing: border-box;
}

/*============================================================ PAGE FORFAITS ==================================================================*/

/* #region FORFAITS (Pricing Page) */
#forfaits {
  scroll-margin-top: 120px;
}
@media (min-width: 1024px) {
  #forfaits {
    scroll-margin-top: 140px;
  }
}

.vx-forfaits {
  padding-top: 72px;
  padding-bottom: 56px;
  background-color: var(--vx-color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 480px) {
  .vx-forfaits {
    padding-top: 72px;
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .vx-forfaits {
    padding-top: 90px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .vx-forfaits {
    padding-top: 110px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1440px) {
  .vx-forfaits {
    padding-top: 201px;
    padding-bottom: 50px;
  }
}

.vx-forfaits__inner {
  width: 100%;
}

.vx-forfaits__header {
  max-width: 980px;
}

.vx-forfaits__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--vx-color-accent);
  flex: 0 0 auto;
}

.vx-forfaits__title {
  font-size: clamp(25px, 10vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 12px 0;
}

.vx-forfaits__lead {
  font-size: clamp(16px, 4vw, 20px);
  line-height: 1.6;
  color: var(--vx-color-text-muted);
  margin: 0;
}

.vx-forfaits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

@media (min-width: 480px) {
  .vx-forfaits__grid {
    gap: 18px;
    margin-top: 34px;
  }
}

@media (min-width: 768px) {
  .vx-forfaits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 44px;
  }
}

@media (min-width: 1024px) {
  .vx-forfaits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 1440px) {
  .vx-forfaits__grid {
    gap: 24px;
  }
}

.vx-forfait-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 26px 22px 22px;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  min-width: 0;
  will-change: transform;
  transform: translateZ(0);
}

@media (min-width: 480px) {
  .vx-forfait-card {
    padding: 30px 26px 26px;
  }
}

@media (min-width: 768px) {
  .vx-forfait-card {
    padding: 34px 30px 28px;
  }
}

@media (min-width: 1024px) {
  .vx-forfait-card {
    padding: 38px 34px 30px;
  }
}

.vx-forfait-card__sheen {
  position: absolute;
  inset: -20%;
  left: -120%;
  width: 90%;
  transform: skewX(-18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(252, 198, 88, 0.14),
    transparent
  );
  opacity: 0;
  pointer-events: none;
}

.vx-forfait-card__name {
  margin: 0 0 22px 0;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.92);
}
@media (min-width: 768px) {
  .vx-forfait-card__name {
    margin-bottom: 26px;
  }
}

.vx-forfait-card__price {
  margin-bottom: 22px;
}

@media (min-width: 768px) {
  .vx-forfait-card__price {
    margin-bottom: 26px;
  }
}

.vx-forfait-card__price-value {
  font-size: clamp(24px, 5.2vw, 56px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--vx-color-accent);
}

.vx-forfait-card__price-period {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(245, 245, 245, 0.65);
}

@media (min-width: 768px) {
  .vx-forfait-card__price-period {
    font-size: 15px;
  }
}

.vx-forfait-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 18px 0 18px;
}

@media (min-width: 768px) {
  .vx-forfait-card__divider {
    margin: 22px 0 22px;
  }
}

.vx-forfait-card__features {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: grid;
  gap: 14px;
}

@media (min-width: 480px) {
  .vx-forfait-card__features {
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .vx-forfait-card__features {
    gap: 18px;
  }
}

.vx-forfait-feature {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.92);
}

@media (min-width: 768px) {
  .vx-forfait-feature {
    font-size: 17px;
  }
}

.vx-forfait-feature::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0.95;
}

.vx-forfait-feature--off {
  opacity: 0.38;
}

.vx-forfait-feature--off::before {
  width: 10px;
  height: 10px;
  border-radius: 0px;
  background:
    linear-gradient(
      45deg,
      transparent 44%,
      rgba(245, 245, 245, 0.55) 44%,
      rgba(245, 245, 245, 0.55) 56%,
      transparent 56%
    ),
    linear-gradient(
      -45deg,
      transparent 44%,
      rgba(245, 245, 245, 0.55) 44%,
      rgba(245, 245, 245, 0.55) 56%,
      transparent 56%
    );
  opacity: 0.95;
}

.vx-forfait-card__cta {
  margin-top: 26px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #000000;
  color: var(--vx-color-accent);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}
@media (min-width: 768px) {
  .vx-forfait-card__cta {
    height: 52px;
    padding: 0 26px;
  }
}

.vx-forfait-card__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  background: var(--vx-color-accent);
  color: #111111;
}

.vx-forfait-card:focus-within {
  border-color: rgba(252, 198, 88, 0.4);
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.55),
    0 0 0 3px rgba(252, 198, 88, 0.14);
}

.vx-forfait-card:hover {
  border-color: rgba(252, 198, 88, 0.26);
  transform: translateY(-2px);
}

/* Contracts */
#forfaits-contrats {
  scroll-margin-top: 120px;
}
@media (min-width: 1024px) {
  #forfaits-contrats {
    scroll-margin-top: 140px;
  }
}

.vx-forfaits-contracts {
  padding-top: 56px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, #050505 0%, #0a0a0b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 480px) {
  .vx-forfaits-contracts {
    padding-top: 72px;
    padding-bottom: 84px;
  }
}
@media (min-width: 768px) {
  .vx-forfaits-contracts {
    padding-top: 90px;
    padding-bottom: 96px;
  }
}
@media (min-width: 1024px) {
  .vx-forfaits-contracts {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
@media (min-width: 1440px) {
  .vx-forfaits-contracts {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.vx-forfaits-contracts__header {
  max-width: 980px;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .vx-forfaits-contracts__header {
    margin-bottom: 30px;
  }
}

.vx-forfaits-contracts__title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 10px 0;
}
.vx-forfaits-contracts__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--vx-color-text-muted);
}
@media (min-width: 768px) {
  .vx-forfaits-contracts__lead {
    font-size: 16px;
  }
}

.vx-accordion {
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .vx-accordion {
    gap: 16px;
  }
}

.vx-accordion__item {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.5);
}

.vx-accordion__trigger {
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}
@media (min-width: 480px) {
  .vx-accordion__trigger {
    padding: 20px 20px;
  }
}
@media (min-width: 768px) {
  .vx-accordion__trigger {
    padding: 22px 24px;
  }
}

.vx-accordion__plan {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .vx-accordion__plan {
    font-size: 20px;
  }
}

.vx-accordion__meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.vx-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 245, 245, 0.9);
}

.vx-accordion__price {
  font-size: 14px;
  color: rgba(245, 245, 245, 0.75);
}
@media (min-width: 768px) {
  .vx-accordion__price {
    font-size: 15px;
  }
}

.vx-accordion__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(252, 198, 88, 0.35);
  position: relative;
  flex: 0 0 auto;
}
.vx-accordion__icon::before,
.vx-accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--vx-color-accent);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}
.vx-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.vx-accordion__item.is-open .vx-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.vx-accordion__panel {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vx-accordion__panel-inner {
  padding: 18px 18px 22px;
}
@media (min-width: 480px) {
  .vx-accordion__panel-inner {
    padding: 20px 20px 24px;
  }
}
@media (min-width: 768px) {
  .vx-accordion__panel-inner {
    padding: 22px 24px 28px;
  }
}

.vx-contract__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .vx-contract__grid {
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .vx-contract__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

.vx-contract__block {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  padding: 16px 16px;
}
@media (min-width: 768px) {
  .vx-contract__block {
    padding: 18px 18px;
  }
}

.vx-contract__title {
  margin: 0 0 10px 0;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.92);
}
@media (min-width: 768px) {
  .vx-contract__title {
    font-size: 16px;
  }
}

.vx-contract__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.78);
}
@media (min-width: 768px) {
  .vx-contract__text {
    font-size: 15px;
  }
}

.vx-contract__text2 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.78);
}
@media (min-width: 768px) {
  .vx-contract__text {
    font-size: 15px;
  }
}

.vx-contract__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: rgba(245, 245, 245, 0.78);
  font-size: 14px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .vx-contract__list {
    font-size: 15px;
  }
}

.vx-forfaits__title-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.vx-forfaits__dot--white {
  background: #ffffff;
}
.vx-forfaits__title-accent {
  color: var(--vx-color-accent);
}

/* #endregion FORFAITS (Pricing Page) */

/* #region SERVICES_PAGE */

.vx-services-page {
  width: 100%;
  background: var(--vx-color-bg);
  /* padding-left: 5px;
  padding-right: 5px; */
}

.vx-services-hero {
  padding-top: 50px;
  padding-bottom: 24px;
}

@media (min-width: 480px) {
  .vx-services-hero {
    padding-top: 64px;
    padding-bottom: 28px;
  }
}

@media (min-width: 768px) {
  .vx-services-hero {
    padding-top: 84px;
    padding-bottom: 34px;
  }
}

@media (min-width: 1024px) {
  .vx-services-hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1440px) {
  .vx-services-hero {
    padding-top: 200px;
    padding-bottom: 44px;
  }
}

.vx-services-hero__title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 7vw, 150px);
  line-height: 1.02;
}

.vx-services-why {
  padding-top: 18px;
  padding-bottom: 58px;
  border-top: 1px solid #2a2a2a;
  padding-right: 10px;
  padding-left: 10px;
}

@media (min-width: 480px) {
  .vx-services-why {
    padding-bottom: 68px;
  }
}

@media (min-width: 768px) {
  .vx-services-why {
    padding-bottom: 82px;
  }
}

@media (min-width: 1024px) {
  .vx-services-why {
    padding-bottom: 96px;
  }
}

@media (min-width: 1440px) {
  .vx-services-why {
    padding-bottom: 104px;
  }
}

.vx-services-why__content {
  width: 100%;
  margin-top: 18px;
}

@media (min-width: 480px) {
  .vx-services-why__content {
    margin-top: 22px;
  }
}

@media (min-width: 768px) {
  .vx-services-why__content {
    margin-top: 26px;
  }
}

@media (min-width: 1024px) {
  .vx-services-why__content {
    margin-top: 28px;
  }
}

@media (min-width: 1440px) {
  .vx-services-why__content {
    margin-top: 30px;
  }
}

.vx-services-why__text {
  margin: 0 0 14px;
  color: var(--vx-color-text-muted);
  font-size: 16px;
  line-height: 1.9;
}

@media (min-width: 480px) {
  .vx-services-why__text {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .vx-services-why__text {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .vx-services-why__text {
    font-size: 19px;
  }
}

@media (min-width: 1440px) {
  .vx-services-why__text {
    font-size: 19px;
  }
}

.vx-services-why__text--strong {
  color: var(--vx-color-text);
}

.vx-services-strengths {
  padding-top: 26px;
  padding-bottom: 35px;
  border-top: 1px solid #2a2a2a;
}

@media (min-width: 480px) {
  .vx-services-strengths {
    padding-bottom: 82px;
  }
}

@media (min-width: 768px) {
  .vx-services-strengths {
    padding-bottom: 96px;
  }
}

@media (min-width: 1024px) {
  .vx-services-strengths {
    padding-bottom: 110px;
  }
}

@media (min-width: 1440px) {
  .vx-services-strengths {
    padding-bottom: 120px;
  }
}

.vx-services-switcher {
  margin-top: 22px;
  display: none;
  gap: 34px;
  align-items: start;
}

@media (min-width: 480px) {
  .vx-services-switcher {
    margin-top: 26px;
  }
}

@media (min-width: 768px) {
  .vx-services-switcher {
    display: grid;
    grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  }
}

@media (min-width: 1024px) {
  .vx-services-switcher {
    gap: 52px;
    grid-template-columns: minmax(345px, 500px) minmax(0, 1fr);
  }
}

@media (min-width: 1440px) {
  .vx-services-switcher {
    grid-template-columns: minmax(360px, 560px) minmax(0, 1fr);
  }
}

.vx-services-switcher__left {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  overflow: hidden;
}

@media (min-width: 480px) {
  .vx-services-switcher__left {
    padding: 20px;
  }
}

@media (min-width: 768px) {
  .vx-services-switcher__left {
    padding: 22px;
  }
}

@media (min-width: 1024px) {
  .vx-services-switcher__left {
    padding: 24px;
  }
}

@media (min-width: 1440px) {
  .vx-services-switcher__left {
    padding: 26px;
  }
}

.vx-services-switcher__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  aspect-ratio: 1 / 1;
}

@media (min-width: 480px) {
  .vx-services-switcher__media {
    border-radius: 20px;
  }
}

@media (min-width: 768px) {
  .vx-services-switcher__media {
    border-radius: 22px;
  }
}

@media (min-width: 1024px) {
  .vx-services-switcher__media {
    border-radius: 22px;
  }
}

@media (min-width: 1440px) {
  .vx-services-switcher__media {
    border-radius: 24px;
  }
}

.vx-services-switcher__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: translateY(0px);
  will-change: transform, opacity;
}

@media (min-width: 480px) {
  .vx-services-switcher__img {
  }
}

@media (min-width: 768px) {
  .vx-services-switcher__img {
  }
}

@media (min-width: 1024px) {
  .vx-services-switcher__img {
  }
}

@media (min-width: 1440px) {
  .vx-services-switcher__img {
  }
}

.vx-services-switcher__img--a {
  opacity: 1;
}

.vx-services-switcher__caption {
  position: relative;
  margin-top: 14px;
  min-height: 130px;
}

@media (min-width: 480px) {
  .vx-services-switcher__caption {
    min-height: 130px;
  }
}

@media (min-width: 768px) {
  .vx-services-switcher__caption {
    min-height: 140px;
  }
}

@media (min-width: 1024px) {
  .vx-services-switcher__caption {
    min-height: 150px;
  }
}

@media (min-width: 1440px) {
  .vx-services-switcher__caption {
    min-height: 150px;
  }
}

.vx-services-switcher__text {
  position: absolute;
  inset: 0;
  margin: 0;
  color: var(--vx-color-text-muted);
  font-size: 16px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(0px);
  will-change: transform, opacity;
}

@media (min-width: 480px) {
  .vx-services-switcher__text {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .vx-services-switcher__text {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  .vx-services-switcher__text {
    font-size: 17px;
  }
}

@media (min-width: 1440px) {
  .vx-services-switcher__text {
    font-size: 17px;
  }
}

.vx-services-switcher__text--a {
  opacity: 1;
}

.vx-services-switcher__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 480px) {
  .vx-services-switcher__list {
  }
}

@media (min-width: 768px) {
  .vx-services-switcher__list {
  }
}

@media (min-width: 1024px) {
  .vx-services-switcher__list {
  }
}

@media (min-width: 1440px) {
  .vx-services-switcher__list {
  }
}

.vx-services-switcher__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 480px) {
  .vx-services-switcher__item {
  }
}

@media (min-width: 768px) {
  .vx-services-switcher__item {
  }
}

@media (min-width: 1024px) {
  .vx-services-switcher__item {
  }
}

@media (min-width: 1440px) {
  .vx-services-switcher__item {
  }
}

.vx-services-switcher__btn {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(26px, 3.2vw, 56px);
  line-height: 1.15;
  transition: color 180ms ease;
}

@media (min-width: 480px) {
  .vx-services-switcher__btn {
    padding: 24px 0;
  }
}

@media (min-width: 768px) {
  .vx-services-switcher__btn {
    padding: 26px 0;
  }
}

@media (min-width: 1024px) {
  .vx-services-switcher__btn {
    padding: 28px 0;
  }
}

@media (min-width: 1440px) {
  .vx-services-switcher__btn {
    padding: 28px 0;
  }
}

.vx-services-switcher__btn:hover {
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 480px) {
  .vx-services-switcher__btn:hover {
  }
}

@media (min-width: 768px) {
  .vx-services-switcher__btn:hover {
  }
}

@media (min-width: 1024px) {
  .vx-services-switcher__btn:hover {
  }
}

@media (min-width: 1440px) {
  .vx-services-switcher__btn:hover {
  }
}

.vx-services-switcher__btn:focus-visible {
  outline: 2px solid rgba(252, 198, 88, 0.55);
  outline-offset: 8px;
  border-radius: 10px;
}

@media (min-width: 480px) {
  .vx-services-switcher__btn:focus-visible {
  }
}

@media (min-width: 768px) {
  .vx-services-switcher__btn:focus-visible {
  }
}

@media (min-width: 1024px) {
  .vx-services-switcher__btn:focus-visible {
  }
}

@media (min-width: 1440px) {
  .vx-services-switcher__btn:focus-visible {
  }
}

.vx-services-switcher__btn.is-active {
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 480px) {
  .vx-services-switcher__btn.is-active {
  }
}

@media (min-width: 768px) {
  .vx-services-switcher__btn.is-active {
  }
}

@media (min-width: 1024px) {
  .vx-services-switcher__btn.is-active {
  }
}

@media (min-width: 1440px) {
  .vx-services-switcher__btn.is-active {
  }
}

.vx-services-cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .vx-services-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 768px) {
  .vx-services-cards {
    display: none;
  }
}

@media (min-width: 1024px) {
  .vx-services-cards {
  }
}

@media (min-width: 1440px) {
  .vx-services-cards {
  }
}

.vx-services-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
}

@media (min-width: 480px) {
  .vx-services-card {
    padding: 18px;
  }
}

@media (min-width: 768px) {
  .vx-services-card {
  }
}

@media (min-width: 1024px) {
  .vx-services-card {
  }
}

@media (min-width: 1440px) {
  .vx-services-card {
  }
}

.vx-services-card__media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 12px;
}

@media (min-width: 480px) {
  .vx-services-card__media {
    border-radius: 18px;
  }
}

@media (min-width: 768px) {
  .vx-services-card__media {
  }
}

@media (min-width: 1024px) {
  .vx-services-card__media {
  }
}

@media (min-width: 1440px) {
  .vx-services-card__media {
  }
}

.vx-services-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 480px) {
  .vx-services-card__media img {
  }
}

@media (min-width: 768px) {
  .vx-services-card__media img {
  }
}

@media (min-width: 1024px) {
  .vx-services-card__media img {
  }
}

@media (min-width: 1440px) {
  .vx-services-card__media img {
  }
}

.vx-services-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

@media (min-width: 480px) {
  .vx-services-card__title {
    font-size: 19px;
  }
}

@media (min-width: 768px) {
  .vx-services-card__title {
  }
}

@media (min-width: 1024px) {
  .vx-services-card__title {
  }
}

@media (min-width: 1440px) {
  .vx-services-card__title {
  }
}

.vx-services-card__text {
  margin: 0;
  color: var(--vx-color-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

@media (min-width: 480px) {
  .vx-services-card__text {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .vx-services-card__text {
  }
}

@media (min-width: 1024px) {
  .vx-services-card__text {
  }
}

@media (min-width: 1440px) {
  .vx-services-card__text {
  }
}

.vx-services-need {
  padding-top: 35px;
  padding-bottom: 35px;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding-right: 10px;
  padding-left: 10px;
}

@media (min-width: 480px) {
  .vx-services-need {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}

@media (min-width: 768px) {
  .vx-services-need {
    padding-top: 92px;
    padding-bottom: 92px;
  }
}

@media (min-width: 1024px) {
  .vx-services-need {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

@media (min-width: 1440px) {
  .vx-services-need {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.vx-services-need__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

@media (min-width: 480px) {
  .vx-services-need__grid {
    gap: 26px;
  }
}

@media (min-width: 768px) {
  .vx-services-need__grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .vx-services-need__grid {
    gap: 60px;
  }
}

@media (min-width: 1440px) {
  .vx-services-need__grid {
    gap: 70px;
  }
}

.vx-services-need__title {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0;
  font-size: clamp(38px, 5vw, 84px);
  line-height: 1.2;
  color: #ffffff;
}

@media (min-width: 480px) {
  .vx-services-need__title {
  }
}

@media (min-width: 768px) {
  .vx-services-need__title {
  }
}

@media (min-width: 1024px) {
  .vx-services-need__title {
  }
}

@media (min-width: 1440px) {
  .vx-services-need__title {
  }
}

.vx-services-need__text {
  margin: 0 0 14px;
  color: var(--vx-color-text-muted);
  font-size: 16px;
  line-height: 1.85;
}

@media (min-width: 480px) {
  .vx-services-need__text {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .vx-services-need__text {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .vx-services-need__text {
    font-size: 18px;
  }
}

@media (min-width: 1440px) {
  .vx-services-need__text {
    font-size: 18px;
  }
}

.vx-services-need__link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

@media (min-width: 480px) {
  .vx-services-need__link {
  }
}

@media (min-width: 768px) {
  .vx-services-need__link {
  }
}

@media (min-width: 1024px) {
  .vx-services-need__link {
  }
}

@media (min-width: 1440px) {
  .vx-services-need__link {
  }
}

.vx-services-need__link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 480px) {
  .vx-services-need__link:hover {
  }
}

@media (min-width: 768px) {
  .vx-services-need__link:hover {
  }
}

@media (min-width: 1024px) {
  .vx-services-need__link:hover {
  }
}

@media (min-width: 1440px) {
  .vx-services-need__link:hover {
  }
}
/* #region SERVICES_CONTACT_FORM */

.vx-services-contact {
  padding-top: 35px;
  padding-bottom: 90px;
  border-top: 1px solid #2a2a2a;
  padding-right: 10px;
  padding-left: 10px;
}
@media (min-width: 480px) {
  .vx-services-contact {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .vx-services-contact {
    padding-top: 110px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1024px) {
  .vx-services-contact {
    padding-top: 120px;
    padding-bottom: 130px;
  }
}
@media (min-width: 1440px) {
  .vx-services-contact {
    padding-top: 130px;
    padding-bottom: 140px;
  }
}

.vx-services-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
@media (min-width: 480px) {
  .vx-services-contact__grid {
    gap: 26px;
  }
}
@media (min-width: 768px) {
  .vx-services-contact__grid {
    gap: 34px;
  }
}
@media (min-width: 1024px) {
  .vx-services-contact__grid {
    grid-template-columns: 1fr 1.35fr;
    gap: 60px;
  }
}
@media (min-width: 1440px) {
  .vx-services-contact__grid {
    gap: 70px;
  }
}

.vx-services-contact__title {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0;
  font-size: clamp(38px, 5vw, 84px);
  line-height: 1.2;
  color: #ffffff;
}

.vx-services-contact__form {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
}
@media (min-width: 480px) {
  .vx-services-contact__form {
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .vx-services-contact__form {
    padding: 22px;
  }
}
@media (min-width: 1024px) {
  .vx-services-contact__form {
    padding: 26px;
  }
}
@media (min-width: 1440px) {
  .vx-services-contact__form {
    padding: 28px;
  }
}

.vx-services-contact__row2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (min-width: 480px) {
  .vx-services-contact__row2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Inputs */
.vx-services-contact__input,
.vx-services-contact__textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  font-size: 16px;
  outline: none;
}

.vx-services-contact__input {
  height: 54px;
  border-radius: 999px;
  padding: 0 20px;
}

.vx-services-contact__textarea {
  min-height: 220px;
  resize: vertical;
  border-radius: 26px;
  padding: 18px 20px;
  margin-top: 14px;
}

.vx-services-contact__input::placeholder,
.vx-services-contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

/* Consent */
.vx-contact__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.vx-contact__consent input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.vx-contact__consent label {
  font-size: 14px;
  line-height: 2;
  opacity: 0.9;
}

.vx-contact__consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Submit button */
.vx-services-contact__submit {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--vx-color-accent);
  color: #111111;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  transition:
    transform 200ms ease,
    filter 200ms ease,
    opacity 200ms ease;
}
@media (min-width: 480px) {
  .vx-services-contact__submit {
    padding: 14px 20px;
  }
}

.vx-services-contact__submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

/* IMPORTANT: disabled state must override “yellow” */
.vx-services-contact__submit:disabled,
.vx-services-contact__submit[disabled] {
  background: #2a2a2a !important;
  color: rgba(255, 255, 255, 0.65) !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  transform: none !important;
  filter: grayscale(1) !important;
}

.vx-services-contact__submit-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: var(--vx-color-accent);
  font-size: 20px;
  line-height: 1;
}

/* Optionnel: icône “disabled” un peu plus douce */
.vx-services-contact__submit:disabled .vx-services-contact__submit-icon,
.vx-services-contact__submit[disabled] .vx-services-contact__submit-icon {
  opacity: 0.65;
}

/* Screen-reader */
.vx-services-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* #endregion SERVICES_CONTACT_FORM */

/*=============================================== PAGE À PROPOS ================================================== /*
/* ===============================================
   ABOUT PAGE (scoped)
   Breakpoints: 480 / 768 / 1024 / 1440
================================================ */

.vx-about-page {
  width: 100%;
  background: var(--vx-color-bg);
}

/* ---------- Container ---------- */
.vx-about-page .vx-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding-left: 25px;
  padding-right: 18px;
}

@media (min-width: 480px) {
  .vx-about-page .vx-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 768px) {
  .vx-about-page .vx-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1024px) {
  .vx-about-page .vx-container {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (min-width: 1440px) {
  .vx-about-page .vx-container {
    max-width: 1500px;
    /* padding-left: 0px;
    padding-right: 0px; */
  }
}

/* ---------- Container ---------- */
.vx-about-page .vx-container2 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding-left: 18px;
  padding-right: 18px;
}

@media (min-width: 480px) {
  .vx-about-page .vx-container2 {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 768px) {
  .vx-about-page .vx-container2 {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1024px) {
  .vx-about-page .vx-container2 {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (min-width: 1440px) {
  .vx-about-page .vx-container2 {
    max-width: 1500px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* ---------- Background helper ---------- */
.vx-about-page .vx-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
   HERO
========================================= */

.vx-about-hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 15px;
}

@media (min-width: 480px) {
  .vx-about-hero {
    padding-top: 72px;
  }
}

@media (min-width: 768px) {
  .vx-about-hero {
    padding-top: 90px;
  }
}

@media (min-width: 1024px) {
  .vx-about-hero {
    padding-top: 110px;
  }
}

@media (min-width: 1440px) {
  .vx-about-hero {
    padding-top: 200px;
  }
}

.vx-about-hero .vx-container {
  position: relative;
  z-index: 1;
}

.vx-about-hero__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(40px, 7vw, 88px);
}

@media (min-width: 768px) {
  .vx-about-hero__title {
    margin-bottom: 22px;
  }
}

.vx-about-hero__headline {
  margin: 0px;
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-size: clamp(16px, 3vw, 25px);
}

/* =========================================
   INTRO
========================================= */

.vx-about-intro {
  padding-top: 20px;
  /* padding-bottom: 70px; */
}
@media (min-width: 480px) {
  .vx-about-intro {
    padding-bottom: 84px;
  }
}
@media (min-width: 768px) {
  .vx-about-intro {
    padding-top: 25px;
    padding-bottom: 96px;
  }
}
@media (min-width: 1024px) {
  .vx-about-intro {
    padding-top: 70px;
    padding-bottom: 110px;
  }
}
@media (min-width: 1440px) {
  .vx-about-intro {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.vx-section-label {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(14px, 3.5vw, 26px);
  color: var(--vx-color-accent);
}

.vx-about-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
@media (min-width: 768px) {
  .vx-about-intro__grid {
    gap: 32px;
  }

  .vx-about-intro__media {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .vx-about-intro__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 60px;
  }
}
@media (min-width: 1440px) {
  .vx-about-intro__grid {
    gap: 70px;
  }
}

.vx-about-intro__media {
  display: none;
}

@media (min-width: 1024px) {
  .vx-about-intro__media {
    display: block;
  }
}

.vx-about-intro__video-frame {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.55);
}
.vx-about-intro__video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .vx-about-intro__video-frame {
    max-width: 520px;
    border-radius: 28px;
  }

  .vx-about-intro__video {
    height: 345px;
  }
}
@media (min-width: 1024px) {
  .vx-about-intro__video-frame {
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }

  .vx-about-intro__video {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

.vx-about-intro__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
  font-weight: 500;
  line-height: 1.5;
  font-size: clamp(22px, 4vw, 40px);
}

.vx-about-intro__text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 14px;
  margin-left: 0px;
  color: var(--vx-color-text-muted);
  line-height: 1.9;
  font-size: 16px;
}
@media (min-width: 480px) {
  .vx-about-intro__text {
    font-size: 17px;
  }
}
@media (min-width: 768px) {
  .vx-about-intro__text {
    font-size: 18px;
  }
}

.vx-about-intro__text:last-child {
  margin-bottom: 0px;
}

/* =========================================
   STACKING CARDS
========================================= */

.vx-about-stack {
  padding-top: 56px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, #050505 0%, #0a0a0b 100%);
  border-bottom: 1px solid #2a2a2a;
}

@media (min-width: 480px) {
  .vx-about-stack {
    padding-top: 72px;
    padding-bottom: 84px;
  }
}

@media (min-width: 768px) {
  .vx-about-stack {
    padding-top: 90px;
    padding-bottom: 96px;
  }
}

@media (min-width: 1024px) {
  .vx-about-stack {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

@media (min-width: 1440px) {
  .vx-about-stack {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.vx-stack__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .vx-stack__cards {
    gap: 18px;
  }
}

@media (min-width: 768px) {
  .vx-stack__cards {
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .vx-stack__cards {
    gap: 22px;
  }
}

@media (min-width: 1440px) {
  .vx-stack__cards {
    gap: 24px;
  }
}

.vx-stack-card {
  width: 100%;
  min-width: 0px;
}

.vx-stack-card__inner {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0f0f10;
  background-image: linear-gradient(180deg, #141416 0%, #0d0d0e 100%);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.55);
  padding-top: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  isolation: isolate;
}

@media (min-width: 480px) {
  .vx-stack-card__inner {
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    gap: 18px;
  }
}

/* 500–799: keep 1 column, but lock media size to 410x282 */
@media (min-width: 500px) and (max-width: 799px) {
  .vx-stack-card__inner {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .vx-stack-card__inner {
    padding-top: 22px;
    padding-right: 22px;
    padding-bottom: 22px;
    padding-left: 22px;
    gap: 20px;
  }
}

@media (min-width: 800px) and (max-width: 1023px) {
  .vx-stack-card__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    align-items: stretch;
  }
}

@media (min-width: 1024px) {
  .vx-stack-card__inner {
    padding-top: 26px;
    padding-right: 26px;
    padding-bottom: 26px;
    padding-left: 26px;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    align-items: stretch;
    gap: 22px;
  }
}

@media (min-width: 1440px) {
  .vx-stack-card__inner {
    padding-top: 28px;
    padding-right: 28px;
    padding-bottom: 28px;
    padding-left: 28px;
    gap: 24px;
  }
}

.vx-stack-card__num {
  margin: 0px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.75);
}

.vx-stack-card__title {
  margin-top: 10px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-size: clamp(16px, 4vw, 56px);
  color: #ffffff;
}

.vx-stack-card__text {
  margin: 0px;
  color: var(--vx-color-text-muted);
  font-size: clamp(12px, 2vw, 18px);
  line-height: 1.85;
}

@media (min-width: 480px) {
  .vx-stack-card__text {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .vx-stack-card__text {
    font-size: 17px;
  }
}

@media (min-width: 1440px) {
  .vx-stack-card__text {
    font-size: 18px;
  }
}

.vx-stack-card__tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 768px) {
  .vx-stack-card__tags {
    margin-top: 22px;
  }
}

.vx-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  color: var(--vx-color-accent);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  transition-property: transform, border-color, background-color, color;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.vx-tag:hover {
  transform: translateY(-1px);
  border-color: rgba(252, 198, 88, 0.55);
  background: rgba(252, 198, 88, 0.1);
}

.vx-tag.is-disabled {
  pointer-events: none;
  cursor: default;
}

.vx-stack-card__media {
  width: 100%;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.03);
  aspect-ratio: 16 / 11;
}

/* 500–799: keep 1 column, but lock media size to 410x282 */
@media (min-width: 500px) and (max-width: 799px) {
  .vx-stack-card__media {
    width: 410px;
    height: 282px;
    aspect-ratio: auto;
    justify-self: start;
    max-width: 100%;
  }
}

@media (min-width: 800px) and (max-width: 1023px) {
  .vx-stack-card__media {
    aspect-ratio: 16 / 9;
  }
}

@media (min-width: 1024px) {
  .vx-stack-card__media {
    aspect-ratio: 16 / 9;
  }
}

/* ======================================== PARTIE ABOUT =====================================*/

.vx-about-values {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid #2a2a2a;
}

@media (min-width: 480px) {
  .vx-about-values {
    padding-bottom: 84px;
  }
}

@media (min-width: 768px) {
  .vx-about-values {
    padding-bottom: 96px;
  }
}

@media (min-width: 1024px) {
  .vx-about-values {
    padding-bottom: 110px;
  }
}

@media (min-width: 1440px) {
  .vx-about-values {
    padding-bottom: 120px;
  }
}

/* Wrapper stable (évite que le pin dépende de la hauteur réelle du H2) */
.vx-values__title-pin {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

@media (min-width: 480px) {
  .vx-values__title-pin {
    margin-bottom: 50px;
  }
}

@media (min-width: 768px) {
  .vx-values__title-pin {
    margin-bottom: 22px;
  }
}

@media (min-width: 1024px) {
  .vx-values__title-pin {
    margin-bottom: 0px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    will-change: transform;
    contain: layout;
    transform: translateZ(0);
  }
}

.vx-values__title {
  text-align: center;
}

.vx-values__title h2 {
  margin: 0px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(34px, 11vw, 56px);
  color: #ffffff;
  transform: translateZ(0px);
}

@media (min-width: 480px) {
  .vx-values__title h2 {
    font-size: clamp(38px, 10vw, 64px);
  }
}

@media (min-width: 768px) {
  .vx-values__title h2 {
    font-size: clamp(44px, 8vw, 84px);
  }
}

@media (min-width: 1024px) {
  .vx-values__title h2 {
    font-size: clamp(120px, 15vw, 340px);
    line-height: 0.82;
  }
}

.vx-values__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 480px) {
  .vx-values__grid {
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .vx-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 1024px) {
  .vx-values__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    min-height: 560px;
  }
}

@media (min-width: 1440px) {
  .vx-values__grid {
    gap: 26px;
    min-height: 620px;
  }
}

@media (min-width: 1024px) {
  .vx-values__grid > .vx-value:nth-child(1) {
    grid-column: 2 / span 4;
  }

  .vx-values__grid > .vx-value:nth-child(2) {
    grid-column: 8 / span 4;
    margin-top: 60px;
  }

  .vx-values__grid > .vx-value:nth-child(3) {
    grid-column: 6 / span 4;
    margin-top: 60px;
  }

  .vx-values__grid > .vx-value:nth-child(4) {
    grid-column: 3 / span 4;
    margin-top: 60px;
  }
}

.vx-value {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #1c1c1c;
  padding-top: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
}

@media (min-width: 480px) {
  .vx-value {
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}

@media (min-width: 768px) {
  .vx-value {
    padding-top: 22px;
    padding-right: 22px;
    padding-bottom: 22px;
    padding-left: 22px;
    border-radius: 26px;
  }
}

@media (min-width: 1024px) {
  .vx-value {
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 40px;
    padding-left: 30px;
    border-radius: 30px;
  }
}

.vx-value__name {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-size: 18px;
}

@media (min-width: 768px) {
  .vx-value__name {
    font-size: 19px;
  }
}

.vx-value__text {
  margin: 0px;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.8;
  font-size: 15px;
}

@media (min-width: 480px) {
  .vx-value__text {
    font-size: 16px;
  }
}

.vx-value--light {
  background: #ffffff;
  color: #1f1f1f;
}

.vx-value--light .vx-value__name {
  color: #1f1f1f;
}

.vx-value--light .vx-value__text {
  color: #4e4b4b;
}

/*=============================================== FIN PAGE À PROPOS ================================================== /*


/*===============================================  PAGE CONTACT ================================================== /*

/* #region CONTACT_PAGE */

.vx-contact-page {
  width: 100%;
  background: var(--vx-color-bg);
  color: var(--vx-color-text);
  margin-top: auto;
}

@media (min-width: 480px) {
  .vx-contact-page {
  margin-top: auto;
  }
}


@media (min-width: 768px) {
  .vx-contact-page {
   margin-top: auto;
  }
}
@media (min-width: 1024px) {
  .vx-contact-page {
   margin-top: 50px;
  }
}
@media (min-width: 1440px) {
  .vx-contact-page {
  margin-top: 100px;
  }
}


.vx-contact-page .vx-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding-left: 18px;
  padding-right: 18px;
}
@media (min-width: 480px) {
  .vx-contact-page .vx-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 768px) {
  .vx-contact-page .vx-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  .vx-contact-page .vx-container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 1440px) {
  .vx-contact-page .vx-container {
    max-width: 1500px;
  }
}

.vx-contact-hero {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: 22px;
}
@media (min-width: 480px) {
  .vx-contact-hero {
    padding-bottom: 26px;
  }
}
@media (min-width: 768px) {
  .vx-contact-hero {
    padding-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .vx-contact-hero {
    padding-bottom: 36px;
  }
}
@media (min-width: 1440px) {
  .vx-contact-hero {
    padding-bottom: 40px;
  }
}

.vx-contact-hero__eyebrow {
  margin: 0;
  font-size: clamp(20px, 4vw, 35px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  color: var(--vx-color-accent);
}

.vx-contact-hero__title {
  margin-top: 10px;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.05;
}

.vx-contact-hero__lead {
  margin: 0;
  max-width: 1200px;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
}

.vx-contact-section {
  padding-top: 18px;
  padding-bottom: clamp(64px, 8vw, 120px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vx-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 480px) {
  .vx-contact__grid {
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .vx-contact__grid {
    gap: 22px;
  }
}
@media (min-width: 1024px) {
  .vx-contact__grid {
    grid-template-columns: 1.7fr 1fr;
    gap: 24px;
    align-items: start;
  }
}
@media (min-width: 1440px) {
  .vx-contact__grid {
    gap: 28px;
  }
}

.vx-contact-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
}
@media (min-width: 480px) {
  .vx-contact-card {
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .vx-contact-card {
    padding: 22px;
  }
}
@media (min-width: 1024px) {
  .vx-contact-card {
    padding: 24px;
  }
}
@media (min-width: 1440px) {
  .vx-contact-card {
    padding: 28px;
  }
}

.vx-contact-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .vx-contact-card__title {
    font-size: 24px;
  }
}

.vx-contact-card__sub {
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

.vx-contact-form {
  display: grid;
  gap: 14px;
}

.vx-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vx-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
  padding-bottom: 5px;
  padding-top: 10px;
}

.vx-contact__req {
  color: var(--vx-color-accent);
}

.vx-input,
.vx-select,
.vx-textarea {
  width: 100%;
  appearance: none;
  font-size: 16px;
  color: var(--vx-color-text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 12px;
  outline: none;
}

.vx-textarea {
  resize: vertical;
  min-height: 160px;
}

.vx-input:focus,
.vx-select:focus,
.vx-textarea:focus {
  border-color: rgba(252, 198, 88, 0.7);
  box-shadow: 0 0 0 3px rgba(252, 198, 88, 0.18);
}

.vx-contact-page .vx-select option {
  color: var(--vx-color-text);
  background-color: var(--vx-color-surface);
}

.vx-contact-page .vx-select option:disabled {
  color: #777;
}

.vx-error {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 120, 120, 0.95);
}

.vx-error:empty {
  display: none;
}

.vx-contact__consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 6px;
}

.vx-checkbox {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.vx-consent-label {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.9;
}

.vx-link {
  color: var(--vx-color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vx-link:hover {
  color: var(--vx-color-accent);
}

.vx-contact__privacy-note {
  margin: 6px 0 0 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.75;
}

.vx-contact__submit {
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 14px 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--vx-color-accent);
  color: #050505;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .vx-contact__submit {
    padding: 16px 16px;
  }
}

.vx-contact__submit:focus {
  outline: 3px solid rgba(252, 198, 88, 0.35);
  outline-offset: 3px;
}

/* Disabled state (matches grey pill look) */
.vx-contact__submit:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  cursor: not-allowed;
  opacity: 1;
}

.vx-contact__submit:disabled:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Optional: slightly dim the focus ring when disabled */
.vx-contact__submit:disabled:focus {
  outline: 3px solid rgba(255, 255, 255, 0.12);
  outline-offset: 3px;
}

.vx-contact__recaptcha-note {
  margin: 14px 0 0 0;
  font-size: 12px;
  line-height: 1.8;
  opacity: 0.65;
}

.vx-contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.vx-contact-info__item {
  display: grid;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.vx-contact-info__item:first-child {
  border-top: none;
  padding-top: 0;
}

.vx-contact-info__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.vx-contact-info__value {
  font-size: 16px;
  font-weight: 600;
}

.vx-contact-info__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.vx-social-link {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--vx-color-text);
  opacity: 0.9;
}
.vx-social-link:hover {
  color: var(--vx-color-accent);
  opacity: 1;
}

.vx-contact-info__badge {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(252, 198, 88, 0.1);
  border: 1px solid rgba(252, 198, 88, 0.28);
  color: var(--vx-color-accent);
  font-weight: 700;
  font-size: 13px;
}

/* #endregion CONTACT_PAGE */

/*============================================== PAGE MERCI =============================================*/

/* #region THANKS_PAGE */

.vx-thanks-page {
  width: 100%;
  height: 100dvh;
  background: var(--vx-color-bg);
  color: var(--vx-color-text);
  overflow: hidden;
}

.vx-thanks-page .container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding-left: 18px;
  padding-right: 18px;
}
@media (min-width: 480px) {
  .vx-thanks-page .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 768px) {
  .vx-thanks-page .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  .vx-thanks-page .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 1440px) {
  .vx-thanks-page .container {
    max-width: 1500px;
  }
}

.vx-thanks {
  height: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
  align-content: center;
}

.vx-thanks__container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vx-thanks__card {
  width: 100%;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding-top: 22px;
  padding-right: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
  text-align: left;
}
@media (min-width: 480px) {
  .vx-thanks__card {
    padding-top: 26px;
    padding-right: 26px;
    padding-bottom: 26px;
    padding-left: 26px;
  }
}
@media (min-width: 768px) {
  .vx-thanks__card {
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 1024px) {
  .vx-thanks__card {
    padding-top: 34px;
    padding-right: 34px;
    padding-bottom: 34px;
    padding-left: 34px;
  }
}

.vx-thanks__icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vx-color-accent);
  background: rgba(252, 198, 88, 0.1);
  border: 1px solid rgba(252, 198, 88, 0.28);
}

.vx-thanks__badge {
  margin-top: 16px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.vx-thanks__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(44px, 7vw, 74px);
  line-height: 1.05;
}

.vx-thanks__lead {
  margin-top: 12px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .vx-thanks__lead {
    font-size: 18px;
  }
}

.vx-thanks__divider {
  margin-top: 22px;
  margin-bottom: 18px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.vx-thanks__list {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.vx-thanks__item {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

.vx-thanks__actions {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 480px) {
  .vx-thanks__actions {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .vx-thanks__actions {
    gap: 14px;
  }
}

.vx-thanks__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 13px;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  transition-property:
    transform, background-color, border-color, color, opacity;
  transition-duration: 160ms;
  transition-timing-function: ease;
}

.vx-thanks__btn--primary {
  background: var(--vx-color-accent);
  color: #050505;
  border: 1px solid rgba(252, 198, 88, 0.65);
}

.vx-thanks__btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--vx-color-text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vx-thanks__btn:hover {
  transform: translateY(-1px);
}

.vx-thanks__btn:focus {
  outline: 3px solid rgba(252, 198, 88, 0.35);
  outline-offset: 3px;
}

/* #endregion THANKS_PAGE */

/*============================================== FIN PAGE MERCI =============================================*/

/*============================================== PAGE CONDITIONS GENERALES =============================================*/

/* #region LEGAL_PAGE (vx-legal-*) */

.vx-legal-page {
  --vx-legal-accent: #fcc658;
  --vx-legal-bg: #000000;
  --vx-legal-text: rgba(255, 255, 255, 0.92);
  --vx-legal-muted: rgba(255, 255, 255, 0.72);
  --vx-legal-border: rgba(255, 255, 255, 0.1);
  --vx-legal-card: rgba(255, 255, 255, 0.04);

  --vx-legal-radius: 18px;
  --vx-legal-gap: 18px;

  /* Sticky offset (ajuste si nécessaire pour ta navbar globale) */
  --vx-legal-sticky-top: 16px;

  width: 100%;
  background: var(--vx-legal-bg);
  color: var(--vx-legal-text);
  padding-top: 40px;
  padding-bottom: 56px;
}

@media (min-width: 480px) {
  .vx-legal-page {
    padding-top: 54px;
    padding-bottom: 72px;
    --vx-legal-gap: 22px;
  }
}
@media (min-width: 768px) {
  .vx-legal-page {
    padding-top: 70px;
    padding-bottom: 90px;
    --vx-legal-gap: 26px;
  }
}
@media (min-width: 1024px) {
  .vx-legal-page {
    padding-top: 80px;
    padding-bottom: 110px;
    --vx-legal-gap: 30px;
  }
}
@media (min-width: 1440px) {
  .vx-legal-page {
    padding-top: 86px;
    padding-bottom: 120px;
    --vx-legal-gap: 34px;
  }
}

.vx-legal-page *,
.vx-legal-page *::before,
.vx-legal-page *::after {
  box-sizing: border-box;
}

/* Container (scoped) */
.vx-legal-page .container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 25px;
}
@media (min-width: 480px) {
  .vx-legal-page .container {
    padding-inline: 50px;
  }
}
@media (min-width: 768px) {
  .vx-legal-page .container {
    padding-inline: 45px;
  }
}
@media (min-width: 1024px) {
  .vx-legal-page .container {
    padding-inline: 50px;
  }
}
@media (min-width: 1440px) {
  .vx-legal-page .container {
    padding-inline: 50px;
  }
}

/* Hero */
.vx-legal-hero {
  margin: 0 0 26px 0;
}
@media (min-width: 480px) {
  .vx-legal-hero {
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  .vx-legal-hero {
    margin-bottom: 36px;
  }
}
@media (min-width: 1024px) {
  .vx-legal-hero {
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .vx-legal-hero {
    margin-bottom: 44px;
  }
}

.vx-legal-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  font-size: clamp(34px, 5.8vw, 72px);
}

.vx-legal-updated {
  margin: 12px 0 0 0;
  color: var(--vx-legal-muted);
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 480px) {
  .vx-legal-updated {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .vx-legal-updated {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .vx-legal-updated {
    font-size: 17px;
  }
}

.vx-legal-company {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--vx-legal-border);
  border-radius: var(--vx-legal-radius);
  background: linear-gradient(
    180deg,
    var(--vx-legal-card),
    rgba(255, 255, 255, 0.02)
  );
}
@media (min-width: 480px) {
  .vx-legal-company {
    padding: 18px;
  }
}
@media (min-width: 768px) {
  .vx-legal-company {
    padding: 20px;
  }
}
@media (min-width: 1440px) {
  .vx-legal-company {
    padding: 24px;
  }
}

.vx-legal-company__line {
  margin: 0;
  color: var(--vx-legal-muted);
  font-size: 14px;
  line-height: 1.55;
}

.vx-legal-link {
  color: var(--vx-legal-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Layout */
.vx-legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vx-legal-gap);
  align-items: start;
}

/* IMPORTANT: pas de sommaire sur mobile */
.vx-legal-aside {
  display: none;
}

@media (min-width: 1024px) {
  .vx-legal-layout {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 28px;

    /* CRITIQUE POUR TON POINT 3:
       - on étire l’aside à la même hauteur que le main,
       - le sticky est donc borné au début/fin de .vx-legal-main */
    align-items: stretch;
  }

  .vx-legal-aside {
    display: block;
    height: 100%;
  }
}

@media (min-width: 1440px) {
  .vx-legal-layout {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 32px;
  }
}

/* Sticky borné (uniquement desktop) */
.vx-legal-toc__pin {
  position: static;
}

@media (min-width: 1024px) {
  .vx-legal-toc__pin {
    position: sticky;
    top: var(--vx-legal-sticky-top);
  }
}

/* TOC card */
.vx-legal-toc {
  border-radius: var(--vx-legal-radius);
  border: 1px solid var(--vx-legal-border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  padding: 16px;

  /* Pour gérer la scrollbar uniquement si nécessaire */
  display: flex;
  flex-direction: column;

  /* Pas de hauteur forcée : si ça tient, pas de scroll.
     Si ça ne tient pas, la carte sera limitée et la liste scrollera. */
  max-height: none;
}

@media (min-width: 480px) {
  .vx-legal-toc {
    padding: 18px;
  }
}
@media (min-width: 768px) {
  .vx-legal-toc {
    padding: 20px;
  }
}
@media (min-width: 1440px) {
  .vx-legal-toc {
    padding: 22px;
  }
}

@media (min-width: 1024px) {
  .vx-legal-toc {
    max-height: calc(100vh - var(--vx-legal-sticky-top) - 16px);
  }
}

.vx-legal-toc__title {
  margin: 0 0 12px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.vx-legal-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  /* Permettre à la liste de scroller uniquement si la carte est clampée */
  min-height: 0;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--vx-legal-accent) transparent;
}

.vx-legal-toc__item {
  margin: 0;
}

.vx-legal-toc__link {
  display: block;
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .vx-legal-toc__link {
    font-size: 15px;
  }
}

.vx-legal-toc__link:hover,
.vx-legal-toc__link:focus-visible {
  outline: none;
  border-color: rgba(252, 198, 88, 0.4);
  box-shadow: 0 0 0 3px rgba(252, 198, 88, 0.14);
}

.vx-legal-toc__link.is-active {
  color: #000000;
  background: var(--vx-legal-accent);
  border-color: rgba(252, 198, 88, 0.65);
}

/* Main */
.vx-legal-main {
  min-width: 0;
}
.vx-legal-article {
  width: 100%;
}

/* Anchor comfort */
.vx-legal-section {
  scroll-margin-top: calc(var(--vx-nav-h, 0px) + 18px);
  padding-top: 8px;
  margin-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 480px) {
  .vx-legal-section {
    margin-bottom: 26px;
  }
}
@media (min-width: 768px) {
  .vx-legal-section {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .vx-legal-section {
    margin-bottom: 34px;
  }
}
@media (min-width: 1440px) {
  .vx-legal-section {
    margin-bottom: 38px;
  }
}

.vx-legal-section:first-child {
  border-top: none;
  padding-top: 0;
}

.vx-legal-h2 {
  margin: 0 0 12px 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
}

.vx-legal-p {
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .vx-legal-p {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .vx-legal-p {
    font-size: 17px;
  }
}

.vx-legal-ul {
  margin: 0 0 12px 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.vx-legal-li {
  margin: 8px 0;
  line-height: 1.6;
}

/* Definitions */
.vx-legal-defs {
  margin: 0;
  display: grid;
  gap: 12px;
}

.vx-legal-def {
  border: 1px solid var(--vx-legal-border);
  border-radius: var(--vx-legal-radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.03)
  );
  padding: 14px;
  display: grid;
  gap: 8px;
}
@media (min-width: 480px) {
  .vx-legal-def {
    padding: 16px;
  }
}
@media (min-width: 768px) {
  .vx-legal-def {
    padding: 18px;
  }
}
@media (min-width: 1440px) {
  .vx-legal-def {
    padding: 20px;
  }
}

.vx-legal-def__term {
  margin: 0;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}
.vx-legal-def__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

/* Accept */
.vx-legal-accept {
  margin-top: 22px;
  padding: 16px;
  border-radius: var(--vx-legal-radius);
  border: 1px solid rgba(252, 198, 88, 0.22);
  background: linear-gradient(
    180deg,
    rgba(252, 198, 88, 0.1),
    rgba(255, 255, 255, 0.02)
  );
}
@media (min-width: 480px) {
  .vx-legal-accept {
    padding: 18px;
  }
}
@media (min-width: 768px) {
  .vx-legal-accept {
    padding: 20px;
  }
}
@media (min-width: 1440px) {
  .vx-legal-accept {
    padding: 22px;
  }
}

.vx-legal-accept__p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* #endregion LEGAL_PAGE (vx-legal-*) */

/*============================================== FIN CONDITIONS GENERALES =============================================*/

/*============================================== PAGE POLITIQUE DE CONFIDENTIALIE =============================================*/

/*============================================== FIN PAGE POLITIQUE DE CONFIDENTIALIE =============================================*/

/*======================================= COOKIE ==============================*/

/* #region COOKIE_BANNER */
.vx-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none;
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom);
}

@media (min-width: 480px) {
  .vx-cookie {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

@media (min-width: 768px) {
  .vx-cookie {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .vx-cookie {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
}

@media (min-width: 1440px) {
  .vx-cookie {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
}

.vx-cookie.is-visible {
  display: block;
}

.vx-cookie__inner {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  padding: 14px 14px;
  background: #050505;
  border: 1px solid rgba(252, 198, 88, 0.22);
  border-radius: 14px;
  color: #fcc658;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 480px) {
  .vx-cookie__inner {
    padding: 16px 16px;
    border-radius: 16px;
    gap: 18px;
  }
}

@media (min-width: 768px) {
  .vx-cookie__inner {
    padding: 18px 18px;
    border-radius: 18px;
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .vx-cookie__inner {
    padding: 18px 22px;
    border-radius: 18px;
    gap: 20px;
  }
}

@media (min-width: 1440px) {
  .vx-cookie__inner {
    padding: 20px 24px;
    border-radius: 20px;
    max-width: 1040px;
    gap: 22px;
  }
}

.vx-cookie__content {
  display: grid;
  gap: 6px;
  flex: 1;
  min-width: 260px;
  max-width: 620px;
}

@media (max-width: 820px) {
  .vx-cookie__inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .vx-cookie__content {
    max-width: none;
  }
}

.vx-cookie__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(14px, 3.6vw, 16px);
  letter-spacing: 0.2px;
}

@media (min-width: 480px) {
  .vx-cookie__title {
    font-size: 16px;
  }
}

@media (min-width: 1440px) {
  .vx-cookie__title {
    font-size: 17px;
  }
}

.vx-cookie__text {
  margin: 0;
  font-size: clamp(13px, 3.4vw, 14px);
  line-height: 1.35;
  color: var(--vx-color-text);
}

@media (min-width: 480px) {
  .vx-cookie__text {
    font-size: 14px;
  }
}

@media (min-width: 1440px) {
  .vx-cookie__text {
    font-size: 15px;
  }
}

.vx-cookie__link {
  display: inline-block;
  width: fit-content;
  font-size: 13px;
  color: var(--vx-color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

@media (min-width: 1440px) {
  .vx-cookie__link {
    font-size: 14px;
  }
}

.vx-cookie__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 0;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .vx-cookie__actions {
    width: 100%;
    justify-content: flex-end;
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  .vx-cookie__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.vx-cookie__btn {
  appearance: none;
  border: 1px solid rgba(252, 198, 88, 0.55);
  background: transparent;
  color: var(--vx-color-text);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  min-height: 44px;
}

@media (max-width: 520px) {
  .vx-cookie__btn {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .vx-cookie__btn {
    min-width: 160px;
  }
}

@media (min-width: 1440px) {
  .vx-cookie__btn {
    padding: 12px 16px;
    min-width: 170px;
  }
}

.vx-cookie__btn:focus-visible {
  outline: 2px solid #fcc658;
  outline-offset: 2px;
}

.vx-cookie__btn--accept {
  background: #fcc658;
  color: #050505;
  border-color: #fcc658;
}

.vx-cookie__details {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(252, 198, 88, 0.18);
  display: grid;
  gap: 10px;
}

@media (min-width: 1024px) {
  .vx-cookie__details {
    margin-top: 10px;
  }
}

.vx-cookie__details-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(252, 198, 88, 0.88);
}

@media (min-width: 1440px) {
  .vx-cookie__details-text {
    font-size: 14px;
  }
}

.vx-cookie__btn--close {
  width: 100%;
}

@media (min-width: 480px) {
  .vx-cookie__btn--close {
    width: 180px;
  }
}

@media (min-width: 1440px) {
  .vx-cookie__btn--close {
    width: 190px;
  }
}
/* #endregion COOKIE_BANNER */

/* Hide reCAPTCHA badge (we display the required notice in the footer/contact) */
.grecaptcha-badge {
  visibility: hidden;
}

.grecaptcha-badge {
  visibility: hidden;
}

.vx-recaptcha-notice {
  font-size: 12px;
  line-height: 16px;
  opacity: 0.8;
  margin-top: 10px;
}

.vx-recaptcha-notice a {
  text-decoration: underline;
}


/*SKIP LINK*/

.vx-skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
}

.vx-skip-link:focus,
.vx-skip-link:focus-visible {
  left: 12px;
}