.hero.pw-hero {
  --pw-hero-duration: 6500ms;
  --pw-cinema-close: 780ms;
  --pw-cinema-open: 920ms;
  --pw-thumb-duration: 680ms;
  --pw-ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
  --pw-text: #ffffff;
  --pw-glass: rgba(0, 0, 0, 0.18);
  --pw-font:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --pw-title-size: clamp(2.9rem, 5.35vw, 5.25rem);
  --pw-title-size-md: clamp(2.7rem, 5.9vw, 4.75rem);
  --pw-title-size-sm: clamp(2.35rem, 10vw, 3.75rem);
  --pw-title-size-xs: clamp(2.15rem, 10vw, 3.15rem);
  --pw-title-line: 1;
  --pw-title-spacing: -0.06em;
  --pw-title-block-height: clamp(6.8rem, 10.8vw, 10.5rem);
  --pw-shadow-text:
    0 1px 1px rgba(0, 0, 0, 0.42), 0 12px 38px rgba(0, 0, 0, 0.36),
    0 34px 96px rgba(0, 0, 0, 0.28);
  --pw-shadow-title:
    0 1px 1px rgba(0, 0, 0, 0.42), 0 18px 62px rgba(0, 0, 0, 0.42),
    0 42px 118px rgba(0, 0, 0, 0.32);
  position: relative;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: unset;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.hero.pw-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(180px, 28vh, 360px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.04) 18%,
    rgba(0, 0, 0, 0.12) 36%,
    rgba(0, 0, 0, 0.28) 56%,
    rgba(0, 0, 0, 0.52) 76%,
    rgba(0, 0, 0, 0.78) 90%,
    #050505 100%
  );
}

.pw-hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pw-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pw-hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: grayscale(0.7) contrast(1.04) brightness(0.9);
  will-change: transform;
}

.pw-hero__slide.is-active .pw-hero__image {
  animation: pixwebHeroZoom var(--pw-hero-duration) linear forwards;
}

@keyframes pixwebHeroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.105);
  }
}

.pw-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      ellipse at var(--pw-halo-x, 28%) var(--pw-halo-y, 54%),
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.06) 34%,
      transparent 70%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, var(--pw-left-dark, 0.24)) 0%,
      rgba(0, 0, 0, 0.08) 45%,
      rgba(0, 0, 0, var(--pw-right-dark, 0.24)) 100%
    );
  pointer-events: none;
}

.pw-hero__slide--brand {
  --pw-halo-x: 32%;
  --pw-halo-y: 56%;
  --pw-left-dark: 0.16;
  --pw-right-dark: 0.24;
}

.pw-hero__slide--vision {
  --pw-halo-x: 50%;
  --pw-halo-y: 60%;
  --pw-left-dark: 0.24;
  --pw-right-dark: 0.34;
}

.pw-hero__slide--impact {
  --pw-halo-x: 56%;
  --pw-halo-y: 62%;
  --pw-left-dark: 0.3;
  --pw-right-dark: 0.3;
}

.pw-hero__slide--impact .pw-hero__image {
  filter: saturate(0.9) contrast(1.04) brightness(0.86);
}

.pw-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 var(--section-x);
}

.pw-hero__content {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: start;
  min-height: var(--pw-title-block-height);
  max-width: min(100%, 1080px);
  text-shadow: var(--pw-shadow-text);
}

.pw-hero__content::before {
  content: "";
  position: absolute;
  inset: -34px -54px -38px;
  z-index: -1;
  background: radial-gradient(
    ellipse at 28% 62%,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.1) 42%,
    transparent 76%
  );
  filter: blur(34px);
  pointer-events: none;
}

.pw-hero__slide--brand .pw-hero__inner {
  align-items: center;
  justify-content: flex-start;
}

.pw-hero__slide--brand .pw-hero__content {
  margin-left: clamp(0px, 4vw, 80px);
}

