.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) );
  --hero-card-duration: 0.9s;
  --hero-card-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --hero-safari-side-y-adjust: 6.5px;
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 16vh, 180px) 0 72px;
  padding-bottom: clamp(235px, 25vw, 330px);
  overflow: visible;
  isolation: isolate;
  background: #d8d8d3;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto;
  min-height: calc(100vh - clamp(120px, 16vh, 180px) - 72px);
  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: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
  border: none;
  background: #050505;
  pointer-events: auto;
  transform-origin: center center;
  will-change: transform, width, height, top;
  transition:
    transform var(--hero-card-duration) var(--hero-card-ease),
    width var(--hero-card-duration) var(--hero-card-ease),
    height var(--hero-card-duration) var(--hero-card-ease),
    box-shadow var(--hero-card-duration) var(--hero-card-ease),
    top var(--hero-card-duration) var(--hero-card-ease);
}

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

.hero-card[data-state="right"] {
  width: clamp(515px, 45.45vw, 692px);
  height: clamp(284px, 25.07vw, 380px);
  z-index: 1;
  transform: translateX( calc(-50% + clamp(429px, calc(47.3vw + 24px), 704px)) ) rotate(3deg) scale(0.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, 0.46);
}

.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(0.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(0.95);
  z-index: 0;
  top: calc( (clamp(360px, 34vw, 520px) - clamp(330px, 29vw, 450px) * 0.965) / 2 );
}

/* Safari desktop : mêmes positions, animation transform-only pour éviter le recalcul WebKit. */
@media (min-width: 1081px) {
  html.is-safari .hero-card {
    width: var(--hero-safari-base-w, clamp(510px, 48vw, 720px));
    height: var(--hero-safari-base-h, var(--hero-card-center-h));
    top: 0;
    will-change: transform;
    transition:
      transform var(--hero-card-duration) var(--hero-card-ease),
      box-shadow var(--hero-card-duration) var(--hero-card-ease);
  }

  html.is-safari .hero-card[data-state="left"] {
    transform: translate3d(calc(-50% - clamp(429px, calc(47.3vw + 24px), 704px)), var(--hero-safari-side-y, calc(26px + var(--hero-safari-side-y-adjust, 6.5px))), 0) rotate(-3deg) scale(var(--hero-safari-side-scale, 0.914));
  }

  html.is-safari .hero-card[data-state="right"] {
    transform: translate3d(calc(-50% + clamp(429px, calc(47.3vw + 24px), 704px)), var(--hero-safari-side-y, calc(26px + var(--hero-safari-side-y-adjust, 6.5px))), 0) rotate(3deg) scale(var(--hero-safari-side-scale, 0.914));
  }

  html.is-safari .hero-card[data-state="center"] {
    transform: translate3d(-50%, 0, 0) rotate(0deg) scale(1);
  }

  html.is-safari .hero-card[data-state="far-left"] {
    transform: translate3d(calc(-50% - clamp(1100px, calc(46.3vw + 800px), 1600px)), var(--hero-safari-far-y, 20px), 0) rotate(-5deg) scale(var(--hero-safari-far-scale, 0.9));
  }

  html.is-safari .hero-card[data-state="far-right"] {
    transform: translate3d(calc(-50% + clamp(1100px, calc(46.3vw + 800px), 1600px)), var(--hero-safari-far-y, 20px), 0) rotate(5deg) scale(var(--hero-safari-far-scale, 0.9));
  }
}

.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: 0.16em;
  opacity: 0.9;
}

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

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

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

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

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

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

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

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

.hero-card__tag {
  position: absolute;
  left: 16px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: clamp(1rem, 1.45vw, 1.7rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: #ca6f71;
  color: #141414;
  box-shadow: 0 12px 26px rgba(0, 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, 0.65), transparent 46% ), linear-gradient( 180deg, rgba(241, 236, 224, 0.98), rgba(196, 186, 168, 0.98) );
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.16));
  transform: perspective(900px) rotateX(62deg) rotateZ(-10deg);
  transform-origin: bottom center;
}

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

.hero-card__product::after {
  content: "";
  position: absolute;
  inset: auto 15% 0 15%;
  height: 18%;
  border-radius: 999px;
  background: rgba(0, 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, 0.68);
  color: rgba(255, 255, 255, 0.68);
  display: grid;
  place-items: center;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.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, 0.1), rgba(0, 0, 0, 0.04)), url("../../../images/pixweb-pages-locales-plus.webp") center/cover no-repeat;
  filter: grayscale(0.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: 0.88;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

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

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

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

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

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

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #050505 url("../../../images/hero-poster.webp") center center / cover no-repeat;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: paint;
}

.hero__video-wrap.is-video-ready {
  background-image: none;
}

.hero__video-wrap.is-autoplay-blocked {
  background-image: url("../../../images/hero-poster.webp");
}

