@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap");

:root {
  --blue: #0f6f94;
  --blue-deep: #0d6588;
  --blue-mid: #1790bf;
  --blue-soft: #9ed4e8;
  --page-bg: #d8edf7;
  --panel-bg: #e4f4fa;
  --panel-strong: #c8e5f3;
  --text: #050505;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background-color: var(--page-bg);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

@keyframes teamHeroReveal {
  from {
    opacity: 0;
    transform: scale(1.06);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes teamTextReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes joinTextReveal {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

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

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

.text-link {
  display: inline-flex;
  margin-top: 2px;
  color: var(--blue-deep);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.subtle-link {
  align-items: center;
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  text-decoration-thickness: 1px;
}

.subtle-link::after {
  content: ">";
  margin-left: 8px;
  font-size: 17px;
}

.chapter-content .link-note {
  margin-top: -12px;
  margin-bottom: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 35px;
  background: var(--blue-mid);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  min-height: 35px;
  padding: 4px 14px;
  color: var(--white);
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 3px 10px;
  border: 0;
  white-space: nowrap;
  font-weight: 400;
  transition: opacity 160ms ease;
}

.nav a::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nav a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -2px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.nav a:hover {
  opacity: 0.82;
}

.nav a:hover::before,
.nav a:focus-visible::before,
.nav a.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav a.active {
  color: var(--white);
  background: transparent;
  box-shadow: none;
  font-weight: 400;
}

.nav-toggle {
  display: none;
}

.nav-toggle__icon {
  display: grid;
  gap: 5px;
  width: 25px;
}

.nav-toggle__icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero-team {
  background-image: url("assets/photo N°9.jpg");
  background-position: center 22%;
  animation: teamHeroReveal 900ms ease-out both;
}

.hero-team .hero-content {
  animation: teamTextReveal 720ms ease-out 260ms both;
}

.hero-process {
  background-image: url("assets/AVB.png");
  background-position: center 30%;
  animation: teamHeroReveal 900ms ease-out both;
}

.hero-process .hero-content {
  animation: teamTextReveal 720ms ease-out 260ms both;
}

.hero-moving {
  background-image: url("assets/page2_17_X4.jpg");
  background-position: center 42%;
  animation: teamHeroReveal 900ms ease-out both;
}

.hero-moving .hero-content {
  animation: teamTextReveal 720ms ease-out 260ms both;
}

.process-hero .hero-content {
  padding-top: 22px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 164, 215, 0.66);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  width: min(95%, 1180px);
  margin: 0 auto;
  color: var(--white);
}

.align-right {
  align-items: flex-end;
  text-align: right;
}

.hero h1,
.hero h2 {
  margin: 0 0 22px;
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 400;
  letter-spacing: 0;
}

.hero p {
  width: min(620px, 90%);
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  min-height: calc(100vh - 34px);
  background: var(--page-bg);
}

.home-portrait {
  min-height: 620px;
}

.home-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 92px);
  color: var(--white);
  background:
    url("assets/texture-fond-5.png") repeat,
    linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
}

.home-intro h1 {
  margin: 0 0 24px;
  font-size: clamp(58px, 9vw, 112px);
  line-height: 0.9;
}

.home-intro .signature-name {
  margin-bottom: 8px;
  margin-left: 10px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(64px, 9vw, 118px);
  font-weight: 400;
  line-height: 0.92;
}

.home-intro .signature-image {
  display: block;
  width: min(600px, 92%);
  height: auto;
  margin: 0 0 53px 0;
  object-fit: contain;
  transform-origin: 52% 54%;
  animation: signatureStampIn 1180ms cubic-bezier(0.18, 0.86, 0.22, 1.12) 240ms both;
  will-change: opacity, transform, filter;
}

@keyframes signatureStampIn {
  0% {
    opacity: 0;
    filter: blur(7px) drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    transform: translate3d(0, -72px, 0) scale(1.42) rotate(-4deg);
  }
  44% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 16px 1px rgba(0, 52, 77, 0.46));
    transform: translate3d(0, 9px, 0) scale(0.86) rotate(1.15deg);
  }
  58% {
    filter: drop-shadow(0 7px 1px rgba(0, 52, 77, 0.25));
    transform: translate3d(0, -6px, 0) scale(1.075) rotate(-0.65deg);
  }
  74% {
    filter: drop-shadow(0 3px 0 rgba(0, 52, 77, 0.14));
    transform: translate3d(0, 3px, 0) scale(0.975) rotate(0.22deg);
  }
  88% {
    filter: drop-shadow(0 1px 0 rgba(0, 52, 77, 0.08));
    transform: translate3d(0, -1px, 0) scale(1.015) rotate(-0.08deg);
  }
  100% {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
  }
}

.iad-logo {
  width: 116px;
  height: auto;
  margin: 0 0 28px;
  object-fit: contain;
}

.home-intro > p:not(.eyebrow):not(.home-closing) {
  max-width: 700px;
  margin: 0 0 26px;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.45;
  text-align: justify;
  text-align-last: left;
  text-indent: 2em;
  text-wrap: pretty;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.home-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.home-stats div {
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  text-align: center;
}

.home-stats strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.home-stats span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-contact-lines,
.home-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 20px;
}

.home-contact-lines a,
.home-socials a {
  color: var(--white);
  font-weight: 400;
}

.home-contact-lines a {
  font-size: 18px;
}

.home-socials a {
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-socials .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  cursor: pointer;
  text-decoration: none;
  user-select: none;
}

.home-socials .social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  pointer-events: none;
}

.home-choice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  width: min(1160px, 92%);
  margin: 20px auto 64px;
}

.home-closing {
  width: min(980px, 92%);
  margin: 48px auto 0;
  color: var(--blue-deep);
  text-align: center;
}

.home-closing p {
  margin: 0;
}

.home-closing p:first-child {
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1.1;
}

.home-closing p:last-child {
  width: min(760px, 100%);
  margin: 12px auto 0;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 400;
  line-height: 1.45;
}

.home-closing::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin: 22px auto 0;
  background: var(--blue-deep);
}

.home-choice a {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  background: var(--blue-deep);
  border-top: 8px solid var(--blue-mid);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-choice a:nth-child(2) {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
}

.home-choice a:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.home-choice span {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-choice strong {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.home-choice p {
  max-width: 520px;
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.home-cta {
  width: fit-content;
  padding: 16px 22px;
  color: var(--blue-deep);
  background: var(--white);
  font-weight: 400;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scroll-cue strong {
  display: inline-block;
  width: auto;
  height: auto;
  border: 0;
  font-size: 24px;
  line-height: 1;
}

.agent-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1160px, 92%);
  margin: 0 auto;
  min-height: 760px;
  padding: 0;
  isolation: isolate;
}

.virtual-tour-background-video {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -3;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.agent-detail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
  background: rgba(7, 95, 121, 0.42);
  pointer-events: none;
}

.agent-detail::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -1vw;
  bottom: 0;
  z-index: -1;
  width: min(300px, 24vw);
  background: url("assets/vr detourer.png") center bottom / contain no-repeat;
  pointer-events: none;
}

.agent-detail-title span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.agent-detail-title h2,
.home-contact h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.agent-detail-copy {
  position: relative;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 76px);
  background: rgba(228, 244, 250, 0.92);
  box-shadow: 0 24px 60px rgba(5, 5, 5, 0.12);
  overflow: hidden;
}

.agent-detail-copy::before,
.agent-detail-copy::after {
  position: absolute;
  z-index: 0;
  color: var(--blue-deep);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(110px, 15vw, 230px);
  font-weight: 400;
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
}

.agent-detail-copy::before {
  content: "\201C";
  top: 8px;
  left: 28px;
}

.agent-detail-copy::after {
  content: "\201D";
  right: 34px;
  bottom: -52px;
}

.agent-detail-copy.topic-copy::before,
.agent-detail-copy.topic-copy::after {
  display: none;
}

.agent-detail-copy.topic-copy {
  width: min(980px, 100%);
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.agent-detail-copy.topic-copy h2 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
}

.agent-detail-copy.topic-copy.virtual-tour-copy {
  max-width: 720px;
  margin: auto 0 auto clamp(6px, 0.56vw, 14px);
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  border-left: 6px solid var(--blue-mid);
  box-shadow: 0 18px 42px rgba(5, 5, 5, 0.08);
  transform: translateY(-24px);
}

.agent-detail-copy.topic-copy.virtual-tour-copy p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 0 16px;
  color: var(--blue-deep);
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.28;
}

.agent-detail-copy.topic-copy.virtual-tour-copy p:last-child {
  margin-bottom: 0;
}

.agent-detail .virtual-tour-title {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin: 0 0 28px 50%;
  padding: clamp(44px, 6vw, 72px) max(6vw, 28px);
  transform: translateX(-50%);
  color: var(--white);
  background-color: var(--blue-mid);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.08;
}

.before-after-section {
  padding: clamp(52px, 7vw, 96px) max(6vw, 28px);
  background-color: var(--blue-deep);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
}

.before-after-title {
  width: min(980px, 100%);
  margin: 0 auto 28px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
}

.before-after-slider {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #07384b;
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(5, 5, 5, 0.22);
}

.before-after-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-before {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.before-after-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(7, 56, 75, 0.82);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
}

.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 3;
  width: 2px;
  transform: translateX(-50%);
  background: var(--white);
  border-left: 0;
  border-right: 0;
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(5, 5, 5, 0.14);
  pointer-events: none;
}

.before-after-handle::after {
  content: "\25C0";
  position: absolute;
  top: 50%;
  right: calc(100% + 4px);
  transform: translateY(-50%);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.before-after-handle::before {
  content: "\25B6";
  position: absolute;
  top: 50%;
  left: calc(100% + 4px);
  transform: translateY(-50%);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.before-after-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.agent-detail-copy.topic-copy.virtual-tour-copy a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.agent-detail-copy p {
  margin: 0 0 22px;
  font-size: 19px;
  line-height: 1.52;
}

.agent-detail-copy > p:last-of-type {
  margin-bottom: 0;
}

.agent-detail-copy blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0 0 clamp(42px, 5vw, 64px);
  color: var(--blue-deep);
  background: transparent;
  border-left: 5px solid var(--blue-mid);
}

.agent-detail-copy blockquote p {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.12;
}

.agent-detail-copy cite {
  display: block;
  margin-top: 24px;
  color: var(--text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.agent-detail-copy cite::before {
  content: "\2014 ";
}

.home-contact {
  display: flex;
  justify-content: flex-start;
  gap: 22px;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(44px, 6vw, 72px) max(6vw, 28px);
  color: var(--white);
  background-color: var(--blue-mid);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
}

.home-contact p {
  max-width: none;
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.4;
  white-space: nowrap;
}

.home-contact a {
  flex: 0 0 auto;
  padding: 16px 20px;
  color: var(--blue-deep);
  background: var(--white);
  font-weight: 400;
}

.client-reviews {
  display: grid;
  gap: clamp(24px, 4vw, 36px);
  padding: clamp(56px, 7vw, 92px) max(6vw, 28px) clamp(64px, 8vw, 110px);
  background-color: var(--page-bg);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
}

.reviews-heading {
  display: flex;
  width: min(1020px, 100%);
  margin: 0 auto;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.reviews-heading .eyebrow {
  width: 100%;
  margin: 0 0 -6px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-heading h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.reviews-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-all-label {
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.review-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.72);
}

.review-logo img {
  display: block;
  width: auto;
  max-width: 132px;
  max-height: 30px;
  object-fit: contain;
}

.review-logo-google img {
  max-width: 104px;
}

.review-logo-immodvisor img {
  max-width: 138px;
}

.review-list {
  display: grid;
  width: min(1020px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-list blockquote {
  position: relative;
  margin: 0;
  min-height: 190px;
  padding: 58px clamp(22px, 3vw, 30px) clamp(22px, 3vw, 30px);
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(9, 103, 134, 0.14);
  border-top: 5px solid var(--blue-mid);
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(5, 5, 5, 0.07);
}

.review-list blockquote:first-child,
.review-list blockquote:nth-child(2),
.review-list blockquote:nth-child(3) {
  min-height: 320px;
}

.review-list blockquote::before {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  top: 22px;
  left: clamp(22px, 3vw, 30px);
  color: #f5b400;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.review-list p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.45;
  text-align: justify;
}

.review-author {
  position: absolute;
  top: 22px;
  right: auto;
  left: calc(clamp(22px, 3vw, 30px) + 75px);
  margin: 0;
  color: var(--blue-deep);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
}

.review-author::before {
  content: none;
}

.team-section {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 64px 0 130px;
  text-align: center;
}

.team-section-plain {
  padding-top: 84px;
}

.team-section .avatar-grid {
  display: none;
}

.team-section h2 {
  margin: 0 0 52px;
  font-size: 34px;
  font-weight: 400;
}

.featured-agent-link {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  align-items: stretch;
  width: min(880px, 100%);
  min-height: 320px;
  margin: 0 auto 70px;
  text-align: left;
  background: var(--panel-bg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.featured-agent-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.14);
}

.featured-agent-link img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.featured-agent-link div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
}

.featured-agent-link span {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-agent-link strong {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.95;
}

.featured-agent-link small {
  font-size: 18px;
  line-height: 1.35;
}

.avatar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 28px 34px;
  align-items: center;
  margin-bottom: 160px;
}

.avatar-link {
  display: grid;
  justify-items: center;
  border-radius: 50%;
  transition: transform 180ms ease, filter 180ms ease;
}

.avatar-link:hover {
  transform: translateY(-4px);
  filter: saturate(1.08);
}

.avatar-grid img {
  width: min(100%, 170px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  justify-self: center;
}

.agent-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
}

.team-card-grid {
  gap: 54px;
  margin-top: 34px;
}

.agent-card {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  background: #e8edf0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.agent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
}

.agent-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.agent-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 74px;
  background: rgba(16, 133, 178, 0.86);
  color: #0b0b0b;
  font-size: 16px;
  line-height: 1.45;
}

.agent-card strong {
  font-weight: 400;
}

.mystery-card:hover {
  transform: translateY(-6px);
}

.mystery-card div:last-child {
  color: #0b0b0b;
}

.summary {
  position: relative;
  min-height: 280px;
  margin-top: -1px;
  color: var(--white);
  background: var(--blue-mid);
  clip-path: polygon(0 24%, 100% 0, 100% 100%, 0 100%);
}

.summary div {
  width: min(1120px, 90%);
  margin: 0 auto;
  padding-top: 82px;
}

.summary h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 68px);
}

.summary ul {
  margin: 0;
  padding-left: 28px;
  font-size: 17px;
  line-height: 1.45;
}

.process-summary {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.4fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-top: -1px;
  padding: 72px max(6vw, 28px) 92px;
  color: var(--white);
  background-color: var(--blue-mid);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
}

.summary-copy {
  max-width: 520px;
}

.summary-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
}

.summary-copy p {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.summary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.summary-cards a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.summary-cards a:nth-child(1) {
  background: linear-gradient(135deg, #0f6f94 0%, #1c9cc8 100%);
}

.summary-cards a:nth-child(2) {
  background: linear-gradient(135deg, #0d6588 0%, #2397b5 100%);
}

.summary-cards a:nth-child(3) {
  background: linear-gradient(135deg, #157895 0%, #2aa9c6 100%);
}

.summary-cards a:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.summary-cards span {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
}

.summary-cards strong {
  font-size: clamp(20px, 2.5vw, 29px);
  line-height: 1.05;
}

.process-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(1160px, 92%);
  margin: 72px auto;
}

.path-card {
  position: relative;
  min-height: 280px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
}

.path-card.wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: 34px;
  align-items: stretch;
  padding: 0;
  color: var(--text);
  background: var(--panel-bg);
}

.path-card.wide > div {
  padding: clamp(30px, 5vw, 56px);
}

.path-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.moving-page {
  background: var(--page-bg);
}

.moving-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  width: min(1160px, 92%);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) 0 clamp(42px, 6vw, 72px);
}

.moving-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
}

