/* PIX|WEB — Styles spécifiques tarifs.html. */

:root {
      --bg: #ffffff;
      --bg-soft: rgba(0, 0, 0, 0.04);
      --bg-solid: #050505;
      --text: #0d0d0d;
      --muted: #4a4a4a;
      --line: rgba(0, 0, 0, .12);
      --blue: #0d0d0d;
      --blue-soft: rgba(0, 0, 0, 0.06);
      --container: 100%;
      --header-h: 78px;
      --header-h-scrolled: 78px;
      --ease: cubic-bezier(.22, .61, .36, 1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #ffffff;
      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: #ffffff;
    }

    .page-shell::before {
      content: none;
    }

    .page-shell::after {
      content: none;
    }

    .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;
    }

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

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

    /* ── Nav classique desktop ── */
    .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 menu ── */

    /* Le wrap est fixed sur toute la largeur, mais sert juste d'ancre */
    .mega-wrap {
      position: fixed;
      top: var(--header-h);
      left: 0;
      right: 0;
      z-index: 199;
      pointer-events: none;
    }

    /* Pont invisible de 12px qui comble le gap entre header et panel */
    /* => empêche le mouseleave de se déclencher pendant le déplacement */
    .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;
    }

    /* Animation portée sur le panel (pas le wrapper) */
    .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);
      }
    }

    /* Flèche triangulaire noire pointant vers le trigger */
    .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;
    }

    /* Largeurs des panels */
    .mega--forfaits {
      --mega-w: 980px;
    }

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

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

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

    .mega__col {}

    .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;
    }

    /* Image principale */
    .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);
    }

    /* Carousel d'images */
    .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 (mobile uniquement) ── */
    .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);
    }

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

    @media (max-width: 860px) {
      .site-nav {
        display: none;
      }

      .mega-wrap {
        display: none;
      }

      .burger {
        display: inline-flex;
      }
    }

    .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: #d8d8d8;
    }

    .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);
    }

    @media (max-width: 1080px) {
      .hero__cards {
        position: relative;
        left: auto;
        bottom: auto;
        width: min(100%, 760px);
        height: 380px;
        transform: none;
        margin: 48px auto 0;
        overflow: hidden;
      }

      .hero-card {
        width: 100% !important;
        height: 380px !important;
        left: 0;
      }

      .hero-card[data-state="center"] {
        transform: none !important;
      }

      .hero-card[data-state="left"],
      .hero-card[data-state="right"],
      .hero-card[data-state="far-left"],
      .hero-card[data-state="far-right"] {
        display: none !important;
      }
    }


    .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--center .hero-card__body {}

    .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::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .04)),
        url('../../images/pixweb-pages-locales-plus.webp') center/cover no-repeat;
      filter: grayscale(.2);
    }

    .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 #ececec;
      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;
    }

    @media (max-width: 1080px) {
      .hero {
        padding-bottom: 140px;
      }

      .hero__cards {
        position: relative;
        left: auto;
        bottom: auto;
        width: min(100%, 740px);
        height: auto;
        transform: none;
        margin: 48px auto 0;
        display: grid;
        gap: 18px;
      }

      .hero-card,
      .hero-card--left,
      .hero-card--center,
      .hero-card--right {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        transform: none;
      }

      .hero-card--left,
      .hero-card--right {
        height: 280px;
      }

      .hero-card--center {
        height: 360px;
      }

      .hero-card__center-title {
        width: 68%;
        font-size: clamp(2.6rem, 8vw, 4.6rem);
      }

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

    @media (max-width: 760px) {
      .hero__cards {
        width: 100%;
      }

      .hero-card__frame {
        padding: 14px;
      }

      .hero-card__center-grid {
        padding: 24px;
      }

      .hero-card__center-media--left,
      .hero-card__center-media--right {
        width: 30%;
      }

      .hero-card__center-title {
        width: 74%;
      }
    }


    /* ── Carousel cinématique hero ── */
    .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;
    }

    /* Fondu bas vers la section suivante */
    .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: 34px;
      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 {
      background: #050505;
      padding: clamp(60px, 8vw, 120px) 28px clamp(80px, 10vw, 140px);
      text-align: center;
    }

    .stats-section__tagline {
      margin: 0 0 clamp(48px, 6vw, 80px);
      font-size: clamp(.9rem, 1.1vw, 1.05rem);
      color: rgba(255, 255, 255, .52);
      letter-spacing: .01em;
      line-height: 1.6;
    }

    .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__number {
      font-size: clamp(2.4rem, 4.2vw, 4.8rem);
      font-weight: 300;
      letter-spacing: -.03em;
      color: #fff;
      line-height: 1.08;
    }

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

    /* ── Section blanche services ── */
    .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);
    }

    @media (max-width: 760px) {
      .sw-card__overlay {
        padding: 26px;
      }

      .sw-card__label {
        min-height: 30px;
        margin-bottom: 18px;
        padding: 7px 12px;
        font-size: .62rem;
        letter-spacing: .18em;
      }

      .sw-card__overlay h3 {
        max-width: 13ch;
        font-size: clamp(2.1rem, 10vw, 3.2rem);
        line-height: 1.08;
      }

      .sw-card__overlay p {
        margin-top: 16px;
        max-width: 34ch;
        font-size: .92rem;
        line-height: 1.6;
      }

      .sw-card__details {
        padding-top: 24px;
      }

      .sw-card__btn {
        min-height: 40px;
        padding: 0 16px;
        font-size: .88rem;
      }
    }

    .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 ── */
    .forfaits-section {
      background: linear-gradient(to bottom, #ffffff 0%, #ffffff 38%, #050505 100%);
      padding: clamp(80px, 10vw, 140px) 0;
      overflow: hidden;
    }

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

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

    .forfaits-section__sub {
      font-size: clamp(.98rem, 1.25vw, 1.14rem);
      color: rgba(0, 0, 0, .58);
      margin: 0 auto;
      max-width: 760px;
      line-height: 1.7;
    }

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

    .forfaits-track {
      --forfait-gap: 22px;
      display: flex;
      gap: var(--forfait-gap);
      padding: 0 clamp(24px, 5vw, 80px);
      transition: transform .75s cubic-bezier(.22, .61, .36, 1);
      will-change: transform;
    }

    .forfait-card {
      position: relative;
      flex: 0 0 clamp(320px, 31vw, 430px);
      min-height: clamp(440px, 36vw, 540px);
      border-radius: 18px;
      overflow: hidden;
      background: #050505;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      cursor: pointer;
      transform: translateZ(0);
      transition: transform .4s cubic-bezier(.22, .61, .36, 1), box-shadow .4s;
    }

    .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__overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 62% 48% at 30% 34%, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .024) 42%, transparent 76%),
        linear-gradient(180deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .22) 42%, rgba(0, 0, 0, .88) 100%);
      pointer-events: none;
    }

    .forfait-card__body {
      position: relative;
      z-index: 2;
      min-height: 100%;
      padding: clamp(34px, 4.2vw, 58px) clamp(26px, 3vw, 40px);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .forfaits-section .forfait-card__badge {
      display: inline-flex;
      align-items: center;
      width: max-content;
      max-width: 100%;
      min-height: 34px;
      margin: 0 0 clamp(18px, 2.4vw, 28px);
      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);
    }

    .forfait-card__name {
      margin: 0;
      max-width: 12ch;
      font-size: clamp(2.15rem, 3.05vw, 3.55rem);
      font-weight: 300;
      letter-spacing: -.04em;
      line-height: 1.06;
      color: #fff;
      text-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    }

    .forfait-card__desc {
      margin: clamp(15px, 1.6vw, 22px) 0 0;
      max-width: 42ch;
      font-size: clamp(.95rem, 1.05vw, 1.06rem);
      color: rgba(255, 255, 255, .80);
      line-height: 1.68;
      text-shadow: 0 10px 28px rgba(0, 0, 0, .20);
    }

    .forfait-card__details {
      margin-top: clamp(46px, 6.2vw, 88px);
      padding-top: 0;
      transform: translateY(clamp(10px, 1.4vw, 20px));
    }

    .forfait-card__price {
      margin: 0 0 18px;
      font-size: clamp(.82rem, .95vw, .92rem);
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .58);
    }

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

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

    .forfait-card__actions .sw-card__btn {
      min-height: 44px;
      padding: 0 20px;
      font-size: clamp(.88rem, .95vw, .96rem);
    }


    /* Équilibrage final des cartes forfaits : badge haut, texte centré, CTA bas aligné */
    .forfaits-section .forfait-card__body {
      min-height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding-top: clamp(34px, 4.2vw, 58px);
      padding-bottom: clamp(34px, 4.2vw, 58px);
    }

    .forfaits-section .forfait-card__badge {
      flex: 0 0 auto;
      margin-bottom: 0;
    }

    .forfait-card__main {
      flex: 0 1 auto;
      margin-top: auto;
      margin-bottom: auto;
      transform: translateY(clamp(10px, 1.2vw, 18px));
    }

    .forfait-card__details {
      flex: 0 0 auto;
      margin-top: 0;
      transform: none;
    }

    .forfait-card__price {
      margin-bottom: 18px;
    }

    .forfaits-section__footer {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 16px;
      margin-top: 18px;
      padding: 0 clamp(24px, 5vw, 80px);
    }

    .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: #ececec;
      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;
    }

    @media (max-width: 760px) {
      .forfaits-track {
        --forfait-gap: 16px;
        padding-inline: 18px;
      }

      .forfait-card {
        flex-basis: min(86vw, 420px);
        min-height: 450px;
      }

      .forfait-card__body {
        padding: 32px 26px;
        justify-content: center;
      }

      .forfaits-section .forfait-card__badge {
        min-height: 30px;
        margin-bottom: 18px;
        padding: 7px 12px;
        font-size: .62rem;
        letter-spacing: .18em;
      }

      .forfait-card__name {
        max-width: 13ch;
        font-size: clamp(2.1rem, 10vw, 3.2rem);
        line-height: 1.08;
      }

      .forfait-card__desc {
        margin-top: 16px;
        max-width: 34ch;
        font-size: .92rem;
        line-height: 1.6;
      }

      .forfait-card__details {
        margin-top: 42px;
        transform: translateY(10px);
      }

      .forfaits-section__footer {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .forfait-dots,
      .forfait-navs {
        grid-column: 1;
        justify-content: center;
      }
    }

    .france-zone {
      background: #ffffff;
      color: #050505;
      padding: clamp(48px, 6vw, 72px) clamp(24px, 5vw, 80px) clamp(36px, 4vw, 56px);
    }

    .france-zone__inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .france-zone__head {
      display: block;
      max-width: 880px;
      margin-bottom: clamp(24px, 3vw, 38px);
    }

    .france-zone__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin: 0 0 18px;
      color: rgba(0, 0, 0, .38);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .france-zone__eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: rgba(0, 0, 0, .16);
      flex: 0 0 34px;
    }

    .france-zone__title {
      margin: 0;
      font-size: clamp(2.1rem, 3.7vw, 4.25rem);
      font-weight: 300;
      letter-spacing: -.04em;
      color: #050505;
      line-height: 1.08;
    }

    .france-zone__intro {
      margin: clamp(18px, 2vw, 26px) 0 0;
      max-width: 820px;
      color: rgba(0, 0, 0, .58);
      font-size: clamp(.98rem, 1.25vw, 1.14rem);
      line-height: 1.7;
      padding-top: 0;
    }

    .france-zone__map-shell {
      position: relative;
      overflow: hidden;
      border-radius: 22px;
      border: 1px solid rgba(0, 0, 0, .14);
      background: #f2f2f2;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .10);
    }

    .france-zone__map {
      display: block;
      width: 100%;
      height: min(19vw, 250px);
      min-height: 160px;
      border: 0;
    }

    .france-zone__map-chip {
      position: absolute;
      left: 20px;
      bottom: 20px;
      display: inline-flex;
      align-items: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      background: rgba(15, 15, 15, .94);
      color: #fff;
      font-size: clamp(.95rem, 1.08vw, 1.08rem);
      font-weight: 600;
      letter-spacing: -.02em;
      box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
      backdrop-filter: blur(10px);
    }

    .france-zone__tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px 16px;
      margin-top: 26px;
    }

    .france-zone__tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 22px;
      border-radius: 999px;
      background: #111111;
      color: #ffffff;
      font-size: clamp(.9rem, 1vw, 1rem);
      font-weight: 600;
      letter-spacing: -.02em;
      line-height: 1.2;
      text-align: center;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
    }

    @media (max-width: 980px) {
      .france-zone__intro {
        max-width: 100%;
      }

      .france-zone__map {
        height: 27vw;
        min-height: 150px;
      }

      .france-zone__tags {
        justify-content: flex-start;
      }
    }

    @media (max-width: 640px) {
      .france-zone {
        padding: 42px 18px 36px;
      }

      .france-zone__eyebrow {
        font-size: .72rem;
        letter-spacing: .16em;
      }

      .france-zone__title {
        font-size: clamp(2rem, 9.5vw, 2.9rem);
      }

      .france-zone__intro {
        font-size: .95rem;
      }

      .france-zone__map-shell {
        border-radius: 18px;
      }

      .france-zone__map {
        height: 34vw;
        min-height: 140px;
      }

      .france-zone__map-chip {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: center;
        min-height: 46px;
        padding: 0 18px;
        font-size: .92rem;
      }

      .france-zone__tags {
        gap: 10px;
      }

      .france-zone__tag {
        min-height: 44px;
        padding: 0 16px;
        font-size: .88rem;
      }
    }

    .reviews-section {
      background: #050505;
      color: #ffffff;
      padding: clamp(56px, 7vw, 92px) clamp(24px, 5vw, 80px) clamp(44px, 5vw, 64px);
      overflow: hidden;
    }

    .reviews-section__inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .reviews-section__head {
      display: grid;
      grid-template-columns: minmax(320px, 760px) 188px;
      gap: clamp(26px, 4vw, 48px);
      align-items: end;
      justify-content: space-between;
      margin-bottom: clamp(34px, 4vw, 44px);
    }

    .reviews-section__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin: 0 0 18px;
      color: rgba(255, 255, 255, .52);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .reviews-section__eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: rgba(255, 255, 255, .18);
      flex: 0 0 34px;
    }

    .reviews-section__title {
      margin: 0;
      font-size: clamp(1.9rem, 3.15vw, 3.55rem);
      line-height: 1.06;
      letter-spacing: -.04em;
      font-weight: 300;
      text-transform: uppercase;
    }

    .reviews-section__summary {
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      padding-top: clamp(28px, 2.4vw, 42px);
    }

    .reviews-rating {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: min(100%, 188px);
      min-height: 164px;
      padding: 18px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, .10);
      background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
      text-align: center;
    }

    .reviews-rating__score {
      font-size: clamp(2.35rem, 3.15vw, 3.55rem);
      line-height: 1;
      letter-spacing: -.06em;
      font-weight: 300;
    }

    .reviews-rating__stars {
      font-size: 1.22rem;
      letter-spacing: .08em;
      line-height: 1;
      color: #fbbc04;
    }

    .reviews-rating__count {
      color: #ececec;
      font-size: .92rem;
      line-height: 1.35;
    }

    .reviews-section__desc {
      max-width: 760px;
      margin: clamp(18px, 2vw, 26px) 0 0;
      color: rgba(255, 255, 255, .56);
      font-size: clamp(.98rem, 1.25vw, 1.14rem);
      line-height: 1.7;
    }

    .reviews-carousel {
      overflow: hidden;
    }

    .reviews-track {
      --reviews-gap: 28px;
      display: flex;
      gap: var(--reviews-gap);
      width: 100%;
      transition: transform .78s cubic-bezier(.22, .61, .36, 1);
      will-change: transform;
    }

    .review-card {
      flex: 0 0 calc((100% - (2 * var(--reviews-gap))) / 3);
      min-width: 0;
      height: 332px;
      min-height: 332px;
      padding: 30px 30px 24px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, .12);
      background:
        radial-gradient(circle at top left, rgba(255, 255, 255, .10), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(145, 145, 145, .04));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
      display: flex;
      flex-direction: column;
      backdrop-filter: blur(12px);
    }

    .review-card__top {
      display: block;
      margin-bottom: 14px;
    }

    .review-card__identity {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      min-width: 0;
    }

    .review-card__avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .14);
      background: linear-gradient(180deg, rgba(190, 190, 190, .18), rgba(95, 95, 95, .10));
      color: #ffffff;
      font-size: 1.7rem;
      font-weight: 300;
      letter-spacing: -.04em;
      flex: 0 0 auto;
    }

    .review-card__meta {
      min-width: 0;
    }

    .review-card__name {
      display: block;
      margin-bottom: 4px;
      font-size: 1.12rem;
      font-weight: 700;
      letter-spacing: -.02em;
      color: #ffffff;
    }

    .review-card__tags {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, .62);
      font-size: 1rem;
      line-height: 1.3;
    }

    .review-card__pill {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(210, 210, 210, .18);
      background: rgba(160, 160, 160, .10);
      color: rgba(255, 255, 255, .88);
      font-size: .88rem;
      font-weight: 600;
      letter-spacing: -.01em;
      white-space: nowrap;
    }

    .review-card__ratingline {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
      color: rgba(255, 255, 255, .68);
      flex: 0 0 auto;
    }

    .review-card__stars {
      white-space: nowrap;
      color: #fbbc04;
      font-size: 1.18rem;
      letter-spacing: .05em;
      line-height: 1;
      flex: 0 0 auto;
    }

    .review-card__time {
      color: rgba(255, 255, 255, .62);
      font-size: .98rem;
      line-height: 1.2;
    }

    .review-card__text {
      margin: 0;
      color: rgba(255, 255, 255, .86);
      font-size: 1rem;
      line-height: 1.6;
      flex: 1 1 auto;
      min-height: 0;
      overflow-y: auto;
      padding-right: 6px;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, .22) transparent;
    }

    .review-card__text::-webkit-scrollbar {
      width: 5px;
    }

    .review-card__text::-webkit-scrollbar-track {
      background: transparent;
    }

    .review-card__text::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, .22);
      border-radius: 999px;
    }

    .review-card__footer {
      margin-top: 16px;
      padding-top: 0;
      border-top: 0;
      color: rgba(255, 255, 255, .62);
      font-size: .98rem;
      line-height: 1.45;
      flex: 0 0 auto;
    }

    .reviews-section__footer {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 18px;
      margin-top: 30px;
    }

    .reviews-dots {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      justify-self: center;
    }

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

    .reviews-dot--active {
      background: #ffffff;
      width: 24px;
    }

    .reviews-navs {
      justify-self: end;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .reviews-nav {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .14);
      background: rgba(255, 255, 255, .03);
      color: #ffffff;
      font-size: 1.1rem;
      line-height: 1;
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
    }

    .reviews-nav:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, .07);
      border-color: rgba(255, 255, 255, .24);
    }

    @media (max-width: 1180px) {
      .reviews-section__head {
        grid-template-columns: 1fr;
      }

      .reviews-section__summary {
        justify-content: flex-start;
        padding-top: 0;
      }

      .review-card {
        flex-basis: calc((100% - var(--reviews-gap)) / 2);
      }
    }

    @media (max-width: 820px) {
      .reviews-section {
        padding: 46px 18px 34px;
      }

      .reviews-section__summary {
        justify-content: flex-start;
      }

      .reviews-rating {
        width: min(100%, 176px);
        min-height: 150px;
        padding: 16px;
      }

      .review-card {
        flex-basis: 100%;
        min-width: 100%;
        min-height: auto;
      }

      .reviews-track {
        --reviews-gap: 18px;
      }

      .reviews-section__footer {
        grid-template-columns: 1fr;
      }

      .reviews-dots,
      .reviews-navs {
        justify-self: center;
      }
    }

    @media (max-width: 640px) {
      .reviews-section__title {
        font-size: clamp(1.85rem, 8.2vw, 2.55rem);
      }

      .reviews-section__desc {
        font-size: .98rem;
      }

      .review-card {
        height: auto;
        min-height: auto;
        padding: 24px 20px 20px;
      }

      .review-card__top {
        grid-template-columns: 1fr;
      }

      .review-card__stars {
        padding-top: 0;
      }

      .review-card__text {
        font-size: .96rem;
      }

      .reviews-nav {
        width: 38px;
        height: 38px;
      }
    }

    /* ── FAQ ── */
    .faq-section {
      background: #050505;
    }

    .faq-toggle {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 32px clamp(24px, 5vw, 80px);
      background: #050505;
      border: none;
      border-top: 1px solid rgba(255, 255, 255, .10);
      border-bottom: 1px solid rgba(255, 255, 255, .10);
      color: #fff;
      font-size: clamp(2.4rem, 4.2vw, 4.8rem);
      font-weight: 100;
      letter-spacing: -.03em;
      cursor: pointer;
      transition: background .25s;
    }

    .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-section.is-open .faq-toggle {
      border-bottom-color: transparent;
    }

    .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;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 clamp(32px, 5vw, 80px);
      padding: clamp(32px, 4vw, 56px) clamp(24px, 5vw, 80px) clamp(48px, 6vw, 80px);
      max-width: 1300px;
      margin: 0 auto;
    }

    @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 ── */
    .contact-section {
      background: #050505;
      padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 80px) clamp(80px, 10vw, 140px);
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .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);
    }

    @media (max-width: 860px) {
      .contact-section__inner {
        grid-template-columns: 1fr;
        align-items: start;
      }
    }

    .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__title {
      margin: 0 0 20px;
      font-size: clamp(2.4rem, 4.2vw, 4.8rem);
      font-weight: 300;
      letter-spacing: -.04em;
      color: #fff;
      line-height: 1.08;
    }

    .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: #ececec;
    }

    .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);
    }

    /* ── Footer ── */
    .site-footer {
      background: #050505;
      border-top: 1px solid rgba(255, 255, 255, .10);
      padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 80px) clamp(28px, 3vw, 40px);
    }

    .site-footer__inner {
      max-width: 1300px;
      margin: 0 auto;
    }

    .site-footer__top {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(24px, 4vw, 60px);
      margin-bottom: clamp(40px, 5vw, 64px);
    }

    .site-footer__col {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .site-footer__heading {
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 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;
    }

    .site-footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: clamp(24px, 3vw, 36px);
      border-top: 1px solid rgba(255, 255, 255, .08);
      font-size: .78rem;
      color: rgba(255, 255, 255, .28);
    }

    .site-footer__legal {
      display: flex;
      gap: 24px;
    }

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

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

    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .75s cubic-bezier(.22, .61, .36, 1), transform .75s cubic-bezier(.22, .61, .36, 1);
    }

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

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

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

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

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

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

    .features-section {
      --fp: clamp(24px, 5vw, 80px);
      --fg: 14px;
      background: #fff;
      padding: clamp(72px, 9vw, 120px) var(--fp) clamp(48px, 6vw, 80px);
    }

    .features-section__head {
      display: block;
      max-width: 900px;
      margin-bottom: clamp(40px, 5vw, 64px);
    }

    .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__desc {
      margin: clamp(18px, 2vw, 26px) 0 0;
      max-width: 760px;
      font-size: clamp(.9rem, 1.1vw, 1.05rem);
      color: #666;
      line-height: 1.7;
      padding-top: 0;
    }

    .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.is-visible:hover {
      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: #ececec;
      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: 4px;
    }

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

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

    .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: 8px;
    }

    .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;
    }

    .features-section__footer {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      margin-top: 24px;
    }

    .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;
    }

    @media (max-width: 1080px) {
      .hero__inner {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .hero__visual {
        min-height: min(52vh, 560px);
      }

      .hero h1 {
        max-width: 12ch;
        margin-inline: auto;
      }
    }

    @media (max-width: 760px) {
      :root {
        --header-h: 92px;
        --header-h-scrolled: 72px;
      }

      .site-header__inner {
        width: min(100vw - 22px, 100%);
      }

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

    /* ── Correctifs stabilité, accessibilité et responsive ── */
    .forfait-card__badge {
      color: #111111;
    }

    @media (max-width: 1080px) {
      .features-section__head {
        grid-template-columns: 1fr;
      }

      .feat-card {
        flex-basis: calc((100% - var(--fg)) / 2);
      }

      .site-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 860px) {
      .contact-form {
        grid-column: 1;
        grid-row: auto;
      }

      .contact-bottom-row {
        grid-column: 1;
        grid-row: auto;
        align-self: start;
      }
    }

    @media (max-width: 760px) {
      .site-header__inner {
        width: 100%;
        padding: 0 18px;
      }

      .site-actions {
        gap: 18px;
      }

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

      .hero h1 {
        white-space: normal;
        font-size: clamp(2.1rem, 11vw, 3rem);
        line-height: 1.05;
      }

      /* Titres de section alignés sur la taille du hero en mobile */
      .services-white__title,
      .forfaits-section__title,
      .contact-section__title,
      .features-section__title,
      .services-white--offers .services-white__title,
      .forfaits-section--services .forfaits-section__title,
      .stats-section__number,
      .faq-toggle {
        font-size: clamp(2.1rem, 11vw, 3rem);
        line-height: 1.05;
      }

      .hero__copy {
        padding-inline: 18px;
      }

      .feat-card {
        flex: 0 0 min(86vw, 420px);
        min-height: 360px;
      }

      .features-section__footer {
        grid-template-columns: 1fr;
        gap: 16px;
      }

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

      .site-footer__top {
        grid-template-columns: 1fr;
      }

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

      .site-footer__legal {
        flex-wrap: wrap;
        gap: 12px 20px;
      }
    }

    @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;
      }
    }



    @media (max-width: 760px) {
      .forfaits-section .forfait-card__body {
        padding-top: 32px;
        padding-bottom: 32px;
      }

      .forfait-card__main {
        transform: translateY(8px);
      }

      .forfait-card__details {
        margin-top: 0;
        transform: none;
      }
    }


    /* ── Finition premium finale : cartes Nos forfaits ── */
    .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__body {
      min-height: 100%;
      padding: clamp(38px, 4.2vw, 58px) clamp(30px, 3.45vw, 48px);
      display: grid;
      grid-template-rows: auto minmax(0, 1fr) auto;
      align-items: stretch;
      justify-content: initial;
      gap: 0;
    }

    .forfaits-section .forfait-card__badge {
      align-self: start;
      margin: 0;
      min-height: 38px;
      padding: 9px 18px;
      border-color: rgba(255, 255, 255, .20);
      background: rgba(255, 255, 255, .13);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
    }

    .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;
    }

    .forfaits-section .forfait-card__actions .sw-card__btn {
      min-height: clamp(46px, 3.6vw, 54px);
      min-width: clamp(132px, 10vw, 160px);
      padding: 0 clamp(18px, 2vw, 28px);
      border-radius: 999px;
      font-size: clamp(.88rem, .96vw, 1rem);
      white-space: nowrap;
    }

    @media (max-width: 760px) {
      .forfaits-section .forfait-card {
        flex-basis: min(88vw, 420px);
        min-height: 500px;
        border-radius: 22px;
      }

      .forfaits-section .forfait-card__body {
        padding: 34px 26px;
      }

      .forfaits-section .forfait-card__main {
        transform: translateY(-4px);
      }

      .forfaits-section .forfait-card__name {
        font-size: clamp(2.25rem, 12vw, 3.4rem);
      }

      .forfaits-section .forfait-card__desc {
        font-size: .95rem;
        line-height: 1.55;
      }

      .forfaits-section .forfait-card__actions {
        flex-wrap: wrap;
      }
    }


    /* Ajustement taille finale : on garde le rendu premium, mais les cartes redeviennent plus compactes */
    .forfaits-section {
      padding-top: clamp(70px, 8vw, 118px);
      padding-bottom: clamp(72px, 8vw, 120px);
    }

    .forfaits-track {
      --forfait-gap: 20px;
    }

    .forfait-card {
      flex-basis: clamp(300px, 28vw, 390px);
      min-height: clamp(390px, 31vw, 470px);
      border-radius: 16px;
    }

    .forfaits-section .forfait-card__body {
      padding: clamp(28px, 3.3vw, 42px) clamp(24px, 2.55vw, 34px);
    }

    .forfaits-section .forfait-card__badge {
      min-height: 31px;
      padding: 7px 14px;
      font-size: clamp(.62rem, .7vw, .72rem);
      letter-spacing: .20em;
    }

    .forfait-card__main {
      transform: translateY(clamp(4px, .65vw, 10px));
    }

    .forfait-card__name {
      max-width: 13ch;
      font-size: clamp(1.78rem, 2.35vw, 2.85rem);
      line-height: 1.04;
    }

    .forfait-card__desc {
      margin-top: clamp(12px, 1.25vw, 17px);
      max-width: 39ch;
      font-size: clamp(.86rem, .92vw, .96rem);
      line-height: 1.56;
    }

    .forfait-card__price {
      margin-bottom: 14px;
      font-size: clamp(.72rem, .82vw, .84rem);
      letter-spacing: .13em;
    }

    .forfait-card__actions {
      gap: 10px;
    }

    .forfait-card__actions .sw-card__btn {
      min-height: 42px;
      padding: 0 18px;
      font-size: clamp(.82rem, .88vw, .92rem);
    }

    .forfaits-section__footer {
      margin-top: 22px;
    }

    @media (max-width: 760px) {
      .forfait-card {
        flex-basis: min(84vw, 380px);
        min-height: 410px;
      }

      .forfaits-section .forfait-card__body {
        padding: 28px 24px;
      }

      .forfait-card__name {
        font-size: clamp(1.9rem, 10vw, 2.55rem);
      }

      .forfait-card__desc {
        font-size: .9rem;
        line-height: 1.55;
      }
    }



    /* Réglage final : boutons des forfaits à la même présence que les grandes cartes */
    .forfaits-section .forfait-card__actions .sw-card__btn {
      min-height: 46px !important;
      min-width: 132px !important;
      padding: 0 22px !important;
      border-radius: 999px !important;
      font-size: clamp(.9rem, 1vw, 1rem) !important;
      font-weight: 700 !important;
      letter-spacing: -.015em !important;
    }

    @media (max-width: 760px) {
      .forfaits-section .forfait-card__actions .sw-card__btn {
        min-height: 46px !important;
        min-width: 130px !important;
        padding: 0 20px !important;
        font-size: .94rem !important;
      }
    }



    /* ── Ajustement final : forfaits depuis l'ancien PIX|WEB, sans prix ── */
    .forfaits-section__title {
      font-weight: 300;
      letter-spacing: -.045em;

      font-size: clamp(2.4rem, 4.2vw, 4.8rem);
      line-height: 1.08;
    }

    .forfaits-section__sub {
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.65;
    }

    .forfaits-track {
      --forfait-gap: 22px;
      align-items: stretch;
    }

    .forfait-card {
      flex: 0 0 clamp(330px, 29vw, 420px);
      min-height: clamp(430px, 33vw, 505px);
      border-radius: 20px;
      box-shadow: 0 26px 70px rgba(0, 0, 0, .20);
    }

    .forfait-card__overlay {
      background:
        radial-gradient(ellipse 58% 44% at 28% 35%, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .05) 46%, transparent 76%),
        linear-gradient(180deg, rgba(0, 0, 0, .38) 0%, rgba(0, 0, 0, .18) 38%, rgba(0, 0, 0, .74) 76%, rgba(0, 0, 0, .92) 100%);
    }

    .forfait-card__body {
      min-height: 100%;
      padding: clamp(28px, 2.6vw, 38px);
      display: grid;
      grid-template-rows: auto 1fr auto;
      row-gap: clamp(18px, 2vw, 28px);
      align-items: stretch;
      justify-content: stretch;
    }

    .forfaits-section .forfait-card__badge {
      align-self: start;
      margin: 0;
      min-height: 34px;
      padding: 8px 16px;
      font-size: clamp(.66rem, .74vw, .76rem);
      letter-spacing: .22em;
    }

    .forfait-card__main {
      align-self: center;
      max-width: 100%;
      transform: translateY(-2px);
    }

    .forfait-card__name {
      max-width: none;
      font-size: clamp(2.05rem, 2.55vw, 3.15rem);
      line-height: 1.04;
      font-weight: 300;
      letter-spacing: -.05em;
    }

    .forfait-card__desc {
      min-height: 5.1em;
      margin-top: clamp(16px, 1.35vw, 20px);
      max-width: 38ch;
      font-size: clamp(.92rem, .98vw, 1.02rem);
      line-height: 1.7;
    }

    .forfait-card__details {
      align-self: end;
      margin: 0;
      padding: 0;
      transform: none;
    }

    .forfait-card__price {
      margin: 0 0 18px;
      min-height: 1.1em;
      font-size: clamp(.78rem, .86vw, .9rem);
      letter-spacing: .14em;
    }

    .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;
    }

    @media (max-width: 760px) {
      .forfait-card {
        flex-basis: min(86vw, 360px);
        min-height: 470px;
      }

      .forfait-card__body {
        padding: 28px;
      }

      .forfait-card__name {
        font-size: clamp(2rem, 10vw, 2.65rem);
      }

      .forfait-card__desc {
        min-height: auto;
      }

      .forfait-card__actions {
        gap: 10px;
      }

      .forfait-card__actions .sw-card__btn {
        min-height: 52px;
        padding: 0 20px;
        font-size: .92rem;
      }
    }


    /* ── Nos offres : 3 cartes fixes, sans carousel ── */
    .forfaits-section {
      padding-left: clamp(24px, 5vw, 80px);
      padding-right: clamp(24px, 5vw, 80px);
      overflow: visible;
    }

    .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__footer {
      display: none !important;
    }

    @media (max-width: 1080px) {
      .forfaits-track--static {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
      }

      .forfaits-track--static .forfait-card {
        min-height: 440px;
      }
    }

    @media (max-width: 560px) {
      .forfaits-section {
        padding-left: clamp(18px, 5vw, 24px);
        padding-right: clamp(18px, 5vw, 24px);
      }

      .forfaits-track--static .forfait-card__body {
        padding: 28px 24px;
      }

      .forfaits-track--static .forfait-card__name,
      .forfaits-track--static .forfait-card__desc {
        min-height: 0;
      }

      .forfaits-track--static .forfait-card__actions {
        align-items: stretch;
      }

      .forfaits-track--static .forfait-card__actions .sw-card__btn {
        flex: 1 1 100%;
      }
    }


    /* ── Services+ : carousel restauré dans la section basse ── */
    .forfaits-section--services {
      padding-left: 0;
      padding-right: 0;
      overflow: hidden;
    }

    .forfaits-section--services .services-white__pills {
      margin: clamp(24px, 3vw, 36px) 0 0;
      gap: clamp(18px, 2.2vw, 32px);
    }

    .forfaits-section--services .forfaits-carousel {
      width: min(calc(100vw - 48px), calc((3 * clamp(320px, 31vw, 430px)) + (2 * var(--forfait-gap))));
      max-width: calc((3 * clamp(320px, 31vw, 430px)) + (2 * var(--forfait-gap)));
      margin: 0 auto;
      overflow: hidden;
    }

    .forfaits-section--services .forfaits-track {
      display: flex;
      gap: var(--forfait-gap);
      padding: 0;
      transform: translate3d(0, 0, 0);
      transition: transform .75s cubic-bezier(.22, .61, .36, 1);
      will-change: transform;
    }

    .forfaits-section--services .forfait-card {
      flex: 0 0 clamp(320px, 31vw, 430px);
      width: auto;
      min-height: clamp(430px, 34vw, 520px);
    }

    .forfaits-section--services .forfait-card__name {
      min-height: calc(1.06em * 2);
      display: flex;
      align-items: flex-end;
    }

    .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 .forfaits-section__footer {
      display: grid !important;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 16px;
    }

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

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

    @media (max-width: 560px) {
      .forfaits-section--services {
        padding-left: 0;
        padding-right: 0;
      }

      .forfaits-section--services .forfaits-carousel {
        width: calc(100vw - 36px);
      }

      .forfaits-section--services .forfaits-track {
        padding: 0;
      }

      .forfaits-section--services .forfait-card__actions {
        align-items: stretch;
      }

      .forfaits-section--services .forfait-card__actions .sw-card__btn {
        flex: 1 1 100%;
      }
    }


    /* ── Correction finale des en-têtes de sections : retour aux proportions d'origine ── */
    .services-white--offers {
      padding-top: clamp(72px, 9vw, 130px);
      padding-bottom: clamp(64px, 7vw, 104px);
    }

    .services-white--offers .services-white__head {
      text-align: center;
      margin: 0 auto clamp(32px, 4vw, 56px);
      padding: 0 clamp(24px, 5vw, 80px);
      max-width: 1180px;
    }

    .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 {
      background: #ffffff;
      color: #111111;
      padding-top: clamp(72px, 9vw, 130px);
      padding-bottom: clamp(72px, 9vw, 130px);
    }

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

    .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 .services-white__pills {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin: clamp(40px, 5vw, 72px) auto 0;
    }

    .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;
    }

    @media (max-width: 760px) {

      .services-white--offers .services-white__head,
      .forfaits-section--services .forfaits-section__head {
        padding: 0 24px;
      }

      .forfaits-section--services .services-white__pills {
        gap: 18px 24px;
        margin-top: 40px;
      }
    }


    /* ── Hiérarchie typo premium finale ──
               Hero = impact principal
               Titres de section = grands mais plus calmes
               Statistiques = visibles, sans voler la vedette */
    .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;
    }

    .stats-section__number {
      font-size: clamp(1.85rem, 3.1vw, 3.5rem);
      line-height: 1.08;
    }

    @media (max-width: 760px) {

      .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(1.95rem, 9vw, 2.75rem);
        line-height: 1.06;
      }

      .stats-section__number {
        font-size: clamp(1.85rem, 8vw, 2.55rem);
        line-height: 1.06;
      }
    }

    /* ── Ajustement contact : titre plus fin, cohérent avec les titres premium ── */
    .contact-section__title {
      font-weight: 200 !important;
      letter-spacing: -.045em;
    }

    /* ── Correction : on restaure le gabarit du fichier mémorisé.
               Les cartes gardent leur taille d'origine ; seule la typo des titres est harmonisée. ── */
    .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;
    }

    .services-white--offers .sw-card__overlay h3 {
      font-family: inherit;
      font-size: clamp(2.1rem, 3.5vw, 4rem);
      font-weight: 300;
      letter-spacing: -.04em;
      line-height: 1.06;
    }

    .forfaits-section--services .forfait-card {
      flex: 0 0 clamp(320px, 31vw, 430px);
      width: auto;
      min-height: clamp(430px, 34vw, 520px);
    }

    .forfaits-section--services .forfait-card__name {
      font-family: inherit;
      font-size: clamp(2rem, 2.85vw, 3.25rem);
      font-weight: 300;
      letter-spacing: -.04em;
      line-height: 1.06;
    }

    @media (max-width: 760px) {
      .services-white--offers .sw-carousel__track {
        padding: 0 calc((100vw - min(86vw, 420px)) / 2);
      }

      .services-white--offers .sw-card {
        flex-basis: min(86vw, 420px);
        height: 500px;
        min-height: 500px;
        border-radius: 18px;
      }

      .services-white--offers .sw-card__overlay h3 {
        font-size: clamp(2.1rem, 11vw, 3rem);
        line-height: 1.05;
      }

      .forfaits-section--services .forfait-card {
        flex-basis: min(86vw, 360px);
        min-height: 470px;
      }

      .forfaits-section--services .forfait-card__name {
        font-size: clamp(2rem, 10vw, 2.65rem);
      }
    }



    /* ── Correction finale : titres des grosses cartes Nos offres fixés à 38px ── */
    .services-white--offers .sw-card__overlay h3 {
      font-size: 38px !important;
      font-weight: 300 !important;
      letter-spacing: -.04em !important;
      line-height: 1.06 !important;
    }

    @media (max-width: 760px) {
      .services-white--offers .sw-card__overlay h3 {
        font-size: 38px !important;
        line-height: 1.05 !important;
      }
    }


    /* ── Correction finale : titres des cartes Développez votre activité en ligne -10px ── */
    .forfaits-section--services .forfait-card__name {
      font-size: clamp(1.375rem, calc(2.85vw - 10px), 2.625rem) !important;
    }

    @media (max-width: 760px) {
      .forfaits-section--services .forfait-card__name {
        font-size: clamp(1.375rem, calc(10vw - 10px), 2.025rem) !important;
      }
    }


    /* ── Harmonisation premium des espacements entre sections ── */
    .stats-section {
      padding-top: clamp(58px, 6.5vw, 96px) !important;
      padding-bottom: clamp(66px, 7.5vw, 110px) !important;
    }

    .stats-section__tagline {
      margin-bottom: clamp(36px, 4.5vw, 62px) !important;
    }

    .services-white--offers {
      padding-top: clamp(74px, 8vw, 118px) !important;
      padding-bottom: clamp(46px, 5vw, 74px) !important;
    }

    .services-white--offers .services-white__head {
      margin-bottom: clamp(34px, 4vw, 58px) !important;
    }

    .forfaits-section--services {
      padding-top: clamp(46px, 5vw, 74px) !important;
      padding-bottom: clamp(78px, 8.5vw, 124px) !important;
    }

    .forfaits-section--services .forfaits-section__head {
      margin-bottom: clamp(36px, 4.5vw, 64px) !important;
    }

    .forfaits-section--services .services-white__pills {
      margin-top: clamp(28px, 3.4vw, 46px) !important;
    }

    .forfaits-section--services .forfaits-section__footer {
      margin-top: clamp(22px, 2.6vw, 34px) !important;
    }

    .features-section {
      padding-top: clamp(70px, 7.5vw, 112px) !important;
      padding-bottom: clamp(74px, 8vw, 118px) !important;
    }

    .features-section__head {
      margin-bottom: clamp(36px, 4.5vw, 62px) !important;
    }

    .features-section__footer {
      margin-top: clamp(22px, 2.6vw, 34px) !important;
    }

    .faq-toggle {
      padding-top: clamp(28px, 3.4vw, 42px) !important;
      padding-bottom: clamp(28px, 3.4vw, 42px) !important;
    }

    .faq-grid {
      padding-top: clamp(30px, 3.8vw, 52px) !important;
      padding-bottom: clamp(54px, 6.5vw, 90px) !important;
    }

    .contact-section {
      padding-top: clamp(76px, 8vw, 118px) !important;
      padding-bottom: clamp(84px, 9vw, 136px) !important;
    }

    @media (max-width: 760px) {
      .stats-section {
        padding-top: 54px !important;
        padding-bottom: 62px !important;
      }

      .stats-section__tagline {
        margin-bottom: 34px !important;
      }

      .services-white--offers {
        padding-top: 62px !important;
        padding-bottom: 40px !important;
      }

      .services-white--offers .services-white__head,
      .forfaits-section--services .forfaits-section__head,
      .features-section__head {
        margin-bottom: 34px !important;
      }

      .forfaits-section--services {
        padding-top: 40px !important;
        padding-bottom: 68px !important;
      }

      .forfaits-section--services .services-white__pills {
        margin-top: 28px !important;
      }

      .features-section {
        padding-top: 62px !important;
        padding-bottom: 70px !important;
      }

      .faq-toggle {
        padding-top: 26px !important;
        padding-bottom: 26px !important;
      }

      .faq-grid {
        padding-top: 28px !important;
        padding-bottom: 56px !important;
      }

      .contact-section {
        padding-top: 68px !important;
        padding-bottom: 84px !important;
      }
    }

    /* ── Nettoyage visuel carousel services : fond blanc net entre les cartes ── */
    .forfaits-section--services,
    .forfaits-section--services .forfaits-carousel,
    .forfaits-section--services .forfaits-track {
      background: #ffffff !important;
    }

    .forfaits-section--services .forfait-card {
      box-shadow: none !important;
      background-clip: padding-box;
    }

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




    /* ── Correction définitive carousel services : 3 cartes nettes, aucun bout visible ── */
    .forfaits-section--services {
      --forfait-gap: 22px;
      --service-card-w: min(430px, calc((100vw - 96px - (2 * var(--forfait-gap))) / 3));
    }

    .forfaits-section--services .forfaits-carousel {
      width: calc((3 * var(--service-card-w)) + (2 * var(--forfait-gap))) !important;
      max-width: calc(100vw - 96px) !important;
      margin-left: auto !important;
      margin-right: auto !important;
      overflow: hidden !important;
      background: #ffffff !important;
    }

    .forfaits-section--services .forfaits-track {
      gap: var(--forfait-gap) !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      background: #ffffff !important;
    }

    .forfaits-section--services .forfait-card {
      flex: 0 0 var(--service-card-w) !important;
      width: var(--service-card-w) !important;
      max-width: var(--service-card-w) !important;
      box-shadow: none !important;
    }

    @media (max-width: 1080px) {
      .forfaits-section--services {
        --forfait-gap: 16px;
        --service-card-w: min(420px, calc(100vw - 36px));
      }

      .forfaits-section--services .forfaits-carousel {
        width: var(--service-card-w) !important;
        max-width: calc(100vw - 36px) !important;
      }
    }


    /* ── Finition premium : voile cartes équilibré ──
               Objectif : calmer les images sans les étouffer.
               Voile visible mais propre : fond plus doux, texte lisible, rendu premium. */
    .services-white--offers .sw-card__overlay {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .18) 42%, rgba(0, 0, 0, .62) 100%),
        radial-gradient(ellipse 62% 46% at 28% 32%, rgba(0, 0, 0, .14) 0%, rgba(0, 0, 0, .06) 46%, transparent 78%) !important;
    }

    .services-white--offers .sw-card__overlay::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(ellipse 56% 42% at 26% 36%, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .035) 46%, transparent 78%),
        radial-gradient(ellipse 58% 30% at 28% 84%, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .045) 48%, transparent 80%) !important;
      opacity: .82 !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__overlay {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .18) 42%, rgba(0, 0, 0, .62) 100%),
        radial-gradient(ellipse 62% 46% at 30% 38%, rgba(0, 0, 0, .14) 0%, rgba(0, 0, 0, .06) 46%, transparent 78%) !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;
    }

    @media (max-width: 760px) {

      .services-white--offers .sw-card__overlay,
      .forfaits-section--services .forfait-card__overlay {
        background:
          linear-gradient(180deg, rgba(0, 0, 0, .38) 0%, rgba(0, 0, 0, .20) 42%, rgba(0, 0, 0, .66) 100%),
          radial-gradient(ellipse 74% 48% at 36% 32%, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .065) 48%, transparent 80%) !important;
      }
    }



    /* ── Lisibilité renforcée : texte des cartes plus visible ── */
    .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__overlay::before {
      background:
        radial-gradient(ellipse 60% 46% at 26% 34%, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .07) 48%, transparent 80%),
        radial-gradient(ellipse 64% 34% at 28% 84%, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .06) 50%, transparent 82%) !important;
      opacity: .90 !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 h3 {
      color: #fff !important;
      text-shadow:
        0 16px 34px rgba(0, 0, 0, .52),
        0 3px 10px rgba(0, 0, 0, .40),
        0 1px 1px rgba(0, 0, 0, .45) !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__name {
      color: #fff !important;
      text-shadow:
        0 16px 34px rgba(0, 0, 0, .52),
        0 3px 10px rgba(0, 0, 0, .40),
        0 1px 1px rgba(0, 0, 0, .45) !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;
    }

    @media (max-width: 760px) {

      .services-white--offers .sw-card__overlay,
      .forfaits-section--services .forfait-card__overlay {
        background:
          linear-gradient(180deg, rgba(0, 0, 0, .44) 0%, rgba(0, 0, 0, .26) 42%, rgba(0, 0, 0, .76) 100%),
          radial-gradient(ellipse 76% 52% at 36% 34%, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .08) 48%, transparent 82%) !important;
      }
    }



    /* ── Ajustement : section services sans Forfait Web / Reprise de site ── */
    .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;
    }

    @media (max-width: 760px) {
      .forfaits-section--services #fiche-google-business-plus .forfait-card__name {
        font-size: clamp(1.15rem, 5.2vw, 1.5rem) !important;
        min-height: calc(1.06em * 2) !important;
      }
    }



    /* ── Footer ancien PIX|WEB repris avec logo actuel ── */
    .site-footer {
      background: #050505 !important;
      border-top: 1px solid rgba(255, 255, 255, .10) !important;
      margin-top: 0 !important;
      padding: clamp(58px, 6.8vw, 92px) clamp(28px, 5vw, 88px) clamp(34px, 4vw, 56px) !important;
    }

    .site-footer__inner {
      max-width: 1540px !important;
      margin: 0 auto !important;
    }

    .site-footer__top {
      display: grid !important;
      grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(160px, 1fr)) !important;
      gap: clamp(42px, 6vw, 118px) !important;
      align-items: start !important;
      margin-bottom: clamp(46px, 5.5vw, 78px) !important;
    }

    .site-footer__brand {
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 22px !important;
      min-width: 0 !important;
    }

    .site-footer__logo {
      display: inline-flex !important;
      align-items: center !important;
      width: clamp(160px, 13vw, 220px) !important;
    }

    .site-footer__logo img {
      display: block !important;
      width: 100% !important;
      height: auto !important;
      object-fit: contain !important;
      filter: grayscale(1) drop-shadow(0 10px 26px rgba(0, 0, 0, .35)) !important;
    }

    .site-footer__brand-text {
      margin: 0 !important;
      max-width: 240px !important;
      color: rgba(255, 255, 255, .42) !important;
      font-size: clamp(.94rem, 1vw, 1.05rem) !important;
      line-height: 1.62 !important;
      letter-spacing: -.01em !important;
    }

    .site-footer__col {
      display: flex !important;
      flex-direction: column !important;
      gap: 18px !important;
      min-width: 0 !important;
    }

    .site-footer__heading {
      margin: 0 0 14px !important;
      color: rgba(255, 255, 255, .33) !important;
      font-size: .78rem !important;
      font-weight: 800 !important;
      line-height: 1 !important;
      letter-spacing: .33em !important;
      text-transform: uppercase !important;
    }

    .site-footer__col a,
    .site-footer__cookie {
      width: max-content !important;
      max-width: 100% !important;
      color: #ececec !important;
      font-size: clamp(.98rem, 1.05vw, 1.12rem) !important;
      line-height: 1.35 !important;
      transition: color .22s var(--ease), transform .22s var(--ease), opacity .22s var(--ease) !important;
    }

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

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

    .site-footer__bottom {
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 18px !important;
      flex-wrap: wrap !important;
      padding-top: clamp(24px, 3vw, 38px) !important;
      border-top: 1px solid rgba(255, 255, 255, .07) !important;
      color: rgba(255, 255, 255, .32) !important;
      font-size: .82rem !important;
    }

    .site-footer__legal {
      display: flex !important;
      gap: 22px !important;
      flex-wrap: wrap !important;
    }

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

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

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

    @media (max-width: 760px) {
      .site-footer {
        padding-inline: 24px !important;
      }

      .site-footer__top {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
      }

      .site-footer__brand {
        gap: 18px !important;
      }

      .site-footer__col {
        gap: 14px !important;
      }

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

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



    /* ── Footer équilibré sans prix ── */
    .site-footer {
      padding: clamp(64px, 6vw, 92px) clamp(42px, 5vw, 92px) clamp(34px, 3.8vw, 52px) !important;
    }

    .site-footer__inner {
      max-width: 1680px !important;
    }

    .site-footer__top {
      grid-template-columns:
        minmax(250px, 1.16fr) minmax(180px, .88fr) minmax(240px, 1fr) minmax(250px, 1fr) minmax(210px, .88fr) !important;
      gap: clamp(42px, 5.2vw, 96px) !important;
      align-items: start !important;
      margin-bottom: clamp(48px, 5vw, 72px) !important;
    }

    .site-footer__brand {
      gap: clamp(46px, 4vw, 68px) !important;
      padding-top: 2px !important;
    }

    .site-footer__logo {
      width: clamp(185px, 12vw, 235px) !important;
      max-height: 64px !important;
    }

    .site-footer__logo img {
      max-height: 64px !important;
      object-fit: contain !important;
      object-position: left center !important;
    }

    .site-footer__brand-text {
      max-width: 230px !important;
      color: rgba(255, 255, 255, .42) !important;
      font-size: clamp(.96rem, 1vw, 1.06rem) !important;
      line-height: 1.55 !important;
    }

    .site-footer__col {
      gap: 17px !important;
    }

    .site-footer__heading {
      min-height: 18px !important;
      margin-bottom: 24px !important;
      white-space: nowrap !important;
      font-size: .74rem !important;
      letter-spacing: .32em !important;
      color: rgba(255, 255, 255, .38) !important;
    }

    .site-footer__col a,
    .site-footer__cookie {
      font-size: clamp(.98rem, 1vw, 1.08rem) !important;
      line-height: 1.28 !important;
      color: rgba(255, 255, 255, .70) !important;
    }

    .site-footer__cookie {
      margin-top: 14px !important;
    }

    @media (max-width: 1240px) {
      .site-footer__top {
        grid-template-columns: 1.1fr 1fr 1fr !important;
        gap: 48px 70px !important;
      }
    }

    @media (max-width: 760px) {
      .site-footer {
        padding: 56px 24px 36px !important;
      }

      .site-footer__top {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
      }

      .site-footer__brand {
        gap: 24px !important;
      }

      .site-footer__heading {
        margin-bottom: 10px !important;
      }
    }



    /* ── Footer final premium : équilibrage propre ── */
    .site-footer {
      padding: clamp(70px, 6.2vw, 104px) clamp(52px, 5.4vw, 104px) clamp(34px, 3.4vw, 50px) !important;
      background:
        radial-gradient(circle at 8% 24%, rgba(255, 255, 255, .035), transparent 22%),
        radial-gradient(circle at 82% 8%, rgba(255, 255, 255, .025), transparent 24%),
        #050505 !important;
    }

    .site-footer__inner {
      max-width: 1680px !important;
      margin: 0 auto !important;
    }

    .site-footer__top {
      grid-template-columns:
        minmax(285px, 1.05fr) minmax(190px, .86fr) minmax(265px, 1fr) minmax(280px, 1.03fr) minmax(225px, .88fr) !important;
      gap: clamp(58px, 6vw, 112px) !important;
      align-items: start !important;
      margin-bottom: clamp(48px, 4.8vw, 72px) !important;
    }

    .site-footer__brand {
      gap: 24px !important;
      padding-top: 0 !important;
    }

    .site-footer__logo {
      width: clamp(218px, 13.6vw, 272px) !important;
      max-height: none !important;
      overflow: visible !important;
    }

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

    .site-footer__brand-text {
      margin: 2px 0 0 !important;
      max-width: 235px !important;
      color: rgba(255, 255, 255, .43) !important;
      font-size: clamp(.96rem, .98vw, 1.05rem) !important;
      line-height: 1.62 !important;
      letter-spacing: -.012em !important;
    }

    .site-footer__col {
      gap: 17px !important;
      padding-top: 2px !important;
    }

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

    .site-footer__col a,
    .site-footer__cookie {
      width: max-content !important;
      max-width: 100% !important;
      color: #ececec !important;
      font-size: clamp(1rem, 1vw, 1.08rem) !important;
      line-height: 1.32 !important;
      letter-spacing: -.015em !important;
    }

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

    .site-footer__bottom {
      justify-content: flex-start !important;
      padding-top: clamp(24px, 2.8vw, 34px) !important;
      color: rgba(255, 255, 255, .32) !important;
      font-size: .84rem !important;
    }

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

    @media (max-width: 1240px) {
      .site-footer__top {
        grid-template-columns: 1.15fr 1fr 1fr !important;
        gap: 48px 68px !important;
      }
    }

    @media (max-width: 760px) {
      .site-footer {
        padding: 56px 24px 36px !important;
      }

      .site-footer__top {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
      }

      .site-footer__logo {
        width: 220px !important;
      }

      .site-footer__brand {
        gap: 20px !important;
      }

      .site-footer__heading {
        margin-bottom: 10px !important;
      }
    }



    /* ── Correction footer premium propre : largeur contenue, colonnes équilibrées ── */
    .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;
    }

    .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: 24px !important;
      padding-top: 0 !important;
      min-width: 0 !important;
    }

    .site-footer__logo {
      display: block !important;
      width: clamp(188px, 12vw, 232px) !important;
      max-width: 100% !important;
      max-height: none !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 center !important;
      filter: grayscale(1) drop-shadow(0 10px 28px rgba(0, 0, 0, .45)) !important;
    }

    .site-footer__brand-text {
      margin: 0 !important;
      max-width: 210px !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;
    }

    .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: #ececec !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;
    }

    .site-footer__col a:hover,
    .site-footer__cookie:hover {
      color: #fff !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;
    }

    @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 {
        gap: 18px !important;
      }

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



    /* ── Ajustements finaux footer premium : logo et section Parrainage & Contact ── */
    .site-footer__brand {
      margin-top: -12px !important;
      gap: 20px !important;
    }

    .site-footer__logo {
      margin: 0 !important;
    }

    .site-footer__logo img {
      object-position: left top !important;
    }

    .site-footer__brand-text {
      padding-left: 2px !important;
      max-width: 220px !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: 760px) {
      .site-footer__brand {
        margin-top: 0 !important;
        gap: 18px !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;
      }
    }



    /* ── Micro-ajustement final : logo footer plus haut ── */
    .site-footer__brand {
      margin-top: -22px !important;
    }

    @media (max-width: 760px) {
      .site-footer__brand {
        margin-top: 0 !important;
      }
    }



    /* ── Harmonisation finale premium : vides haut/bas entre sections ── */
    .stats-section {
      padding-top: clamp(62px, 6.8vw, 98px) !important;
      padding-bottom: clamp(70px, 7.2vw, 106px) !important;
    }

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

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

    .features-section {
      padding-top: clamp(76px, 7.8vw, 112px) !important;
      padding-bottom: clamp(76px, 7.8vw, 112px) !important;
    }

    .faq-toggle {
      padding-top: clamp(30px, 3.2vw, 42px) !important;
      padding-bottom: clamp(30px, 3.2vw, 42px) !important;
    }

    .faq-grid {
      padding-top: clamp(34px, 3.8vw, 54px) !important;
      padding-bottom: clamp(58px, 6vw, 88px) !important;
    }

    .contact-section {
      padding-top: clamp(78px, 7.8vw, 112px) !important;
      padding-bottom: clamp(72px, 7vw, 104px) !important;
    }

    .site-footer {
      padding-top: clamp(72px, 7vw, 104px) !important;
      padding-bottom: clamp(34px, 3.2vw, 48px) !important;
    }

    .site-footer__top {
      margin-bottom: clamp(42px, 4vw, 58px) !important;
    }

    .site-footer__bottom {
      padding-top: clamp(24px, 2.4vw, 32px) !important;
    }

    @media (max-width: 760px) {

      .stats-section,
      .services-white--offers,
      .forfaits-section--services,
      .features-section,
      .contact-section {
        padding-top: 62px !important;
        padding-bottom: 62px !important;
      }

      .forfaits-section--services {
        padding-top: 50px !important;
      }

      .faq-toggle {
        padding-top: 26px !important;
        padding-bottom: 26px !important;
      }

      .faq-grid {
        padding-top: 30px !important;
        padding-bottom: 58px !important;
      }

      .site-footer {
        padding-top: 58px !important;
        padding-bottom: 34px !important;
      }
    }

    /* FAQ: ouverture sans grossissement du titre */
    .faq-section.is-open .faq-toggle {
      font-size: clamp(2.1rem, 3.5vw, 4rem) !important;
      line-height: 1.08 !important;
    }

    @media (max-width: 760px) {
      .faq-section.is-open .faq-toggle {
        font-size: clamp(1.95rem, 9vw, 2.75rem) !important;
        line-height: 1.06 !important;
      }
    }


    /* === TARIFS — Header en mode "on-light" (avant scroll, sur page claire) === */
    /* Quand le header est transparent (pas scrollé, pas mega-open), forcer texte/icônes en noir */
    .site-header--on-light:not(.is-scrolled):not(.mega-open) .site-nav__link,
    .site-header--on-light:not(.is-scrolled):not(.mega-open) .login-link {
      color: rgba(0, 0, 0, .82);
    }

    .site-header--on-light:not(.is-scrolled):not(.mega-open) .site-nav__link:hover,
    .site-header--on-light:not(.is-scrolled):not(.mega-open) .login-link:hover {
      color: #000;
      background: rgba(0, 0, 0, .06);
    }

    .site-header--on-light:not(.is-scrolled):not(.mega-open) .burger__lines span {
      background: #000;
    }

    /* === TARIFS — Variables scopées (cœur clair, ne déborde pas sur header/footer) === */
    .pricing-page {
      --pp-bg: #ffffff;
      --pp-text: #050505;
      --pp-muted: rgba(0, 0, 0, .62);
      --pp-blue: #0077ff;
      --pp-line: #dcdcdc;
      --pp-card: rgba(255, 255, 255, 0.94);
      --pp-shadow: 0 10px 24px rgba(0, 0, 0, 0.035);
      --pp-shadow-strong: 0 14px 30px rgba(0, 0, 0, 0.05);
      --pp-radius-xl: 30px;
      --pp-radius-pill: 999px;
      --pp-ease: cubic-bezier(.22, 1, .36, 1);
      --pp-sticky-top: var(--header-h, 78px);
      --pp-comparison-head-h: 0px;
    }

    /* === TARIFS — Section principale (thème clair sur fond noir global) === */
    .pricing-page {
      position: relative;
      min-height: 100vh;
      padding: clamp(58px, 7vw, 92px) clamp(18px, 3vw, 52px) clamp(64px, 8vw, 120px);
      background: var(--pp-bg);
      color: var(--pp-text);
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
      overflow: hidden;
    }

    .pricing-page::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 18% 78%, rgba(0, 119, 255, 0.025), transparent 34%);
      z-index: 0;
    }

    .pricing-page>* {
      position: relative;
      z-index: 1;
    }

    .pricing-page button,
    .pricing-page a {
      -webkit-tap-highlight-color: transparent;
    }

    /* Hero */
    .pricing-hero {
      max-width: 1240px;
      margin: 0 auto;
      text-align: center;
    }


    .pricing-title {
      font-size: clamp(2.7rem, 5.2vw, 4.4rem);
      line-height: 0.96;
      letter-spacing: -0.065em;
      font-weight: 480;
      margin-bottom: clamp(20px, 1.8vw, 26px);
      color: var(--pp-text);
    }

    .pricing-title-line2 {
      display: inline-block;
    }

    .pricing-subtitle {
      max-width: 780px;
      margin: 0 auto clamp(28px, 3vw, 42px);
      font-size: clamp(1rem, 1.2vw, 1.18rem);
      line-height: 1.5;
      font-weight: 500;
      color: #101010;
    }

    .pricing-pill {
      width: max-content;
      margin: 0 auto;
      min-height: 58px;
      padding: 0 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--pp-radius-pill);
      background: #eeeeee;
      color: #101010;
      font-size: clamp(.92rem, 1vw, 1.06rem);
      font-weight: 600;
      letter-spacing: -0.025em;
      box-shadow: none;
    }

    .billing-toggle {
      width: min(100%, 430px);
      margin: 0 auto 18px;
      padding: 6px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
      border-radius: 999px;
      background: #ececec;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    }

    .billing-toggle__option {
      min-height: 48px;
      padding: 0 18px;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: #111111;
      font: inherit;
      font-size: clamp(.94rem, 1.05vw, 1.04rem);
      font-weight: 600;
      letter-spacing: -0.025em;
      transition: background .25s var(--pp-ease), box-shadow .25s var(--pp-ease), transform .25s var(--pp-ease), color .25s var(--pp-ease);
    }

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

    .billing-toggle__option.is-active {
      background: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, .05), inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    .billing-toggle__hint {
      max-width: 430px;
      margin: 8px auto 0;
      text-align: center;
      color: rgba(0, 0, 0, .52);
      font-size: .82rem;
      line-height: 1.4;
      font-weight: 500;
    }

    .saving.is-annual {
      color: rgba(0, 0, 0, .72);
      font-size: clamp(.84rem, .88vw, .92rem);
      line-height: 1.3;
      font-weight: 600;
    }

    /* Grid forfaits */
    .pricing-grid {
      max-width: 1360px;
      margin: clamp(72px, 8vw, 110px) auto 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(16px, 1.5vw, 24px);
      align-items: stretch;
    }

    .plan-card {
      min-height: 0;
      position: relative;
      display: flex;
      flex-direction: column;
      padding: clamp(24px, 2.1vw, 32px) clamp(22px, 2vw, 28px);
      border-radius: var(--pp-radius-xl);
      background: var(--pp-card);
      border: 1px solid rgba(0, 0, 0, 0.045);
      box-shadow: var(--pp-shadow);
      overflow: hidden;
      transform: translateY(0);
      transition: transform .5s var(--pp-ease), box-shadow .5s var(--pp-ease), border-color .5s var(--pp-ease);
    }

    .plan-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.8), transparent 38%),
        radial-gradient(circle at 50% 0%, rgba(0, 119, 255, 0.055), transparent 36%);
      opacity: 0;
      transition: opacity .5s var(--pp-ease);
      pointer-events: none;
    }

    .plan-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--pp-shadow-strong);
      border-color: rgba(0, 0, 0, 0.1);
    }

    .plan-card:hover::before {
      opacity: 1;
    }

    .plan-card.featured {
      border-color: rgba(0, 119, 255, .2);
      box-shadow: 0 12px 24px rgba(0, 119, 255, .06), var(--pp-shadow);
    }

    .plan-head {
      position: relative;
      z-index: 1;
      min-height: 42px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: clamp(22px, 2.2vw, 30px);
    }

    .plan-name {
      font-size: clamp(1rem, 1.08vw, 1.22rem);
      letter-spacing: -0.03em;
      line-height: 1;
      font-weight: 620;
      color: var(--pp-text);
    }

    .pricing-page .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 14px;
      border-radius: var(--pp-radius-pill);
      background: var(--pp-blue);
      color: #ffffff;
      font-size: 0.76rem;
      font-weight: 680;
      white-space: nowrap;
      box-shadow: 0 6px 12px rgba(0, 119, 255, 0.10);
    }

    .price-row {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-end;
      gap: 4px;
      margin-bottom: 8px;
    }

    .price {
      font-size: clamp(2.4rem, 3.2vw, 3.4rem);
      line-height: .9;
      letter-spacing: -0.095em;
      font-weight: 500;
      color: var(--pp-text);
    }

    .tax {
      padding-bottom: 9px;
      font-size: clamp(.88rem, .92vw, .98rem);
      line-height: 1;
      letter-spacing: -0.045em;
      font-weight: 650;
      color: var(--pp-text);
    }

    .per {
      padding-bottom: 8px;
      font-size: clamp(.98rem, 1vw, 1.08rem);
      line-height: 1;
      letter-spacing: -0.05em;
      font-weight: 650;
      color: var(--pp-text);
    }

    .saving {
      position: relative;
      z-index: 1;
      min-height: 34px;
      max-width: 360px;
      color: var(--pp-blue);
      font-size: clamp(.88rem, .94vw, .98rem);
      line-height: 1.28;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .description {
      position: relative;
      z-index: 1;
      max-width: 390px;
      color: #101010;
      font-size: clamp(.9rem, .95vw, 1rem);
      line-height: 1.28;
      letter-spacing: -0.018em;
      font-weight: 460;
      margin-bottom: clamp(22px, 2.5vw, 28px);
    }

    .description strong {
      font-weight: 800;
    }

    .features {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 9px;
      margin-top: auto;
      margin-bottom: 20px;
      list-style: none;
      padding: 0;
      color: rgba(0, 0, 0, .72);
      font-size: 0.88rem;
      line-height: 1.25;
      letter-spacing: -0.018em;
    }

    .features li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin: 0;
    }

    .features li::before {
      content: "";
      flex: 0 0 7px;
      width: 7px;
      height: 7px;
      margin-top: .42em;
      border-radius: 999px;
      background: #111111;
      opacity: .85;
    }

    .start-btn {
      position: relative;
      z-index: 1;
      width: 100%;
      min-height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border: 0;
      background: #000000;
      color: #ffffff;
      border-radius: 0;
      cursor: pointer;
      font: inherit;
      font-size: clamp(0.84rem, .88vw, 0.92rem);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      text-decoration: none;
      overflow: hidden;
      transition: transform .35s var(--pp-ease), background .35s var(--pp-ease);
    }

    .start-btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .18), transparent);
      transform: translateX(-120%);
      transition: transform .75s var(--pp-ease);
    }

    .start-btn:hover {
      background: #070707;
      transform: translateY(-2px);
    }

    .start-btn:hover::after {
      transform: translateX(120%);
    }
    /* Toggle expand */
    .pricing-expand-cta {
      max-width: 1680px;
      margin: clamp(46px, 4.5vw, 68px) auto 0;
      display: flex;
      justify-content: center;
      padding: 0 24px;
    }

    .features-toggle {
      min-height: 74px;
      padding: 0 clamp(26px, 3vw, 42px);
      border: 2px solid #cfcfcf;
      background: #ececec;
      color: #111111;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      font: inherit;
      font-size: clamp(.82rem, .94vw, .98rem);
      font-weight: 800;
      letter-spacing: -0.01em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .25s ease, border-color .25s ease, transform .25s ease;
    }

    .features-toggle:hover {
      background: #e7e7e7;
      border-color: #bdbdbd;
      transform: translateY(-2px);
    }

    .features-toggle-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      font-size: 32px;
      line-height: 1;
      font-weight: 300;
      transform: translateY(-1px);
    }

    /* Accordéon comparatif */
    .pricing-accordion-wrap {
      max-width: 1680px;
      margin: 0 auto;
      padding: 0 24px;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transform: translateY(20px);
      transition: max-height .8s ease, opacity .35s ease, transform .45s ease, margin-top .45s ease;
    }

    .pricing-accordion-wrap.is-open {
      margin-top: clamp(56px, 5vw, 82px);
      max-height: 12000px;
      opacity: 1;
      overflow: visible;
      transform: translateY(0);
    }

    .pricing-accordion-item {
      /* bordures retirées : un seul item, plus de séparation nécessaire */
    }

    .pricing-accordion-head {
      width: 100%;
      min-height: 88px;
      padding: 0;
      background: transparent;
      border: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      cursor: pointer;
      font: inherit;
      color: #111111;
      text-align: left;
    }

    .pricing-accordion-title {
      font-size: clamp(1.7rem, 2.1vw, 2.15rem);
      line-height: 1;
      letter-spacing: -0.06em;
      font-weight: 500;
    }

    .pricing-accordion-head-icon {
      font-size: 34px;
      line-height: 1;
      font-weight: 300;
    }

    .pricing-accordion-panel {
      overflow: hidden;
      max-height: 0;
      transition: max-height .6s ease;
    }

    .pricing-accordion-item.is-open .pricing-accordion-panel {
      max-height: 5200px;
      overflow: visible;
    }

    /* Tableau comparatif */
    .comparison-table {
      width: 100%;
      padding: 0 0 10px;
      position: relative;
    }

    .comparison-table-head {
      position: sticky;
      top: var(--pp-sticky-top);
      z-index: 20;
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: clamp(26px, 3vw, 48px);
      align-items: center;
      padding: 26px 0 40px;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid rgba(0, 0, 0, .08);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .comparison-title-col h2 {
      margin: 0 0 18px;
      max-width: 430px;
      font-size: clamp(2rem, 2.35vw, 2.35rem);
      line-height: 1;
      letter-spacing: -0.065em;
      font-weight: 500;
      color: #111111;
    }

    .comparison-title-col p {
      max-width: 560px;
      color: rgba(0, 0, 0, .62);
      font-size: clamp(1rem, 1.12vw, 1.16rem);
      line-height: 1.32;
      letter-spacing: -0.025em;
      font-weight: 500;
    }

    .comparison-plan-col {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .comparison-plan-name {
      font-size: clamp(1rem, 1.08vw, 1.16rem);
      line-height: 1.1;
      font-weight: 700;
      letter-spacing: -0.035em;
      color: #111111;
      margin-bottom: 6px;
    }

    .comparison-plan-price {
      font-size: clamp(.98rem, 1.02vw, 1.08rem);
      line-height: 1.1;
      font-weight: 500;
      letter-spacing: -0.035em;
      color: #111111;
      margin-bottom: 18px;
    }

    .plan-dot {
      display: inline-block;
      width: 7px;
      height: 7px;
      margin-left: 6px;
      border-radius: 50%;
      background: var(--pp-blue);
      vertical-align: middle;
      transform: translateY(-1px);
    }

    .comparison-plan-btn {
      width: 100%;
      min-height: 60px;
      padding: 0 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border: 0;
      background: #000000;
      color: #ffffff;
      font: inherit;
      font-size: clamp(.82rem, .9vw, .96rem);
      font-weight: 800;
      letter-spacing: -0.01em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: opacity .25s ease, transform .25s ease;
    }

    .comparison-plan-btn:hover {
      opacity: .92;
      transform: translateY(-1px);
    }

    .comparison-row {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: clamp(26px, 3vw, 48px);
      align-items: center;
      min-height: 88px;
      border-top: 1px solid var(--pp-line);
    }

    .comparison-feature {
      font-size: clamp(1rem, 1.14vw, 1.22rem);
      line-height: 1.25;
      font-weight: 450;
      letter-spacing: -0.035em;
      color: #111111;
    }

    .feature-title {
      display: block;
      font-weight: 600;
      color: #101010;
    }

    .feature-desc {
      display: block;
      max-width: 560px;
      margin-top: 6px;
      color: rgba(0, 0, 0, .58);
      font-size: clamp(.86rem, .92vw, .98rem);
      line-height: 1.28;
      letter-spacing: -0.025em;
      font-weight: 450;
    }

    .comparison-section {
      position: relative;
      background: #ffffff;
    }

    .comparison-category {
      position: sticky;
      top: calc(var(--pp-sticky-top) + var(--pp-comparison-head-h));
      z-index: 15;
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: clamp(26px, 3vw, 48px);
      align-items: end;
      min-height: 122px;
      border-top: 1px solid #111111;
      border-bottom: 1px solid rgba(0, 0, 0, .08);
      padding: 28px 0 24px;
      background: rgba(255, 255, 255, .98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .comparison-category-title {
      grid-column: 1 / -1;
    }

    .comparison-category-title strong {
      display: block;
      margin-bottom: 8px;
      font-size: clamp(1.55rem, 2vw, 2.35rem);
      line-height: 1;
      letter-spacing: -0.06em;
      font-weight: 550;
      color: #050505;
    }

    .comparison-category-title span {
      display: block;
      max-width: 760px;
      color: rgba(0, 0, 0, .58);
      font-size: clamp(.96rem, 1vw, 1.08rem);
      line-height: 1.28;
      letter-spacing: -0.025em;
      font-weight: 500;
    }

    .comparison-value {
      text-align: center;
      font-size: clamp(.98rem, 1.06vw, 1.12rem);
      line-height: 1.22;
      font-weight: 520;
      letter-spacing: -0.035em;
      color: #111111;
    }

    .comparison-value.check {
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: 0;
    }

    .comparison-note {
      text-align: left;
      color: rgba(0, 0, 0, .64);
      font-size: clamp(.9rem, .96vw, 1rem);
      line-height: 1.25;
      font-weight: 500;
    }

    /* Section Premium + FAQ (full-width sombre) */
    .pw-premium-faq-section {
      width: 100vw;
      margin: clamp(74px, 8vw, 126px) calc(50% - 50vw) 0;
      background: #000000;
      color: #ffffff;
      padding: clamp(72px, 8vw, 120px) clamp(24px, 4vw, 52px);
      overflow: hidden;
    }

    .pw-premium-top {
      max-width: 1680px;
      margin: 0 auto clamp(72px, 7vw, 112px);
      display: grid;
      grid-template-columns: minmax(320px, 1fr) minmax(360px, .88fr);
      gap: clamp(34px, 4.2vw, 56px);
      align-items: center;
    }

    .pw-premium-copy {
      max-width: 680px;
    }

    .pw-premium-title {
      margin: 0;
      font-size: clamp(2.45rem, 4.35vw, 4.55rem);
      line-height: .92;
      letter-spacing: -0.065em;
      font-weight: 420;
      color: #ffffff;
      max-width: 12.5ch;
    }

    .pw-premium-text {
      max-width: 620px;
      margin: clamp(22px, 2vw, 30px) 0 0;
      color: rgba(255, 255, 255, .86);
      font-size: clamp(.98rem, 1.06vw, 1.18rem);
      line-height: 1.4;
      letter-spacing: -0.02em;
      font-weight: 430;
    }

    .pw-premium-btn {
      margin-top: clamp(30px, 3vw, 42px);
      min-width: min(400px, 100%);
      min-height: 72px;
      padding: 0 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      position: relative;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, .22);
      color: #ffffff;
      text-decoration: none;
      font-size: clamp(.88rem, .92vw, .98rem);
      line-height: 1;
      font-weight: 720;
      letter-spacing: -0.012em;
      text-transform: uppercase;
      transition: background .28s var(--pp-ease), border-color .28s var(--pp-ease), transform .28s var(--pp-ease);
    }

    .pw-premium-btn:hover {
      background: rgba(255, 255, 255, .065);
      border-color: rgba(255, 255, 255, .42);
      transform: translateY(-2px);
    }

    .pw-arrow {
      position: absolute;
      right: 28px;
      font-size: 1.22rem;
      line-height: 1;
      font-weight: 400;
    }

    .pw-premium-media {
      position: relative;
      width: 100%;
      max-width: 760px;
      justify-self: end;
      border-radius: 18px;
      overflow: hidden;
      background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .22), transparent 34%), linear-gradient(135deg, #2a211c, #95765e 46%, #1b1714);
    }

    .pw-premium-media img {
      width: 100%;
      aspect-ratio: 1.34 / 1;
      object-fit: cover;
      display: block;
      border-radius: 18px;
    }

    .pw-faq-block {
      max-width: 1680px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(320px, 1fr) minmax(360px, .88fr);
      gap: clamp(34px, 4.2vw, 56px);
      align-items: start;
    }

    .pw-faq-title {
      margin: 0;
      font-size: clamp(2.6rem, 4vw, 4.35rem);
      line-height: .98;
      letter-spacing: -0.08em;
      font-weight: 400;
      color: #ffffff;
    }

    .pw-faq-right {
      width: 100%;
    }

    .pw-faq-item {
      border-top: 1px solid rgba(255, 255, 255, .22);
    }

    .pw-faq-item:last-child {
      border-bottom: 1px solid rgba(255, 255, 255, .22);
    }

    .pw-faq-question {
      width: 100%;
      border: 0;
      background: transparent;
      color: #ffffff;
      padding: 26px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      text-align: left;
      cursor: pointer;
      font: inherit;
      font-size: clamp(.98rem, 1.12vw, 1.22rem);
      line-height: 1.22;
      font-weight: 500;
      letter-spacing: -0.018em;
    }

    .pw-faq-icon {
      flex: 0 0 auto;
      font-size: 1.7rem;
      line-height: 1;
      color: #ffffff;
      font-weight: 300;
      transition: transform .28s var(--pp-ease);
    }

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

    .pw-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s var(--pp-ease);
    }

    .pw-faq-answer p {
      margin: 0;
      padding: 0 90px 28px 0;
      color: rgba(255, 255, 255, .76);
      font-size: clamp(.98rem, 1.05vw, 1.08rem);
      line-height: 1.5;
      letter-spacing: -0.025em;
      font-weight: 450;
    }

    /* Animations reveal */
    .pricing-page .reveal {
      opacity: 0;
      transform: translateY(28px);
      animation: pp-reveal .8s var(--pp-ease) forwards;
    }

    .pricing-page .pricing-title.reveal {
      animation-delay: .05s;
    }

    .pricing-page .pricing-subtitle.reveal {
      animation-delay: .14s;
    }

    .pricing-page .pricing-pill.reveal {
      animation-delay: .22s;
    }

    .pricing-page .plan-card:nth-child(1) {
      animation-delay: .32s;
    }

    .pricing-page .plan-card:nth-child(2) {
      animation-delay: .42s;
    }

    .pricing-page .plan-card:nth-child(3) {
      animation-delay: .52s;
    }

    .pricing-page .pricing-expand-cta.reveal {
      animation-delay: .62s;
    }

    @keyframes pp-reveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 1180px) {

      .pw-premium-top,
      .pw-faq-block {
        grid-template-columns: 1fr;
      }

      .pw-premium-copy,
      .pw-faq-left {
        max-width: 100%;
      }

      .pw-faq-title {
        margin-bottom: 8px;
      }

      .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
      }

      .plan-card {
        min-height: 600px;
      }

      .plan-name {
        font-size: clamp(1.2rem, 1.45vw, 1.55rem);
      }

      .pricing-page .badge {
        padding: 0 14px;
        font-size: .78rem;
      }

      .price {
        font-size: clamp(2.6rem, 3.8vw, 3.8rem);
      }

      .description,
      .features {
        font-size: .88rem;
      }

      .comparison-table {
        overflow-x: auto;
        padding-bottom: 20px;
      }

      .comparison-table-head,
      .comparison-row {
        min-width: 960px;
      }
    }

    @media (max-width: 700px) {
      .pricing-page {
        padding: 54px 18px 80px;
      }

      .pricing-title {
        font-size: clamp(2.35rem, 11vw, 3.4rem);
        letter-spacing: -0.06em;
      }

      .pricing-pill {
        width: 100%;
        max-width: 420px;
        min-height: 34px;
        padding: 0 18px;
        text-align: center;
      }

      .billing-toggle {
        width: 100%;
        max-width: 360px;
        margin-bottom: 18px;
        padding: 5px;
        gap: 5px;
      }

      .billing-toggle__option {
        min-height: 44px;
        padding: 0 14px;
        font-size: .92rem;
      }

      .billing-toggle__hint {
        max-width: 320px;
        font-size: .78rem;
      }

      .pricing-grid {
        margin-top: 54px;
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .plan-card {
        min-height: auto;
        padding: 26px 22px 22px;
        border-radius: 26px;
      }

      .plan-head {
        margin-bottom: 26px;
      }

      .price {
        font-size: 3.2rem;
      }

      .per {
        font-size: 1rem;
      }

      .description {
        margin-bottom: 34px;
      }

      .start-btn {
        min-height: 58px;
      }

      .pricing-expand-cta {
        padding: 0;
      }

      .features-toggle {
        width: 100%;
        min-height: 66px;
        padding: 0 16px;
        gap: 12px;
        font-size: .72rem;
      }

      .features-toggle-icon {
        font-size: 28px;
      }

      .pricing-accordion-wrap {
        padding: 0;
      }

      .pricing-accordion-wrap.is-open {
        margin-top: 48px;
      }

      .pricing-accordion-head {
        min-height: 74px;
      }

      .pricing-accordion-title {
        font-size: 1.5rem;
      }

      .pricing-accordion-head-icon {
        font-size: 30px;
      }

      .comparison-table-head,
      .comparison-row {
        min-width: 880px;
      }

      .comparison-table-head {
        gap: 20px;
        grid-template-columns: 1.6fr repeat(3, 1fr);
        padding: 22px 0 34px;
      }

      .comparison-row {
        min-height: 82px;
        gap: 20px;
        grid-template-columns: 1.6fr repeat(3, 1fr);
      }

      .comparison-title-col h2 {
        font-size: 1.8rem;
      }

      .comparison-title-col p {
        font-size: .96rem;
      }

      .pw-premium-faq-section {
        padding: 56px 20px;
      }

      .pw-premium-top {
        gap: 38px;
        margin-bottom: 70px;
      }

      .pw-premium-btn {
        width: 100%;
        min-width: 100%;
        min-height: 58px;
        padding: 0 22px;
      }

      .pw-faq-question {
        padding: 24px 0;
        font-size: 1.05rem;
      }

      .pw-faq-icon {
        font-size: 1.8rem;
      }

      .pw-faq-answer p {
        padding: 0 12px 24px 0;
      }
    }


    /* ─────────────────────────────────────────────
       TARIFS — Harmonisation palette SEO Local+
       Palette sobre PIX|WEB : noir #050505, blanc,
       gris chrome doux, bleu CTA SEO Local+.
       ───────────────────────────────────────────── */
    :root {
      --bg: #050505;
      --bg-soft: rgba(0, 0, 0, 0.18);
      --bg-solid: rgba(0, 0, 0, 0.88);
      --text: #f5f7fb;
      --muted: #ececec;
      --line: rgba(255, 255, 255, .12);
      --accent: #ffffff;
      --accent-soft: rgba(255, 255, 255, 0.12);
      --blue: var(--accent);
      --blue-soft: var(--accent-soft);
    }

    .page-shell::before {
      background: radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .035), transparent 34%),
        radial-gradient(circle at 85% 12%, rgba(255, 255, 255, .025), transparent 28%) !important;
      background-size: auto !important;
      mask-image: none !important;
      opacity: .26 !important;
    }

    .page-shell::after {
      opacity: .06 !important;
      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) !important;
      background-size: 220px 220px !important;
      mix-blend-mode: screen !important;
    }

    .pricing-page {
      --pp-bg: #ffffff;
      --pp-text: #050505;
      --pp-muted: rgba(0, 0, 0, .58);
      --pp-blue: #0071e3;
      --pp-blue-hover: #147ce5;
      --pp-line: rgba(0, 0, 0, .105);
      --pp-card: rgba(255, 255, 255, .96);
      --pp-chrome: #f7f7f7;
      --pp-chrome-2: #eeeeee;
      --pp-shadow: 0 22px 48px rgba(0, 0, 0, .10);
      --pp-shadow-strong: 0 34px 90px rgba(0, 0, 0, .16);
      background: var(--pp-bg) !important;
      color: var(--pp-text) !important;
    }

    .pricing-page::before {
      background: radial-gradient(circle at 12% 18%, rgba(0, 0, 0, .04), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(0, 0, 0, .025), transparent 28%) !important;
      opacity: .38 !important;
    }

    .pricing-title,
    .pricing-subtitle,
    .plan-name,
    .price,
    .tax,
    .per,
    .description,
    .pricing-accordion-head,
    .comparison-title-col h2,
    .comparison-plan-name,
    .comparison-plan-price,
    .comparison-feature,
    .feature-title,
    .comparison-category-title strong,
    .comparison-value {
      color: #050505 !important;
    }

    .pricing-subtitle,
    .description,
    .features,
    .comparison-title-col p,
    .feature-desc,
    .comparison-category-title span,
    .comparison-note {
      color: rgba(0, 0, 0, .58) !important;
    }

    .pricing-pill,
    .features-toggle {
      background: linear-gradient(145deg, var(--pp-chrome) 0%, var(--pp-chrome-2) 100%) !important;
      color: #050505 !important;
      border: 1px solid rgba(0, 0, 0, .105) !important;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82), 0 14px 34px rgba(0, 0, 0, .055) !important;
    }

    .features-toggle:hover {
      background: #ffffff !important;
      border-color: rgba(0, 0, 0, .16) !important;
    }

    .plan-card {
      background: var(--pp-card) !important;
      border: 1px solid rgba(0, 0, 0, .105) !important;
      box-shadow: var(--pp-shadow) !important;
    }

    .plan-card::before {
      background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .76), transparent 26%),
        radial-gradient(circle at 82% 16%, rgba(0, 0, 0, .08), transparent 28%),
        linear-gradient(145deg, rgba(247, 247, 242, .92) 0%, rgba(238, 238, 234, .74) 100%) !important;
      opacity: 0 !important;
    }

    .plan-card:hover {
      border-color: rgba(0, 0, 0, .16) !important;
      box-shadow: var(--pp-shadow-strong) !important;
    }

    .plan-card:hover::before {
      opacity: .42 !important;
    }

    .plan-card.featured {
      border-color: rgba(0, 0, 0, .16) !important;
      box-shadow: 0 28px 80px rgba(0, 0, 0, .13), var(--pp-shadow) !important;
    }

    .pricing-page .badge,
    .saving,
    .plan-dot {
      color: #0071e3 !important;
    }

    .pricing-page .badge {
      background: #0071e3 !important;
      color: #ffffff !important;
      box-shadow: 0 18px 34px rgba(0, 113, 227, .26) !important;
    }

    .saving {
      color: #0071e3 !important;
    }

    .plan-dot {
      background: #0071e3 !important;
    }

    .start-btn,
    .comparison-plan-btn {
      background: #050505 !important;
      color: #ffffff !important;
      box-shadow: none !important;
    }

    .start-btn:hover,
    .comparison-plan-btn:hover {
      background: #000000 !important;
    }

    .features li::before {
      background: #050505 !important;
      opacity: .85 !important;
    }

    .pricing-accordion-item,
    .pricing-accordion-item:last-child,
    .comparison-row,
    .comparison-table-head,
    .comparison-category {
      border-color: rgba(0, 0, 0, .105) !important;
    }

    .comparison-table-head,
    .comparison-category {
      background: rgba(255, 255, 255, .96) !important;
      backdrop-filter: blur(18px) !important;
      -webkit-backdrop-filter: blur(18px) !important;
    }

    .comparison-section {
      background: #ffffff !important;
    }

    .pw-premium-faq-section {
      position: relative !important;
      isolation: isolate !important;
      background: #050505 !important;
      color: #ffffff !important;
    }

    .pw-premium-faq-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(circle at 80% 8%, rgba(255, 255, 255, .08), transparent 30%),
        radial-gradient(circle at 14% 82%, rgba(255, 255, 255, .045), transparent 28%);
      opacity: .42;
      z-index: -1;
    }

    .pw-premium-top,
    .pw-faq-block {
      position: relative;
      z-index: 1;
    }

    .pw-premium-media {
      background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .76), transparent 26%),
        radial-gradient(circle at 82% 16%, rgba(0, 0, 0, .08), transparent 28%),
        linear-gradient(145deg, #f6f6f6 0%, #eeeeee 100%) !important;
      border: 1px solid rgba(255, 255, 255, .10) !important;
    }

    .pw-premium-title,
    .pw-faq-title,
    .pw-faq-question,
    .pw-faq-icon {
      color: #ffffff !important;
    }

    .pw-premium-text,
    .pw-faq-answer p {
      color: rgba(255, 255, 255, .62) !important;
    }

    .pw-premium-btn {
      border-color: rgba(255, 255, 255, .14) !important;
      background: rgba(255, 255, 255, .04) !important;
      color: #ffffff !important;
      box-shadow: none !important;
    }

    .pw-premium-btn:hover {
      background: rgba(255, 255, 255, .08) !important;
      border-color: rgba(255, 255, 255, .22) !important;
    }

    .pw-faq-item,
    .pw-faq-item:last-child {
      border-color: rgba(255, 255, 255, .14) !important;
    }


    /* Suppression de la barre blanche entre FAQ et footer */
    .pricing-page {
      padding-bottom: 0 !important;
    }

    .pw-premium-faq-section {
      margin-bottom: 0 !important;
    }


    /* Image Unsplash premium — section croissance */
    .pw-premium-media img {
      filter: grayscale(.12) contrast(1.04) brightness(.92) saturate(.82);
      object-position: center center;
    }

    .pw-premium-media::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .20));
      z-index: 1;
    }

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

