/* PIX|WEB — CSS global généré automatiquement. Ne pas modifier directement. */

/* ===== 00-design-tokens.css ===== */
/* ==========================================================================
   PIX|WEB — 00-design-tokens.css
   Couleurs, typo, tailles globales et rythme commun.
   Modifier ici pour impacter toutes les pages.
   ========================================================================== */

:root {
  --bg: #050505;
  --bg-soft: rgba(0, 0, 0, 0.18);
  --bg-solid: rgba(0, 0, 0, 0.88);

  --surface-dark: #050505;
  --surface-white: #ffffff;
  --surface-cream: #f7f5ef;

  --text: #f5f7fb;
  --text-dark: #111111;
  --muted: rgba(255, 255, 255, .72);
  --muted-dark: rgba(0, 0, 0, .58);
  --line: rgba(255, 255, 255, .12);

  --accent: #ffffff;
  --accent-soft: rgba(255, 255, 255, 0.12);

  /* Alias historiques conservés pour ne casser aucune page existante. */
  --blue: var(--accent);
  --blue-soft: var(--accent-soft);

  --container: 100vw;
  --header-h: 78px;
  --header-h-scrolled: 78px;

  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Times New Roman", Georgia, serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-soft: 0 28px 70px rgba(0, 0, 0, .45);
  --shadow-heavy: 0 48px 110px rgba(0, 0, 0, .46);
}

/* === PIXWEB TYPOGRAPHY TOKENS START === */
:root {
  /* Typographie centrale PIX|WEB — source unique pour toutes les pages. */
  --pix-font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Hero : repris de l'index.html */
  --pix-type-hero-size: clamp(2.4rem, 4.2vw, 4.8rem);
  --pix-type-hero-line: 1.08;
  --pix-type-hero-weight: 300;
  --pix-type-hero-tracking: -.03em;

  /* Titres de sections : repris des sections premium de l'index. */
  --pix-type-section-size: clamp(2.4rem, 4.2vw, 4.8rem);
  --pix-type-section-line: 1.08;
  --pix-type-section-weight: 400;
  --pix-type-section-tracking: -.03em;

  /* Titres de cartes / offres : repris des cartes Forfaits de l'index. */
  --pix-type-card-title-size: clamp(2.15rem, 3.05vw, 3.55rem);
  --pix-type-card-title-line: 1.06;
  --pix-type-card-title-weight: 300;
  --pix-type-card-title-tracking: -.04em;

  /* FAQ : repris du bouton FAQ de l'index. */
  --pix-type-faq-title-size: clamp(2.4rem, 4.2vw, 4.8rem);
  --pix-type-faq-title-line: 1.08;
  --pix-type-faq-title-weight: 100;
  --pix-type-faq-title-tracking: -.03em;

  /* Textes, sous-titres et paragraphes. */
  --pix-type-lead-size: clamp(.98rem, 1.25vw, 1.14rem);
  --pix-type-lead-line: 1.7;
  --pix-type-lead-weight: 400;
  --pix-type-body-size: clamp(.95rem, 1.05vw, 1.06rem);
  --pix-type-body-line: 1.68;
  --pix-type-label-size: clamp(.68rem, .78vw, .78rem);
  --pix-type-button-size: clamp(.9rem, 1vw, 1rem);

  /* Alias de maintenance : lisibles pour les futures pages. */
  --type-hero-title: var(--pix-type-hero-size);
  --type-section-title: var(--pix-type-section-size);
  --type-card-title: var(--pix-type-card-title-size);
  --type-faq-title: var(--pix-type-faq-title-size);
}
/* === PIXWEB TYPOGRAPHY TOKENS END === */

/* ===== 01-shared-components.css ===== */
/* PIX|WEB — Composants et styles partagés entre les pages actuelles. */

* {
      box-sizing: border-box;
    }

html {
      scroll-behavior: smooth;
    }

body {
      margin: 0;
      font-family: var(--pix-font-main);
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

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

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

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

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

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

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

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

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

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

/* Garde-fou global : logo header toujours contraint, même si une page surcharge .brand */
.brand__logo {
  display: block;
  width: clamp(146px, 14vw, 200px);
  max-width: clamp(146px, 14vw, 200px);
  height: auto;
  object-fit: contain;
  filter: grayscale(1) drop-shadow(0 6px 18px rgba(0, 0, 0, .3));
  transform-origin: left center;
  transition: none;
}

@media (max-width: 860px) {
  .brand__logo {
    width: clamp(138px, 38vw, 176px);
    max-width: clamp(138px, 38vw, 176px);
  }
}

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

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

.site-nav__item {
      position: relative;
    }

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

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

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

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

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

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

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

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

.mega {
      position: absolute;
      top: 12px;
      left: var(--mega-left, 0px);
      width: var(--mega-w, 860px);
      max-width: calc(100vw - 32px);
      display: none;
      /* masqué par défaut — aucun conflit possible */
      pointer-events: none;
    }

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

.mega.is-open .mega__panel {
      animation: megaIn .22s cubic-bezier(.22, .61, .36, 1) both;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mega__link:hover {
      color: #fff;
    }

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

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

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

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

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

.mega__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      filter: brightness(.88);
      transition: transform .5s cubic-bezier(.22, .61, .36, 1), filter .3s;
    }

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

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

.mega__carousel-slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform .6s cubic-bezier(.22, .61, .36, 1);
    }

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

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