.pw-hero__slide--vision .pw-hero__inner {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pw-hero__slide--vision .pw-hero__content {
  width: min(100%, 940px);
  justify-items: center;
}

.pw-hero__slide--impact .pw-hero__inner {
  align-items: center;
  justify-content: flex-end;
}

.pw-hero__slide--impact .pw-hero__content {
  width: min(100%, 680px);
  margin-right: clamp(0px, 4vw, 80px);
  justify-items: end;
  text-align: right;
}

.pw-hero__title {
  margin: 0;
  color: var(--pw-text);
  font-family: var(--pw-font);
  font-size: var(--pw-title-size);
  font-weight: 300;
  line-height: var(--pw-title-line);
  letter-spacing: var(--pw-title-spacing);
  text-transform: none;
  text-shadow: var(--pw-shadow-title);
  display: block;
  padding-block: 0.08em 0.1em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pw-hero__cinema {
  position: absolute;
  inset: 0;
  z-index: 80;
  background:
    radial-gradient(circle at 50% 48%, rgba(14, 14, 14, 0.98), #050505 72%),
    #050505;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--pw-cinema-open) var(--pw-ease-luxe);
  will-change: opacity;
}

.pw-hero__cinema.is-active {
  opacity: 0.98;
  transition-duration: var(--pw-cinema-close);
}

.pw-hero__footer {
  position: absolute;
  right: var(--section-x);
  bottom: clamp(22px, 4vh, 54px);
  z-index: 60;
  pointer-events: none;
  transition:
    right var(--pw-thumb-duration) var(--pw-ease-luxe),
    left var(--pw-thumb-duration) var(--pw-ease-luxe);
}

.pw-hero--thumbs-left .pw-hero__footer {
  right: auto;
  left: var(--section-x);
}

.pw-hero--thumbs-right .pw-hero__footer {
  right: var(--section-x);
  left: auto;
}

.pw-hero__thumbs {
  display: flex;
  align-items: flex-end;
  gap: clamp(9px, 1.05vw, 14px);
  min-width: clamp(260px, 24vw, 350px);
  min-height: clamp(78px, 7vw, 112px);
  perspective: 900px;
  pointer-events: auto;
}

.pw-hero__thumb {
  display: grid;
  color: var(--pw-text);
  transform-style: preserve-3d;
  transition:
    order 0ms,
    opacity var(--pw-thumb-duration) var(--pw-ease-luxe),
    transform var(--pw-thumb-duration) var(--pw-ease-luxe);
  will-change: transform, opacity;
}

.pw-hero__thumb[data-thumb-state="prev"] {
  order: 1;
  opacity: 0.56;
  transform: translateY(4px) scale(0.88) rotateY(8deg);
  transform-origin: right center;
}

.pw-hero__thumb[data-thumb-state="active"] {
  order: 2;
  opacity: 1;
  transform: translateY(-8px) scale(1.08) translateZ(24px);
  transform-origin: center center;
}

.pw-hero__thumb[data-thumb-state="next"] {
  order: 3;
  opacity: 0.56;
  transform: translateY(4px) scale(0.88) rotateY(-8deg);
  transform-origin: left center;
}

.pw-hero__thumb-button {
  width: clamp(70px, 7vw, 112px);
  aspect-ratio: 1.32;
  overflow: hidden;
  border: 1px solid transparent;
  background: var(--pw-glass);
  opacity: 1;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
  transition:
    border-color var(--pw-thumb-duration) var(--pw-ease-luxe),
    box-shadow var(--pw-thumb-duration) var(--pw-ease-luxe);
}

.pw-hero__thumb[data-thumb-state="active"] .pw-hero__thumb-button {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.pw-hero__thumb-button:hover,
.pw-hero__thumb-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
}

.pw-hero__thumb-button img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: grayscale(0.92) contrast(1.06) brightness(0.9);
  transform: scale(1.03);
  transition: transform var(--pw-thumb-duration) var(--pw-ease-luxe);
}

.pw-hero__thumb[data-thumb-state="active"] .pw-hero__thumb-button img {
  transform: scale(1.08);
}

@media (max-width: 1180px) {
  .hero.pw-hero {
    --pw-title-block-height: clamp(6.3rem, 12vw, 9.6rem);
  }

  .pw-hero__title {
    font-size: var(--pw-title-size-md);
  }
}

@media (max-width: 980px) {
  .pw-hero__slide--brand .pw-hero__content,
  .pw-hero__slide--impact .pw-hero__content {
    margin: 0;
  }

  .pw-hero__slide--vision .pw-hero__inner,
  .pw-hero__slide--impact .pw-hero__inner {
    justify-content: flex-start;
    text-align: left;
  }

  .pw-hero__slide--vision .pw-hero__content,
  .pw-hero__slide--impact .pw-hero__content {
    width: min(100%, 720px);
    margin-inline: 0;
    justify-items: start;
    text-align: left;
  }

  .pw-hero__footer,
  .pw-hero--thumbs-left .pw-hero__footer,
  .pw-hero--thumbs-right .pw-hero__footer {
    right: var(--section-x);
    left: auto;
    bottom: 24px;
  }

  .pw-hero__thumbs {
    min-width: 232px;
  }
}

@media (max-width: 767px) {
  .pw-hero__image {
    object-position: center;
  }

  .pw-hero__slide--brand .pw-hero__image {
    object-position: 58% center;
  }

  .pw-hero__slide--vision .pw-hero__image {
    object-position: 50% center;
  }

  .pw-hero__slide--impact .pw-hero__image {
    object-position: 45% center;
  }

  .pw-hero__content {
    width: 100%;
  }

  .pw-hero__content::before {
    inset: -22px -28px -26px;
    filter: blur(28px);
  }

  .hero.pw-hero {
    --pw-title-block-height: clamp(5.2rem, 20vw, 7.8rem);
  }

  .pw-hero__title {
    font-size: var(--pw-title-size-sm);
    line-height: 1.02;
    letter-spacing: -0.056em;
  }

  .pw-hero__thumbs {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero.pw-hero {
    --pw-title-block-height: clamp(4.8rem, 19vw, 6.9rem);
  }

  .pw-hero__title {
    font-size: var(--pw-title-size-xs);
  }
}

@media (max-height: 700px) and (max-width: 900px) {
  .hero.pw-hero {
    --pw-title-block-height: clamp(4.5rem, 17vw, 6.4rem);
  }

  .pw-hero__title {
    font-size: clamp(1.95rem, 8.4vw, 3.05rem);
  }
}

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

.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("../../site/images/shared/menu/pixweb-seo-local-plus.webp");
}

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

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

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

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

.forfaits-section--services #fiche-google-business-plus .forfait-card__img {
  background-image: url("../../site/images/pages/fiche-google-business-plus/sections/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: var(--card-radius);
  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-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);
}

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

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

.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) {
  .services-white--offers .services-white__head,
  .forfaits-section--services .forfaits-section__head {
    padding-left: var(--section-x);
    padding-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;
}

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

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

.services-white--offers .premium-carousel {
  --page-bg: #ffffff;
  --card-bg: #21140e;
  --panel-bg: #fff8ed;
  --text-light: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.82);
  --text-dark: #241209;
  --brown: #4b210f;
  --border: rgba(68, 43, 27, 0.22);
  --dot: rgba(36, 18, 9, 0.22);
  --dot-progress-duration: 5000ms;

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

  --offer-title-size: clamp(16px, calc(3.35vw - 15px), 35px);
  --offer-title-weight: 300;

  --section-x: clamp(20px, 3.2vw, 56px);
  --section-y: clamp(24px, 5vh, 64px);
  --footer-gap: clamp(18px, 3vh, 34px);

  --slide-width-trim: 100px;
  --slide-width: min(1080px, calc(68vw - var(--slide-width-trim)));
  --slide-gap: clamp(28px, 3vw, 56px);
  --slide-content-x: clamp(24px, 3vw, 42px);
  --slide-content-y: clamp(22px, 2.8vw, 38px);

  --radius-card: 8px;
  --radius-panel: var(--radius-card);
  --panel-width: clamp(340px, 29vw, 500px);
  --panel-padding: clamp(14px, 1.35vw, 20px);
  --panel-bottom: clamp(32px, 6vh, 76px);
  --panel-lift: 10px;

  --control-size: 38px;
  --control-gap: 10px;
  --carousel-height-trim: 100px;
  --speed: 3000ms;
  --ease: cubic-bezier(0.12, 0.86, 0.22, 1);

  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  row-gap: var(--footer-gap);
  width: 100%;
  height: calc(100svh - var(--carousel-height-trim));
  max-height: calc(100svh - var(--carousel-height-trim));
  overflow: hidden;
  padding: var(--section-y) 0;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.92),
      transparent 38%
    ),
    var(--page-bg);
  color: var(--text-dark);
  font-family: var(--font-ui);
}