.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, 0.18) 36%, rgba(5, 5, 5, 0.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, 0.22) 0%, transparent 100% );
  z-index: 2;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Exception Safari/WebKit : masque les contrôles natifs de la vidéo hero.
   Ces !important sont volontaires pour éviter le bouton play Apple au-dessus du poster. */
.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-enclosure,
.hero__video::-webkit-media-controls-panel,
.hero__video::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  -webkit-appearance: none;
}

.hero__video-wrap.is-video-ready .hero__video {
  opacity: 1;
}

.hero__video-wrap.is-autoplay-blocked .hero__video {
  opacity: 0;
}

/* Chromium/WebKit : garde-fou hero video + cartes pendant le scroll. */
@supports (-webkit-touch-callout: none) or (-webkit-appearance: none) {
  .hero__video-wrap,
  .hero__video,
  .hero__cards,
  .hero-card,
  .hero-card__body,
  .hero-card__body img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}


.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, 0.22) 0%, transparent 70% );
  pointer-events: none;
  z-index: -1;
}

.hero h1 {
  margin: 0;
  display: inline-block;
  font-size: clamp(2.2rem, calc(4vw + 11px), calc(4.6rem + 11px));
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 12px 32px rgba(0, 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;
}

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

.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, 0.4));
  transform: translateY(8px) scale(1.01);
  animation: float 8s ease-in-out infinite;
}

.services-white {
  background: #fff;
  color: #111;
  padding: var(--section-y) var(--section-x);
}

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

.services-white__title {
  margin: 0 0 16px;
  font-size: clamp(44px, calc(2.82vw - 2px), 56px);
  font-weight: 400;
  letter-spacing: -0.058em;
  color: #050505;
  line-height: 0.96;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.services-white__sub {
  margin: 0;
  font-size: 15px;
  color: rgba(5, 5, 5, 0.9);
  line-height: 1.5;
  font-weight: 300;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.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(0.78rem, 0.9vw, 0.88rem);
  color: #aaa;
  cursor: pointer;
  letter-spacing: 0.005em;
  transition: color 0.2s;
  position: relative;
  font-weight: 300;
}

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

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

.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: 0 calc((100vw - clamp(300px, 60vw, 860px)) / 2);
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.sw-card {
  position: relative;
  flex: 0 0 clamp(300px, 60vw, 860px);
  height: calc(clamp(340px, 44vw, 580px) - 1px);
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  isolation: isolate;
  contain: layout paint;
}

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

.sw-card__img--forfait-web {
  background-image: url("../../../images/pixweb-forfait-web.webp");
}

.sw-card__img--reprise-site {
  background-image: url("../../../images/pixweb-reprise-site.webp");
}

.sw-card__img--projet-sur-mesure {
  background-image: url("../../../images/pixweb-projet-sur-mesure.webp");
}

.sw-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  border-radius: inherit;
  transform: translate3d(0, 0, 0) scale(1.001);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.sw-card__overlay {
  position: absolute;
  inset: 0;
  padding: clamp(34px, 4.2vw, 58px);
  background: linear-gradient( 180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.82) 100% );
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1;
  isolation: isolate;
  border-radius: inherit;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.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, 0.055) 0%, rgba(0, 0, 0, 0.022) 40%, transparent 74% ), radial-gradient( ellipse 46% 26% at 25% 82%, rgba(0, 0, 0, 0.045) 0%, rgba(0, 0, 0, 0.018) 44%, transparent 80% );
  opacity: 0.72;
}

.sw-card__overlay > * {
  position: relative;
  z-index: 1;
}

.sw-card__overlay h3 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  font-weight: var(--card-title-weight);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-shadow: 0 10px 28px rgba(0, 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);
  font-weight: var(--card-text-weight);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  letter-spacing: 0;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.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(0.9rem, 1vw, 1rem);
  font-weight: var(--card-action-weight);
  letter-spacing: -0.015em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  pointer-events: auto;
}

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

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

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

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

.sw-card__arrow {
  position: absolute;
  bottom: clamp(16px, 2vw, 28px);
  right: clamp(16px, 2vw, 28px);
  z-index: 4;
  color: #fff;
  font-size: 1.4rem;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.2s;
}

.sw-card:hover .sw-card__arrow {
  transform: translate3d(4px, 0, 0);
}

.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 0.2s, border-color 0.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 0.3s, width 0.3s;
}

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

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

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

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

.forfait-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s;
  z-index: 0;
  filter: brightness(0.88);
  border-radius: inherit;
  transform: translate3d(0, 0, 0) scale(1.001);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.forfaits-section--services #seo-local-plus .forfait-card__img {
  background-image: url("../../../images/pixweb-seo-local-plus.webp");
}

.forfaits-section--services #pages-locales-plus .forfait-card__img {
  background-image: url("../../../images/pixweb-forfait-web.webp");
}