.mega__img-caption {
      margin-top: 12px;
      font-size: .82rem;
      color: rgba(255, 255, 255, .46);
      line-height: 1.5;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero {
      --hero-cards-h: clamp(360px, 34vw, 520px);
      --hero-card-center-h: clamp(281px, 26.48vw, 397px);
      --hero-cards-black-offset: calc(var(--hero-cards-h) - var(--hero-card-center-h));
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      padding: clamp(120px, 16vh, 180px) 0 72px;
      padding-bottom: clamp(235px, 25vw, 330px);
      overflow: visible;
      isolation: isolate;
      background: #d8d8d3;
    }

.hero__inner {
      position: relative;
      z-index: 2;
      width: min(1200px, calc(100vw - 48px));
      margin: 0 auto;
      min-height: calc(100svh - clamp(120px, 16vh, 180px) - 72px);
      padding-bottom: clamp(170px, 16vw, 220px);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

.hero__cards {
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 100vw;
      height: var(--hero-cards-h);
      transform: translate(-50%, 0%);
      pointer-events: none;
      z-index: 3;
      overflow: visible;
    }

.hero-card {
      position: absolute;
      top: 0;
      left: 50%;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 36px 90px rgba(0, 0, 0, .38);
      border: none;
      background: #050505;
      pointer-events: auto;
      transform-origin: center center;
      will-change: transform, width, height, top;
      transition:
        transform .9s cubic-bezier(.22, .61, .36, 1),
        width .9s cubic-bezier(.22, .61, .36, 1),
        height .9s cubic-bezier(.22, .61, .36, 1),
        box-shadow .9s cubic-bezier(.22, .61, .36, 1),
        top .9s cubic-bezier(.22, .61, .36, 1);
    }

.hero-card[data-state="left"],
    .hero-card[data-state="right"] {
      width: clamp(515px, 45.45vw, 692px);
      height: clamp(284px, 25.07vw, 380px);
      z-index: 1;
    }

.hero-card[data-state="left"] {
      transform: translateX(calc(-50% - clamp(429px, calc(47.3vw + 24px), 704px))) rotate(-3deg) scale(.965);
      top: calc((clamp(360px, 34vw, 520px) - clamp(330px, 29vw, 450px) * 0.965) / 2);
    }

.hero-card[data-state="center"] {
      width: clamp(510px, 48vw, 720px);
      height: var(--hero-card-center-h);
      transform: translateX(-50%) rotate(0deg) scale(1);
      z-index: 3;
      box-shadow: 0 48px 110px rgba(0, 0, 0, .46);
    }

.hero-card[data-state="right"] {
      transform: translateX(calc(-50% + clamp(429px, calc(47.3vw + 24px), 704px))) rotate(3deg) scale(.965);
      z-index: 1;
      top: calc((clamp(360px, 34vw, 520px) - clamp(330px, 29vw, 450px) * 0.965) / 2);
    }

.hero-card[data-state="far-left"] {
      width: clamp(460px, 40vw, 620px);
      height: clamp(310px, 32vw, 440px);
      transform: translateX(calc(-50% - clamp(1100px, calc(46.3vw + 800px), 1600px))) rotate(-5deg) scale(.95);
      z-index: 0;
      top: calc((clamp(360px, 34vw, 520px) - clamp(330px, 29vw, 450px) * 0.965) / 2);
    }

.hero-card[data-state="far-right"] {
      width: clamp(460px, 40vw, 620px);
      height: clamp(310px, 32vw, 440px);
      transform: translateX(calc(-50% + clamp(1100px, calc(46.3vw + 800px), 1600px))) rotate(5deg) scale(.95);
      z-index: 0;
      top: calc((clamp(360px, 34vw, 520px) - clamp(330px, 29vw, 450px) * 0.965) / 2);
    }

.hero-card__frame {
      position: absolute;
      inset: 0;
      padding: 0;
    }

.hero-card__topbar {
      display: none;
    }

.hero-card__topbar--hidden {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-size: 11px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: .16em;
      opacity: .9;
    }

.hero-card--left .hero-card__topbar,
    .hero-card--right .hero-card__topbar {
      color: rgba(0, 0, 0, .72);
    }

.hero-card--center .hero-card__topbar {
      color: rgba(255, 255, 255, .86);
    }

.hero-card__topbar nav {
      display: flex;
      align-items: center;
      gap: 18px;
      white-space: nowrap;
    }

.hero-card__body {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      overflow: hidden;
    }

.hero-card__body img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

.hero-card--left .hero-card__body {
      position: absolute;
      inset: 0;
    }

.hero-card--right .hero-card__body {
      position: absolute;
      inset: 0;
    }

.hero-card__tag {
      position: absolute;
      left: 16px;
      padding: 12px 22px;
      border-radius: 999px;
      font-size: clamp(1rem, 1.45vw, 1.7rem);
      line-height: 1;
      letter-spacing: -.03em;
      background: #ca6f71;
      color: #141414;
      box-shadow: 0 12px 26px rgba(0, 0, 0, .12);
      white-space: nowrap;
    }

.hero-card__tag--one {
      top: 72px;
    }

.hero-card__tag--two {
      bottom: 116px;
      left: 50px;
    }

.hero-card__tag--three {
      bottom: 34px;
      left: 18px;
    }

.hero-card__product {
      position: absolute;
      right: 18px;
      bottom: 20px;
      width: 58%;
      height: 44%;
      border-radius: 8px;
      background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .65), transparent 46%),
        linear-gradient(180deg, rgba(241, 236, 224, .98), rgba(196, 186, 168, .98));
      filter: drop-shadow(0 24px 24px rgba(0, 0, 0, .16));
      transform: perspective(900px) rotateX(62deg) rotateZ(-10deg);
      transform-origin: bottom center;
    }

.hero-card__product::before,
    .hero-card__product::after {
      content: "";
      position: absolute;
      inset: auto 10% 16% 10%;
      height: 28%;
      border-radius: 999px;
      background: rgba(141, 126, 104, .28);
      filter: blur(2px);
    }

.hero-card__product::after {
      inset: auto 15% 0 15%;
      height: 18%;
      background: rgba(0, 0, 0, .08);
      filter: blur(10px);
    }

.hero-card__logo-round {
      position: absolute;
      right: 26px;
      top: 50%;
      transform: translateY(-50%);
      width: 104px;
      height: 104px;
      border-radius: 999px;
      border: 3px solid rgba(255, 255, 255, .68);
      color: rgba(255, 255, 255, .68);
      display: grid;
      place-items: center;
      font-size: 3rem;
      font-weight: 300;
      letter-spacing: -.08em;
      backdrop-filter: blur(2px);
    }