.moving-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}

.moving-hero aside {
  padding: 28px;
  color: var(--white);
  background: var(--blue-deep);
}

.moving-hero aside strong {
  display: block;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.moving-hero aside span {
  display: block;
  margin-top: 10px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
}

.moving-intro {
  width: min(1160px, 92%);
  margin: 0 auto;
  padding: 34px clamp(24px, 4vw, 46px);
  color: var(--white);
  background: var(--blue-mid);
}

.moving-intro p {
  max-width: 880px;
  margin: 0;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.25;
}

.moving-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1160px, 92%);
  margin: 42px auto 0;
}

.moving-period {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--panel-bg);
}

.moving-period.featured {
  background: var(--panel-strong);
}

.moving-period-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 28px 18px;
  border-bottom: 1px solid rgba(13, 101, 136, 0.22);
}

.moving-period-head span {
  color: var(--blue-deep);
  font-size: 38px;
  font-weight: 400;
  line-height: 0.9;
}

.moving-period-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.03;
}

.moving-items {
  display: grid;
  gap: 12px;
  padding: 22px 28px 28px;
}

.moving-items div {
  padding: 18px 0 0;
  border-top: 4px solid var(--blue-mid);
}

.moving-items h3 {
  margin: 0 0 8px;
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.2;
}

.moving-items p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.moving-downloads {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1160px, 92%);
  margin: 34px auto 72px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.45);
}

.moving-page-v2 {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(216, 237, 247, 0) 320px),
    var(--page-bg);
}

.moving-page-v2 .moving-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  width: min(980px, 90%);
  padding: clamp(42px, 7vw, 72px) 0 18px;
}

.moving-page-v2 .hero-moving {
  display: block;
  width: 100%;
  min-height: 390px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.moving-page-v2 .hero-moving .hero-overlay {
  background: rgba(42, 164, 215, 0.66);
}

.moving-page-v2 .hero-moving .hero-content {
  min-height: inherit;
  width: min(95%, 1180px);
  margin: 0 auto;
  padding: 0;
  align-items: flex-end;
  color: var(--white);
  background: transparent;
  border: 0;
  text-align: right;
}

.moving-page-v2 .hero-moving .eyebrow,
.moving-page-v2 .hero-moving h1,
.moving-page-v2 .hero-moving p:not(.eyebrow) {
  color: var(--white);
}

.moving-page-v2 .hero-moving h1 {
  max-width: 1000px;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 0.98;
}

.moving-page-v2 .hero-moving p:not(.eyebrow) {
  width: min(720px, 90%);
  max-width: 720px;
  margin-top: 0;
  font-size: 18px;
}

.moving-page-v2 .moving-hero > div {
  padding: 0;
  color: var(--text);
  background: transparent;
  border-left: 0;
}

.moving-page-v2 .moving-hero .eyebrow {
  color: var(--blue-deep);
}

.moving-page-v2 .moving-hero h1 {
  max-width: 820px;
  color: var(--blue-deep);
  font-size: clamp(42px, 5.7vw, 68px);
  line-height: 0.98;
}

.moving-page-v2 .moving-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 23px);
}

.moving-page-v2 .moving-hero aside {
  justify-self: start;
  width: auto;
  margin: 0;
  color: var(--blue-deep);
  background: transparent;
  border: 0;
  border-left: 4px solid var(--blue-mid);
  box-shadow: none;
}

.moving-page-v2 .hero-moving .hero-content,
.moving-page-v2 .hero-moving .eyebrow,
.moving-page-v2 .hero-moving h1,
.moving-page-v2 .hero-moving p:not(.eyebrow) {
  color: var(--white);
}

.moving-page-v2 .hero-moving h1 {
  max-width: 1000px;
  font-size: clamp(38px, 5.2vw, 76px);
  white-space: normal;
  overflow-wrap: normal;
}

.moving-page-v2 .hero-moving p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.35;
  white-space: normal;
}

.moving-page-v2 .hero-moving h1 {
  max-width: none;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 0.98;
  white-space: nowrap;
}

.moving-page-v2 .moving-intro {
  width: min(980px, 90%);
  margin: 8px auto 0;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
}

.moving-page-v2 .moving-intro span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.moving-page-v2 .moving-intro p {
  max-width: none;
  color: var(--text);
  font-size: clamp(20px, 2vw, 26px);
}

.moving-page-v2 .moving-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  width: min(980px, 90%);
  margin: 30px auto 0;
}

.moving-page-v2 .moving-period {
  position: relative;
  display: block;
  min-height: 100%;
  padding: 0 0 18px;
  background: transparent;
  border-top: 0;
  border-bottom: 1px solid rgba(13, 101, 136, 0.22);
}

.moving-page-v2 .moving-period.featured {
  background: transparent;
  border-top-color: transparent;
}

.moving-page-v2 .moving-period + .moving-period {
  margin-top: 0;
}

.moving-page-v2 .moving-period::before {
  display: none;
}

.moving-page-v2 .moving-period:last-child::before {
  display: none;
}

.moving-page-v2 .moving-period-head {
  position: static;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0;
  border: 0;
}

.moving-page-v2 .moving-period-head span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--blue-deep);
  font-size: 20px;
}

.moving-page-v2 .moving-period-head h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(24px, 2.6vw, 31px);
}

.moving-page-v2 .moving-items {
  display: grid;
  gap: 0;
  padding: 0;
}

.moving-page-v2 .moving-items div {
  padding: 13px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(13, 101, 136, 0.14);
}

.moving-page-v2 .moving-items h3 {
  font-size: 18px;
}

.moving-page-v2 .moving-downloads {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(980px, 90%);
  margin-top: 0;
  padding: 0;
  background: transparent;
}

.moving-scroll-card {
  --reveal-progress: 0;
  position: relative;
  width: 100%;
  height: 280vh;
  min-height: 2200px;
  margin: 0;
  padding: 0;
}

.moving-scroll-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 44px;
  background: linear-gradient(180deg, rgba(13, 101, 136, 0.45), rgba(216, 237, 247, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.moving-scroll-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(216, 237, 247, 0.72), rgba(216, 237, 247, 0.72)),
    url("assets/photo N°12.jpg") center 28% / cover no-repeat;
  background-attachment: fixed;
  opacity: 0.42;
  pointer-events: none;
}

.moving-pin {
  position: sticky;
  top: 35px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(1180px, 94%);
  height: calc(100vh - 35px);
  min-height: 650px;
  margin: 0 auto;
}

.moving-reveal-card {
  position: relative;
  width: min(1120px, 100%);
  min-height: min(760px, calc(100vh - 40px));
  margin: 0 auto;
  overflow: hidden;
  color: var(--text);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.moving-reveal-card::before {
  content: "";
  position: absolute;
  inset: 10% 8% 8%;
  z-index: 0;
  background: radial-gradient(circle at center, rgba(23, 144, 191, 0.18), rgba(216, 237, 247, 0) 66%);
  pointer-events: none;
}

.moving-reveal-head {
  position: relative;
  z-index: 2;
  padding: 154px 0 26px;
  text-align: center;
}

.moving-reveal-head .eyebrow {
  margin-bottom: 8px;
  color: var(--blue-deep);
}

.moving-reveal-head h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.moving-reveal-content {
  position: relative;
  z-index: 1;
  min-height: 680px;
  padding: 0;
}

.moving-map-path {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: translateY(56px);
}

.moving-map-track,
.moving-map-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: miter;
}

.moving-map-track {
  stroke: rgba(13, 101, 136, 0.14);
  stroke-width: 18;
}

.moving-map-progress {
  stroke: var(--blue-mid);
  stroke-width: 18;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--reveal-progress));
}

.moving-map-dot circle {
  fill: var(--blue-mid);
  stroke: var(--page-bg);
  stroke-width: 7;
  filter: drop-shadow(0 0 0.55rem rgba(23, 144, 191, 0.28));
}

.moving-map-dot text {
  fill: var(--white);
  font-size: 18px;
  font-weight: 400;
  text-anchor: middle;
}

.moving-map-step {
  --step-progress: 0;
  position: absolute;
  z-index: 2;
  width: min(250px, 26%);
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 101, 136, 0.18);
  box-shadow: 0 16px 38px rgba(13, 101, 136, 0.12);
  backdrop-filter: blur(2px);
  opacity: calc(0.34 + (0.66 * var(--step-progress)));
  transform: translateY(calc(22px * (1 - var(--step-progress)))) scale(calc(0.92 + (0.08 * var(--step-progress))));
  transition: box-shadow 160ms linear, border-color 160ms linear;
}

.moving-map-step.is-active {
  border-color: rgba(23, 144, 191, 0.62);
  box-shadow: 0 24px 54px rgba(13, 101, 136, 0.22);
}

.moving-map-step::before {
  display: none;
}

.moving-map-step span {
  display: none;
}

.moving-map-step.step-1 {
  top: 236px;
  left: 0;
}

.moving-map-step.step-1::before {
  right: -48px;
  top: 267px;
}

.moving-map-step.step-1 span {
  left: -58px;
  top: 50px;
}

.moving-map-step.step-2 {
  left: 300px;
  top: 510px;
  bottom: auto;
}

.moving-map-step.step-2::before {
  left: 28px;
  top: -72px;
}

.moving-map-step.step-2 span {
  left: -58px;
  top: -8px;
}

.moving-map-step.step-3 {
  top: -4px;
  left: 600px;
}

.moving-map-step.step-3::before {
  left: 49px;
  top: 284px;
}

.moving-map-step.step-3 span {
  left: -86px;
  top: 28px;
}

.moving-map-step.step-4 {
  left: 730px;
  top: 350px;
  bottom: auto;
}

.moving-map-step.step-4::before {
  left: 52px;
  top: -70px;
}

.moving-map-step.step-4 span {
  left: -86px;
  top: 36px;
}

.moving-map-step h3 {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
}

.moving-map-step p {
  margin: 8px 0 0;
  color: #09283a;
  font-size: 14px;
  line-height: 1.36;
}

.moving-map-step strong {
  color: var(--blue-deep);
}

.moving-step-layout {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 680px);
  gap: 44px;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.moving-side-progress {
  position: relative;
  display: grid;
  justify-items: end;
  width: 260px;
  height: 350px;
}

.moving-side-line,
.moving-side-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  width: 12px;
  border-radius: 999px;
  transform: translateX(50%);
}

.moving-side-line {
  background: rgba(13, 101, 136, 0.14);
}

.moving-side-fill {
  bottom: auto;
  height: calc(100% * var(--reveal-progress));
  background: var(--blue-mid);
  transition: height 120ms linear;
}

.moving-side-dot {
  position: absolute;
  right: -6px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--blue-deep);
  background: var(--page-bg);
  border: 7px solid rgba(23, 144, 191, 0.2);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 400;
  transform: translateY(-50%);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.moving-side-dot::before {
  content: attr(data-label);
  position: absolute;
  right: 62px;
  width: 180px;
  color: var(--blue-deep);
  font-size: 15px;
  line-height: 1.2;
  text-align: right;
  opacity: 0.72;
  pointer-events: none;
}

.moving-side-dot:nth-of-type(1) {
  top: 0;
}

.moving-side-dot:nth-of-type(2) {
  top: 33.333%;
}

.moving-side-dot:nth-of-type(3) {
  top: 66.666%;
}

.moving-side-dot:nth-of-type(4) {
  top: 100%;
}

.moving-side-dot:focus-visible {
  outline: 3px solid var(--blue-deep);
  outline-offset: 4px;
}

.moving-side-dot.is-active {
  color: var(--white);
  background: var(--blue-mid);
  border-color: rgba(216, 237, 247, 0.95);
}

.moving-side-dot.is-active::before {
  font-weight: 600;
  opacity: 1;
}

.moving-current-card {
  position: relative;
  min-height: 430px;
  width: min(680px, 100%);
}

.moving-current-card .moving-map-step {
  position: absolute;
  inset: 0;
  width: auto;
  min-height: 430px;
  padding: 38px 52px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 101, 136, 0.24);
  box-shadow: 0 22px 54px rgba(13, 101, 136, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-24px) scale(0.985);
  transition: none;
}