.forfaits-section--services #google-avis-plus .forfait-card__img {
  background-image: url("../../../images/pixweb-google-avis-plus.webp");
}

.forfaits-section--services #email-pro-plus .forfait-card__img {
  background-image: url("../../../images/pixweb-email-pro-plus.webp");
}

.forfaits-section--services #meta-ads-local-plus .forfait-card__img {
  background-image: url("../../../images/pixweb-meta-ads-local-plus.webp");
}

.forfaits-section--services #fiche-google-business-plus .forfait-card__img {
  background-image: url("../../../images/pixweb-fiche-google-business.webp");
}

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

.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, 0.22);
  cursor: pointer;
  transition: background 0.3s, width 0.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, 0.16);
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

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

.france-zone {
  background: #ffffff;
  color: #050505;
  padding: clamp(46px, 5.1vw, 78px) var(--section-x) var(--section-y);
}

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

.france-zone__head {
  position: relative;
  top: -1px;
  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, 0.38);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.france-zone__title {
  margin: 0;
  font-size: clamp(44px, calc(2.82vw - 2px), 56px);
  font-weight: 400;
  letter-spacing: -0.058em;
  color: #050505;
  line-height: 0.96;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.france-zone__intro {
  margin: clamp(18px, 2vw, 26px) 0 0;
  max-width: 820px;
  color: rgba(5, 5, 5, 0.9);
  font-size: 15px;
  line-height: 1.5;
  padding-top: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.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, 0.94);
  color: #fff;
  font-size: clamp(0.95rem, 1.08vw, 1.08rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: none;
}

.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(0.9rem, 1vw, 1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.faq-section {
  background: #050505;
}

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

.faq-toggle__icon {
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 100;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.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;
  color: #ffffff;
  background: #050505;
  font-size: clamp(44px, calc(2.82vw - 2px), 56px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.058em;
  padding-top: 32px;
  padding-bottom: 32px;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.46s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.24s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.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, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

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

.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  line-height: 1;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.46s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.24s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.faq-item.is-open .faq-a {
  max-height: 260px;
  opacity: 1;
}

.faq-a p {
  margin: 0;
  padding: 0 0 22px;
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  display: block;
}

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

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

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

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

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

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

.contact-info__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
}

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

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

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

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

.contact-form__field input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  resize: none;
}

.contact-form__field select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  min-height: 49px;
  line-height: 1.3;
  padding-right: 46px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  background-image: linear-gradient( 45deg, transparent 50%, rgba(255, 255, 255, 0.55) 50% ), linear-gradient( 135deg, rgba(255, 255, 255, 0.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 textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  resize: none;
}

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

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

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

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

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

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

.contact-form__field input:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.08);
}

.contact-form__field select:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.08);
}

.contact-form__field textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.08);
}

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

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

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

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

.forfait-card__badge {
  color: #111111;
}

.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: var(--card-radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.forfaits-section .forfait-card__img {
  filter: saturate(0.94) brightness(0.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(0.98) brightness(0.9) contrast(1.06);
}

.forfaits-section .forfait-card__overlay {
  background: radial-gradient( ellipse 62% 46% at 32% 44%, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.06) 48%, transparent 78% ), linear-gradient( 90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.3) 52%, rgba(0, 0, 0, 0.54) 100% ), linear-gradient( 180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.06) 45%, rgba(0, 0, 0, 0.82) 100% );
}

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

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

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

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

.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(0.94rem, 1.02vw, 1.08rem);
  font-weight: var(--card-text-weight);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

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

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

.forfaits-section .forfait-card__body {
  flex-direction: column;
  padding-top: clamp(34px, 4.2vw, 58px);
  padding-bottom: clamp(34px, 4.2vw, 58px);
  min-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: stretch;
  justify-content: initial;
  gap: 0;
  padding: clamp(28px, 3.3vw, 42px) clamp(24px, 2.55vw, 34px);
}

.forfaits-section .forfait-card__actions .sw-card__btn {
  white-space: nowrap;
  min-height: 46px;
  min-width: 132px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: var(--card-action-weight);
  letter-spacing: -0.015em;
}