.hero-card__center-grid {
      position: absolute;
      inset: 0;
      padding: 24px 28px 24px;
      color: #fff;
    }

.hero-card__center-media {
      position: absolute;
      background: #050505;
      overflow: hidden;
    }

.hero-card__center-media--left {
      left: 30px;
      top: 46px;
      width: 27%;
      height: 56%;
    }

.hero-card__center-media--right {
      right: 30px;
      bottom: 46px;
      width: 27%;
      height: 30%;
    }

.hero-card__center-title {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -52%);
      width: 58%;
      margin: 0;
      text-align: center;
      font-family: "Times New Roman", Georgia, serif;
      font-style: italic;
      font-weight: 400;
      font-size: clamp(2.5rem, 5vw, 5.6rem);
      line-height: .88;
      letter-spacing: -.04em;
      color: rgba(255, 255, 255, .94);
      text-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    }

.hero-card__center-btn {
      position: absolute;
      left: 50%;
      bottom: 34px;
      transform: translateX(-50%);
      min-width: 148px;
      height: 46px;
      padding: 0 24px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .72);
      color: rgba(255, 255, 255, .88);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      background: transparent;
    }

.hero__bg {
      position: absolute;
      inset: 0;
      z-index: -3;
      overflow: hidden;
      pointer-events: none;
    }

.hero__bg-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity .1s;
    }

.hero__bg-slide.is-active {
      opacity: 1;
    }

.hero__bg::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: clamp(200px, 28vw, 400px);
      background: linear-gradient(to bottom, transparent 0%, rgba(5, 5, 5, .3) 55%, #050505 100%);
      z-index: 2;
      pointer-events: none;
    }

.hero__video-wrap {
      position: absolute;
      inset: 0;
      z-index: -3;
      overflow: hidden;
      pointer-events: none;
    }

.hero__video-wrap::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: calc(clamp(210px, 29.4vw, 420px) + var(--hero-cards-black-offset));
      background: linear-gradient(to bottom,
          transparent 0%,
          rgba(5, 5, 5, .18) 36%,
          rgba(5, 5, 5, .48) calc(100% - var(--hero-cards-black-offset) - 28px),
          #050505 calc(100% - var(--hero-cards-black-offset)),
          #050505 100%);
      z-index: 2;
      pointer-events: none;
    }

.hero__video-wrap::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 140px;
      background: linear-gradient(to bottom, rgba(0, 0, 0, .22) 0%, transparent 100%);
      z-index: 2;
      pointer-events: none;
    }

.hero__video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      transform: scale(1.04);
    }

.hero__copy {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(30px, 4vh, 60px) 24px clamp(200px, 26vw, 360px);
      text-align: center;
      z-index: 4;
      pointer-events: none;
    }

.hero__copy::before {
      content: none;
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 40% at 50% 45%, rgba(0, 0, 0, .22) 0%, transparent 70%);
      pointer-events: none;
      z-index: -1;
    }

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

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

.hero h1 {
      margin: 0;
      display: inline-block;
      font-size: clamp(2.4rem, 4.2vw, 4.8rem);
      line-height: 1.08;
      letter-spacing: -.03em;
      font-weight: 300;
      color: #ffffff;
      text-shadow: 0 12px 32px rgba(0, 0, 0, .24);
      text-align: center;
      white-space: nowrap;
    }

.hero h1 span {
      color: #ffffff;
      text-shadow: none;
    }

.hero p {
      margin: 24px 0 0;
      max-width: 620px;
      font-size: clamp(1rem, 1.2vw, 1.14rem);
      line-height: 1.7;
      color: var(--muted);
    }

.hero__cta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

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

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

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

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

.hero__visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: min(62vh, 760px);
    }

.visual-card {
      position: relative;
      width: min(100%, 620px);
      aspect-ratio: 1 / 1;
      border-radius: 34px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)),
        rgba(255, 255, 255, .02);
      border: 1px solid rgba(255, 255, 255, .1);
      box-shadow:
        0 30px 90px rgba(0, 0, 0, .35),
        inset 0 1px 0 rgba(255, 255, 255, .08);
      overflow: hidden;
      isolation: isolate;
    }

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

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

.hero-logo-wrap {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 11%;
    }

.hero-logo {
      width: 100%;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .4));
      transform: translateY(8px) scale(1.01);
      animation: float 8s ease-in-out infinite;
    }