.services-white--offers .carousel__viewport {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  cursor: default;
  touch-action: pan-y;
  user-select: none;
}

.services-white--offers .carousel__viewport.is-dragging {
  cursor: default;
}

@media (hover: none), (pointer: coarse) {
  .services-white--offers .carousel__viewport {
    cursor: grab;
  }

  .services-white--offers .carousel__viewport.is-dragging {
    cursor: grabbing;
  }
}

.services-white--offers .carousel__edge-zone {
  --edge-x: 50%;
  --edge-y: 50%;

  position: absolute;
  top: var(--section-y);
  bottom: calc(var(--section-y) + var(--footer-gap) + var(--control-size));
  z-index: 6;
  display: block;
  width: max(
    92px,
    calc((100% - var(--slide-width)) / 2 - (var(--slide-gap) * 0.5))
  );
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.services-white--offers .carousel__edge-zone--prev {
  left: 0;
}

.services-white--offers .carousel__edge-zone--next {
  right: 0;
}

.services-white--offers .carousel__edge-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 13px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--edge-x, 0), var(--edge-y, 0), 0) scale(0.98);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  will-change: opacity, transform;
}

.services-white--offers .carousel__edge-zone:hover .carousel__edge-label,
.services-white--offers
  .carousel__edge-zone:focus-visible
  .carousel__edge-label {
  opacity: 1;
  transform: translate3d(var(--edge-x, 0), var(--edge-y, 0), 0) scale(1);
}