.moving-current-card .moving-map-step.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.moving-current-card .moving-map-step h3 {
  max-width: 560px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.moving-current-card .moving-map-step ol {
  max-width: 590px;
  margin: 14px 0 0;
  padding-left: 24px;
}

.moving-current-card .moving-map-step li {
  margin: 0 0 9px;
  color: var(--blue-deep);
  font-weight: 400;
}

.moving-current-card .moving-map-step li p {
  margin: 4px 0 0;
  color: #09283a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.34;
}

.moving-page-v2 .moving-downloads .action-button {
  min-height: 78px;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
  opacity: 1;
  backdrop-filter: none;
  box-shadow: 0 8px 18px rgba(13, 101, 136, 0.18);
  transform: none;
  backface-visibility: visible;
  will-change: auto;
}

.moving-page-v2 .moving-downloads .action-button:hover,
.moving-page-v2 .moving-downloads .action-button:focus-visible,
.moving-page-v2 .moving-downloads .action-button:active {
  transform: none;
}

.moving-page-v2 .moving-downloads .action-button.primary {
  background: #0d6588;
}

.moving-page-v2 .moving-downloads .action-button.secondary {
  background: #d8edf7;
}

.moving-page-v2 .moving-downloads {
  margin-top: 0;
}

.moving-page-v2 + .site-footer {
  margin-top: 56px;
}

.moving-reveal-card > .moving-downloads {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 3;
  width: min(980px, 100%);
}

.path-number {
  display: block;
  margin-bottom: 22px;
  color: currentColor;
  font-size: clamp(74px, 10vw, 122px);
  font-weight: 400;
  line-height: 0.8;
}

.path-card h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 48px);
}

.path-card p {
  max-width: 580px;
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.reassurance-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1160px, 92%);
  margin: 58px auto 10px;
  background: rgba(13, 101, 136, 0.22);
}

.reassurance-strip article {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 26px;
  background: var(--panel-bg);
}

.reassurance-strip strong {
  color: var(--blue-deep);
  font-size: 22px;
}

.reassurance-strip span {
  font-size: 17px;
  line-height: 1.4;
}

.process-steps {
  position: relative;
  padding: 66px max(6vw, 24px) 96px;
  overflow: hidden;
  background: var(--blue-soft);
}

.process-steps h2 {
  width: min(1160px, 100%);
  margin: 0 auto 42px;
  font-size: clamp(40px, 6vw, 76px);
}

.process-step {
  display: grid;
  grid-template-columns: auto auto minmax(220px, 520px);
  gap: 22px;
  align-items: end;
  width: min(1160px, 100%);
  min-height: 220px;
  margin: 0 auto;
  padding: 34px 0;
  border-top: 3px solid #000;
}

.process-step:nth-of-type(odd) {
  justify-content: end;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
}

.process-step p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
}

.chapter-list {
  width: min(1160px, 92%);
  margin: 20px auto 78px;
}

.chapter {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(520px, 1.38fr);
  gap: clamp(28px, 5vw, 64px);
  padding: 54px 0;
  border-top: 2px solid #0a0a0a;
}

.chapter:last-child {
  border-bottom: 2px solid #0a0a0a;
}

.chapter-title {
  position: sticky;
  top: 58px;
  align-self: start;
}

.chapter-title span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: clamp(74px, 10vw, 132px);
  font-weight: 400;
  line-height: 0.78;
}

.chapter-title h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.02;
}

.chapter-content {
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel-bg);
}

.chapter-content p,
.chapter-content li {
  font-size: 18px;
  line-height: 1.52;
  text-align: justify;
  text-align-last: left;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.chapter-content p {
  margin: 0 0 22px;
}

.chapter-content .chapter-opening {
  font-size: 18px;
  line-height: 1.48;
  text-align: left;
}

.chapter-content .chapter-opening span {
  display: inline-block;
  text-align: justify;
  text-align-last: left;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.chapter-content p:last-child {
  margin-bottom: 0;
}

.chapter-content ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding-left: 22px;
}

.chapter-steps {
  display: grid;
  gap: 16px;
  margin: 8px 0 28px;
}

.chapter-steps div {
  position: relative;
  padding: 20px 22px;
  background: var(--panel-strong);
  border-left: 5px solid var(--blue-deep);
}

.chapter-steps h3 {
  margin: 0 0 8px;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.15;
}

.chapter-steps p {
  margin: 0;
}

.numbered-flow {
  display: grid;
  gap: 14px;
  margin: 8px 0 28px;
}

.numbered-flow article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: var(--panel-strong);
  border-left: 5px solid var(--blue-deep);
}

.numbered-flow span {
  color: var(--blue-deep);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.numbered-flow p {
  margin: 0;
}

.purchase-flow {
  margin: 8px 0 28px;
}

.chapter-content .purchase-flow__intro {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-weight: 600;
  text-align: left;
}

.purchase-flow ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.purchase-flow li {
  position: relative;
  display: block;
  padding: 0 0 0 18px;
  text-align: left;
  text-align-last: auto;
}

.purchase-flow li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue-deep);
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}

.chapter-note {
  margin: 8px 0 28px;
  padding: 18px 20px;
  border-left: 5px solid var(--blue-deep);
  background: var(--panel-strong);
}

.chapter-note p {
  margin: 0;
}

.chapter-visual {
  margin: 0 0 28px;
}

.chapter-visual img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: var(--panel-strong);
}

.blue-emphasis {
  color: var(--blue-deep);
  font-weight: 400;
}

.chapter-step {
  margin: 0 0 22px;
  padding: 22px;
  background: var(--panel-strong);
  border-left: 6px solid var(--blue-deep);
}

.chapter-step h3 {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter-step p:last-child {
  margin-bottom: 0;
}

.chapter-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.05fr);
  gap: 14px;
  margin-top: 28px;
  width: 100%;
  margin-left: 0;
}

.chapter-actions.moving-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border: 2px solid var(--blue-deep);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.action-button.primary {
  color: var(--white);
  background: var(--blue-deep);
}

.action-button.secondary {
  color: var(--blue-deep);
  background: var(--panel-strong);
}

.action-button:hover {
  transform: translateY(-2px);
}

.process-contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(30px, 5vw, 70px);
  width: min(1160px, 92%);
  margin: 0 auto 90px;
  padding: clamp(34px, 5vw, 56px);
  color: var(--white);
  background: var(--blue-mid);
}

.process-contact h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 3.5vw, 50px);
  line-height: 1;
  white-space: nowrap;
}

.process-contact p:not(.eyebrow) {
  margin: 0;
  max-width: 500px;
  font-size: 18px;
  line-height: 1.48;
  text-align: justify;
  text-align-last: left;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.contact-card-link {
  display: grid;
  gap: 12px;
  align-self: center;
  padding: clamp(26px, 4vw, 42px);
  color: var(--text);
  background: #f3f9fc;
  border: 1px solid rgba(13, 101, 136, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.contact-card-link span {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-link strong {
  color: var(--blue-deep);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.contact-card-link p {
  max-width: 360px;
  font-size: 18px;
  line-height: 1.45;
  text-align: left;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
  color: var(--text);
}

.contact-form-page {
  margin-top: 70px;
}

.back-link.light {
  color: var(--white);
}

.process-contact .back-link {
  margin-left: -18px;
}

.process-contact h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}

.step-b,
.step-d {
  transform: skewY(-3deg);
}

.step-b > *,
.step-d > * {
  transform: skewY(3deg);
}

.steps {
  background: var(--blue-soft);
}

.step {
  position: relative;
  display: flex;
  min-height: 360px;
  padding: 36px min(7vw, 90px);
  overflow: hidden;
  border-top: 3px solid #000;
}

.step-photo {
  min-height: 330px;
  background-image: linear-gradient(rgba(114, 190, 219, 0.68), rgba(114, 190, 219, 0.68)), url("assets/page2_17_X4.jpg");
  background-position: center;
  background-size: cover;
}

.step h2 {
  position: absolute;
  top: 20px;
  left: min(7vw, 90px);
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.step-line {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
  font-size: clamp(20px, 2.2vw, 30px);
}

.step-line.left,
.left .step-line {
  justify-content: flex-start;
}

.right .step-line {
  justify-content: flex-end;
}

.num {
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 400;
  line-height: 0.72;
}

.dot {
  width: clamp(36px, 5vw, 58px);
  aspect-ratio: 1;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #000;
}

.tilt-down {
  transform: skewY(4deg);
  transform-origin: left top;
}

.tilt-up {
  transform: skewY(-4deg);
  transform-origin: right top;
}

.tilt-down .step-line,
.tilt-up .step-line {
  transform: skewY(-4deg);
}

.tilt-up .step-line {
  transform: skewY(4deg);
}

.simple-page,
.join,
.faq {
  width: min(980px, 90%);
  margin: 0 auto;
  padding: 84px 0;
}

.simple-page h1,
.join h2,
.faq h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 56px);
}

.simple-page p,
.join p,
.faq p,
.faq summary {
  font-size: 18px;
  line-height: 1.5;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.info-grid article {
  padding: 28px;
  border-top: 7px solid var(--blue-mid);
  background: var(--panel-bg);
}

.info-grid h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.info-grid p {
  margin: 0;
}

.join-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: 430px;
  padding: clamp(54px, 8vw, 96px) max(7vw, 28px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
}

.join-hero-copy {
  width: min(760px, 100%);
}

.join-hero-copy .eyebrow,
.join-hero-copy h1,
.join-hero-copy p:not(.eyebrow) {
  opacity: 0;
  animation: joinTextReveal 720ms ease-out both;
}

.join-hero-copy .eyebrow {
  animation-delay: 120ms;
}

.join-hero-copy h1 {
  animation-delay: 260ms;
}

.join-hero-copy p:not(.eyebrow) {
  animation-delay: 430ms;
}

.join-hero-media {
  width: 100%;
}

.join-hero-media img,
.join-image-feature img,
.join-asset-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.join-hero-media img {
  aspect-ratio: 1702 / 630;
  object-fit: cover;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.join-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.96;
}

.join-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.36;
}

.join-intro,
.join-profile,
.join-contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(32px, 6vw, 82px);
  width: min(1160px, 92%);
  margin: 84px auto;
  padding-top: 44px;
  border-top: 3px solid #000;
}

.join-intro span {
  display: block;
  margin-bottom: 20px;
  color: var(--blue-deep);
  font-size: clamp(70px, 9vw, 120px);
  font-weight: 400;
  line-height: 0.8;
}

.join-intro h2,
.join-profile h2,
.join-contact h2,
.join-steps h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
}

.join-contact h2 {
  margin-bottom: 28px;
  line-height: 1.05;
}

.join-intro p,
.join-profile p,
.join-profile li,
.join-contact p {
  margin: 0 0 20px;
  font-size: 19px;
  line-height: 1.52;
}

.join-intro p:last-child,
.join-contact p {
  margin-bottom: 0;
}

.join-video {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(1160px, 92%);
  margin: 0 auto 84px;
  padding: clamp(30px, 5vw, 52px);
  color: var(--white);
  background: var(--blue-deep);
}

.join-video h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
}

.join-video p:not(.eyebrow) {
  margin: 0 0 20px;
  font-size: 19px;
  line-height: 1.5;
}

.join-video .text-link {
  color: var(--white);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #071f2a;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.join-image-feature {
  width: min(1160px, 92%);
  margin: 0 auto 84px;
}

.join-image-feature img {
  border: 1px solid rgba(5, 5, 5, 0.12);
}

.join-image-feature.narrow {
  width: min(620px, 86%);
  margin-top: 80px;
}

.join-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(13, 101, 136, 0.24);
}

.join-benefits article {
  min-height: 260px;
  padding: clamp(30px, 4vw, 46px);
  color: var(--white);
  background: var(--blue-deep);
}

.join-benefits h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 40px);
}

.join-benefits p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.join-offers {
  width: min(1160px, 92%);
  margin: 86px auto 0;
}

.join-offers-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.join-offers-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
}

.join-offers-heading p:not(.eyebrow) {
  margin: 0;
  max-width: 680px;
  font-size: 19px;
  line-height: 1.5;
}

.join-offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.join-offer-cards article {
  min-height: 290px;
  padding: clamp(26px, 4vw, 38px);
  background: var(--panel-bg);
  border-top: 6px solid var(--blue-deep);
}

.join-offer-cards span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue-deep);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.join-offer-cards h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.join-offer-cards p {
  margin: 0;
  font-size: 18px;
  line-height: 1.48;
}

.join-asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(1160px, 92%);
  margin: 84px auto 0;
}

.join-asset-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--panel-bg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.11);
}

.join-steps {
  width: min(1160px, 92%);
  margin: 86px auto;
}

.join-steps > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.join-steps article {
  min-height: 260px;
  padding: 30px;
  background: var(--panel-bg);
  border-top: 6px solid var(--blue-deep);
}

.join-steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue-deep);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.8;
}

.join-steps h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.join-steps p {
  margin: 0;
  font-size: 18px;
  line-height: 1.46;
}

.join-profile ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: clamp(26px, 4vw, 42px);
  background: var(--panel-bg);
}

.join-profile li {
  margin: 0;
}

.join-contact {
  align-items: center;
  padding: clamp(42px, 6vw, 70px);
  border-top: 0;
  color: var(--white);
  background: var(--blue-mid);
}

.join-contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  color: var(--text);
  background: #f3f9fc;
  border: 1px solid rgba(13, 101, 136, 0.16);
}

.join-contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.join-contact-form input,
.join-contact-form select,
.join-contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #a9cfdf;
  border-radius: 0;
  padding: 12px 14px;
  color: var(--text);
  background: #ffffff;
  font: inherit;
}

.join-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.join-contact-form input:focus,
.join-contact-form select:focus,
.join-contact-form textarea:focus {
  outline: 3px solid rgba(13, 101, 136, 0.22);
  border-color: var(--blue-deep);
  background: #ffffff;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
}

.form-footer div {
  display: grid;
  gap: 6px;
}

.form-footer strong {
  color: var(--blue-deep);
  font-size: 16px;
}

.form-footer a {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}

.form-footer button {
  min-height: 50px;
  border: 1px solid var(--blue-deep);
  padding: 0 30px;
  color: var(--white);
  background: var(--blue-deep);
  font: inherit;
  font-weight: 400;
  cursor: pointer;
}

.form-footer button:hover {
  background: #084c67;
}

.tips-page {
  width: min(1160px, 90%);
}

.tips-page > p {
  max-width: 760px;
  margin-bottom: 42px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tips-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--panel-bg);
  border-top: 6px solid var(--blue-deep);
}

.tips-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--blue-deep);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.tips-grid h2 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.1;
}

.tips-grid p {
  margin: 0;
  font-size: 17px;
}

.member-page {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 42px 0 86px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 28px;
  padding: 10px 18px;
  color: var(--blue-deep);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.member-profile-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: 0;
  align-items: stretch;
  min-height: 620px;
}

.member-profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  background: #e8edf0;
}