@keyframes float {

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

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

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

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

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

@keyframes drift {

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

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

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

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

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

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

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

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

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

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

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

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

.stats-section__grid {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: clamp(40px, 8vw, 140px);
      flex-wrap: wrap;
    }

.stats-section__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

.stats-section__label {
      font-size: clamp(.76rem, .86vw, .88rem);
      color: rgba(255, 255, 255, .48);
      letter-spacing: .04em;
      text-transform: uppercase;
    }

.services-white {
      background: #fff;
      color: #111;
      padding: clamp(72px, 9vw, 130px) clamp(24px, 5vw, 80px);
    }

.services-white__head {
      text-align: center;
      margin-bottom: clamp(32px, 4vw, 56px);
    }

.services-white__title {
      margin: 0 0 16px;
      font-size: clamp(2.4rem, 4.2vw, 4.8rem);
      font-weight: 400;
      letter-spacing: -.03em;
      color: #111;
      line-height: 1.08;
    }

.services-white__sub {
      margin: 0;
      font-size: clamp(.95rem, 1.2vw, 1.12rem);
      color: #666;
      line-height: 1.6;
    }

.services-white__pills {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: clamp(40px, 5vw, 72px);
    }

.sw-pill {
      font-size: clamp(.9rem, 1.1vw, 1rem);
      color: #aaa;
      cursor: pointer;
      letter-spacing: .01em;
      transition: color .2s;
      position: relative;
    }

.sw-pill:hover {
      color: #111;
    }

.sw-pill--active {
      color: #111;
      font-weight: 500;
    }

.sw-pill--active::after {
      content: "";
      display: block;
      margin-top: 4px;
      height: 1.5px;
      background: #050505;
      border-radius: 999px;
    }

.sw-carousel {
      position: relative;
      overflow: hidden;
      margin: 0 calc(-1 * clamp(24px, 5vw, 80px));
    }

.sw-carousel__track {
      display: flex;
      gap: 20px;
      /* padding = (100vw - card_width) / 2 pour centrer la carte active */
      padding: 0 calc((100vw - clamp(300px, 60vw, 860px)) / 2);
      transition: transform .7s cubic-bezier(.22, .61, .36, 1);
      will-change: transform;
    }

.sw-card {
      position: relative;
      flex: 0 0 clamp(300px, 60vw, 860px);
      height: clamp(340px, 44vw, 580px);
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
    }

.sw-card:hover .sw-card__img {
      transform: scale(1.04);
    }

.sw-card__img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .6s cubic-bezier(.22, .61, .36, 1);
    }

.sw-card__overlay {
      position: absolute;
      inset: 0;
      padding: clamp(34px, 4.2vw, 58px);
      background: linear-gradient(180deg, rgba(0, 0, 0, .46) 0%, rgba(0, 0, 0, .18) 42%, rgba(0, 0, 0, .82) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      isolation: isolate;
    }

.sw-card__overlay::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(ellipse 58% 48% at 28% 34%, rgba(0, 0, 0, .055) 0%, rgba(0, 0, 0, .022) 40%, transparent 74%),
        radial-gradient(ellipse 46% 26% at 25% 82%, rgba(0, 0, 0, .045) 0%, rgba(0, 0, 0, .018) 44%, transparent 80%);
      opacity: .72;
    }

.sw-card__label {
      display: inline-flex;
      align-items: center;
      width: max-content;
      max-width: 100%;
      min-height: 34px;
      margin: 0 0 clamp(24px, 3vw, 38px);
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .16);
      color: rgba(255, 255, 255, .92);
      font-size: clamp(.68rem, .78vw, .78rem);
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
    }

.sw-card__overlay h3 {
      margin: 0;
      max-width: 14ch;
      font-size: clamp(2.4rem, 4.2vw, 4.8rem);
      font-weight: 300;
      color: #fff;
      letter-spacing: -.03em;
      line-height: 1.08;
      text-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    }

.sw-card__overlay p {
      margin: clamp(18px, 2.2vw, 28px) 0 0;
      max-width: 46ch;
      font-size: clamp(1rem, 1.2vw, 1.14rem);
      color: rgba(255, 255, 255, .80);
      line-height: 1.7;
      letter-spacing: 0;
      text-shadow: 0 10px 28px rgba(0, 0, 0, .20);
    }

.sw-card__details {
      margin-top: auto;
      padding-top: clamp(28px, 4vw, 48px);
      width: min(100%, 620px);
      display: block;
    }

.sw-card__actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

.sw-card__btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 22px;
      border-radius: 999px;
      font-size: clamp(.9rem, 1vw, 1rem);
      font-weight: 700;
      letter-spacing: -.015em;
      transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
      pointer-events: auto;
    }

.sw-card__btn--blue {
      background: #0071e3;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .16);
      box-shadow: 0 18px 38px rgba(0, 113, 227, .30);
    }

.sw-card__btn--blue:hover {
      background: #147ce5;
      transform: translateY(-1px);
      box-shadow: 0 22px 44px rgba(0, 113, 227, .36);
    }

.sw-card__btn--ghost {
      background: rgba(255, 255, 255, .10);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .24);
      backdrop-filter: blur(10px);
    }

.sw-card__btn--ghost:hover {
      background: rgba(255, 255, 255, .16);
      transform: translateY(-1px);
    }

.sw-card__arrow {
      position: absolute;
      bottom: clamp(16px, 2vw, 28px);
      right: clamp(16px, 2vw, 28px);
      color: #fff;
      font-size: 1.4rem;
      transition: transform .2s;
    }

.sw-card:hover .sw-card__arrow {
      transform: translateX(4px);
    }

.sw-carousel__footer {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 8px clamp(24px, 5vw, 80px);
      margin-top: 8px;
    }

.sw-play {
      position: absolute;
      right: clamp(24px, 5vw, 80px);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid #ddd;
      background: transparent;
      color: #111;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, border-color .2s;
    }

.sw-play:hover {
      background: #111;
      color: #fff;
      border-color: #111;
    }

.sw-play svg {
      display: block;
      width: 11px;
      height: 11px;
    }

.sw-carousel__dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 28px;
    }

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

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

.forfaits-section__head {
      text-align: center;
      margin: 0 auto clamp(42px, 5vw, 72px);
      padding: 0 clamp(24px, 5vw, 80px);
      max-width: 980px;
    }

.forfaits-carousel {
      position: relative;
      overflow: hidden;
      width: 100%;
    }

.forfait-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 40px 80px rgba(0, 0, 0, .28);
    }

.forfait-card__img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .7s cubic-bezier(.22, .61, .36, 1), filter .4s;
      filter: brightness(.88);
    }

.forfait-card:hover .forfait-card__img {
      transform: scale(1.045);
      filter: brightness(.96);
    }

.forfait-card__price span {
      font-size: inherit;
      font-weight: inherit;
      opacity: 1;
      letter-spacing: inherit;
    }

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

.forfait-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(0, 0, 0, .22);
      cursor: pointer;
      transition: background .3s, width .3s;
    }

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

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

.forfait-nav {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, .16);
      background: rgba(255, 255, 255, .72);
      font-size: 1.1rem;
      color: #111;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, border-color .2s, color .2s;
    }

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

.faq-section {
      background: #050505;
    }

.faq-toggle:hover {
      background: rgba(255, 255, 255, .03);
    }