.services-white--offers .carousel__edge-zone:focus-visible {
  outline: 0;
}

.services-white--offers .carousel__track {
  display: flex;
  align-items: stretch;
  gap: var(--slide-gap);
  height: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.services-white--offers .carousel__track.is-animated {
  transition: transform var(--speed) var(--ease);
}

.services-white--offers .slide {
  position: relative;
  flex: 0 0 var(--slide-width);
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--card-bg);
  cursor: pointer;
  isolation: isolate;
}

.services-white--offers .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.24) 42%,
      rgba(0, 0, 0, 0.04)
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.services-white--offers .slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  pointer-events: none;
}

.services-white--offers .slide__content {
  position: relative;
  z-index: 2;
  max-width: 510px;
  padding: var(--slide-content-y) var(--slide-content-x);
  color: var(--text-light);
}

.services-white--offers .slide__title {
  max-width: min(520px, 100%);
  margin: 0 0 18px;
  font-family: var(--font-ui);
  font-size: var(--offer-title-size);
  font-weight: var(--offer-title-weight);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.services-white--offers .slide__title-line {
  display: block;
  white-space: nowrap;
}

.services-white--offers .slide__text {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(15px, 1.25vw, 21px);
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.services-white--offers .slide__hover-link {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 5;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.16);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.services-white--offers .slide__hover-link:hover,
.services-white--offers .slide__hover-link:focus-visible {
  transform: translateX(2px);
  opacity: 1;
}

.services-white--offers .slide__hover-link:focus-visible {
  border-radius: 999px;
  outline: 1px solid rgba(255, 255, 255, 0.55);
  outline-offset: 4px;
}

.services-white--offers .slide__hover-note {
  position: absolute;
  right: 84px;
  bottom: 26px;
  left: var(--slide-content-x);
  z-index: 4;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.services-white--offers .slide:hover .slide__hover-note,
.services-white--offers .slide:focus-within .slide__hover-note {
  opacity: 1;
  transform: translateY(0);
}

.services-white--offers .panel {
  position: absolute;
  z-index: 3;
  bottom: calc(var(--panel-bottom) + var(--panel-lift));
  left: 50%;
  width: min(var(--panel-width), calc(100% - (var(--slide-content-x) * 2)));
  padding: var(--panel-padding);
  border-radius: var(--radius-panel);
  background: var(--panel-bg);
  color: var(--text-dark);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
}

.services-white--offers .panel__top,
.services-white--offers .panel__row,
.services-white--offers .panel__total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.services-white--offers .panel__brand {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 400;
  line-height: 0.92;
  color: var(--brown);
  text-transform: uppercase;
}

.services-white--offers .panel__code {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.28;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.services-white--offers .panel__client {
  margin: 20px 0 16px;
  font-size: 12px;
  line-height: 1.42;
}

.services-white--offers .panel__label {
  display: block;
  color: rgba(36, 18, 9, 0.52);
}

.services-white--offers .panel__row {
  padding: 11px 0;
  border-top: 1px solid rgba(36, 18, 9, 0.12);
  border-bottom: 1px solid rgba(36, 18, 9, 0.12);
  font-size: 12px;
}

.services-white--offers .panel__total {
  margin: 14px 0 16px;
  font-size: 15px;
  font-weight: 700;
}

.services-white--offers .panel__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: #050505;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.services-white--offers .panel__button:hover,
.services-white--offers .panel__button:focus-visible {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.services-white--offers .panel__button:focus-visible {
  outline: 1px solid rgba(36, 18, 9, 0.32);
  outline-offset: 4px;
}

.services-white--offers .badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 0;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.96);
  color: var(--text-dark);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.services-white--offers .badge--left {
  bottom: calc(var(--panel-bottom) + 206px);
  left: 50%;
  gap: 8px;
  transform: translateX(-116%);
}

.services-white--offers .badge--right {
  right: 16%;
  bottom: 33%;
  gap: 13px;
  justify-content: space-between;
}

.services-white--offers .badge--soft-card,
.services-white--offers .badge--rect {
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  border-radius: 14px;
  padding: 11px 14px;
}

.services-white--offers .badge--soft-card {
  min-width: 182px;
}

.services-white--offers .badge--rect {
  min-width: 196px;
}

.services-white--offers .badge--sur-mesure {
  right: 15%;
  bottom: calc(var(--panel-bottom) + 168px);
}

.services-white--offers .badge--templates {
  right: 14%;
  bottom: calc(var(--panel-bottom) + 182px);
}

.services-white--offers .badge__icon {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--brown);
  color: #ffffff;
  font-size: 11px;
}

.services-white--offers .badge__text {
  font-size: 10px;
  line-height: 1.15;
  white-space: nowrap;
}

.services-white--offers .badge__text strong {
  display: inline;
  font-size: 11px;
}

.services-white--offers .badge__status {
  padding: 4px 8px;
  border-radius: 999px;
  background: #dcefd7;
  color: #315c2a;
  font-size: 10px;
  font-weight: 700;
}

.services-white--offers .badge__eyebrow {
  display: block;
  color: rgba(36, 18, 9, 0.58);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.services-white--offers .carousel__footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-size);
  padding: 0 var(--section-x);
}

.services-white--offers .carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.services-white--offers .carousel__dot {
  position: relative;
  width: 7px;
  height: 7px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: var(--dot);
  cursor: pointer;
  transition:
    width 220ms ease,
    background-color 220ms ease;
}

.services-white--offers .carousel__dot.is-active {
  width: 34px;
  background: rgba(36, 18, 9, 0.18);
}

.services-white--offers .carousel__dot.is-active::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: inherit;
  background: var(--text-dark);
  transform: scaleX(0);
  transform-origin: left center;
  animation: dotProgress var(--dot-progress-duration) linear forwards;
}

.services-white--offers
  .premium-carousel.is-paused
  .carousel__dot.is-active::before {
  animation-play-state: paused;
}

@keyframes dotProgress {
  to {
    transform: scaleX(1);
  }
}

.services-white--offers .carousel__controls {
  position: absolute;
  right: var(--section-x);
  display: flex;
  align-items: center;
  gap: var(--control-gap);
}

.services-white--offers .carousel__button {
  display: grid;
  width: var(--control-size);
  height: var(--control-size);
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  color: var(--text-dark);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

.services-white--offers .carousel__button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(68, 43, 27, 0.34);
}

.services-white--offers .carousel__button[data-carousel-play] {
  background: rgba(255, 255, 255, 0.42);
  border-color: var(--border);
  color: var(--text-dark);
  box-shadow: none;
}

.services-white--offers .carousel__button[data-carousel-play]:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(68, 43, 27, 0.34);
  color: var(--text-dark);
}