.forfaits-section__title {
  color: #050505;
  margin: 0 0 16px;
  font-weight: 400;
  letter-spacing: -0.058em;
  font-size: clamp(44px, calc(2.82vw - 2px), 56px);
  line-height: 0.96;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.forfaits-section__sub {
  font-size: 15px;
  color: rgba(5, 5, 5, 0.9);
  margin: 0 auto;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.forfaits-track {
  display: flex;
  gap: var(--forfait-gap);
  padding: 0 clamp(24px, 5vw, 80px);
  transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  --forfait-gap: 22px;
  align-items: stretch;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.forfait-card {
  position: relative;
  overflow: hidden;
  background: #050505;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s;
  flex-basis: clamp(300px, 28vw, 390px);
  flex: 0 0 clamp(330px, 29vw, 420px);
  min-height: clamp(430px, 33vw, 505px);
  border-radius: var(--card-radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  isolation: isolate;
  contain: layout paint;
}

.forfait-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient( ellipse 58% 44% at 28% 35%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.05) 46%, transparent 76% ), linear-gradient( 180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.74) 76%, rgba(0, 0, 0, 0.92) 100% );
  border-radius: inherit;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.forfait-card__body {
  position: relative;
  z-index: 2;
  color: #fff;
  flex-direction: column;
  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;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.forfaits-section .forfait-card__badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-weight: var(--card-label-weight);
  text-transform: uppercase;
  backdrop-filter: none;
  flex: 0 0 auto;
  margin-bottom: 0;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  align-self: start;
  margin: 0;
  min-height: 34px;
  padding: 8px 16px;
  font-size: clamp(0.66rem, 0.74vw, 0.76rem);
  letter-spacing: 0.22em;
}

.forfait-card__main {
  flex: 0 1 auto;
  margin-top: auto;
  margin-bottom: auto;
  align-self: center;
  max-width: 100%;
  transform: translateY(-2px);
}

.forfait-card__name {
  margin: 0;
  color: #fff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  max-width: none;
  font-size: clamp(2.05rem, 2.55vw, 3.15rem);
  line-height: 1.04;
  font-weight: var(--card-title-weight);
  letter-spacing: -0.05em;
}

.forfait-card__desc {
  margin: clamp(15px, 1.6vw, 22px) 0 0;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  min-height: 5.1em;
  margin-top: clamp(16px, 1.35vw, 20px);
  max-width: 38ch;
  font-size: clamp(0.92rem, 0.98vw, 1.02rem);
  font-weight: var(--card-text-weight);
  line-height: 1.7;
}

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

.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(0.94rem, 1vw, 1rem);
  font-weight: var(--card-action-weight);
  white-space: nowrap;
}

.forfaits-section {
  background: linear-gradient( to bottom, #ffffff 0%, #ffffff 38%, #050505 100% );
  padding: clamp(80px, 10vw, 140px) 0;
  padding-top: clamp(70px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 120px);
  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;
  transition: none;
  will-change: auto;
}

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

.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(0.9rem, 0.96vw, 0.98rem);
  font-weight: var(--card-action-weight);
}

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

.forfaits-section--services .forfait-card__actions .sw-card__btn {
  min-height: 46px;
  padding: 0 22px;
  font-size: clamp(0.9rem, 0.96vw, 0.98rem);
  font-weight: var(--card-action-weight);
}

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

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

.services-white--offers .services-white__title {
  margin: 0 0 16px;
  font-size: clamp(44px, calc(2.82vw - 2px), 56px);
  font-weight: 400;
  letter-spacing: -0.058em;
  color: #050505;
  line-height: 0.96;
  margin-bottom: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.services-white--offers .services-white__sub {
  margin: 0 auto;
  max-width: 980px;
  font-size: 15px;
  color: rgba(5, 5, 5, 0.9);
  line-height: 1.5;
  font-weight: 300;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.forfaits-section--services .forfaits-section__sub {
  margin: 0 auto;
  font-size: 15px;
  color: rgba(5, 5, 5, 0.9);
  line-height: 1.5;
  font-weight: 300;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.forfaits-section--services .sw-pill {
  font-size: 17px;
  color: rgba(5, 5, 5, 0.82);
  cursor: pointer;
  letter-spacing: -0.014em;
  transition: color 0.2s;
  position: relative;
  font-weight: 400;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

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

.contact-section__title {
  font-size: clamp(44px, calc(2.82vw - 2px), 56px);
  line-height: 0.96;
  margin: 0 0 20px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: -0.058em;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.forfaits-section--services .forfaits-section__title {
  font-size: clamp(44px, calc(2.82vw - 2px), 56px);
  line-height: 0.96;
  margin: 0 0 16px;
  font-weight: 400;
  letter-spacing: -0.058em;
  color: #050505;
  margin-bottom: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.faq-toggle {
  font-size: clamp(44px, calc(2.82vw - 2px), 56px);
  line-height: 0.96;
  position: relative;
  top: -1px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: var(--section-y-compact) var(--section-x);
  background: #050505;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 400;
  letter-spacing: -0.058em;
  cursor: pointer;
  transition: background 0.25s;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 32px;
  padding-bottom: 32px;
}

.services-white--offers .sw-carousel {
  --sw-offer-card-w: clamp(300px, 60vw, 860px);
  --sw-offer-card-h: clamp(340px, 44vw, 580px);
  --sw-offer-gap: 20px;
  --sw-offer-step: calc(var(--sw-offer-card-w) + var(--sw-offer-gap));
  margin: 0 calc(-1 * clamp(24px, 5vw, 80px));
  overflow: hidden;
}

.services-white--offers .sw-carousel__track {
  position: relative;
  display: block;
  height: var(--sw-offer-card-h);
  gap: 0;
  padding: 0;
  transition: none;
  transform: translate3d(0, 0, 0);
}

.services-white--offers .sw-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--sw-offer-card-w);
  height: var(--sw-offer-card-h);
  flex: 0 0 var(--sw-offer-card-w);
  border-radius: var(--card-radius);
  transition:
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.services-white--offers .sw-card[data-state="center"] {
  z-index: 3;
  transform: translate3d(-50%, 0, 0);
}

.services-white--offers .sw-card[data-state="left"] {
  z-index: 2;
  transform: translate3d(calc(-50% - var(--sw-offer-step)), 0, 0);
}

.services-white--offers .sw-card[data-state="right"] {
  z-index: 2;
  transform: translate3d(calc(-50% + var(--sw-offer-step)), 0, 0);
}

.services-white--offers .sw-card[data-state="far-right"] {
  z-index: 1;
  transform: translate3d(calc(-50% + var(--sw-offer-step) + var(--sw-offer-step)), 0, 0);
}

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

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

.forfaits-section--services .services-white__pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
  margin: 56px auto 58px;
}

.forfaits-section--services .forfaits-section__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: clamp(22px, 2.6vw, 34px);
}

.forfaits-section--services {
  background: #ffffff;
  padding: clamp(32px, 3.6vw, 56px) 0 clamp(38px, 4.6vw, 72px);
  overflow: hidden;
  color: #111111;
  --forfait-gap: 22px;
  --service-card-w: min( 430px, calc((100vw - 96px - (2 * var(--forfait-gap))) / 3) );
}

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

.forfaits-section--services .forfaits-track {
  background: #ffffff;
  display: flex;
  padding: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  gap: var(--forfait-gap);
}

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

.forfaits-section--services .forfait-card {
  min-height: clamp(425px, calc(34vw - 5px), 515px);
  background-clip: padding-box;
  flex: 0 0 var(--service-card-w);
  width: var(--service-card-w);
  max-width: var(--service-card-w);
  box-shadow: none;
}

.services-white--offers .sw-card__overlay h3 {
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.52), 0 3px 10px rgba(0, 0, 0, 0.4), 0 1px 1px rgba(0, 0, 0, 0.45);
  font-family: inherit;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #fff;
}

.services-white--offers .sw-card__overlay p {
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.48), 0 2px 8px rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.92);
}

.forfaits-section--services .forfait-card__img {
  filter: saturate(0.98) brightness(0.96) contrast(1.02);
}

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

.forfaits-section--services .forfait-card__name {
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.52), 0 3px 10px rgba(0, 0, 0, 0.4), 0 1px 1px rgba(0, 0, 0, 0.45);
  min-height: calc(1.06em * 2);
  display: flex;
  align-items: flex-end;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 32px;
  line-height: 1.08;
  font-weight: var(--card-title-weight);
  letter-spacing: -0.055em;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.forfaits-section--services .forfait-card__name--singleline {
  max-width: 100%;
  width: 100%;
  min-height: calc(1.06em * 2);
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
  font-size: 32px;
  letter-spacing: -0.055em;
}

@media (min-width: 1600px) {
  .hero {
    --hero-wide-rail: min(100vw, var(--layout-shell-max));
  }

  .hero__inner {
    width: min(1200px, calc(var(--hero-wide-rail) - 96px));
  }

  .hero__cards {
    width: var(--hero-wide-rail);
  }

  .sw-carousel,
  .services-white--offers .sw-carousel {
    margin-left: calc(-1 * var(--section-x));
    margin-right: calc(-1 * var(--section-x));
  }

  .sw-carousel__footer,
  .services-white--offers .services-white__head,
  .forfaits-section--services .forfaits-section__head {
    padding-left: var(--section-x);
    padding-right: var(--section-x);
  }

  .sw-play {
    right: var(--section-x);
  }

  .forfaits-section--services {
    --service-card-w: min(430px, calc((var(--layout-wide-max) - 96px - (2 * var(--forfait-gap))) / 3));
  }

  .forfaits-section--services .forfaits-carousel {
    max-width: calc(var(--layout-wide-max) - 96px);
  }
}

@media (max-width: 760px) {
  .forfaits-section--services .forfait-card__name--singleline {
    font-size: clamp(22px, 6.2vw, 28px);
    letter-spacing: -0.065em;
  }
}

.forfaits-section--services .forfait-card__desc {
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.48), 0 2px 8px rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.86);
  min-height: calc(1.68em * 4);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.42;
  font-weight: var(--card-text-weight);
  letter-spacing: -0.018em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.services-white--offers .sw-card__overlay {
  background: linear-gradient( 180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.23) 42%, rgba(0, 0, 0, 0.72) 100% ), radial-gradient( ellipse 66% 52% at 28% 34%, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.09) 48%, transparent 80% );
}