.faq-toggle__icon {
      font-size: clamp(2rem, 3.5vw, 4rem);
      font-weight: 100;
      color: rgba(255, 255, 255, .6);
      transition: transform .4s cubic-bezier(.22, .61, .36, 1);
      line-height: 1;
    }

.faq-section.is-open .faq-toggle__icon {
      transform: rotate(45deg);
    }

.faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .6s cubic-bezier(.22, .61, .36, 1);
    }

.faq-section.is-open .faq-body {
      max-height: 2000px;
    }

@media (max-width: 768px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }

.faq-col {
      display: flex;
      flex-direction: column;
    }

.faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

.faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 0;
      background: none;
      border: none;
      color: rgba(255, 255, 255, .82);
      font-size: clamp(1rem, 1.3vw, 1.2rem);
      font-weight: 400;
      text-align: left;
      cursor: pointer;
      transition: color .2s;
    }

.faq-q:hover {
      color: #fff;
    }

.faq-icon {
      font-size: 1.2rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .4);
      flex-shrink: 0;
      transition: transform .35s cubic-bezier(.22, .61, .36, 1);
      line-height: 1;
    }

.faq-item.is-open .faq-icon {
      transform: rotate(45deg);
      color: #fff;
    }

.faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s cubic-bezier(.22, .61, .36, 1);
    }

.faq-item.is-open .faq-a {
      max-height: 200px;
    }

.faq-a p {
      margin: 0;
      padding: 0 0 22px;
      font-size: clamp(.82rem, .95vw, .92rem);
      color: rgba(255, 255, 255, .45);
      line-height: 1.75;
    }

.contact-section__inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: clamp(40px, 6vw, 100px);
      align-items: stretch;
    }

.contact-bottom-row {
      display: flex;
      align-items: center;
      margin-top: clamp(40px, 6vw, 82px);
    }

.contact-section__left {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100%;
    }

.contact-section__top {
      display: flex;
      flex-direction: column;
    }

.contact-section__sub {
      margin: 0 0 40px;
      font-size: clamp(.9rem, 1.1vw, 1rem);
      color: rgba(255, 255, 255, .45);
      line-height: 1.7;
    }

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

.contact-info__item {
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: clamp(.85rem, .95vw, .95rem);
      color: rgba(255, 255, 255, .7);
    }

.contact-info__label {
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: rgba(255, 255, 255, .3);
    }

.contact-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

.contact-form__row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

@media (max-width: 600px) {
      .contact-form__row {
        grid-template-columns: 1fr;
      }
    }

.contact-form__field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

.contact-form__field label {
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: rgba(255, 255, 255, .4);
    }

.contact-form__field input,
    .contact-form__field select,
    .contact-form__field textarea {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .10);
      border-radius: 10px;
      padding: 14px 16px;
      color: #fff;
      font-size: clamp(.88rem, 1vw, .95rem);
      font-family: inherit;
      outline: none;
      transition: border-color .25s, background .25s;
      resize: none;
    }

.contact-form__field input::placeholder,
    .contact-form__field textarea::placeholder {
      color: rgba(255, 255, 255, .2);
    }

.contact-form__field select {
      appearance: none;
      -webkit-appearance: none;
      min-height: 49px;
      line-height: 1.3;
      padding-right: 46px;
      cursor: pointer;
      background-color: rgba(255, 255, 255, .05);
      background-image:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .55) 50%),
        linear-gradient(135deg, rgba(255, 255, 255, .55) 50%, transparent 50%);
      background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%;
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
      background-attachment: scroll;
    }

.contact-form__field select:invalid {
      color: rgba(255, 255, 255, .32);
    }

.contact-form__field select option,
    .contact-form__field select optgroup {
      color: #111;
      background: #fff;
    }

.contact-form__field select:hover {
      background-color: rgba(255, 255, 255, .07);
    }

.contact-form__field input:focus,
    .contact-form__field select:focus,
    .contact-form__field textarea:focus {
      border-color: rgba(255, 255, 255, .35);
      background-color: rgba(255, 255, 255, .08);
    }

.contact-form__btn {
      align-self: flex-start;
      background: none;
      border: none;
      color: #fff;
      font-size: clamp(.95rem, 1.1vw, 1.05rem);
      font-weight: 500;
      font-family: inherit;
      line-height: 1.25;
      cursor: pointer;
      transition: opacity .25s, transform .25s;
      margin-top: 4px;
      padding: 0;
    }

.contact-form__btn:hover {
      opacity: .6;
      transform: translateX(4px);
    }

.contact-recall {
      display: inline-block;
      margin-top: 0;
      padding: 0;
      font-size: clamp(.95rem, 1.1vw, 1.05rem);
      font-weight: 500;
      line-height: 1.25;
      color: #fff;
      transition: opacity .25s, transform .25s;
    }

.contact-recall:hover {
      opacity: .6;
      transform: translateX(4px);
    }

.site-footer__col a {
      font-size: clamp(.82rem, .9vw, .9rem);
      color: rgba(255, 255, 255, .55);
      transition: color .2s;
    }

.site-footer__col a:hover {
      color: #fff;
    }

.features-section__title {
      margin: 0;
      font-size: clamp(2.4rem, 4.2vw, 4.8rem);
      font-weight: 400;
      letter-spacing: -.03em;
      color: #111;
      line-height: 1.08;
    }

.features-section__track-wrap {
      overflow: hidden;
      width: 100%;
    }

.features-section__track {
      display: flex;
      gap: var(--fg);
      transition: transform .7s cubic-bezier(.22, .61, .36, 1);
      will-change: transform;
    }