.services-white--offers .carousel__button svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

.services-white--offers .carousel__button[data-carousel-play] svg {
  width: 13px;
  height: 13px;
  stroke-width: 0;
}

@media (max-width: 1024px) {
  .services-white--offers .premium-carousel {
    --section-x: clamp(22px, 4vw, 42px);
    --section-y: clamp(18px, 3.5vh, 42px);
    --footer-gap: 14px;
    --offer-title-size: clamp(17px, calc(5.2vw - 15px), 35px);
    --slide-width: max(720px, calc(82vw - var(--slide-width-trim)));
    --slide-gap: 20px;
    --slide-content-y: clamp(22px, 3vw, 34px);
    --slide-content-x: clamp(22px, 3.2vw, 36px);
  }

  .services-white--offers .slide__content {
    max-width: 470px;
  }

  .services-white--offers .slide__text {
    max-width: 420px;
    font-size: clamp(15px, 2vw, 19px);
  }

  .services-white--offers .panel {
    right: clamp(24px, 4vw, 42px);
    bottom: clamp(28px, 4vh, 46px);
    left: auto;
    width: min(390px, 41vw);
    padding: 15px;
    transform: none;
  }

  .services-white--offers .panel__brand {
    font-size: clamp(16px, 1.8vw, 19px);
  }

  .services-white--offers .panel__client,
  .services-white--offers .panel__row {
    font-size: 11px;
  }

  .services-white--offers .panel__total {
    font-size: 14px;
  }

  .services-white--offers .badge,
  .services-white--offers .carousel__controls,
  .services-white--offers .carousel__edge-zone {
    display: none;
  }

  .services-white--offers .carousel__footer {
    min-height: 24px;
  }
}