.services-white--offers .sw-card__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient( ellipse 60% 46% at 26% 34%, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.07) 48%, transparent 80% ), radial-gradient( ellipse 64% 34% at 28% 84%, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.06) 50%, transparent 82% );
  opacity: 0.9;
}

.forfaits-section--services .forfait-card__overlay {
  background: linear-gradient( 180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.23) 42%, rgba(0, 0, 0, 0.72) 100% ), radial-gradient( ellipse 66% 50% at 30% 36%, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.09) 48%, transparent 80% );
}

html.is-safari .services-white--offers .sw-carousel__track,
html.is-safari .forfaits-section--services .forfaits-track {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

html.is-safari .services-white--offers .sw-card,
html.is-safari .forfaits-section--services .forfait-card {
  contain: paint;
}

.services-white--offers {
  padding: var(--section-y) var(--section-x) clamp(34px, 4.2vw, 62px);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(32px, 5vw, 80px);
  padding: var(--section-y-compact) var(--section-x) var(--section-y);
  max-width: 1300px;
  margin: 0 auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.contact-section {
  background: #050505;
  padding: var(--section-y) var(--section-x);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-white--offers .services-white__pills {
  gap: 42px;
  margin-top: 56px;
  margin-bottom: 58px;
}

.services-white--offers .sw-pill {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.014em;
  color: rgba(5, 5, 5, 0.82);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.services-white--offers .sw-pill--active {
  color: #050505;
  font-weight: 400;
}

.forfaits-section--services .forfait-card__badge {
  font-size: 11px;
  font-weight: var(--card-label-weight);
  letter-spacing: 0.26em;
}

.contact-section__sub {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: -0.01em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 860px) {

  .contact-section__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-form {
    grid-column: 1;
    grid-row: auto;
  }

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

  .forfaits-section--services .forfaits-section__title {
    font-size: clamp(35px, calc(10.2vw - 1px), 45px);
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .services-white--offers .services-white__title {
    font-size: clamp(35px, calc(10.2vw - 1px), 45px);
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .forfaits-section--services .forfaits-section__sub {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: -0.01em;
  }

  .services-white--offers .services-white__sub {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: -0.01em;
  }

  .services-white__title {
    font-size: clamp(35px, calc(10.2vw - 1px), 45px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .forfaits-section__title {
    font-size: clamp(35px, calc(10.2vw - 1px), 45px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .france-zone__title {
    font-size: clamp(35px, calc(10.2vw - 1px), 45px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .contact-section__title {
    font-size: clamp(35px, calc(10.2vw - 1px), 45px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .faq-toggle {
    font-size: clamp(35px, calc(10.2vw - 1px), 45px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .services-white__sub {
    font-size: 15px;
    line-height: 1.5;
  }

  .forfaits-section__sub {
    font-size: 15px;
    line-height: 1.5;
  }

  .france-zone__intro {
    font-size: 15px;
    line-height: 1.5;
  }

  .contact-section__sub {
    font-size: 15px;
    line-height: 1.5;
  }}

@media (max-width: 1080px) {
.hero-card {
    width: 100%;
    height: 380px;
    left: auto;
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
  }

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

  .hero-card[data-state="left"] {
    display: none;
  }

  .hero-card[data-state="right"] {
    display: none;
  }


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

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

  .hero {
    padding-bottom: 140px;
  }

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

  .hero-card--left {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    height: 280px;
  }

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

  .hero-card--right {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    height: 280px;
  }

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

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

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

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

  .forfaits-section--services {
    padding: clamp(32px, 3.6vw, 56px) 0 clamp(38px, 4.6vw, 72px);
    overflow: hidden;
    background: #ffffff;
    color: #111111;
    --forfait-gap: 22px;
    --service-card-w: min( 430px, calc((100vw - 96px - (2 * var(--forfait-gap))) / 3) );
  }

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

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

  .hero-card__frame {
    padding: 14px;
  }

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

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

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

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

  .sw-card__overlay {
    padding: 26px;
  }

  .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: 0.92rem;
    line-height: 1.6;
  }

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

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

  .forfaits-track {
    --forfait-gap: 16px;
    padding-inline: 18px;
  }

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

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

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

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

  .hero h1 {
    white-space: normal;
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.06;
  }

  .services-white__title {
    font-size: clamp(1.95rem, 9vw, 2.75rem);
    line-height: 1.06;
  }

  .forfaits-section__title {
    font-size: clamp(1.95rem, 9vw, 2.75rem);
    line-height: 1.06;
  }

  .contact-section__title {
    font-size: clamp(1.95rem, 9vw, 2.75rem);
    line-height: 1.06;
  }

  .services-white--offers .services-white__title {
    font-size: 38px;
    line-height: 1.06;
  }

  .forfaits-section--services .forfaits-section__title {
    font-size: 28px;
    line-height: 1.06;
  }

  .faq-toggle {
    font-size: clamp(44px, calc(2.82vw - 2px), 56px);
    line-height: 0.96;
    padding: var(--section-y-compact) var(--section-x);
  }

  .hero__copy {
    padding-inline: 18px;
  }

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

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

  .forfaits-section .forfait-card {
    flex-basis: min(88vw, 420px);
    min-height: 500px;
    border-radius: var(--card-radius);
  }

  .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: 0.95rem;
    line-height: 1.55;
  }

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

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

  .forfaits-section .forfait-card__actions .sw-card__btn {
    min-height: 46px;
    min-width: 130px;
    padding: 0 20px;
    font-size: 0.94rem;
  }

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

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

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

  .forfait-card__desc {
    margin-top: 16px;
    max-width: 34ch;
    font-size: 0.9rem;
    line-height: 1.55;
    min-height: auto;
  }

  .forfait-card__actions {
    gap: 10px;
  }

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

  .services-white--offers .services-white__head {
    padding: 0 24px;
    margin-bottom: 34px;
  }

  .forfaits-section--services .forfaits-section__head {
    padding: 0 24px;
    margin-bottom: 34px;
  }

  .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: var(--card-radius);
  }

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

  .services-white--offers .sw-card__overlay h3 {
    font-size: 38px;
    line-height: 1.05;
  }

  .services-white--offers {
    padding: var(--section-y) var(--section-x) clamp(28px, 4vw, 48px);
  }

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

  .contact-section {
    padding: var(--section-y) var(--section-x);
  }

  .services-white--offers .sw-card__overlay {
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0.76) 100% ), radial-gradient( ellipse 76% 52% at 36% 34%, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 48%, transparent 82% );
  }

  .forfaits-section--services .forfait-card__overlay {
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0.76) 100% ), radial-gradient( ellipse 76% 52% at 36% 34%, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 48%, transparent 82% );
  }

  .faq-grid {
    padding: var(--section-y-compact) var(--section-x) var(--section-y);
  }

  .forfaits-section--services .forfaits-section__sub {
    font-size: 15px;
  }

  .services-white--offers .services-white__sub {
    font-size: 15px;
  }

  .forfaits-section--services .sw-pill {
    font-size: 15px;
  }

  .services-white--offers .sw-pill {
    font-size: 15px;
  }

  .forfaits-section--services .forfait-card__name {
    font-size: 28px;
  }

  .forfaits-section--services .forfait-card__desc {
    font-size: 15px;
  }

  .faq-section.is-open .faq-toggle {
    font-size: clamp(44px, calc(2.82vw - 2px), 56px);
    line-height: 0.96;
  }}

@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: 52px 18px var(--section-y);
  }

  .france-zone__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

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

  .france-zone__intro {
    font-size: 0.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: 0.92rem;
  }

  .france-zone__tags {
    gap: 10px;
  }

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

@media (max-width: 768px) {
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 clamp(32px, 5vw, 80px);
    padding: var(--section-y-compact) var(--section-x) var(--section-y);
    max-width: 1300px;
    margin: 0 auto;
  }}

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

@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 {
    min-height: 0;
  }

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

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

/* PIX|WEB — styles de la page d’accueil. */

.stats-section__tagline {
  position: relative;
  top: -22px;
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.72);
}


.stats-section__grid {
  position: relative;
  top: -22px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(90px, 6vw, 110px);
  flex-wrap: wrap;
}


.reviews-section {
  background: #050505;
  color: #ffffff;
  padding: var(--section-y) var(--section-x);
  overflow: hidden;
}


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


.reviews-section__head {
  position: relative;
  top: -1px;
  display: grid;
  grid-template-columns: minmax(320px, 760px) 164px;
  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, 0.52);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


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


.reviews-section__title {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(44px, calc(2.82vw - 2px), 56px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.058em;
  color: #ffffff;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.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%, 164px);
  min-height: 142px;
  padding: 14px;
  border-radius: var(--card-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient( 180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02) );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
}


.reviews-rating__score {
  font-size: clamp(2.05rem, 2.75vw, 3.05rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 300;
}


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


.reviews-rating__count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: var(--card-meta-weight);
  line-height: 1.35;
}


.reviews-section__desc {
  max-width: 760px;
  margin: clamp(18px, 2vw, 26px) 0 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.78);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.reviews-carousel {
  overflow: hidden;
}


.reviews-track {
  --reviews-gap: 28px;
  display: flex;
  gap: var(--reviews-gap);
  width: 100%;
  transition: transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


.review-card {
  flex: 0 0 calc((100% - (3 * var(--reviews-gap))) / 4);
  min-width: 0;
  height: 332px;
  min-height: 332px;
  padding: 30px 30px 24px;
  border-radius: var(--card-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient( circle at top left, rgba(255, 255, 255, 0.1), transparent 42% ), linear-gradient( 180deg, rgba(255, 255, 255, 0.055), rgba(145, 145, 145, 0.04) );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  backdrop-filter: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout paint;
}


.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, 0.14);
  background: linear-gradient( 180deg, rgba(190, 190, 190, 0.18), rgba(95, 95, 95, 0.1) );
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: -0.04em;
  flex: 0 0 auto;
}


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


.review-card__name {
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: rgba(255, 255, 255, 0.94);
}


.review-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.94rem;
  font-weight: var(--card-meta-weight);
  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, 0.18);
  background: rgba(160, 160, 160, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: -0.006em;
  white-space: nowrap;
}


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


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


.review-card__time {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.94rem;
  font-weight: var(--card-meta-weight);
  line-height: 1.2;
}


.review-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: var(--card-text-weight);
  line-height: 1.62;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.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, 0.22);
  border-radius: 999px;
}


.review-card__footer {
  margin-top: 16px;
  padding-top: 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.94rem;
  font-weight: var(--card-text-weight);
  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, 0.28);
  cursor: pointer;
  transition: background 0.3s, width 0.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, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}


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


.features-section__title {
  margin: 0;
  font-size: clamp(44px, calc(2.82vw - 2px), 56px);
  font-weight: 400;
  letter-spacing: -0.058em;
  color: #050505;
  line-height: 0.96;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.features-section__desc {
  margin: clamp(18px, 2vw, 26px) 0 0;
  max-width: 760px;
  font-size: 15px;
  color: rgba(5, 5, 5, 0.9);
  line-height: 1.5;
  padding-top: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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


.features-section__track {
  display: flex;
  gap: var(--fg);
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.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: var(--card-radius);
  padding: clamp(20px, 2.2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout paint;
}


.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(0.95rem, 1.3vw, 1.18rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}


.feat-card__top p {
  margin: 0;
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  font-weight: var(--card-text-weight);
  color: rgba(255, 255, 255, 0.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(0.88);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.3s;
}


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


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


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


.features-section__head {
  position: relative;
  top: -1px;
  display: block;
  max-width: 900px;
  margin-bottom: clamp(36px, 4.5vw, 62px);
}


.features-section__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: clamp(22px, 2.6vw, 34px);
}


.features-section {
  --fp: var(--section-x);
  --fg: 14px;
  background: #fff;
  padding: clamp(46px, 5.1vw, 78px) var(--fp) clamp(38px, 4.6vw, 70px);
}


.stats-section__item {
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}


.stats-section__number {
  font-size: clamp(44px, calc(2.82vw - 2px), 56px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.058em;
  color: #ffffff;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.stats-section__label {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.stats-section > .stats-section__tagline {
  position: relative;
  top: -18px;
}


.stats-section > .stats-section__grid {
  position: relative;
  top: -18px;
}


.stats-section {
  background: #000000;
  padding: var(--section-y) 28px;
  text-align: center;
  margin-top: -1px;
}


@media (max-width: 860px) {
.stats-section__tagline {
    margin-bottom: 56px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
  }

.stats-section__grid {
    gap: 46px;
  }

.stats-section__item {
    min-width: min(100%, 260px);
    gap: 14px;
  }

.stats-section__number {
    font-size: clamp(35px, calc(10.2vw - 1px), 45px);
    letter-spacing: -0.055em;
  }

.stats-section__label {
    font-size: 12px;
  }


.features-section__title {
    font-size: clamp(35px, calc(10.2vw - 1px), 45px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

.reviews-section__title {
    font-size: clamp(35px, calc(10.2vw - 1px), 45px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

.features-section__desc {
    font-size: 15px;
    line-height: 1.5;
  }
}


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

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


@media (max-width: 760px) {
.features-section__title {
    font-size: clamp(1.95rem, 9vw, 2.75rem);
    line-height: 1.06;
  }

.reviews-section__title {
    font-size: clamp(1.95rem, 9vw, 2.75rem);
    line-height: 1.06;
  }

.stats-section__number {
    font-size: clamp(2.1375rem, calc(9vw - 1px), 3.1375rem);
    line-height: 1.06;
  }

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

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


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

.features-section__head {
    margin-bottom: 34px;
  }

.features-section {
    padding: 52px var(--section-x) 46px;
  }
}


@media (max-width: 640px) {
.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: 0.96rem;
  }

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


@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: var(--section-y) 18px;
  }

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

.reviews-rating {
    width: min(100%, 154px);
    min-height: 132px;
    padding: 14px;
  }

.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 {
    justify-self: center;
  }

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