.feat-card {
      flex: 0 0 calc((100% - 3 * var(--fg)) / 4);
      min-height: clamp(340px, 36vw, 480px);
      background: #050505;
      border-radius: 14px;
      padding: clamp(20px, 2.2vw, 28px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      opacity: 0;
      transform: translateY(48px) scale(.97);
      transition: opacity .55s cubic-bezier(.22, .61, .36, 1), transform .55s cubic-bezier(.22, .61, .36, 1);
    }

.feat-card.is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

.feat-card__top h3 {
      margin: 0 0 10px;
      font-size: clamp(.95rem, 1.3vw, 1.18rem);
      font-weight: 500;
      color: #fff;
      letter-spacing: -.01em;
      line-height: 1.25;
    }

.feat-card__top p {
      margin: 0;
      font-size: clamp(.78rem, .9vw, .88rem);
      color: rgba(255, 255, 255, .55);
      line-height: 1.6;
    }

.feat-card__visual {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      padding: 12px 0 8px;
    }

.feat-card__img {
      width: 100%;
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      min-height: 120px;
    }

.feat-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      filter: brightness(.88);
      transition: transform .5s cubic-bezier(.22, .61, .36, 1), filter .3s;
    }

.feat-card:hover .feat-card__img img {
      transform: scale(1.04);
      filter: brightness(.96);
    }

.feat-card__arrow {
      color: rgba(255, 255, 255, .7);
      font-size: 1.2rem;
      align-self: flex-end;
      transition: transform .2s, color .2s;
    }

.feat-card:hover .feat-card__arrow {
      transform: translateX(4px);
      color: #fff;
    }

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

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

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

.fcv-browser__body {
      padding: 10px;
    }

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

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

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

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

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

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

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

.fcv-typo__sub {
      font-size: .75rem;
      color: rgba(255, 255, 255, .4);
      text-transform: uppercase;
      letter-spacing: .1em;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.forfait-card__badge {
      color: #111111;
    }

@media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
      }
    }

.forfaits-section .forfaits-track {
      align-items: stretch;
    }

.forfaits-section .forfait-card {
      flex-basis: clamp(340px, 32vw, 460px);
      min-height: clamp(500px, 39vw, 590px);
      border-radius: 24px;
      box-shadow:
        0 32px 80px rgba(0, 0, 0, .20),
        inset 0 1px 0 rgba(255, 255, 255, .10);
    }

.forfaits-section .forfait-card:hover {
      transform: translateY(-7px);
      box-shadow:
        0 42px 100px rgba(0, 0, 0, .30),
        inset 0 1px 0 rgba(255, 255, 255, .12);
    }

.forfaits-section .forfait-card__img {
      filter: saturate(.94) brightness(.84) contrast(1.04);
      background-position: center center;
    }

.forfaits-section #forfait-web .forfait-card__img {
      background-position: center 48%;
    }

.forfaits-section #reprise-site .forfait-card__img {
      background-position: center 52%;
    }

.forfaits-section #services-plus .forfait-card__img {
      background-position: center 44%;
    }

.forfaits-section #site-immersif .forfait-card__img {
      background-position: center 45%;
    }

.forfaits-section .forfait-card:hover .forfait-card__img {
      filter: saturate(.98) brightness(.90) contrast(1.06);
    }

.forfaits-section .forfait-card__overlay {
      background:
        radial-gradient(ellipse 62% 46% at 32% 44%, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .06) 48%, transparent 78%),
        linear-gradient(90deg, rgba(0, 0, 0, .64) 0%, rgba(0, 0, 0, .30) 52%, rgba(0, 0, 0, .54) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .24) 0%, rgba(0, 0, 0, .06) 45%, rgba(0, 0, 0, .82) 100%);
    }

.forfaits-section .forfait-card__main {
      position: relative;
      align-self: center;
      margin: 0;
      max-width: 43ch;
      transform: translateY(clamp(-10px, -1vw, -4px));
    }

.forfaits-section .forfait-card__main::before {
      content: "";
      position: absolute;
      inset: -18px -20px -20px;
      z-index: -1;
      border-radius: 30px;
      background: radial-gradient(ellipse at 35% 48%, rgba(0, 0, 0, .20), rgba(0, 0, 0, .08) 46%, transparent 76%);
      filter: blur(14px);
      opacity: .58;
      pointer-events: none;
    }

.forfaits-section .forfait-card__name {
      max-width: 11.5ch;
      font-size: clamp(2.45rem, 3.65vw, 4.35rem);
      font-weight: 300;
      letter-spacing: -.06em;
      line-height: .98;
      text-shadow: 0 14px 34px rgba(0, 0, 0, .34);
    }

.forfaits-section #reprise-site .forfait-card__name,
    .forfaits-section #accompagnement-complet .forfait-card__name {
      max-width: 12.5ch;
    }

.forfaits-section .forfait-card__desc {
      margin-top: clamp(22px, 2.2vw, 32px);
      max-width: 40ch;
      font-size: clamp(.94rem, 1.02vw, 1.08rem);
      line-height: 1.58;
      color: rgba(255, 255, 255, .80);
      text-shadow: 0 12px 28px rgba(0, 0, 0, .28);
    }

.forfaits-section .forfait-card__details {
      align-self: end;
      margin: 0 !important;
      transform: none !important;
      padding-top: 0;
    }

.forfaits-section .forfait-card__price {
      margin: 0 0 clamp(18px, 1.7vw, 24px);
      font-size: clamp(.78rem, .86vw, .9rem);
      letter-spacing: .18em;
      color: rgba(255, 255, 255, .62);
    }

.forfaits-section .forfait-card__actions {
      gap: clamp(12px, 1.2vw, 18px);
      flex-wrap: nowrap;
    }

.forfait-card__actions {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 14px;
    }

.forfait-card__actions .sw-card__btn {
      min-height: 56px;
      padding: 0 26px;
      font-size: clamp(.94rem, 1vw, 1rem);
      white-space: nowrap;
    }

.forfaits-section .forfaits-carousel {
      max-width: 1320px;
      margin: 0 auto;
      overflow: visible;
    }

.forfaits-track--static {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(18px, 2vw, 26px);
      padding: 0;
      transform: none !important;
      transition: none;
      will-change: auto;
    }

.forfaits-track--static .forfait-card {
      flex: none;
      width: 100%;
      min-height: clamp(430px, 34vw, 520px);
      border-radius: 20px;
    }