.member-profile-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.member-profile-intro h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
}

.member-profile-intro p {
  width: min(560px, 100%);
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 1.45;
}

.member-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.member-contact-line a {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.member-presentation {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(44px, 6vw, 72px) 0;
  border-bottom: 2px solid rgba(5, 5, 5, 0.72);
}

.member-presentation h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
}

.member-presentation-copy {
  padding: clamp(28px, 4vw, 44px);
  background: var(--panel-bg);
}

.member-presentation-copy p {
  margin: 0 0 22px;
  font-size: 19px;
  line-height: 1.52;
}

.member-presentation-copy p:last-child {
  margin-bottom: 0;
}

.member-visual-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  align-items: stretch;
  margin: 0;
  background: var(--blue-mid);
}

.member-visual-story img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.member-visual-story > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
  color: var(--white);
}

.member-visual-story h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1;
}

.member-visual-story p:not(.eyebrow) {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
}

.member-strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(13, 101, 136, 0.24);
}

.member-strengths article {
  min-height: 260px;
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  background: var(--blue-deep);
}

.member-strengths span {
  display: block;
  margin-bottom: 28px;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 400;
  line-height: 0.8;
}

.member-strengths h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
}

.member-strengths p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.member-focus {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: clamp(40px, 6vw, 70px);
  color: var(--white);
  background: var(--blue-mid);
}

.member-focus h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.member-focus p {
  max-width: 760px;
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.member-focus a {
  flex: 0 0 auto;
  padding: 16px 20px;
  color: var(--blue-deep);
  background: var(--white);
  font-weight: 400;
}

.faq details {
  padding: 18px 0;
  border-top: 1px solid #cfcfcf;
}

.faq details:last-child {
  border-bottom: 1px solid #cfcfcf;
}

.site-footer {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 18px 24px 24px;
  color: var(--blue-deep);
  background-color: rgb(216, 237, 247);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
  font-size: 13px;
}

.site-footer a {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page { width: min(960px, 90%); margin: 0 auto; padding: clamp(56px, 8vw, 100px) 0 56px; }
.legal-hero { margin-bottom: 34px; }
.legal-hero h1 { margin: 8px 0 12px; color: var(--blue-deep); font-size: clamp(44px, 7vw, 76px); font-weight: 400; line-height: 1; }
.legal-hero > p:last-child { margin: 0; color: rgba(5, 5, 5, 0.62); font-size: 14px; }
.legal-content { display: grid; gap: 18px; }
.legal-content section { padding: clamp(24px, 4vw, 38px); background: rgba(255, 255, 255, 0.78); border-top: 4px solid var(--blue-mid); border-radius: 6px; box-shadow: 0 16px 34px rgba(5, 5, 5, 0.06); }
.legal-content h2 { margin: 0 0 14px; color: var(--blue-deep); font-size: clamp(23px, 3vw, 31px); font-weight: 400; }
.legal-content p, .legal-content li { font-size: 15px; line-height: 1.65; }
.legal-content p { margin: 0 0 12px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { margin: 0 0 14px; padding-left: 22px; }
.legal-content a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }


.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  color: var(--text);
  background: var(--white);
  border-top: 4px solid var(--blue-mid);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(5, 5, 5, 0.24);
}

.cookie-banner-copy { max-width: 650px; }
.cookie-banner-copy strong { color: var(--blue-deep); font-size: 18px; }
.cookie-banner-copy p { margin: 7px 0 0; font-size: 14px; line-height: 1.5; }
.cookie-banner-copy a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-banner-actions button,
.cookie-media-placeholder button {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--blue-mid);
  border-radius: 5px;
  font: inherit;
  cursor: pointer;
}

.cookie-banner-actions button:last-child,
.cookie-media-placeholder button {
  color: var(--white);
  background: var(--blue-deep);
}

.cookie-settings-button {
  padding: 7px 11px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--blue-mid);
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.cookie-settings-button--inline {
  margin-top: 4px;
  font-size: 14px;
}

.cookie-media-placeholder {
  display: grid;
  min-height: 260px;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(13, 101, 136, 0.25);
}

.cookie-media-placeholder[hidden] { display: none; }
.cookie-media-placeholder p { margin: 0; }

@media (max-width: 900px) {
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0;
    padding: 4px 6px;
    font-size: 16px;
  }

  .nav a {
    min-height: 27px;
    padding: 3px 8px;
  }

  .hero,
  .hero-process {
    min-height: 330px;
  }

  .align-right {
    align-items: center;
    text-align: center;
  }

  .hero p {
    width: 100%;
  }

  .home-hero,
  .agent-detail,
  .home-choice {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
  }

  .home-portrait {
    min-height: 460px;
  }

  .moving-hero,
  .moving-board,
  .moving-downloads {
    grid-template-columns: 1fr;
  }

  .moving-hero {
    align-items: stretch;
  }

  .moving-hero aside {
    width: min(320px, 100%);
  }

  .moving-page-v2 .moving-hero {
    grid-template-columns: 1fr;
    width: min(100%, 90%);
    padding-top: 28px;
  }

  .moving-page-v2 .moving-hero > div {
    padding: 0;
  }

  .moving-page-v2 .moving-hero h1 {
    font-size: clamp(38px, 13vw, 56px);
    line-height: 0.96;
  }

  .moving-page-v2 .moving-hero p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.45;
  }

  .moving-page-v2 .moving-hero aside {
    justify-self: start;
    width: auto;
    margin: 0;
    padding: 0 0 0 18px;
  }

  .moving-page-v2 .moving-intro {
    margin-top: 24px;
  }

  .moving-page-v2 .moving-board,
  .moving-page-v2 .moving-downloads {
    grid-template-columns: 1fr;
  }

  .moving-scroll-card {
    width: 100%;
    height: 320vh;
    min-height: 2400px;
  }

  .moving-pin {
    width: min(100%, 90%);
    min-height: 640px;
  }

  .moving-reveal-card {
    min-height: min(640px, calc(100vh - 80px));
  }

  .moving-reveal-head {
    padding: 0 0 18px;
  }

  .moving-reveal-content {
    min-height: 470px;
  }

  .moving-map-path {
    transform: rotate(90deg) scale(0.74);
    transform-origin: center;
    opacity: 0.55;
  }

  .moving-map-step {
    width: min(300px, 72vw);
    padding: 16px;
  }

  .moving-map-step.step-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(calc(22px * (1 - var(--step-progress)))) scale(calc(0.92 + (0.08 * var(--step-progress))));
  }

  .moving-map-step.step-2 {
    top: 118px;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%) translateY(calc(22px * (1 - var(--step-progress)))) scale(calc(0.92 + (0.08 * var(--step-progress))));
  }

  .moving-map-step.step-3 {
    top: 246px;
    left: 50%;
    transform: translateX(-50%) translateY(calc(22px * (1 - var(--step-progress)))) scale(calc(0.92 + (0.08 * var(--step-progress))));
  }

  .moving-map-step.step-4 {
    top: 374px;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%) translateY(calc(22px * (1 - var(--step-progress)))) scale(calc(0.92 + (0.08 * var(--step-progress))));
  }

  .moving-map-step::before,
  .moving-map-step span {
    display: none;
  }

  .moving-page-v2 .moving-board {
    gap: 22px;
  }

  .moving-page-v2 .moving-period {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 0 18px;
  }

  .moving-page-v2 .moving-period::before {
    display: none;
  }

  .moving-page-v2 .moving-period-head {
    position: static;
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .moving-page-v2 .moving-period-head h2 {
    margin-top: 0;
  }

  .moving-page-v2 .moving-items div {
    padding: 14px 0;
  }

  .moving-page-v2 .moving-downloads .action-button {
    min-height: 58px;
  }

  .agent-detail-copy {
    margin: 0 auto;
    padding: 44px 28px 42px;
  }

  .agent-detail-copy::before {
    top: 10px;
    left: 58px;
    font-size: 112px;
  }

  .agent-detail-copy::after {
    right: 28px;
    bottom: -26px;
    font-size: 112px;
  }

  .agent-detail-copy.topic-copy::before,
  .agent-detail-copy.topic-copy::after {
    display: none;
  }

  .agent-detail-copy.topic-copy {
    padding: 0;
  }

  .agent-detail-copy blockquote {
    padding-left: 44px;
  }

  .agent-detail-copy blockquote p {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.18;
  }

  .chapter-actions {
    grid-template-columns: 1fr;
  }

  .chapter-actions.moving-actions {
    grid-template-columns: 1fr;
  }

  .action-button {
    white-space: normal;
  }

  .home-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-contact p {
    white-space: normal;
  }

  .client-reviews {
    padding-inline: 24px;
  }

  .reviews-heading {
    align-items: flex-start;
  }

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

  .avatar-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    margin-bottom: 76px;
  }

  .featured-agent-link {
    grid-template-columns: 1fr;
  }

  .agent-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .info-grid,
    .member-profile-hero,
    .member-presentation,
    .member-visual-story,
    .member-strengths,
    .tips-grid,
    .join-hero,
    .join-intro,
    .join-video,
    .join-offers-heading,
    .join-profile,
    .join-contact,
    .join-asset-grid {
    grid-template-columns: 1fr;
  }

  .join-benefits,
  .join-offer-cards,
  .join-steps > div,
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .member-focus {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-footer button {
    width: 100%;
  }

  .process-summary,
  .process-paths,
  .path-card.wide,
  .chapter,
  .process-contact {
    grid-template-columns: 1fr;
  }

  .chapter-title {
    position: static;
  }

  .summary-cards {
    grid-template-columns: 1fr;
  }

  .reassurance-strip {
    grid-template-columns: 1fr;
  }

  .path-card img {
    min-height: 260px;
  }

  .process-step,
  .process-step:nth-of-type(odd) {
    grid-template-columns: auto auto minmax(0, 1fr);
    justify-content: start;
  }

  .member-profile-photo img {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .hero h1,
  .hero h2 {
    font-size: 40px;
  }

  .team-section {
    padding-bottom: 70px;
  }

  .avatar-grid {
    gap: 18px;
  }

  .agent-cards {
    grid-template-columns: 1fr;
  }

  .agent-card,
  .agent-card img {
    min-height: 360px;
  }

  .summary {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }

  .process-summary {
    padding-top: 56px;
  }

  .process-paths {
    margin: 42px auto;
  }

  .path-card {
    min-height: 230px;
  }

  .process-step {
    min-height: 190px;
    gap: 12px;
  }

  .process-step .num {
    font-size: 88px;
  }

  .process-step .dot {
    width: 28px;
  }

  .chapter {
    padding: 38px 0;
  }

  .chapter-content {
    padding: 24px;
  }

  .chapter-content p,
  .chapter-content li {
    font-size: 17px;
  }

  .step {
    min-height: 260px;
    padding-inline: 22px;
  }

  .step h2 {
    left: 22px;
    font-size: 28px;
  }

  .step-line {
    gap: 12px;
  }

  .home-intro .signature-name {
    margin-left: 18px;
  }

  .moving-page-v2 .moving-period-head {
    gap: 12px;
  }

  .moving-page-v2 .moving-period-head span {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .moving-page-v2 .moving-period-head h2 {
    font-size: 27px;
  }

  .moving-page-v2 .moving-downloads {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-intro .signature-image {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  .join-hero-copy .eyebrow,
  .join-hero-copy h1,
  .join-hero-copy p:not(.eyebrow) {
    opacity: 1;
    animation: none;
  }

}

/* Rejoindre redesign */
.join-redesign {
  --join-bg: var(--page-bg);
  --join-blue: #0f7190;
  --join-dark: #075f79;
  --join-mid: #1599c6;
  --join-orange: #ff7a2c;
  color: var(--join-dark);
  background-color: var(--join-bg);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
  overflow-x: clip;
}

body.page-loading .join-redesign,
body.page-loading .site-footer {
  visibility: hidden;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 66px, 0);
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.reveal-on-scroll.reveal-from-left,
.reveal-on-scroll.reveal-from-right,
.reveal-on-scroll.reveal-zoom,
.reveal-on-scroll.reveal-soft-turn {
  transform: translate3d(0, 66px, 0);
}

.reveal-on-scroll.reveal-line {
  opacity: 0;
  transform: translate3d(0, 46px, 0);
  transform-origin: center;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-on-scroll.reveal-from-left.is-visible,
.reveal-on-scroll.reveal-from-right.is-visible,
.reveal-on-scroll.reveal-zoom.is-visible,
.reveal-on-scroll.reveal-line.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.join-redesign h1,
.join-redesign h2,
.join-redesign h3,
.join-redesign p {
  margin: 0;
}

.join-new-hero {
  position: relative;
  display: block;
  min-height: 390px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background-image: url("assets/photo-join-hero-optimized.jpg");
  background-size: cover;
  background-position: center 48%;
}

.join-new-hero.is-banner-animated {
  animation: teamHeroReveal 900ms ease-out both;
}

.join-new-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 158, 203, 0.58);
}

.join-new-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: min(95%, 1180px);
  min-height: inherit;
  margin: 0 auto;
  text-align: right;
}

.join-new-hero.is-banner-animated .join-new-hero__content {
  animation: teamTextReveal 720ms ease-out 260ms both;
}

.join-new-hero .eyebrow {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.join-new-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(40px, 3.5vw, 56px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: 2px;
}

.join-new-hero h1 span {
  display: block;
}

.join-new-hero p:not(.eyebrow) {
  width: min(760px, 90%);
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0;
}

.join-stats {
  padding: 68px 8vw 120px;
  background-color: var(--page-bg);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
}

.section-rule {
  width: min(980px, 86vw);
  height: 2px;
  margin: 0 auto 64px;
  background: #1c1c1c;
}

.join-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(24px, 4vw, 72px);
  width: min(1060px, 86vw);
  margin: 0 auto;
  text-align: center;
}

.join-stats__grid article {
  display: grid;
  grid-template-rows: 82px minmax(74px, auto);
  row-gap: 18px;
  justify-items: center;
  align-items: start;
  align-content: start;
  min-width: 0;
  width: 100%;
}

.split-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  justify-self: center;
  min-height: 82px;
  height: 82px;
  gap: 2px;
  padding: 6px;
  color: var(--white);
  background: var(--join-mid);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 95, 121, 0.55);
  font-variant-numeric: tabular-nums;
}