@media (max-width: 767px) {
  .services-white--offers .premium-carousel {
    --section-x: 18px;
    --section-y: 16px;
    --footer-gap: 12px;
    --offer-title-size: clamp(20px, 7.4vw, 29px);
    --slide-width-trim: 0px;
    --slide-width: 88vw;
    --slide-gap: 14px;
    --slide-content-y: 22px;
    --slide-content-x: 20px;
  }

  .services-white--offers .carousel__viewport {
    align-items: stretch;
  }

  .services-white--offers .slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .services-white--offers .slide::before {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.52),
        rgba(0, 0, 0, 0.18) 42%,
        rgba(0, 0, 0, 0.42)
      ),
      linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent);
  }

  .services-white--offers .slide__content {
    max-width: none;
    padding: var(--slide-content-y) var(--slide-content-x) 0;
  }

  .services-white--offers .slide__title {
    max-width: 330px;
    margin-bottom: 14px;
    line-height: 0.95;
  }

  .services-white--offers .slide__text {
    max-width: 320px;
    font-size: 15px;
    line-height: 1.38;
  }

  .services-white--offers .slide__hover-link {
    right: 16px;
    bottom: 14px;
    width: 32px;
    height: 32px;
    font-size: 24px;
    font-weight: 300;
  }

  .services-white--offers .slide__hover-note {
    right: 64px;
    bottom: 18px;
    left: var(--slide-content-x);
    font-size: 11px;
  }

  .services-white--offers .panel {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin: 0 18px 18px;
    padding: 16px;
    transform: none;
  }

  .services-white--offers .panel__brand {
    font-size: 17px;
  }

  .services-white--offers .panel__client {
    margin: 16px 0 12px;
    font-size: 11px;
  }

  .services-white--offers .panel__row {
    padding: 9px 0;
    font-size: 11px;
  }

  .services-white--offers .panel__total {
    margin: 12px 0;
    font-size: 14px;
  }

  .services-white--offers .panel__button {
    padding: 11px 14px;
    font-size: 10px;
  }

  .services-white--offers .carousel__dots {
    gap: 10px;
  }

  .services-white--offers .carousel__dot {
    width: 6px;
    height: 6px;
  }

  .services-white--offers .carousel__dot.is-active {
    width: 28px;
  }
}

@media (max-width: 390px), (max-height: 700px) and (max-width: 767px) {
  .services-white--offers .premium-carousel {
    --section-y: 12px;
    --footer-gap: 10px;
    --offer-title-size: clamp(19px, 7.2vw, 25px);
  }

  .services-white--offers .slide__text {
    font-size: 14px;
  }

  .services-white--offers .panel {
    margin: 0 14px 14px;
    padding: 14px;
  }

  .services-white--offers .panel__client {
    margin: 14px 0 12px;
  }
}

@media (max-height: 680px) and (min-width: 768px) {
  .services-white--offers .premium-carousel {
    --section-y: 18px;
    --footer-gap: 12px;
    --offer-title-size: clamp(15px, calc(3.1vw - 13px), 29px);
  }

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

  .services-white--offers .panel {
    width: clamp(320px, 28vw, 420px);
    padding: 14px;
  }

  .services-white--offers .panel__client {
    margin: 18px 0 14px;
  }

  .services-white--offers .panel__row {
    padding: 10px 0;
  }

  .services-white--offers .panel__total {
    margin: 14px 0;
  }

  .services-white--offers .badge {
    display: none;
  }
}

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

.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) {
  .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) {
  .sw-card__btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

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

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

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

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

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

  .services-white--offers {
    padding: var(--section-y) 0 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);
  }

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

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

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

.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 {
  justify-self: end;
  max-width: 470px;
  margin: 0;
  padding-top: clamp(4px, 0.8vw, 10px);
  color: rgba(5, 5, 5, 0.9);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  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: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  align-items: end;
  gap: clamp(28px, 5vw, 96px);
  max-width: none;
  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: #050505;
  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;
    gap: clamp(18px, 3vw, 28px);
  }

  .features-section__desc {
    justify-self: start;
    max-width: 760px;
    margin-top: 0;
    padding-top: 0;
  }

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