.forfaits-track--static .forfait-card__body {
      display: grid;
      grid-template-rows: auto 1fr auto;
      min-height: 100%;
      padding: clamp(30px, 3.4vw, 44px);
    }

.forfaits-track--static .forfait-card__badge {
      align-self: start;
      margin: 0;
    }

.forfaits-track--static .forfait-card__main {
      align-self: center;
      margin: 0;
      transform: none;
    }

.forfaits-track--static .forfait-card__name {
      max-width: 11ch;
      min-height: calc(1.06em * 2);
      display: flex;
      align-items: flex-end;
      font-size: clamp(2rem, 2.85vw, 3.25rem);
    }

.forfaits-track--static .forfait-card__desc {
      max-width: 38ch;
      min-height: calc(1.68em * 4);
    }

.forfaits-track--static .forfait-card__details {
      align-self: end;
      margin: 0;
      transform: none;
    }

.forfaits-track--static .forfait-card__actions .sw-card__btn {
      min-height: 46px;
      padding: 0 22px;
      font-size: clamp(.9rem, .96vw, .98rem);
    }

.forfaits-section--services .forfait-card__desc {
      min-height: calc(1.68em * 4);
    }

.forfaits-section--services .forfait-card__actions .sw-card__btn {
      min-height: 46px;
      padding: 0 22px;
      font-size: clamp(.9rem, .96vw, .98rem);
    }

.forfaits-section--services .forfait-dots {
      grid-column: 2;
      justify-content: center;
    }

.forfaits-section--services .forfait-navs {
      grid-column: 3;
      justify-content: flex-end;
    }

.services-white--offers .services-white__title {
      margin: 0 0 16px;
      font-size: clamp(2.4rem, 4.2vw, 4.8rem);
      font-weight: 400;
      letter-spacing: -.03em;
      color: #111;
      line-height: 1.08;
    }

.services-white--offers .services-white__sub {
      margin: 0 auto;
      max-width: 980px;
      font-size: clamp(.95rem, 1.2vw, 1.12rem);
      color: #666;
      line-height: 1.6;
      font-weight: 400;
    }

.forfaits-section--services .forfaits-section__title {
      margin: 0 0 16px;
      font-size: clamp(2.4rem, 4.2vw, 4.8rem);
      font-weight: 400;
      letter-spacing: -.03em;
      color: #111;
      line-height: 1.08;
    }

.forfaits-section--services .forfaits-section__sub {
      margin: 0 auto;
      font-size: clamp(.95rem, 1.2vw, 1.12rem);
      color: #666;
      line-height: 1.6;
      font-weight: 400;
    }

.forfaits-section--services .sw-pill {
      font-size: clamp(.9rem, 1.1vw, 1rem);
      color: #aaa;
      cursor: pointer;
      letter-spacing: .01em;
      transition: color .2s;
      position: relative;
      font-weight: 400;
    }

.forfaits-section--services .sw-pill:hover {
      color: #111;
    }

.forfaits-section--services .sw-pill--active {
      color: #111;
      font-weight: 500;
    }

.forfaits-section--services .sw-pill--active::after {
      content: "";
      display: block;
      margin-top: 4px;
      height: 1.5px;
      background: #050505;
      border-radius: 999px;
    }

.services-white__title,
    .forfaits-section__title,
    .contact-section__title,
    .features-section__title,
    .services-white--offers .services-white__title,
    .forfaits-section--services .forfaits-section__title,
    .faq-toggle {
      font-size: clamp(2.1rem, 3.5vw, 4rem);
      line-height: 1.08;
    }

.services-white--offers .sw-carousel {
      margin: 0 calc(-1 * clamp(24px, 5vw, 80px));
      overflow: hidden;
    }

.services-white--offers .sw-carousel__track {
      gap: 20px;
      padding: 0 calc((100vw - clamp(300px, 60vw, 860px)) / 2);
    }

.services-white--offers .sw-card {
      flex: 0 0 clamp(300px, 60vw, 860px);
      height: clamp(340px, 44vw, 580px);
      border-radius: 12px;
    }

.forfaits-section--services,
    .forfaits-section--services .forfaits-carousel,
    .forfaits-section--services .forfaits-track {
      background: #ffffff !important;
    }

.forfaits-section--services .forfait-card:hover {
      transform: translateZ(0) !important;
      box-shadow: none !important;
    }

.services-white--offers .sw-card__overlay h3,
    .services-white--offers .sw-card__overlay p {
      text-shadow:
        0 14px 32px rgba(0, 0, 0, .42),
        0 1px 2px rgba(0, 0, 0, .32) !important;
    }

.forfaits-section--services .forfait-card__img {
      filter: saturate(.98) brightness(.96) contrast(1.02) !important;
    }

.forfaits-section--services .forfait-card:hover .forfait-card__img {
      filter: saturate(1) brightness(.99) contrast(1.03) !important;
    }

.forfaits-section--services .forfait-card__name,
    .forfaits-section--services .forfait-card__desc,
    .forfaits-section--services .forfait-card__price {
      text-shadow:
        0 14px 32px rgba(0, 0, 0, .42),
        0 1px 2px rgba(0, 0, 0, .32) !important;
    }

.services-white--offers .sw-card__overlay {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, .40) 0%, rgba(0, 0, 0, .23) 42%, rgba(0, 0, 0, .72) 100%),
        radial-gradient(ellipse 66% 52% at 28% 34%, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .09) 48%, transparent 80%) !important;
    }

.services-white--offers .sw-card__label {
      background: rgba(255, 255, 255, .14) !important;
      border-color: rgba(255, 255, 255, .18) !important;
      color: rgba(255, 255, 255, .96) !important;
      text-shadow: 0 2px 10px rgba(0, 0, 0, .34) !important;
    }

.services-white--offers .sw-card__overlay p {
      color: rgba(255, 255, 255, .92) !important;
      text-shadow:
        0 14px 30px rgba(0, 0, 0, .48),
        0 2px 8px rgba(0, 0, 0, .34) !important;
    }