/* === PIXWEB TYPOGRAPHY PAGE LOCK START === */
.page-tarifs,
.page-tarifs .pricing-page {
  font-family: var(--pix-font-main) !important;
}

.page-tarifs .hero h1,
.page-tarifs .pricing-title {
  font-family: var(--pix-font-main) !important;
  font-size: var(--pix-type-hero-size) !important;
  line-height: var(--pix-type-hero-line) !important;
  letter-spacing: var(--pix-type-hero-tracking) !important;
  font-weight: var(--pix-type-hero-weight) !important;
}

.page-tarifs .services-white__title,
.page-tarifs .forfaits-section__title,
.page-tarifs .features-section__title,
.page-tarifs .contact-section__title,
.page-tarifs .comparison-title-col h2,
.page-tarifs .pw-premium-title,
.page-tarifs .pw-faq-title {
  font-family: var(--pix-font-main) !important;
  font-size: var(--pix-type-section-size) !important;
  line-height: var(--pix-type-section-line) !important;
  letter-spacing: var(--pix-type-section-tracking) !important;
  font-weight: var(--pix-type-section-weight) !important;
}

.page-tarifs .sw-card__overlay h3,
.page-tarifs .forfait-card__name,
.page-tarifs .plan-name,
.page-tarifs .pricing-accordion-title,
.page-tarifs .comparison-category-title strong,
.page-tarifs .feat-card__top h3,
.page-tarifs .pw-premium-card h3 {
  font-family: var(--pix-font-main) !important;
  font-size: var(--pix-type-card-title-size) !important;
  line-height: var(--pix-type-card-title-line) !important;
  letter-spacing: var(--pix-type-card-title-tracking) !important;
  font-weight: var(--pix-type-card-title-weight) !important;
}

.page-tarifs .faq-toggle {
  font-family: var(--pix-font-main) !important;
  font-size: var(--pix-type-faq-title-size) !important;
  line-height: var(--pix-type-faq-title-line) !important;
  letter-spacing: var(--pix-type-faq-title-tracking) !important;
  font-weight: var(--pix-type-faq-title-weight) !important;
}

.page-tarifs .pricing-subtitle,
.page-tarifs .services-white__sub,
.page-tarifs .forfaits-section__sub,
.page-tarifs .description,
.page-tarifs .comparison-title-col p,
.page-tarifs .pw-premium-text,
.page-tarifs .pw-faq-answer p {
  font-size: var(--pix-type-lead-size) !important;
  line-height: var(--pix-type-lead-line) !important;
  font-weight: var(--pix-type-lead-weight) !important;
  letter-spacing: 0 !important;
}
/* === PIXWEB TYPOGRAPHY PAGE LOCK END === */