.split-number span {
  display: grid;
  place-items: center;
  min-width: clamp(34px, 3.2vw, 46px);
  width: clamp(34px, 3.2vw, 46px);
  height: 70px;
  padding: 0;
  font-size: clamp(40px, 4.3vw, 62px);
  line-height: 1;
  background: #23639b;
  border-radius: 6px;
  font-family: inherit;
  text-align: center;
}

.join-stats__grid article:nth-child(2) .split-number span:last-child,
.join-stats__grid article:nth-child(3) .split-number span:nth-child(2) {
  font-size: clamp(34px, 3.8vw, 54px);
}

/* Keep the N°1 tiles on one precise, evenly centred character grid. */
.join-stats__grid article:nth-child(3) .split-number span {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  text-indent: 0;
}

.join-stats__grid p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  min-height: 74px;
  margin: 0 auto;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-align: center;
}

.join-video-card {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 42px;
  align-items: center;
  width: min(840px, 82vw);
  margin: 0 auto 120px;
  padding: 36px 48px;
  color: var(--white);
  background: var(--join-blue);
  border-radius: 10px;
}

.join-video-card h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 800;
}

.join-video-card p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.16;
  font-weight: 800;
}

.join-video-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.scroll-reveal-ready .join-video-card__copy.reveal-on-scroll h2,
.scroll-reveal-ready .join-video-card__copy.reveal-on-scroll p,
.scroll-reveal-ready .join-video-card__copy.reveal-on-scroll a {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(-22px, 16px, 0);
}

.scroll-reveal-ready .join-video-card__copy.reveal-on-scroll.is-visible h2 {
  animation: joinVideoCopyReveal 760ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.scroll-reveal-ready .join-video-card__copy.reveal-on-scroll.is-visible p {
  animation: joinVideoCopyReveal 760ms cubic-bezier(0.16, 1, 0.3, 1) 280ms both;
}

.scroll-reveal-ready .join-video-card__copy.reveal-on-scroll.is-visible a {
  animation: joinVideoCopyReveal 680ms cubic-bezier(0.16, 1, 0.3, 1) 430ms both;
}

@keyframes joinVideoCopyReveal {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(-22px, 16px, 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal-ready .join-video-card__copy.reveal-on-scroll h2,
  .scroll-reveal-ready .join-video-card__copy.reveal-on-scroll p,
  .scroll-reveal-ready .join-video-card__copy.reveal-on-scroll a,
  .scroll-reveal-ready .join-video-card__copy.reveal-on-scroll.is-visible h2,
  .scroll-reveal-ready .join-video-card__copy.reveal-on-scroll.is-visible p,
  .scroll-reveal-ready .join-video-card__copy.reveal-on-scroll.is-visible a {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

.join-video-card__frame {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.join-video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.join-video-card__frame .cookie-media-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.join-entrepreneur {
  padding: 94px 8vw 118px;
  color: var(--white);
  background-color: var(--join-dark);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
}

.join-entrepreneur h2,
.join-income h2,
.join-testimonials h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 3.7vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 2px;
}

.join-entrepreneur__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px 100px;
  width: min(1020px, 100%);
  margin: 100px auto 0;
}

.join-entrepreneur__cards article {
  min-height: 132px;
  padding: 22px 36px;
  border-radius: 10px;
  text-align: center;
}

.join-entrepreneur__cards .is-blue {
  background: rgba(24, 127, 162, 0.78);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.join-entrepreneur__cards .is-white {
  color: var(--join-dark);
  background: var(--white);
}

.join-entrepreneur__cards h3 {
  font-size: 18px;
  font-weight: 900;
}

.join-entrepreneur__cards p {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.16;
  letter-spacing: 1px;
}

.join-income {
  padding: 24px 7vw 86px;
  background-color: var(--page-bg);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
}

.join-income h2 {
  color: var(--join-dark);
}

.income-grid {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 460px);
  gap: 34px 86px;
  width: min(886px, 100%);
  margin: 22px auto 0;
}

.income-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  padding: 20px 24px 22px;
  scroll-margin-top: 74px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--join-dark);
  border-radius: 18px;
}

.income-grid .income-path:nth-child(1),
.income-grid .income-path:nth-child(2),
.income-grid .income-path:nth-child(3) {
  padding-top: 20px;
}

.income-path--wide {
  grid-column: auto;
  width: 100%;
  margin: 0;
  min-height: 626px;
  justify-content: flex-start;
}

.income-path--centered {
  grid-column: 1 / -1;
  width: min(340px, 100%);
  margin: 4px auto 0;
}

.income-badge {
  display: grid;
  place-items: center;
  width: clamp(94px, 9vw, 118px);
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 800;
}

.income-badge.is-blue {
  color: var(--white);
  background: var(--join-blue);
}

.income-badge.is-white {
  color: var(--join-dark);
  background: #e7f4fb;
}

.income-path h3,
.income-path p {
  color: var(--join-dark);
  font-size: clamp(15px, 1.34vw, 17px);
  line-height: 1.07;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.income-path h3 {
  margin-top: 6px;
}

.income-line {
  width: 2px;
  height: 24px;
  margin: 3px 0;
  background: var(--join-blue);
}

.income-path--wide > .income-line {
  flex: 1 1 24px;
  height: auto;
  min-height: 24px;
}

.income-path strong {
  display: inline-block;
  margin: 3px 0;
  min-width: 170px;
  padding: 8px 26px;
  color: var(--white);
  background: var(--join-orange);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  transform: rotate(-2deg);
  text-align: center;
  white-space: nowrap;
}

.income-split strong {
  min-width: 128px;
  padding-right: 16px;
  padding-left: 16px;
  font-size: 13px;
}

.income-path.reveal-on-scroll strong,
.income-sponsor.reveal-on-scroll strong {
  opacity: 0;
  transform: translateY(10px) rotate(-2deg) scale(0.96);
}

.income-path.reveal-on-scroll.is-visible strong,
.income-sponsor.reveal-on-scroll.is-visible strong {
  animation: incomeRibbonReveal 460ms ease 260ms both;
}

@keyframes incomeRibbonReveal {
  0% {
    opacity: 0;
    transform: translateY(10px) rotate(-2deg) scale(0.96);
  }
  70% {
    opacity: 1;
    transform: translateY(-2px) rotate(-2deg) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-2deg) scale(1);
  }
}

.income-split {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  margin-top: 36px;
  width: 100%;
  align-items: start;
  justify-items: center;
}

.income-split p {
  width: 164px;
  margin: 0;
}

.income-split p:first-child {
  margin-top: 10px;
  padding-top: 0;
}

.income-split p:nth-child(2) {
  margin-top: 12px;
}

.income-split::before,
.income-split::after {
  content: "";
  position: absolute;
  top: -26px;
  left: calc(50% - 1px);
  width: 2px;
  height: 124px;
  background: var(--join-blue);
  transform-origin: top center;
}

.income-split::before {
  transform: rotate(72deg);
}

.income-split::after {
  transform: rotate(-72deg);
}

.income-sponsor {
  display: grid;
  justify-items: center;
  width: min(1120px, 94vw);
  margin: 76px auto 0;
  text-align: center;
}

.income-sponsor p {
  width: 100%;
  padding: 44px 70px;
  color: var(--join-dark);
  background: var(--white);
  border-radius: 999px;
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 2px;
}

.income-sponsor__number {
  display: none;
}

.scroll-reveal-ready .income-sponsor p {
  --sponsor-badge-half: 75px;
  --sponsor-badge-inset-y: 60px;
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 270px;
  min-height: 270px;
  padding: 44px 70px;
  overflow: hidden;
  color: transparent;
  border-radius: 999px;
  box-shadow: 0 20px 44px rgba(0, 118, 174, 0.12);
  clip-path: inset(var(--sponsor-badge-inset-y) calc(50% - var(--sponsor-badge-half)) round 999px);
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.9);
  transform-origin: center;
  will-change: clip-path, opacity, transform;
}

.scroll-reveal-ready .income-sponsor__number {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--join-dark);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.scroll-reveal-ready .income-sponsor__copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 44px 70px;
  color: var(--join-dark);
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: center;
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 20px, 0) scale(0.97);
}

.scroll-reveal-ready .income-sponsor.is-visible p {
  animation: sponsorCapsuleBloom 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scroll-reveal-ready .income-sponsor.is-visible .income-sponsor__number {
  animation: sponsorFourMorph 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scroll-reveal-ready .income-sponsor.is-visible .income-sponsor__copy {
  animation: sponsorCopyReveal 420ms cubic-bezier(0.16, 1, 0.3, 1) 520ms both;
}

@keyframes sponsorCapsuleBloom {
  0% {
    clip-path: inset(var(--sponsor-badge-inset-y) calc(50% - var(--sponsor-badge-half)) round 999px);
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.9);
  }

  15% {
    clip-path: inset(var(--sponsor-badge-inset-y) calc(50% - var(--sponsor-badge-half)) round 999px);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.06);
  }

  48% {
    clip-path: inset(var(--sponsor-badge-inset-y) calc(50% - var(--sponsor-badge-half)) round 999px);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  72% {
    clip-path: inset(30% 14% round 999px);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.015);
  }

  88% {
    clip-path: inset(0 0 round 999px);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.985);
  }

  100% {
    clip-path: inset(0 0 round 999px);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes sponsorFourMorph {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(0, 12px, 0) scale(0.72);
  }

  20% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1.08);
  }

  76% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(0, -8px, 0) rotate(-8deg) scale(0.5);
  }
}