.forfaits-section--services .forfait-card__overlay {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, .40) 0%, rgba(0, 0, 0, .23) 42%, rgba(0, 0, 0, .72) 100%),
        radial-gradient(ellipse 66% 50% at 30% 36%, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .09) 48%, transparent 80%) !important;
    }

.forfaits-section--services .forfait-card__desc,
    .forfaits-section--services .forfait-card__price {
      color: rgba(255, 255, 255, .90) !important;
      text-shadow:
        0 14px 30px rgba(0, 0, 0, .48),
        0 2px 8px rgba(0, 0, 0, .34) !important;
    }

.forfaits-section--services #fiche-google-business-plus .forfait-card__name {
      max-width: none !important;
      width: 100% !important;
      min-height: calc(1.06em * 2) !important;
      display: flex !important;
      align-items: flex-end !important;
      white-space: nowrap !important;
      font-size: clamp(1.25rem, 1.85vw, 2.05rem) !important;
      letter-spacing: -.04em !important;
    }

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

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

@media (max-width: 1180px) {
      .site-footer__inner {
        width: min(960px, calc(100vw - 64px)) !important;
      }

      .site-footer__top {
        grid-template-columns: 1.1fr 1fr 1fr !important;
        column-gap: clamp(42px, 6vw, 74px) !important;
        row-gap: 44px !important;
      }
    }

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

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

.services-white--offers {
      padding-top: clamp(76px, 7.8vw, 112px) !important;
      padding-bottom: clamp(58px, 5.8vw, 84px) !important;
    }

/* ===== FIX GLOBAL FOOTER PIX|WEB — footer centralisé stable ===== */
.site-footer {
  width: 100% !important;
  overflow: hidden !important;
  padding: clamp(64px, 6vw, 92px) 0 clamp(28px, 3vw, 44px) !important;
  background:
    radial-gradient(circle at 9% 28%, rgba(255,255,255,.035), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(255,255,255,.025), transparent 24%),
    #050505 !important;
  border-top: 1px solid rgba(255,255,255,.07) !important;
  color: #fff !important;
}

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

.site-footer__top {
  display: grid !important;
  grid-template-columns: minmax(220px, 1.18fr) minmax(150px, .82fr) minmax(190px, .98fr) minmax(210px, 1.08fr) minmax(155px, .78fr) !important;
  column-gap: clamp(34px, 4.2vw, 72px) !important;
  row-gap: 42px !important;
  align-items: start !important;
  justify-content: center !important;
  margin-bottom: clamp(46px, 4.4vw, 64px) !important;
}

.site-footer__brand {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  margin-top: -22px !important;
  min-width: 0 !important;
}

.site-footer__logo {
  display: block !important;
  width: clamp(188px, 12vw, 232px) !important;
  max-width: 100% !important;
  overflow: visible !important;
}

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

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

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

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

.site-footer__col a,
.site-footer__cookie {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.72) !important;
  font-size: clamp(.98rem, .96vw, 1.04rem) !important;
  font-weight: 500 !important;
  line-height: 1.28 !important;
  letter-spacing: -.015em !important;
  text-align: left !important;
  box-shadow: none !important;
}

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

.site-footer__cookie {
  margin-top: 10px !important;
  padding-bottom: 3px !important;
  border-bottom: 1px solid rgba(255,255,255,.42) !important;
  cursor: pointer !important;
}

.site-footer__bottom {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  padding-top: clamp(24px, 2.4vw, 32px) !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.30) !important;
  font-size: .82rem !important;
}

.site-footer__legal { display: none !important; }

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

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

@media (max-width: 1180px) {
  .site-footer__inner { width: min(960px, calc(100vw - 64px)) !important; }
  .site-footer__top {
    grid-template-columns: 1.1fr 1fr 1fr !important;
    column-gap: clamp(42px, 6vw, 74px) !important;
    row-gap: 44px !important;
  }
}

@media (max-width: 760px) {
  .site-footer { padding: 52px 0 34px !important; }
  .site-footer__inner { width: calc(100vw - 42px) !important; }
  .site-footer__top {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-bottom: 36px !important;
  }
  .site-footer__logo { width: 210px !important; }
  .site-footer__brand { margin-top: 0 !important; gap: 18px !important; }
  .site-footer__heading { margin-bottom: 8px !important; }
  .site-footer__top > .site-footer__col:nth-child(4) {
    justify-self: stretch !important;
    width: auto !important;
  }
  .site-footer__top > .site-footer__col:nth-child(4) .site-footer__heading {
    text-align: left !important;
  }
}

/* === PIXWEB TYPOGRAPHY GLOBAL LOCK START === */
/* Verrou commun : toutes les pages PIX|WEB partent de la même police. */
html,
body,
button,
input,
textarea,
select {
  font-family: var(--pix-font-main) !important;
}

/* Classes utilitaires pour les nouvelles pages. */
.pix-type-hero {
  font-size: var(--pix-type-hero-size);
  line-height: var(--pix-type-hero-line);
  letter-spacing: var(--pix-type-hero-tracking);
  font-weight: var(--pix-type-hero-weight);
}

.pix-type-section {
  font-size: var(--pix-type-section-size);
  line-height: var(--pix-type-section-line);
  letter-spacing: var(--pix-type-section-tracking);
  font-weight: var(--pix-type-section-weight);
}

.pix-type-card-title {
  font-size: var(--pix-type-card-title-size);
  line-height: var(--pix-type-card-title-line);
  letter-spacing: var(--pix-type-card-title-tracking);
  font-weight: var(--pix-type-card-title-weight);
}

.pix-type-faq-title {
  font-size: var(--pix-type-faq-title-size);
  line-height: var(--pix-type-faq-title-line);
  letter-spacing: var(--pix-type-faq-title-tracking);
  font-weight: var(--pix-type-faq-title-weight);
}
/* === PIXWEB TYPOGRAPHY GLOBAL LOCK END === */