@keyframes sponsorCopyReveal {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, 20px, 0) scale(0.97);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal-ready .income-sponsor p,
  .scroll-reveal-ready .income-sponsor.is-visible p {
    clip-path: none;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .scroll-reveal-ready .income-sponsor__number {
    display: grid;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .scroll-reveal-ready .income-sponsor__copy,
  .scroll-reveal-ready .income-sponsor.is-visible .income-sponsor__copy {
    opacity: 0;
    filter: none;
    transform: none;
    animation: none;
  }

  .scroll-reveal-ready .income-sponsor.is-visible .income-sponsor__number {
    animation: sponsorNumberCrossfade 600ms ease both;
  }

  .scroll-reveal-ready .income-sponsor.is-visible .income-sponsor__copy {
    animation: sponsorCopyCrossfade 280ms ease 420ms both;
  }
}

@keyframes sponsorNumberCrossfade {
  0%,
  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sponsorCopyCrossfade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.join-network {
  padding: 0 7vw 80px;
  background-color: var(--page-bg);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
}

.join-network__layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: 48px;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 42px 48px;
  color: var(--white);
  background: var(--join-blue);
  border-radius: 10px;
}

.join-network__youtube {
  order: 2;
  position: relative;
  display: block;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.join-network__youtube iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.join-network__youtube .cookie-media-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  color: var(--join-dark);
}

.join-network__copy {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  gap: 0;
  max-width: none;
  padding: 0;
  color: var(--white);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.join-network__copy h2,
.join-network__copy p {
  margin: 0;
}

.join-network__copy h2 {
  max-width: 560px;
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.05;
  font-weight: 800;
  text-align: left;
}

.join-network__tagline {
  margin-top: 14px !important;
  color: #d7f1ff;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.18;
  font-weight: 700;
  text-align: left;
}

.join-network__body {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.join-network__body p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.join-network__copy sup {
  font-size: 0.58em;
  vertical-align: super;
}

.network-diagram {
  display: block;
  width: min(1080px, 100%);
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.network-diagram .ring,
.network-diagram .network-lines line {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.network-diagram #network-person * {
  fill: none;
  stroke: currentColor;
  vector-effect: non-scaling-stroke;
}

.network-diagram .ring {
  stroke-width: 3;
}

.network-diagram .ring-black { stroke: #050505; }
.network-diagram .ring-orange { stroke: #e8831c; }
.network-diagram .ring-gray { stroke: #969696; }
.network-diagram .ring-gold { stroke: #ddb331; }

.network-diagram .network-lines line {
  stroke: rgba(5, 5, 5, 0.42);
  stroke-width: 2;
  stroke-dasharray: 7 7;
}

.network-diagram .people {
  fill: none;
  stroke: currentColor;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.network-diagram .people-gold { color: #ddb331; }
.network-diagram .people-gray { color: #969696; }
.network-diagram .people-orange { color: #e8831c; }
.network-diagram .people-black { color: #050505; }
.network-diagram .people-blue { color: #008bd2; }

.network-diagram .people-blue circle {
  fill: var(--join-bg);
  stroke: #008bd2;
  stroke-width: 2;
}

.network-diagram text {
  font-family: inherit;
  font-size: 36px;
  font-weight: 900;
  text-anchor: middle;
  paint-order: stroke;
  stroke: var(--join-bg);
  stroke-width: 8px;
  stroke-linejoin: round;
}

.network-diagram .label-black { fill: #050505; }
.network-diagram .label-orange { fill: #e8831c; }
.network-diagram .label-gray { fill: #969696; }
.network-diagram .label-gold { fill: #ddb331; }

.network-map {
  position: relative;
  width: min(820px, 82vw);
  aspect-ratio: 1;
  margin: 32px auto;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  aspect-ratio: 1;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 { width: 26%; color: #d9aa35; }
.orbit-2 { width: 52%; color: #989898; }
.orbit-3 { width: 73%; color: #df7f20; }
.orbit-4 { width: 88%; color: #000; }

.person-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
}

.person-node img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.node-center {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  background: var(--join-bg);
  border: 2px solid #008bd2;
}

.node-center img {
  width: 40px;
  height: 40px;
}

.node-blue img {
  filter: invert(34%) sepia(95%) saturate(1450%) hue-rotate(176deg) brightness(92%) contrast(96%);
}

.node-gold img {
  filter: invert(78%) sepia(50%) saturate(705%) hue-rotate(359deg) brightness(90%) contrast(88%);
}

.node-gray img {
  filter: invert(61%) sepia(0%) saturate(0%) hue-rotate(160deg) brightness(93%) contrast(91%);
}

.node-orange img {
  filter: invert(51%) sepia(67%) saturate(1101%) hue-rotate(354deg) brightness(94%) contrast(87%);
}

.node-black img {
  filter: none;
}

.network-link {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 43%;
  border-left: 2px dashed rgba(20, 20, 20, 0.45);
  transform-origin: top center;
}

.link-1 { transform: rotate(0deg); }
.link-2 { transform: rotate(55deg); }
.link-3 { transform: rotate(115deg); }
.link-4 { transform: rotate(180deg); }
.link-5 { transform: rotate(235deg); }
.link-6 { transform: rotate(305deg); }

.node-i1 { left: 36%; top: 50%; }
.node-i2 { left: 64%; top: 50%; }

.node-m1 { left: 42%; top: 33%; }
.node-m2 { left: 58%; top: 33%; }
.node-m3 { left: 58%; top: 67%; }
.node-m4 { left: 42%; top: 67%; }

.node-o1 { left: 41%; top: 19%; }
.node-o2 { left: 59%; top: 19%; }
.node-o3 { left: 78%; top: 34%; }
.node-o4 { left: 78%; top: 66%; }
.node-o5 { left: 59%; top: 81%; }
.node-o6 { left: 41%; top: 81%; }

.node-e1 { left: 38%; top: 8%; }
.node-e2 { left: 62%; top: 8%; }
.node-e3 { left: 76%; top: 15%; }
.node-e4 { left: 88%; top: 28%; }
.node-e5 { left: 92%; top: 45%; }
.node-e6 { left: 88%; top: 62%; }
.node-e7 { left: 76%; top: 78%; }
.node-e8 { left: 62%; top: 88%; }
.node-e9 { left: 50%; top: 91%; }
.node-e10 { left: 38%; top: 88%; }
.node-e11 { left: 24%; top: 78%; }
.node-e12 { left: 12%; top: 62%; }

.network-rate {
  position: absolute;
  z-index: 4;
  min-width: 96px;
  padding: 0 8px;
  text-align: center;
  background: var(--join-bg);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
}

.rate-1 { left: 50%; top: 4%; color: #000; }
.rate-2 { left: 50%; top: 12%; color: #df7f20; }
.rate-3 { left: 50%; top: 25%; color: #8e8e8e; }
.rate-4 { left: 50%; top: 36%; color: #d9aa35; }

.join-training {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0 auto;
  padding: 0;
  color: var(--white);
  background: var(--join-dark);
}

.join-training article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 390px;
  padding: 24px 32px 20px;
  background: #05afe7;
}

.join-training article.is-dark {
  background: #014778;
}

.join-training article.is-red {
  background: #f64c42;
}

.join-training h3 {
  margin-top: 14px;
  font-size: clamp(22px, 2.1vw, 25px);
  line-height: 1.08;
  text-align: center;
  font-weight: 900;
}

.join-training p,
.join-training li {
  font-size: 17px;
  line-height: 1.22;
  font-weight: 700;
}

.join-training ul {
  align-self: stretch;
  margin: 24px 0 0;
  padding-left: 24px;
}

.join-training li + li {
  margin-top: 16px;
}

.join-training article > p {
  text-align: center;
}

.training-pill {
  display: block;
  width: max-content;
  margin: 22px auto 8px;
  padding: 9px 38px;
  border-radius: 999px;
  color: var(--white);
  background: #f64c42;
  font-size: 17px;
  transform: rotate(-7deg);
}

.training-icon {
  display: block;
  width: 116px;
  height: 86px;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0.95;
}

.join-team-spirit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 5vw 104px;
  color: var(--blue-deep);
  background: #dff3fb;
}

.join-team-spirit::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(14, 158, 208, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(247, 252, 255, 0.67), rgba(215, 239, 249, 0.77));
}

.join-team-spirit__gallery {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.join-team-spirit__track {
  display: flex;
  width: max-content;
  height: 100%;
  transform: translate3d(-50%, 0, 0);
  animation: joinTeamPhotosMoveRight 44s linear infinite;
  animation-play-state: running;
  will-change: transform;
}

.join-team-spirit__photo-group {
  position: relative;
  flex: 0 0 clamp(1900px, 180vw, 2900px);
  width: clamp(1900px, 180vw, 2900px);
  height: 100%;
}

.join-team-spirit__photo-group img {
  position: absolute;
  top: var(--photo-y);
  left: var(--photo-x);
  display: block;
  box-sizing: border-box;
  width: clamp(250px, 23vw, 380px);
  height: clamp(190px, 26vh, 290px);
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(0, 111, 153, 0.12),
    0 18px 45px rgba(0, 54, 79, 0.22);
  filter: saturate(0.94) contrast(0.98);
  transform: rotate(var(--photo-r));
}

.join-team-spirit__photo-group img:nth-child(3n) {
  width: clamp(220px, 19vw, 320px);
  height: clamp(250px, 34vh, 370px);
}

.join-team-spirit__photo-group img:nth-child(4n) {
  width: clamp(300px, 28vw, 460px);
  height: clamp(180px, 23vh, 260px);
}

.join-team-spirit__photo-group img:nth-child(5n) {
  width: clamp(230px, 21vw, 340px);
  height: clamp(230px, 29vh, 330px);
}

.join-team-spirit__photo-group img:nth-child(1)  { --photo-x: -2%;   --photo-y: 6%;  --photo-r: -4deg; }
.join-team-spirit__photo-group img:nth-child(2)  { --photo-x: 3.5%;  --photo-y: 48%; --photo-r: 2.5deg; }
.join-team-spirit__photo-group img:nth-child(3)  { --photo-x: 9%;    --photo-y: 19%; --photo-r: -1.5deg; }
.join-team-spirit__photo-group img:nth-child(4)  { --photo-x: 14.5%; --photo-y: 66%; --photo-r: 4deg; }
.join-team-spirit__photo-group img:nth-child(5)  { --photo-x: 20%;   --photo-y: 2%;  --photo-r: 2deg; }
.join-team-spirit__photo-group img:nth-child(6)  { --photo-x: 25.5%; --photo-y: 43%; --photo-r: -3deg; }
.join-team-spirit__photo-group img:nth-child(7)  { --photo-x: 31%;   --photo-y: 14%; --photo-r: 4.5deg; }
.join-team-spirit__photo-group img:nth-child(8)  { --photo-x: 36.5%; --photo-y: 61%; --photo-r: -2deg; }
.join-team-spirit__photo-group img:nth-child(9)  { --photo-x: 42%;   --photo-y: 28%; --photo-r: 1.5deg; }
.join-team-spirit__photo-group img:nth-child(10) { --photo-x: 47.5%; --photo-y: 4%;  --photo-r: -4deg; }
.join-team-spirit__photo-group img:nth-child(11) { --photo-x: 53%;   --photo-y: 54%; --photo-r: 2deg; }
.join-team-spirit__photo-group img:nth-child(12) { --photo-x: 58.5%; --photo-y: 18%; --photo-r: -2.5deg; }
.join-team-spirit__photo-group img:nth-child(13) { --photo-x: 64%;   --photo-y: 68%; --photo-r: 3deg; }
.join-team-spirit__photo-group img:nth-child(14) { --photo-x: 69.5%; --photo-y: 7%;  --photo-r: -1deg; }
.join-team-spirit__photo-group img:nth-child(15) { --photo-x: 75%;   --photo-y: 42%; --photo-r: 4deg; }
.join-team-spirit__photo-group img:nth-child(16) { --photo-x: 80.5%; --photo-y: 16%; --photo-r: -3deg; }
.join-team-spirit__photo-group img:nth-child(17) { --photo-x: 86%;   --photo-y: 62%; --photo-r: 1.5deg; }
.join-team-spirit__photo-group img:nth-child(18) { --photo-x: 91.5%; --photo-y: 30%; --photo-r: -2deg; }

.join-team-spirit__photo-group img:nth-child(17) {
  width: clamp(230px, 18vw, 310px);
  height: auto;
  aspect-ratio: 849 / 960;
  object-fit: cover;
  object-position: center;
  background: #ffffff;
}

@keyframes joinTeamPhotosMoveRight {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.join-team-spirit__intro {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: min(820px, 100%);
  margin: 0 auto 48px;
  padding: 30px 38px 32px;
  background: rgba(235, 248, 253, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(5, 82, 112, 0.13);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-align: center;
}

.join-team-spirit__intro .eyebrow {
  margin: 0 0 12px;
  color: var(--blue-mid);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.join-team-spirit__intro h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 800;
}

.join-team-spirit__intro > p:last-child {
  max-width: 760px;
  margin: 22px auto 0;
  color: #17475b;
  font-size: 18px;
  line-height: 1.55;
}

.join-team-spirit__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.join-team-spirit__grid article {
  position: relative;
  min-width: 0;
  min-height: 270px;
  padding: 34px 30px 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.91);
  border-top: 6px solid var(--team-accent, var(--blue-mid));
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(5, 82, 112, 0.12);
}

.join-team-spirit__number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--team-accent, var(--blue-mid));
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
}

.join-team-spirit__grid h3 {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: 24px;
  line-height: 1.15;
}

.join-team-spirit__grid p {
  margin: 0;
  color: #17475b;
  font-size: 16px;
  line-height: 1.5;
}

.join-redesign .join-team-spirit__closing {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: min(880px, calc(100% - 40px));
  margin: 54px auto 0;
  padding-inline: 12px;
  color: var(--blue-deep);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 820px) {
  .join-team-spirit {
    padding: 72px 18px 78px;
  }

  .join-team-spirit__intro {
    margin-bottom: 34px;
    padding: 26px 20px 28px;
    border-radius: 18px;
  }

  .join-team-spirit__photo-group {
    flex-basis: clamp(1350px, 340vw, 1900px);
    width: clamp(1350px, 340vw, 1900px);
  }

  .join-team-spirit__photo-group img {
    width: clamp(180px, 52vw, 250px);
    height: clamp(150px, 24vh, 230px);
    border-width: 3px;
    border-radius: 10px;
  }

  .join-team-spirit__photo-group img:nth-child(3n) {
    width: clamp(160px, 44vw, 220px);
    height: clamp(210px, 30vh, 280px);
  }

  .join-team-spirit__photo-group img:nth-child(4n) {
    width: clamp(220px, 62vw, 300px);
    height: clamp(140px, 20vh, 200px);
  }

  .join-team-spirit__photo-group img:nth-child(5n) {
    width: clamp(175px, 48vw, 235px);
    height: clamp(185px, 27vh, 250px);
  }

  .join-team-spirit__photo-group img:nth-child(17) {
    width: clamp(180px, 52vw, 250px);
    height: auto;
    aspect-ratio: 849 / 960;
  }

  .join-team-spirit__track {
    animation-duration: 36s;
  }

  .join-team-spirit__intro h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .join-team-spirit__intro > p:last-child {
    margin-top: 18px;
    font-size: 16px;
    text-align: left;
  }

  .join-team-spirit__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .join-team-spirit__grid article {
    min-height: 0;
    padding: 28px 24px 30px;
  }

  .join-team-spirit__number {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .join-redesign .join-team-spirit__closing {
    width: min(100%, 640px);
    margin: 42px auto 0;
    padding-inline: 8px;
    font-size: 18px;
    text-align: center;
  }
}

.join-testimonials {
  padding: 90px 4vw 88px;
  color: var(--white);
  background-color: var(--join-dark);
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
}

.testimonial-carousel {
  position: relative;
  display: grid;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 0 76px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 320ms ease;
}

.testimonial-slide {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  flex: 0 0 100%;
  min-height: 190px;
  padding: 22px 28px;
  color: #050505;
  background: #d9f2fb;
  border-top: 8px solid #27a9d0;
  border-radius: 5px;
  box-shadow: none;
}

.testimonial-slide::before {
  content: none;
}

.testimonial-photo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--white);
  background:
    linear-gradient(rgba(14, 158, 208, 0.08), rgba(14, 158, 208, 0.08)),
    var(--testimonial-photo, linear-gradient(135deg, #0e9ed0, #0b5f77));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 5px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 20px rgba(0, 47, 67, 0.16);
  overflow: hidden;
}

.testimonial-photo:not(.has-photo) {
  background:
    linear-gradient(rgba(14, 158, 208, 0.2), rgba(14, 158, 208, 0.2)),
    linear-gradient(135deg, #0e9ed0, #0b5f77);
}

.testimonial-photo::before {
  content: attr(data-initials);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 1px;
}

.testimonial-photo.has-photo::before {
  content: none;
}

.testimonial-body {
  position: relative;
  z-index: 1;
}

.testimonial-slide::after {
  content: none;
}

.testimonial-slide h3 {
  position: relative;
  margin-bottom: 14px;
  color: #0e9ed0;
  font-size: 17px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.testimonial-slide p {
  position: relative;
  max-width: 780px;
  margin: 0;
  color: #0a2733;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.testimonial-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}

.testimonial-arrow--prev {
  left: 0;
}

.testimonial-arrow--next {
  right: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-dots button {
  width: 10px;
  aspect-ratio: 1;
  border: 1px solid var(--white);
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.testimonial-dots button.is-active {
  background: var(--white);
}

.join-application {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
  width: min(1160px, calc(100% - 84px));
  margin: clamp(78px, 8vw, 118px) auto 0;
  padding: clamp(70px, 8vw, 104px) clamp(56px, 6vw, 70px);
  color: var(--white);
  background: var(--join-blue);
}

.join-application__intro {
  display: grid;
  gap: 24px;
}

.join-application__intro p {
  margin: 0;
  max-width: 420px;
  color: var(--white);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.38;
}

.join-application__intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 800;
}

.join-application__form {
  width: 100%;
  margin: 0;
  padding: clamp(34px, 4vw, 40px);
  background: #f3f9fc;
  box-shadow: none;
}

.join-application__form .form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.join-application__form input,
.join-application__form select {
  min-height: 48px;
}

.join-application__form textarea {
  min-height: 120px;
}

.join-application > * {
  min-width: 0;
}

@media (max-width: 900px) {
  .join-stats__grid,
  .join-video-card,
  .join-entrepreneur__cards,
  .income-grid,
  .join-training,
  .join-application {
    grid-template-columns: 1fr;
  }

  .join-network__layout {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(520px, 90vw);
    padding: 30px 24px;
  }

  .join-network__copy {
    max-width: 680px;
    margin: 0 auto;
    text-align: justify;
  }

  .join-network__copy h2,
  .join-network__tagline {
    width: 100%;
    text-align: center;
  }

  .join-new-hero {
    min-height: 430px;
    padding: 0;
  }

  .join-new-hero__content {
    align-items: center;
    width: min(92%, 720px);
    text-align: center;
  }

  .join-new-hero h1 {
    letter-spacing: 2px;
  }

  .join-new-hero p:not(.eyebrow) {
    width: 100%;
  }

  .join-stats {
    padding-bottom: 78px;
  }

  .join-stats__grid {
    gap: 42px;
  }

  .join-stats__grid p {
    width: auto;
  }

  .join-video-card {
    width: min(520px, 90vw);
    padding: 30px 24px;
  }

  .join-application {
    width: min(100% - 32px, 640px);
    margin-top: 58px;
    padding: 46px 24px;
  }

  .join-application__intro h2 {
    font-size: 42px;
  }

  .join-application__form .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel {
    padding: 0 52px;
  }

  .testimonial-slide {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 28px 24px;
    text-align: center;
  }

  .testimonial-photo {
    width: 112px;
  }

  .testimonial-arrow {
    width: 42px;
    font-size: 30px;
  }

  .testimonial-slide p {
    font-size: 13px;
    line-height: 1.32;
  }

  .join-entrepreneur__cards {
    gap: 24px;
    margin-top: 56px;
  }

  .income-path {
    min-height: auto;
    padding: 28px 20px 34px;
  }

  .income-path--wide {
    grid-column: auto;
  }

  .income-path--centered {
    grid-column: auto;
    width: 100%;
    margin-top: 0;
  }

  .income-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .income-split p {
    width: min(260px, 100%);
    margin-top: 0;
    margin-right: 0;
    padding-top: 0;
  }

  .income-split::before,
  .income-split::after {
    display: none;
  }

  .income-sponsor p {
    padding: 28px 26px;
    font-size: 28px;
    letter-spacing: 1px;
  }

  .scroll-reveal-ready .income-sponsor p {
    --sponsor-badge-half: 60px;
    --sponsor-badge-inset-y: 35px;
    height: 190px;
    min-height: 190px;
    padding: 28px 26px;
  }

  .scroll-reveal-ready .income-sponsor__copy {
    padding: 28px 26px;
  }

  .income-sponsor .income-badge {
    width: 120px;
  }

  .join-training {
    width: min(100% - 32px, 640px);
  }
}

@media (max-width: 560px) {
  .split-number span {
    min-width: 34px;
    width: 34px;
    height: 58px;
    font-size: 40px;
  }

  .join-income h2,
  .join-entrepreneur h2,
  .join-testimonials h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .income-path h3,
  .income-path p {
    font-size: 19px;
  }

  .network-rate {
    font-size: 20px;
  }

  .people {
    background-size: 36px 36px;
  }
}

/* Responsive refinements for the "Me rejoindre" page */
.join-testimonials h2 {
  margin-bottom: clamp(52px, 5.4vw, 85px);
}

@media (max-width: 1100px) {
  .join-training {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(920px, calc(100% - 32px));
  }

  .join-training article {
    min-height: 360px;
  }

  .join-application {
    grid-template-columns: 1fr;
    width: min(780px, calc(100% - 48px));
    gap: 38px;
    padding: 58px 48px;
  }

  .join-application__intro {
    max-width: 620px;
  }
}

@media (max-width: 1024px) {
  .nav-menu-ready .site-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 60px;
    padding: 8px 16px;
  }

  .nav-menu-ready .nav-toggle {
    position: relative;
    z-index: 12;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-height: 44px;
    padding: 9px 11px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 10px;
    cursor: pointer;
    transition:
      background 180ms ease,
      transform 180ms ease;
  }

  .nav-menu-ready .nav-toggle:hover,
  .nav-menu-ready .nav-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    outline: 2px solid var(--white);
    outline-offset: 3px;
  }

  .nav-menu-ready .nav-toggle:active {
    transform: scale(0.96);
  }

  .nav-menu-ready .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: auto;
    z-index: 11;
    display: grid;
    grid-template-columns: 1fr;
    width: min(370px, calc(100vw - 32px));
    min-height: 0;
    max-height: 0;
    margin: 0;
    padding: 0 10px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    color: var(--white);
    background: rgba(21, 153, 198, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(0, 47, 67, 0.3);
    transform: translate3d(0, -10px, 0) scale(0.98);
    transform-origin: top right;
    pointer-events: none;
    transition:
      max-height 360ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 360ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 180ms ease,
      transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 360ms;
  }

  .nav-menu-ready .site-header.is-menu-open .nav {
    max-height: 360px;
    padding: 10px;
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .nav-menu-ready .nav a {
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 17px;
    line-height: 1.2;
    text-align: center;
  }

  .nav-menu-ready .nav a:last-child {
    border-bottom: 0;
  }

  .nav-menu-ready .nav a:not(:last-child)::after {
    display: none;
  }

  .nav-menu-ready .nav a::before {
    right: 28px;
    bottom: 6px;
    left: 28px;
  }

  .nav-menu-ready .site-header.is-menu-open .nav-toggle__icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-menu-ready .site-header.is-menu-open .nav-toggle__icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-menu-ready .site-header.is-menu-open .nav-toggle__icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 900px) {
  .join-new-hero h1 span {
    display: inline;
  }

  .join-stats__grid {
    width: min(520px, calc(100% - 32px));
  }

  .join-stats__grid article {
    grid-template-rows: auto auto;
    row-gap: 16px;
  }

  .join-stats__grid p {
    min-height: 0;
  }

  .join-video-card__copy,
  .join-video-card__frame {
    min-width: 0;
  }

  .income-grid {
    width: min(520px, calc(100% - 32px));
    gap: 26px;
  }

  .income-path--wide {
    width: 100%;
    min-height: 0;
  }

  .income-path strong {
    max-width: 100%;
  }

  .join-training {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(720px, calc(100% - 32px));
  }

  .join-training article {
    min-height: 0;
  }

  .join-application {
    width: min(640px, calc(100% - 32px));
  }
}

@media (max-width: 640px) {
  .nav-menu-ready .site-header {
    min-height: 56px;
    padding: 6px 12px;
  }

  .nav-menu-ready .nav {
    right: 12px;
    width: calc(100vw - 24px);
  }

  .join-new-hero {
    min-height: 440px;
    background-position: 56% center;
  }

  .join-new-hero__content {
    width: 100%;
    padding: 34px 18px;
  }

  .join-new-hero .eyebrow {
    font-size: 16px;
    letter-spacing: 1.4px;
  }

  .join-new-hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9.2vw, 40px);
    line-height: 1.05;
    letter-spacing: 0.8px;
  }

  .join-new-hero p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.42;
  }

  .join-stats {
    padding: 50px 16px 72px;
  }

  .section-rule {
    width: 100%;
    margin-bottom: 44px;
  }

  .join-stats__grid {
    gap: 38px;
  }

  .join-video-card {
    width: calc(100% - 24px);
    gap: 24px;
    margin-bottom: 72px;
    padding: 26px 18px;
  }

  .join-video-card h2 {
    font-size: 31px;
  }

  .join-video-card p {
    font-size: 16px;
    line-height: 1.32;
  }

  .join-video-card__frame .cookie-media-placeholder,
  .join-network__youtube .cookie-media-placeholder {
    gap: 7px;
    padding: 10px;
    font-size: 13px;
    line-height: 1.25;
  }

  .join-video-card__frame .cookie-media-placeholder button,
  .join-network__youtube .cookie-media-placeholder button {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .join-entrepreneur {
    padding: 66px 16px 76px;
  }

  .join-entrepreneur h2,
  .join-income h2,
  .join-testimonials h2 {
    font-size: clamp(28px, 8.5vw, 34px);
    line-height: 1.16;
  }

  .join-entrepreneur h2 br,
  .join-income h2 br {
    display: none;
  }

  .join-entrepreneur__cards {
    margin-top: 44px;
  }

  .join-entrepreneur__cards article {
    padding: 24px 18px;
  }

  .join-entrepreneur__cards p {
    margin-top: 20px;
    line-height: 1.35;
  }

  .join-income {
    padding: 44px 12px 72px;
  }

  .income-grid {
    width: 100%;
    margin-top: 30px;
  }

  .income-path {
    padding: 24px 14px 30px;
  }

  .income-path h3,
  .income-path p {
    font-size: 17px;
  }

  .income-path strong,
  .income-split strong {
    min-width: min(170px, 100%);
    padding-right: 14px;
    padding-left: 14px;
    white-space: normal;
  }

  .income-sponsor {
    width: calc(100% - 8px);
    margin-top: 56px;
  }

  .income-sponsor p,
  .scroll-reveal-ready .income-sponsor p {
    --sponsor-badge-half: 58px;
    --sponsor-badge-inset-y: 32px;
    height: 176px;
    min-height: 176px;
    padding: 22px 16px;
    border-radius: 42px;
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1.16;
    letter-spacing: 0.5px;
  }

  .scroll-reveal-ready .income-sponsor__copy {
    padding: 22px 16px;
  }

  .join-network {
    padding: 0 0 64px;
  }

  .join-network__layout {
    width: calc(100% - 24px);
    gap: 26px;
    padding: 24px 16px;
  }

  .join-network__copy {
    font-size: 16px;
    line-height: 1.45;
    text-align: left;
    text-justify: auto;
    overflow-wrap: anywhere;
  }

  .join-network__copy h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .join-network__tagline {
    font-size: 18px;
  }

  .join-network__body {
    gap: 14px;
    margin-top: 22px;
  }

  .join-training {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .join-training article {
    min-height: 0;
    padding: 30px 22px 34px;
  }

  .join-training h3 {
    font-size: 24px;
  }

  .join-training p,
  .join-training li {
    font-size: 16px;
    line-height: 1.35;
  }

  .join-testimonials {
    padding: 66px 12px 76px;
  }

  .join-testimonials h2 {
    margin-bottom: 42px;
  }

  .testimonial-carousel {
    width: 100%;
    padding: 0 0 66px;
  }

  .testimonial-slide {
    gap: 18px;
    min-height: 0;
    padding: 24px 18px;
    text-align: left;
  }

  .testimonial-photo {
    width: 96px;
  }

  .testimonial-body {
    width: 100%;
  }

  .testimonial-slide h3 {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .testimonial-slide p {
    font-size: 14px;
    line-height: 1.46;
  }

  .testimonial-arrow {
    top: auto;
    bottom: 0;
    width: 44px;
    transform: none;
  }

  .testimonial-arrow--prev {
    left: calc(50% - 56px);
  }

  .testimonial-arrow--next {
    right: calc(50% - 56px);
  }

  .testimonial-dots {
    margin-top: 18px;
  }

  .join-application {
    width: calc(100% - 24px);
    gap: 28px;
    margin-top: 50px;
    padding: 38px 16px;
  }

  .join-application__intro {
    gap: 18px;
  }

  .join-application__intro h2 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .join-application__intro p {
    font-size: 17px;
  }

  .join-application__form {
    padding: 24px 16px;
  }

  .join-application__form input,
  .join-application__form select,
  .join-application__form textarea {
    font-size: 16px;
  }

  .join-application__form .form-footer,
  .join-application__form .form-footer > div {
    min-width: 0;
  }

  .join-application__form .form-footer a {
    overflow-wrap: anywhere;
  }

  .site-footer {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-menu-ready .nav,
  .nav-menu-ready .nav-toggle,
  .nav-toggle__icon span {
    transition: none;
  }
}

/* Site-wide responsive layer */
body {
  overflow-x: hidden;
  overflow-x: clip;
}

img,
video,
iframe {
  max-width: 100%;
}

/* Full-bleed background: do not cap it to the centered content width. */
.virtual-tour-background-video {
  max-width: none;
}

main,
main > *,
main section,
main article,
main form,
.home-hero > *,
.process-summary > *,
.chapter > *,
.process-contact > *,
.member-profile-hero > *,
.member-presentation > *,
.member-visual-story > * {
  min-width: 0;
}

.join-contact-form input,
.join-contact-form select,
.join-contact-form textarea {
  font-size: 16px;
}

.form-footer a,
.member-contact-line a,
.legal-content a,
.home-contact-lines a {
  overflow-wrap: anywhere;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 4px;
}

.testimonial-arrow {
  width: 50px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(13, 101, 136, 0.22);
  box-shadow: 0 10px 26px rgba(0, 47, 67, 0.2);
  font-size: 0;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.testimonial-arrow::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.testimonial-arrow--prev::before {
  transform: rotate(-135deg);
}

.testimonial-arrow--next::before {
  transform: rotate(45deg);
}

.testimonial-arrow::before {
  content: none;
}

.testimonial-arrow svg {
  width: 25px;
  height: 25px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  color: var(--white);
  background: var(--blue-mid);
  border-color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 47, 67, 0.3);
}

.testimonial-arrow:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.testimonial-dots {
  gap: 4px;
}

.testimonial-dots button,
.testimonial-dots button.is-active {
  position: relative;
  width: 26px;
  height: 26px;
  padding: 0;
  background: transparent;
  border: 0;
}

.testimonial-dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--white);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: width 180ms ease, background 180ms ease;
}

.testimonial-dots button.is-active::before {
  width: 20px;
  background: var(--white);
}

@media (max-width: 1100px) {
  .agent-cards.team-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
    gap: clamp(22px, 3.5vw, 54px);
  }

  .agent-card,
  .agent-card img {
    min-height: 0;
  }

  .agent-card {
    aspect-ratio: 3 / 4;
  }

  .agent-card img {
    height: 100%;
  }
}

@media (max-width: 1024px) {
  .nav-menu-ready .site-header {
    justify-content: flex-start;
  }

  .nav-menu-ready .nav {
    right: auto;
    left: 16px;
    transform-origin: top left;
  }

  .process-contact h2,
  .moving-page-v2 .hero-moving h1 {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .moving-scroll-card {
    height: auto;
    min-height: 0;
    padding: 64px 16px 72px;
  }

  .moving-scroll-card::before {
    background-attachment: scroll;
  }

  .moving-pin {
    position: relative;
    top: auto;
    width: min(860px, 100%);
    height: auto;
    min-height: 0;
  }

  .moving-reveal-card {
    min-height: 0;
    overflow: visible;
  }

  .moving-reveal-head {
    padding: 0 0 28px;
  }

  .moving-reveal-content {
    min-height: 0;
  }

  .moving-step-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }

  .moving-side-progress {
    position: relative;
    display: block;
    width: min(680px, calc(100% - 20px));
    height: 54px;
    margin: 0 auto;
  }

  .moving-side-line,
  .moving-side-fill {
    top: 22px;
    right: auto;
    bottom: auto;
    left: 24px;
    width: calc(100% - 48px);
    height: 10px;
    transform: none;
  }

  .moving-side-fill {
    transform: scaleX(var(--reveal-progress));
    transform-origin: left center;
    transition: transform 120ms linear;
  }

  .moving-side-dot {
    top: 27px !important;
    right: auto;
    width: 44px;
    height: 44px;
    border-width: 5px;
    transform: translate(-50%, -50%);
  }

  .moving-side-dot:nth-of-type(1) {
    left: 24px;
  }

  .moving-side-dot:nth-of-type(2) {
    left: 34%;
  }

  .moving-side-dot:nth-of-type(3) {
    left: 66%;
  }

  .moving-side-dot:nth-of-type(4) {
    left: calc(100% - 24px);
  }

  .moving-side-dot::before {
    display: none;
  }

  .moving-current-card {
    display: grid;
    width: min(680px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

  .moving-current-card .moving-map-step {
    position: relative;
    inset: auto;
    grid-area: 1 / 1;
    width: 100%;
    min-height: 0;
    padding: 32px 34px;
  }

  .moving-reveal-card > .moving-downloads {
    position: static;
    width: min(680px, 100%);
    margin: 26px auto 0;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .summary-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .agent-detail {
    width: 100%;
    min-height: 0;
    padding: 0 24px 300px;
  }

  .agent-detail .virtual-tour-title {
    margin-bottom: 22px;
    padding: 38px 24px;
  }

  .agent-detail-copy.topic-copy.virtual-tour-copy {
    width: 100%;
    max-width: 720px;
    margin: 0;
    transform: none;
  }

  .agent-detail::after {
    top: auto;
    right: 0;
    bottom: 0;
    width: min(260px, 42vw);
    height: 290px;
    background-position: right bottom;
  }

  .member-page {
    width: min(720px, calc(100% - 32px));
    padding: 28px 0 64px;
  }

  .member-profile-hero,
  .member-presentation,
  .member-visual-story,
  .member-strengths {
    grid-template-columns: 1fr;
  }

  .member-profile-hero {
    min-height: 0;
  }

  .member-profile-photo img {
    height: clamp(320px, 55vw, 460px);
    min-height: 0;
    object-position: center 24%;
  }

  .member-presentation {
    gap: 26px;
    padding: 48px 0;
  }

  .member-visual-story img {
    height: clamp(280px, 50vw, 420px);
    min-height: 0;
  }

  .member-strengths article {
    min-height: 0;
  }

  .member-focus {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav-menu-ready .nav {
    right: auto;
    left: 12px;
  }

  .hero,
  .hero-process {
    min-height: 300px;
  }

  .hero-content {
    width: 100%;
    padding: 28px 18px;
  }

  .home-portrait {
    height: clamp(320px, 90vw, 420px);
    min-height: 0;
  }

  .home-intro {
    padding: 32px 22px;
  }

  .home-intro .signature-image {
    width: 100%;
    margin-bottom: 30px;
  }

  .home-intro > p:not(.eyebrow):not(.home-closing) {
    text-align: left;
    text-indent: 0;
    overflow-wrap: anywhere;
  }

  .home-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
    width: 100%;
  }

  .home-stats div {
    min-width: 0;
    padding: 13px 8px;
  }

  .home-choice {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin-bottom: 46px;
  }

  .home-choice a {
    min-height: 0;
    padding: 28px 22px;
  }

  .agent-detail {
    padding: 0 18px 280px;
  }

  .agent-detail .virtual-tour-title {
    margin-bottom: 20px;
    padding: 34px 20px;
    font-size: clamp(31px, 9vw, 42px);
  }

  .agent-detail-copy.topic-copy.virtual-tour-copy {
    padding: 24px 20px;
    border-left-width: 4px;
  }

  .agent-detail-copy.topic-copy.virtual-tour-copy p {
    font-size: 17px;
  }

  .agent-detail::after {
    width: min(250px, 62vw);
    height: 270px;
  }

  .before-after-section {
    padding: 48px 14px;
  }

  .before-after-slider {
    border-width: 4px;
  }

  .before-after-label {
    top: 8px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .before-label {
    left: 8px;
  }

  .after-label {
    right: 8px;
  }

  .team-section {
    width: calc(100% - 28px);
    padding: 44px 0 70px;
  }

  .team-section h2 {
    margin-bottom: 32px;
    font-size: 29px;
  }

  .process-summary {
    gap: 28px;
    padding: 48px 18px 58px;
  }

  .summary-cards a {
    min-height: 120px;
  }

  .chapter-list {
    width: calc(100% - 24px);
    margin-bottom: 48px;
  }

  .chapter {
    gap: 20px;
    padding: 34px 0;
  }

  .chapter-title span {
    font-size: 64px;
  }

  .chapter-title h2 {
    font-size: 30px;
  }

  .chapter-content {
    padding: 22px 16px;
  }

  .chapter-content p,
  .chapter-content li,
  .chapter-content .chapter-opening span {
    font-size: 16px;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .numbered-flow article {
    padding: 16px 14px;
    border-left-width: 4px;
  }

  .chapter-visual img {
    height: auto;
    max-height: none;
  }

  .chapter-actions {
    gap: 10px;
  }

  .action-button {
    min-height: 48px;
    padding: 12px;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .contact-form-page {
    margin-top: 24px;
  }

  .process-contact {
    width: calc(100% - 24px);
    gap: 28px;
    margin: 36px auto 48px;
    padding: 28px 18px;
  }

  .process-contact .back-link {
    margin-bottom: 16px;
    margin-left: 0;
  }

  .process-contact h1,
  .process-contact h2 {
    font-size: clamp(34px, 11vw, 46px);
    white-space: normal;
  }

  .process-contact p:not(.eyebrow) {
    text-align: left;
    overflow-wrap: anywhere;
  }

  .join-contact-form {
    padding: 22px 16px;
  }

  .moving-scroll-card {
    padding: 48px 12px 56px;
  }

  .moving-current-card .moving-map-step {
    padding: 26px 20px;
  }

  .moving-current-card .moving-map-step h3 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .moving-current-card .moving-map-step ol {
    padding-left: 20px;
  }

  .moving-current-card .moving-map-step li p {
    font-size: 14px;
  }

  .moving-reveal-card > .moving-downloads {
    grid-template-columns: 1fr;
  }

  .moving-page-v2 .moving-downloads .action-button {
    min-height: 56px;
  }

  .member-page {
    width: calc(100% - 24px);
    padding: 18px 0 44px;
  }

  .member-page .back-link {
    margin-bottom: 14px;
    padding: 8px 4px;
  }

  .member-profile-photo img {
    height: 300px;
  }

  .member-profile-intro {
    padding: 26px 22px;
  }

  .member-profile-intro h1 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .member-profile-intro p,
  .member-contact-line a,
  .member-presentation-copy p,
  .member-visual-story p:not(.eyebrow),
  .member-strengths p,
  .member-focus p {
    font-size: 16px;
  }

  .member-presentation-copy {
    padding: 24px 20px;
  }

  .member-visual-story > div {
    padding: 28px 22px;
  }

  .member-strengths article {
    padding: 26px 22px;
  }

  .member-strengths span {
    margin-bottom: 18px;
  }

  .member-focus {
    padding: 30px 22px;
  }

  .member-focus a {
    width: 100%;
    text-align: center;
  }

  .legal-page {
    width: calc(100% - 24px);
    padding: 36px 0 40px;
  }

  .legal-hero {
    margin-bottom: 24px;
  }

  .legal-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.05;
  }

  .legal-content {
    gap: 12px;
  }

  .legal-content section {
    padding: 22px 18px;
  }

  .site-footer {
    flex-wrap: wrap;
    padding: 18px 16px calc(24px + env(safe-area-inset-bottom));
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-height: calc(100dvh - 20px);
    padding: 16px;
    overflow: auto;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions button {
    width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track,
  .testimonial-arrow,
  .testimonial-dots button::before,
  .moving-side-fill,
  .moving-current-card .moving-map-step {
    transition: none;
  }

  .moving-current-card .moving-map-step.is-active,
  .moving-current-card .moving-map-step.is-active h3,
  .moving-current-card .moving-map-step.is-active li,
  .moving-side-dot.is-active {
    animation: none;
  }
}

/* Mobile/tablet navigation: keep only the floating burger, without a full bar. */
@media (max-width: 1024px) {
  .nav-menu-ready .site-header {
    position: fixed;
    top: max(10px, env(safe-area-inset-top));
    right: auto;
    left: max(10px, env(safe-area-inset-left));
    width: auto;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    pointer-events: none;
  }

  .nav-menu-ready .nav-toggle {
    pointer-events: auto;
    color: var(--white);
    background: rgba(23, 144, 191, 0.96);
    border-color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 28px rgba(0, 47, 67, 0.25);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .nav-menu-ready .nav-toggle:hover,
  .nav-menu-ready .nav-toggle:focus-visible {
    background: #0d6f96;
  }

  .nav-menu-ready .nav {
    top: calc(100% + 8px);
    right: auto;
    left: 0;
    pointer-events: none;
  }

  .nav-menu-ready .site-header.is-menu-open .nav {
    pointer-events: auto;
  }

  .member-page,
  .legal-page {
    padding-top: 78px;
  }

  .contact-form-page {
    margin-top: 78px;
  }
}

@media (max-width: 640px) {
  .nav-menu-ready .site-header {
    top: max(8px, env(safe-area-inset-top));
    left: max(8px, env(safe-area-inset-left));
  }

  .nav-menu-ready .nav {
    left: 0;
  }
}

/* Keep the shared-fee diagram airy with its additional introductory step. */
@media (min-width: 901px) {
  .income-grid > .income-path:first-child,
  .income-path--wide {
    min-height: 620px;
    justify-content: center;
    padding: 28px 30px 30px;
  }

  .income-grid > .income-path:first-child > h3,
  .income-path--wide > h3 {
    margin: 8px 0 0;
  }

  .income-grid > .income-path:first-child > .income-line,
  .income-path--wide > .income-line {
    flex: 0 0 52px;
    height: 52px;
    min-height: 52px;
    margin: 6px 0;
  }

  .income-grid > .income-path:first-child > p,
  .income-path--wide > p {
    margin: 0;
  }

  .income-grid > .income-path:first-child > strong,
  .income-path--wide > strong {
    margin: 6px 0 4px;
  }

  .income-path--wide .income-split {
    margin-top: 28px;
  }

  .income-path--wide .income-split p:first-child {
    margin-top: 22px;
  }

  .income-path--wide .income-split p:nth-child(2) {
    margin-top: 24px;
  }
}

/* The VR cutout obscures the content on narrow phones. */
@media (max-width: 640px) {
  .agent-detail {
    padding: 0 18px 32px;
  }

  .virtual-tour-background-video {
    object-position: 38% 56%;
  }

  .agent-detail::after {
    display: none;
  }

  .home-portrait img {
    object-position: 50% 22%;
  }

  .home-intro .signature-image {
    align-self: center;
    width: 100%;
    margin: 0 auto 30px;
  }

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

  .home-stats div {
    padding: 12px 4px;
  }

  .home-stats strong {
    font-size: clamp(24px, 7.5vw, 30px);
  }

  .home-stats span {
    font-size: clamp(9px, 2.7vw, 12px);
    line-height: 1.15;
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
  }

  .reviews-links {
    width: 100%;
    gap: 4px;
    flex-wrap: nowrap;
  }

  .reviews-all-label {
    min-width: 0;
    flex: 1 1 auto;
    font-size: clamp(9.5px, 2.8vw, 13px);
  }

  .review-logo {
    height: 32px;
    padding: 4px 5px;
    flex: 0 0 auto;
  }

  .review-logo img {
    max-width: none;
    max-height: 22px;
  }

  .review-logo-google img {
    width: clamp(22px, 6.5vw, 30px);
  }

  .review-logo-immodvisor img {
    width: clamp(82px, 25vw, 108px);
  }

  .agent-cards.team-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
    margin-top: 22px;
  }

  .agent-cards.team-card-grid .agent-card {
    min-width: 0;
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .agent-cards.team-card-grid .agent-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .agent-cards.team-card-grid .agent-card div {
    min-height: 56px;
    padding: 6px;
    font-size: clamp(10px, 3vw, 13px);
    line-height: 1.15;
  }

  .agent-cards.team-card-grid .agent-card strong,
  .agent-cards.team-card-grid .agent-card span {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .moving-page-v2 .hero-moving.moving-hero {
    width: 100%;
    margin: 0;
    padding-top: 0;
  }

  .moving-page-v2 .hero-moving .hero-content {
    width: calc(100% - 32px);
    padding: 56px 0 32px;
    align-items: center;
    text-align: center;
  }

  .moving-page-v2 .hero-moving h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.8vw, 46px);
    line-height: 1;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }

  .moving-page-v2 .hero-moving p:not(.eyebrow) {
    width: 100%;
    max-width: 360px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.4;
  }

  .income-path--wide {
    padding: 20px 10px 24px;
  }

  .income-path--wide > .income-line {
    flex: 0 0 24px;
    height: 24px;
    min-height: 24px;
  }

  .income-path--wide .income-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
  }

  .income-path--wide .income-split p,
  .income-path--wide .income-split p:first-child,
  .income-path--wide .income-split p:nth-child(2) {
    width: 100%;
    margin: 10px 0 0;
    padding: 0;
    font-size: clamp(13px, 3.8vw, 15px);
  }

  .income-path--wide .income-split strong {
    min-width: min(138px, 100%);
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .income-path--wide .income-split::before,
  .income-path--wide .income-split::after {
    display: block;
    top: -24px;
    height: 96px;
  }

  .income-path--wide .income-split::before {
    transform: rotate(72deg);
  }

  .income-path--wide .income-split::after {
    transform: rotate(-72deg);
  }
}

/* Texture limited to the main colored backgrounds. Interactive controls and media stay untouched. */
:where(
  .home-hero,
  .before-after-section,
  .home-contact,
  .client-reviews,
  .process-summary,
  .chapter-content,
  .process-contact,
  .moving-page:not(.moving-page-v2),
  .join-redesign,
  .join-video-card,
  .join-entrepreneur,
  .join-training,
  .join-training article,
  .join-testimonials,
  .join-application,
  .member-presentation-copy,
  .member-visual-story,
  .member-focus,
  .site-footer
) {
  background-image: url("assets/texture-fond-5.png");
  background-repeat: repeat;
  background-size: 250px 200px;
}
