@charset "UTF-8";
/* ─── VARIABLES & RESET (SCSS) ─────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 300;
  color: #133A63;
  background: #ffffff;
  overflow-x: hidden;
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

/* ─── CONTAINER ──────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.ctlarge {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── TYPOGRAPHY ──────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #688D84;
  margin-bottom: 14px;
  background: rgba(147, 199, 128, 0.3);
  border-radius: 4px;
  letter-spacing: 3px;
  padding: 5px 10px;
  color: #133A63;
}

.section-tag-light {
  font-weight: 400;
  color: #688D84;
  letter-spacing: 30%;
  text-transform: uppercase;
}
.section-tag-light.blanc {
  color: #ffffff;
}

.section-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.5em);
  font-weight: 400;
  line-height: 1.2;
  color: #133A63;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.4rem;
  color: #133A63;
  max-width: 560px;
  margin-bottom: 44px;
}

/* ─── BUTTONS ──────────────────────────── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #133A63;
  padding: 12px 28px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #133A63;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover {
  background: #133A63;
  color: #ffffff;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 12px 38px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #688D84;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-white:hover {
  background: rgba(147, 199, 128, 0.3);
  transform: translateY(-1px);
  color: #ffffff;
}

.text-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: #133A63;
  padding-bottom: 2px;
  transition: opacity 0.2s;
  position: relative;
  cursor: pointer;
}
.text-link:after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 40%;
  background: #133A63;
  height: 1px;
  transition: all 0.2s ease-in-out;
  content: "";
}
.text-link:hover {
  opacity: 0.7;
}
.text-link:hover:after {
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.06);
}
.navbar.scrolled .navbar__logo img {
  filter: brightness(0);
}
.navbar.scrolled .navbar__logo:after {
  background: #133A63;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.4s;
  position: relative;
  z-index: 2;
}
.navbar__logo:after {
  width: 40px;
  height: 1px;
  content: "";
  background: #ffffff;
  transform: translateX(40px);
}
@media (max-width: 800px) {
  .navbar__logo:after {
    display: none;
  }
}
.navbar__logo img,
.navbar__logo svg {
  width: 196px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 800px) {
  .navbar__logo img,
  .navbar__logo svg {
    width: 150px;
  }
}

.navbar.scrolled .navbar__logo {
  color: #133A63;
}
.navbar.scrolled .navbar__logo path {
  fill: #133A63;
}

/* Desktop links */
.navbar__links {
  display: flex;
  gap: 0;
  align-items: center;
}

.navbar__item {
  position: relative;
}

.navbar__item > a,
.navbar__item > .nav-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s;
  padding: 8px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", system-ui, sans-serif;
  white-space: nowrap;
}

.navbar.scrolled .navbar__item > a,
.navbar.scrolled .navbar__item > .nav-trigger {
  color: #133A63;
}

.navbar__item > a:hover,
.navbar__item > .nav-trigger:hover {
  color: #ffffff;
}

.navbar.scrolled .navbar__item > a:hover,
.navbar.scrolled .navbar__item > .nav-trigger:hover,
.navbar__item > a.active,
.navbar.scrolled .navbar__item > a.active {
  color: #688D84;
}

/* Chevron */
.nav-trigger .chevron {
  width: 10px;
  height: 10px;
  display: inline-flex;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.navbar__item.open > .nav-trigger .chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.13), 0 0 0 1px rgba(0, 0, 0, 0.06);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  z-index: 300;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.06));
}

.navbar__item.open .nav-dropdown {
  pointer-events: auto;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #133A63;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: #d6e4d0;
  color: #688D84;
}

.nav-dropdown a .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(147, 199, 128, 0.3);
  flex-shrink: 0;
  transition: background 0.18s;
}

.nav-dropdown a:hover .dot {
  background: #688D84;
}

/* Right side */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 800px) {
  .navbar__right img {
    display: none;
  }
}

/* ── LANG SWITCH ─────────────────────────────────── */
.lang-switch {
  position: relative;
}

.lang-switch__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 9px;
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}

.navbar.scrolled .lang-switch__btn {
  color: #7a7e7a;
}

.lang-switch__btn:hover,
.lang-switch.open .lang-switch__btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.navbar.scrolled .lang-switch__btn:hover,
.navbar.scrolled .lang-switch.open .lang-switch__btn {
  color: #688D84;
  background: #d6e4d0;
}

.lang-switch__btn .lang-globe {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.55;
}

.lang-switch__btn .lang-chevron {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.lang-switch.open .lang-switch__btn .lang-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.lang-switch__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 114px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.06);
  padding: 5px;
  opacity: 0;
  pointer-events: none;
  z-index: 400;
}

.lang-switch.open .lang-switch__dropdown {
  pointer-events: auto;
}

.lang-switch__option {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 9px 12px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #133A63;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}

.lang-switch__option:hover {
  background: #d6e4d0;
  color: #688D84;
}

.lang-switch__option.active {
  color: #688D84;
  font-weight: 500;
  background: #d6e4d0;
}

.lang-switch__option .flag {
  font-size: 0.88rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 2;
}

.navbar__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #ffffff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
}

.navbar.scrolled .navbar__burger span {
  background: #133A63;
}

.navbar__burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.navbar__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.navbar__drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  pointer-events: none;
}

.navbar__drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 28, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s;
}

.navbar__drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #ffffff;
  box-shadow: -8px 0 48px rgba(0, 0, 0, 0.14);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.navbar__drawer.open {
  pointer-events: auto;
}

.navbar__drawer.open .navbar__drawer-backdrop {
  opacity: 1;
}

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

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.drawer__header_logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.drawer__header_logo svg {
  width: 150px;
  height: -moz-fit-content;
  height: fit-content;
}

.drawer__close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBFAF6;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #133A63;
  transition: background 0.2s;
}

.drawer__close:hover {
  background: rgba(147, 199, 128, 0.3);
}

.drawer__nav {
  padding: 20px 0;
  flex: 1;
}

.drawer__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.drawer__item > a,
.drawer__item > .drawer__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #133A63;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: "DM Sans", system-ui, sans-serif;
  text-align: left;
  transition: color 0.2s;
}

.drawer__item > a:hover,
.drawer__item > .drawer__trigger:hover {
  color: #688D84;
}

.drawer__item > a.active {
  color: #688D84;
  font-weight: 500;
}

.drawer__chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.25s;
}

.drawer__item.open > .drawer__trigger .drawer__chevron {
  transform: rotate(180deg);
}

.drawer__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  background: #FBFAF6;
}

.drawer__item.open .drawer__sub {
  max-height: 300px;
}

.drawer__sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px 12px 44px;
  font-size: 1.4rem;
  color: #7a7e7a;
  transition: color 0.2s;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.drawer__sub a:hover {
  color: #688D84;
}

.drawer__sub a .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(147, 199, 128, 0.3);
  flex-shrink: 0;
}

.drawer__footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer__lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.drawer__lang-btn {
  font-family: var(--font-b);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 2px;
  transition: color 0.2s;
}

.drawer__lang-btn.active {
  color: #688D84;
  font-weight: 600;
}

.drawer__lang-btn:hover {
  color: #688D84;
}

.drawer__lang-sep {
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.15);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn-green-sm {
  display: inline-flex;
  align-items: center;
  background: #688D84;
  color: #ffffff;
  padding: 10px 22px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-green-sm:hover {
  background: #688D84;
}

@media (max-width: 860px) {
  .navbar__links {
    display: none;
  }
  .navbar__burger {
    display: flex;
  }
}
/* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center;
}

.hero__gradient {
  position: absolute;
  z-index: 2;
  height: 30vw;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(180deg, rgba(147, 199, 128, 0) 0%, rgb(128, 195, 182) 55%, rgb(108, 191, 236) 100%);
  opacity: 0.65;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 58, 99, 0.55);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 80px 40px 0;
}

.hero__eyebrow {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a8c4a2;
  margin-bottom: 18px;
  opacity: 0;
}

.hero__title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;
  opacity: 0;
}
.hero__title em {
  font-style: normal;
  font-weight: 700;
}

.hero__sub {
  font-size: 1.6rem;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-bottom: 56px;
  opacity: 0;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
}

.hero__scroll svg {
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
/* ── HERO FILAIRE SVG ────────────────── */
.hero__filaire {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 1079px;
  height: 893px;
  opacity: 0.6;
}
@media (max-width: 1079px) {
  .hero__filaire {
    width: 100vw;
  }
}

.hero__filaire svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__filaire svg path {
  fill: none;
  stroke-width: 1.2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  will-change: stroke-dashoffset;
}

/* ═══════════════════════════════════════
       MENTORS SECTION
    ═══════════════════════════════════════ */
.mentors {
  padding: 100px 0;
  background: #FBFAF6;
  text-align: center;
}

.mentors .section-title,
.mentors .section-desc {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.mentors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.mentors__card {
  padding: 30px 22px;
  border-radius: 12px;
  text-align: left;
  transition: box-shadow 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mentors__card h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #133A63;
  margin: 14px 0 8px;
}

.mentors__card p {
  font-size: 1.4rem;
  color: #7a7e7a;
}

.mentors__icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #688D84;
}

/* ═══════════════════════════════════════
       DIFFERENCE
    ═══════════════════════════════════════ */
.difference {
  padding: 0 0 180px 0;
  background: #FBFAF6;
}

.difference__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.difference__text p {
  font-size: 1.4rem;
  color: #133A63;
  margin-bottom: 18px;
}

.difference__text p strong {
  color: var(--dark);
  font-weight: 500;
}

.difference__text .btn-outline {
  margin-top: 14px;
}

.difference__image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/4;
}

.difference__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s;
  border-radius: 5px;
}

.difference__image:hover img {
  transform: scale(1.04);
}

.textImg-decalage .difference__inner {
  grid-template-columns: 1fr 1fr;
  gap: 0px;
}
@media (max-width: 800px) {
  .textImg-decalage .difference__inner {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}
.textImg-decalage .difference__image {
  overflow: visible;
  aspect-ratio: auto;
}
.textImg-decalage .difference__image img {
  transform: translate(80px, 0) !important;
  height: 500px;
  width: 100%;
}
@media (max-width: 800px) {
  .textImg-decalage .difference__image img {
    transform: translate(0, 0) !important;
    height: 350px;
  }
}

/* ═══════════════════════════════════════
       BANNER
    ═══════════════════════════════════════ */
.banner {
  background: #FBFAF6;
}
.banner .container {
  z-index: 2;
  position: relative;
}
.banner .container .banner__text {
  padding: 72px 30% 72px 72px;
  background: #688D84;
  border-radius: 5px;
}
@media (max-width: 640px) {
  .banner .container .banner__text {
    padding: 45px;
  }
}

.banner__inner {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 64px;
  align-items: center;
}

.banner--full .banner__inner {
  grid-template-columns: 1fr;
}

.banner--full .container .banner__text {
  padding: 72px;
  background: #688D84;
  border-radius: 5px;
}
@media (max-width: 640px) {
  .banner--full .container .banner__text {
    padding: 45px;
  }
}

.banner__text h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.banner__text p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  line-height: 1.75;
}

.banner__card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.banner__card-header {
  background: #FBFAF6;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner__card-header span {
  font-size: 1.4rem;
  font-weight: 500;
  color: #133A63;
}

.banner__badge {
  background: #688D84;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__card-body {
  padding: 20px;
}

.banner__card-body p {
  font-size: 1.4rem;
  color: var(--muted);
  margin: 12px 0;
}

.banner__mentor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner__mentor strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

.banner__mentor span {
  font-size: 0.78rem;
  color: var(--muted);
}

.banner__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--green));
  flex-shrink: 0;
}

.banner__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 500;
  margin-top: 8px;
}

.banner-bg {
  background: #d6e4d0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
}

/* ═══════════════════════════════════════
       PROFILES
    ═══════════════════════════════════════ */
.profiles {
  padding: 180px 0;
  background: #d6e4d0;
  position: relative;
}
@media (max-width: 640px) {
  .profiles {
    padding: 100px 0;
  }
}
.profiles .profiles-filaire {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
  opacity: 0.6;
}
.profiles .profiles-filaire img {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.profiles .container {
  position: relative;
  z-index: 2;
}

.profiles__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.profiles__cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 640px) {
  .profiles__cards-stack {
    order: 2;
  }
}

.profiles__mini-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.profiles__mini-card--alt {
  background: #688D84;
}

.profiles__mini-card--alt strong,
.profiles__mini-card--alt span {
  color: #ffffff;
}

.tag-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #688D84;
  display: block;
  margin-bottom: 12px;
}

.profiles__mini-card p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
}

.profiles__mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profiles__mini-row strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

.profiles__mini-row span {
  font-size: 0.78rem;
  color: var(--muted);
}

.profiles__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.profiles__avatar--a {
  background: linear-gradient(135deg, #a8c4a2, #4a7c59);
}

.profiles__avatar--b {
  background: linear-gradient(135deg, #c4b4a8, #7c5a4a);
}

.profiles__avatar--c {
  background: linear-gradient(135deg, #a4a8c4, #4a4f7c);
}

.profiles__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.profiles__right .section-title {
  max-width: 480px;
}

.profiles__right p {
  font-size: 1.4rem;
  line-height: 1.75;
}

.profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #133A63;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.profile-tag img {
  width: 18px;
}

.profile-tag--green {
  background: #688D84;
  color: #ffffff;
  border-color: #688D84;
}

.profile-tag:hover {
  background: #ffffff;
  border-color: #688D84;
}

/* ═══════════════════════════════════════
       SOLUTIONS
    ═══════════════════════════════════════ */
.solutions {
  padding: 100px 0;
  background: #FBFAF6;
}

.solutions .section-title {
  max-width: 600px;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  overflow: hidden;
  margin-top: 52px;
}

.solutions__item {
  padding: 50px 45px;
  background: #ffffff;
  border-radius: 4px;
  transition: background 0.3s;
  box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.09);
}

.solutions__item:hover {
  background: #d6e4d0;
}

.solutions__item h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #133A63;
  margin-bottom: 10px;
  transition: color 0.3s;
  font-family: "Montserrat", system-ui, sans-serif;
}

.solutions__item:hover h3 {
  color: #133A63;
}

.solutions__item p {
  font-size: 1.4rem;
  color: #133A63;
  line-height: 1.6;
  font-family: "Montserrat", system-ui, sans-serif;
}

.solutions__cta {
  margin-top: 44px;
  text-align: center;
}

/* ═══════════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-section .section-title,
.cta-section .section-desc {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-cards {
  display: grid;
  grid-template-columns: 440px 2fr;
  gap: 24px;
  margin-top: 52px;
  text-align: left;
}

.cta-card {
  padding: 55px;
  border-radius: 8px;
}
.cta-card h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #133A63;
  margin: 14px 0 14px;
  line-height: 1.3;
}
.cta-card p {
  font-size: 1.4rem;
  color: #133A63;
  line-height: 1.7;
  font-family: "Montserrat", system-ui, sans-serif;
}

.cta-card--light {
  background: #FBFAF6;
}

.cta-logo {
  margin-top: 28px;
  opacity: 1;
}

.cta-card--green {
  background: #688D84;
}
.cta-card--green h3 {
  color: #ffffff;
}
.cta-card--green p {
  color: rgba(255, 255, 255, 0.65);
}

.cta-checklist {
  margin: 22px 0 28px;
  -moz-column-count: 2;
       column-count: 2;
  gap: 80px;
}
@media (max-width: 640px) {
  .cta-checklist {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}
.cta-checklist svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--white);
}

/* ═══════════════════════════════════════
       SEO BLOCK
    ═══════════════════════════════════════ */
.seo-block {
  padding: 120px 0 60px;
}
@media (max-width: 640px) {
  .seo-block {
    padding: 80px 0 40px;
  }
}
.seo-block .center {
  text-align: center;
}

.seo-block h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.2;
  font-weight: 600;
  color: #133A63;
  margin-bottom: 18px;
}

.seo-block p {
  font-size: 1.4rem;
  color: #133A63;
  line-height: 1.75;
  margin-bottom: 22px;
  /* limit visible lines and prepare transition */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  max-height: 8.75em;
  /* approximate 5 lines */
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

.seo-block.expanded p {
  -webkit-line-clamp: unset;
  max-height: none;
}

/* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
.pre-footer {
  width: 560px;
  max-width: 90vw;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
  transform: translate(0, 100px);
}

.footer {
  background: #ffffff;
  position: relative;
  z-index: 2;
}
.footer .container {
  padding: 100px 0;
  border-top: 1px solid rgba(19, 58, 99, 0.1);
  font-weight: 400;
}
@media (max-width: 640px) {
  .footer .container {
    padding: 40px 30px !important;
  }
}

.footer__inner {
  display: grid;
  grid-template-columns: 180px repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 52px;
}
@media (max-width: 120px) {
  .footer__inner {
    max-width: 90vw;
  }
}

.footer__brand .navbar__logo {
  color: #ffffff;
}

.footer__col_title {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #133A63;
  margin-bottom: 14px;
}

.footer__col:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  justify-content: flex-end;
}
@media (max-width: 640px) {
  .footer__col:last-child {
    align-items: flex-start;
    text-align: left;
  }
}
.footer__col p {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.footer__col a {
  display: block;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #133A63;
  transition: color 0.2s;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.footer__col a:before {
  width: 17px;
  height: 1px;
  background: #133A63;
  content: "";
  transition: all 0.2s ease-in-out;
}
.footer__col a:hover:before {
  width: 5px;
}
.footer__col .rs {
  display: flex;
  flex-direction: row;
  gap: 6px;
  margin-top: 20px;
}
.footer__col .rs a {
  transition: all 0.2s ease-in-out;
}
.footer__col .rs a:hover {
  opacity: 0.5;
}
.footer__col .rs a:before {
  display: none;
}
.footer__col .rs img {
  width: 22px;
}

.footer__bottom {
  border-top: 1px solid rgba(19, 58, 99, 0.1);
  padding: 20px 40px;
  font-size: 1.2rem;
  color: rgba(19, 58, 99, 0.5);
  text-align: center;
}
.footer__bottom p,
.footer__bottom a {
  font-size: 1.2rem;
  color: rgba(19, 58, 99, 0.5);
  text-align: center;
}
.footer__bottom a {
  transition: all 0.2s ease-in-out;
}
.footer__bottom a:hover {
  color: #133A63;
}

/* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
@media (max-width: 1000px) {
  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .mentors__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner__inner {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .difference__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .profiles__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .cta-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .navbar__links {
    display: none;
  }
}
@media (max-width: 560px) {
  .mentors__grid {
    grid-template-columns: 1fr;
  }
  .solutions__grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
}
/* Spacer to force scroll */
.spacer {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #133A63;
  opacity: 0.3;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
       CARD WRAPPER
    ============================================ */
.card-scene {
  position: absolute;
  width: 35%;
  max-width: 620px;
  right: 0;
  /* Initial state for GSAP */
  opacity: 0;
}
@media (max-width: 640px) {
  .card-scene {
    position: relative;
    width: 100%;
    max-width: 90vw;
    right: auto;
    margin-bottom: 40px;
  }
}

/* ============================================
       MAIN CARD
    ============================================ */
.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 40px 36px 44px;
  box-shadow: 0 8px 40px rgba(26, 51, 88, 0.1), 0 2px 8px rgba(26, 51, 88, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: visible;
}
@media (max-width: 640px) {
  .card {
    padding: 25px 35px;
  }
}

/* Left content */
.card__content {
  flex: 1;
}

.card__title {
  font-size: 32px;
  font-weight: 700;
  color: #133A63;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.card__subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #8a96aa;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

/* Skeleton lines */
.card__lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card__line {
  height: 10px;
  background: #e8ebf0;
}

.card__line--long {
  width: 72%;
}

.card__line--short {
  width: 52%;
}

/* ============================================
       LOGO BADGE (top right)
    ============================================ */
.card__badge {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(205deg, rgb(147, 199, 128) 0%, rgb(108, 191, 236) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(92, 184, 138, 0.35);
  position: relative;
  border: 6px solid #e8ebf0;
}

/* Outer ring */
/* Infinity SVG icon */
.card__badge svg {
  width: 38px;
  height: 38px;
}

/* ============================================
       CHECK MARK (bottom left — overlapping)
    ============================================ */
.card__check {
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #93C780;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(122, 200, 122, 0.4);
}

.card__check svg {
  width: 28px;
  height: 28px;
}

/* ============================================
       ANIMATIONS — GSAP will override opacity/transform
       but we define transition for hover
    ============================================ */
.card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 16px 56px rgba(26, 51, 88, 0.14), 0 4px 12px rgba(26, 51, 88, 0.08);
  transform: translateY(-3px);
}

.card__badge {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover .card__badge {
  transform: scale(1.06) rotate(3deg);
  box-shadow: 0 8px 28px rgba(92, 184, 138, 0.45);
}

/* Second card instance for demo */
.demo-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a0aab8;
  margin-bottom: 16px;
  margin-top: 80px;
}

/* ============================================
       STACK SCENE
    ============================================ */
.stack-scene {
  position: relative;
  width: 100%;
  max-width: 680px;
  /* Height driven by tallest card + offsets */
  height: 420px;
  /* ============================================
     CARD BASE
  ============================================ */
}
.stack-scene .card2 {
  position: absolute;
  width: 76%;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 8px 40px rgba(26, 51, 88, 0.09), 0 2px 8px rgba(26, 51, 88, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.stack-scene .card2:hover {
  box-shadow: 0 16px 56px rgba(26, 51, 88, 0.13), 0 4px 12px rgba(26, 51, 88, 0.07);
}
.stack-scene {
  /* ============================================
     CARD 1 — CODIR (big, top-left)
  ============================================ */
}
.stack-scene .card--codir {
  top: 0;
  left: 0;
  width: 78%;
  z-index: 3;
}
.stack-scene .card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 32px 24px;
  border-bottom: 1.5px solid #e2e6ec;
}
.stack-scene .card__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.stack-scene .card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #d8dde6;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #f0f2f5;
}
.stack-scene .card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stack-scene {
  /* Avatar placeholder */
}
.stack-scene .avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stack-scene .avatar-placeholder svg {
  width: 44px;
  height: 44px;
}
.stack-scene .card__body {
  padding: 22px 32px 28px;
}
.stack-scene .card__desc {
  font-size: 15px;
  color: #8a96aa;
  line-height: 1.6;
  font-weight: 400;
}
.stack-scene {
  /* ============================================
     CARD 2 — Dirigeant (middle, right-offset)
  ============================================ */
}
.stack-scene .card--dirigeant {
  top: 200px;
  right: 50px;
  width: 70%;
  z-index: 2;
  opacity: 0.8;
}
.stack-scene {
  /* ============================================
     CARD 3 — DRH (bottom, further right)
  ============================================ */
}
.stack-scene .card--drh {
  top: 300px;
  right: 0;
  width: 65%;
  z-index: 1;
  opacity: 0.8;
}
.stack-scene {
  /* Small card layout */
}
.stack-scene .card--small {
  padding: 24px 28px;
}
.stack-scene .card--small .card__top {
  border: none;
  padding: 0 0 16px;
}
.stack-scene .card--small .card__title {
  font-size: 20px;
}
.stack-scene .card--small .card__avatar {
  width: 58px;
  height: 58px;
}
.stack-scene .card__lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stack-scene .card__line {
  height: 9px;
  background: #e2e6ec;
}
.stack-scene .card__line--long {
  width: 65%;
}
.stack-scene .card__line--short {
  width: 48%;
}
.stack-scene {
  /* ============================================
     INITIAL OPACITY (GSAP sets these)
  ============================================ */
}
.stack-scene .stack-scene {
  opacity: 0;
}

.body-master .container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}
.body-master {
  /* ─── TYPOGRAPHY TOKENS ──────────────────────────────── */
}
.body-master .tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #688D84;
  margin-bottom: 12px;
}
.body-master .tag--white {
  color: rgba(255, 255, 255, 0.65);
}
.body-master .tag--dark {
  color: #133A63;
}
.body-master h1.display,
.body-master h2.display {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.12;
  color: #133A63;
}
.body-master h1.display {
  font-size: clamp(2.2rem, 5vw, 5rem);
}
.body-master h2.display {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}
.body-master h2.display em {
  font-style: italic;
  font-weight: 400;
  color: #688D84;
}
.body-master h2.display--white {
  color: #ffffff;
}
.body-master .lead {
  font-size: 1.4rem;
  color: #133A63;
  line-height: 1.75;
  max-width: 580px;
  color: #ffffff;
}
.body-master .lead--center {
  margin: 0 auto;
  text-align: center;
}
.body-master {
  /* ─── BUTTONS ────────────────────────────────────────── */
}
.body-master .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.25s, color 0.25s;
}
.body-master .btn:hover {
  transform: translateY(-2px);
}
.body-master .btn--outline {
  background: transparent;
  border: 1px solid #133A63;
  color: #133A63;
}
.body-master .btn--outline:hover {
  background: #133A63;
  color: #ffffff;
}
.body-master .btn--green {
  background: #688D84;
  color: #ffffff;
}
.body-master .btn--green:hover {
  background: #688D84;
}
.body-master .btn--white {
  background: #ffffff;
  color: #688D84;
}
.body-master .btn--white:hover {
  background: rgba(147, 199, 128, 0.3);
}
.body-master {
  /* ─── SEPARATOR ─────────────────────────────────────── */
}
.body-master .sep {
  width: 36px;
  height: 2px;
  background: #688D84;
  margin-bottom: 24px;
}
.body-master .sep--center {
  margin-left: auto;
  margin-right: auto;
}
.body-master {
  /* ════════════════════════════════════════════════════════
     HERO — PAGE TYPE (hero compact + image)
  ════════════════════════════════════════════════════════ */
}
.body-master .page-hero {
  background: #688D84;
  padding: 140px 0 0;
  overflow: hidden;
  position: relative;
}
.body-master .page-hero-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: #FBFAF6;
}
.body-master .page-hero__content {
  text-align: center;
  padding: 0 48px 56px;
  position: relative;
  z-index: 1;
}
.body-master .page-hero__content .tag {
  color: rgba(255, 255, 255, 0.65);
}
.body-master .page-hero__content h1 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2rem, 4.5vw, 5rem);
  line-height: 1.15;
  color: #133A63;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 300;
}
.body-master .page-hero__content .lead {
  margin: 0 auto;
  max-width: 560px;
  text-align: center;
}
.body-master .page-hero__image {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.14);
}
.body-master .page-hero__image img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 40%;
     object-position: center 40%;
  display: block;
}
.body-master {
  /* ════════════════════════════════════════════════════════
     SECTION — INTRO CENTERED (expérience opérationnelle)
  ════════════════════════════════════════════════════════ */
}
.body-master .intro-center {
  padding: 88px 0;
  text-align: center;
  background: #FBFAF6;
}
.body-master .intro-center .lead {
  color: #133A63;
}
.body-master .intro-center h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 500;
  color: #133A63;
  line-height: 1.25;
  max-width: 680px;
  margin: 0 auto 20px;
}
.body-master .intro-center .lead {
  max-width: 600px;
}
.body-master {
  /* ════════════════════════════════════════════════════════
     SECTION — EXPERTISE (image gauche + texte droite)
  ════════════════════════════════════════════════════════ */
}
.body-master .expertise {
  padding: 88px 0;
  background: #FBFAF6;
}
.body-master .expertise__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 150px;
  align-items: center;
}
.body-master .expertise__image {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}
.body-master .expertise__image img {
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: none !important;
  border-radius: 5px;
}
.body-master {
  /* Profile badge in image */
}
.body-master .expertise__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.body-master .expertise__text h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 500;
  color: #133A63;
  line-height: 1.25;
  margin-bottom: 24px;
}
.body-master .expertise__text p {
  font-size: 1.4rem;
  color: #133A63;
  margin-bottom: 18px;
  line-height: 1.75;
}
.body-master .expertise__text p strong {
  color: #133A63;
  font-weight: 500;
}
.body-master .expertise__text p:last-of-type {
  margin-bottom: 32px;
}
.body-master {
  /* ════════════════════════════════════════════════════════
     SECTION — CONTACT (info gauche + form droite)
  ════════════════════════════════════════════════════════ */
}
.body-master .contact-section {
  padding: 88px 0;
  background: #d6e4d0;
  position: relative;
}
.body-master .contact-section.blanc {
  background: #ffffff;
}
.body-master .contact-section .container {
  position: relative;
}
.body-master .contact-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: #FBFAF6;
  z-index: 1;
}
.body-master .contact-section__inner {
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: flex-end;
}
@media (max-width: 960px) {
  .body-master .contact-section__inner {
    flex-direction: column;
  }
}
.body-master {
  /* Left info card */
}
.body-master .contact-info {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.09);
  position: absolute;
  left: 0;
  z-index: 3;
  top: 80px;
  width: 440px;
}
@media (max-width: 960px) {
  .body-master .contact-info {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }
}
.body-master .contact-info__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #133A63;
  margin-bottom: 28px;
  padding: 30px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.4);
  justify-content: space-between;
}
.body-master .contact-info__logo strong {
  display: block;
  font-weight: 700;
  font-size: 2.2rem;
}
.body-master .contact-info__section {
  margin-bottom: 24px;
  padding: 10px 30px;
  display: flex;
  gap: 60px;
}
.body-master .contact-info__label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #133A63;
  margin-bottom: 6px;
}
.body-master .contact-info__value {
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1.65;
}
.body-master .contact-info__value a {
  color: #688D84;
  transition: opacity 0.2s;
}
.body-master .contact-info__value a:hover {
  opacity: 0.7;
}
.body-master {
  /* Right form card */
}
.body-master .contact-form-card {
  background: #688D84;
  border-radius: 12px;
  padding: 80px 12%;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.14);
  width: calc(100% - 170px);
  position: relative;
  z-index: 2;
  transform: translateX(150px) !important;
}
@media (max-width: 960px) {
  .body-master .contact-form-card {
    width: 100%;
    transform: none !important;
  }
}
.body-master .contact-form-card h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 2.3rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}
.body-master .contact-form-card .sub {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
}
.body-master .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.body-master .form-grid .full {
  grid-column: 1/-1;
}
.body-master .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.body-master .form-group label {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
}
.body-master .form-group input,
.body-master .form-group textarea,
.body-master .form-group select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.body-master .form-group.checkbox {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.body-master .form-group input[type=checkbox] {
  width: 20px;
  height: 20px;
  /* custom checkbox appearance */
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 2px solid #ffffff;
  border-radius: 4px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.body-master .form-group input[type=checkbox]:checked::after {
  content: "✓"; /* check mark */
  position: absolute;
  top: 13px;
  left: 8px;
  font-size: 2rem;
  color: #ffffff;
  line-height: 0;
}
.body-master .form-group input::-moz-placeholder, .body-master .form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.body-master .form-group input::placeholder,
.body-master .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.body-master .form-group input:focus,
.body-master .form-group textarea:focus,
.body-master .form-group select:focus {
  border-color: var(--sage);
  background: rgba(255, 255, 255, 0.12);
}
.body-master .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.body-master .form-group select {
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.body-master .form-group select option {
  background: #688D84;
  color: #ffffff;
}
.body-master .form-submit {
  margin-top: 28px;
}
.body-master .form-submit .btn {
  width: 50%;
  justify-content: center;
  background: #ffffff;
  color: #688D84;
  padding: 15px;
  font-size: 1.4rem;
  transition: background 0.25s, transform 0.2s;
}
@media (max-width: 800px) {
  .body-master .form-submit .btn {
    width: 100%;
  }
}
.body-master .form-submit .btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.body-master #notify {
  padding: 10px;
  margin-bottom: 20px;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
  cursor: pointer;
}
.body-master #notify.notify-error {
  background: #fee7e5;
  border: solid 1px #faada8;
  border-left-color: rgb(250, 173, 168);
  border-left-style: solid;
  border-left-width: 1px;
  border-left: solid 2px #f55c52;
  color: #f55c52 !important;
  padding: 22px;
  padding-right: 22px;
  border-radius: 2px;
  padding-right: 42px;
  position: fixed;
  font-weight: bold;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-sizing: border-box;
}
.body-master #notify.notify-error:after {
  content: url("../images/close-error.svg");
  width: 20px;
  height: 20px;
  top: 50%;
  right: 30px;
  display: block;
  position: absolute;
  transform: translateY(-50%);
}
.body-master #notify.notify-success {
  background: #dfebdd;
  border: solid 1px rgba(76, 175, 80, 0.5);
  border-left-color: rgba(76, 175, 80, 0.5);
  border-left-style: solid;
  border-left-width: 1px;
  border-left: solid 2px #4caf50;
  border-radius: 2px;
  padding: 18px 50px 16px 20px;
  font-weight: bold;
  position: fixed;
  font-weight: bold;
  color: #4caf50 !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-sizing: border-box;
}
.body-master #notify.notify-success:after {
  content: url("../images/close-sucess.svg");
  width: 20px;
  height: 20px;
  top: 50%;
  right: 30px;
  display: block;
  position: absolute;
  transform: translateY(-50%);
}
.body-master {
  /* ════════════════════════════════════════════════════════
     SECTION — RÉSULTATS (texte gauche + image droite)
  ════════════════════════════════════════════════════════ */
}
.body-master .results {
  padding: 88px 0;
  background: #d6e4d0;
}
.body-master .results .card-scene-profil {
  transform: translate(-40px, 40px);
}
.body-master .results__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px;
  align-items: center;
}
.body-master .results__text h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 500;
  color: #133A63;
  line-height: 1.25;
  margin-bottom: 20px;
}
.body-master .results__text > p {
  font-size: 1.4rem;
  color: #133A63;
  margin-bottom: 32px;
  line-height: 1.75;
}
.body-master .results__text > p strong {
  font-weight: 700;
}
.body-master .results__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.body-master .results__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 1.4rem;
  color: #133A63;
  line-height: 1.6;
}
.body-master .results__bullet {
  width: 30px;
  height: 1px;
  background: #133A63;
  margin-top: 12px;
  flex-shrink: 0;
}
.body-master .results__item-text strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: #133A63;
  margin-bottom: 3px;
}
.body-master .results__image {
  border-radius: 12px;
  position: relative;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}
.body-master .results__image img {
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: none !important;
  border-radius: 5px;
}
.body-master .results__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.body-master {
  /* ════════════════════════════════════════════════════════
     SECTION — ENJEUX & OBJECTIFS (two col)
  ════════════════════════════════════════════════════════ */
}
.body-master .objectives {
  padding: 150px 0;
  background: #FBFAF6;
}
.body-master .objectives__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.body-master .objectives__left h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  font-weight: 500;
  color: #133A63;
  line-height: 1.2;
  margin-bottom: 18px;
}
.body-master .objectives__left p {
  font-size: 1.4rem;
  color: #133A63;
  margin-bottom: 36px;
  line-height: 1.75;
}
.body-master {
  /* Circular diagram */
}
.body-master .diagram {
  position: relative;
  margin: 0 auto;
}
.body-master .diagram__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(147, 199, 128, 0.3);
}
.body-master .diagram__ring--inner {
  inset: 40px;
  border-color: #688D84;
  border-style: dashed;
}
.body-master .diagram__center {
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  background: #688D84;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 8px;
}
.body-master .diagram__center strong {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}
.body-master .diagram__node {
  position: absolute;
  font-size: 0.68rem;
  font-weight: 500;
  color: #688D84;
  line-height: 1.3;
  text-align: center;
  width: 88px;
}
.body-master .diagram__node--top {
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.body-master .diagram__node--right {
  top: 50%;
  right: -72px;
  transform: translateY(-50%);
}
.body-master .diagram__node--bottom {
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.body-master .diagram__node--left {
  top: 50%;
  left: -72px;
  transform: translateY(-50%);
  text-align: right;
}
.body-master .diagram__dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #688D84;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #688D84;
}
.body-master {
  /* Domains grid */
}
.body-master .objectives__right h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #133A63;
  margin-bottom: 24px;
}
.body-master .domains__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.body-master .domain-card {
  padding: 24px 22px;
  background: #ffffff;
  box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.09);
  border-radius: 5px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.body-master .domain-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.body-master .domain-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #133A63;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
}
.body-master .domain-card p {
  font-size: 1.4rem;
  color: #133A63;
  line-height: 1.6;
}
.body-master {
  /* ════════════════════════════════════════════════════════
     RESPONSIVE
  ════════════════════════════════════════════════════════ */
}
@media (max-width: 1024px) {
  .body-master .expertise__inner,
  .body-master .results__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .body-master .expertise__image img,
  .body-master .results__image img {
    height: 340px;
  }
  .body-master .contact-section__inner {
    grid-template-columns: 1fr;
  }
  .body-master .objectives__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .body-master .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .body-master .container,
  .body-master .container--narrow {
    padding: 0 24px;
  }
  .body-master .navbar__links {
    display: none;
  }
  .body-master .page-hero__content {
    padding: 0 24px 48px;
  }
  .body-master .form-grid {
    grid-template-columns: 1fr;
  }
  .body-master .contact-form-card {
    padding: 32px 28px;
  }
  .body-master .domains__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .body-master .footer__inner {
    grid-template-columns: 1fr;
  }
}

.text-full {
  padding: 100px 0;
  text-align: left;
  color: #133A63;
}
.text-full-light {
  background: #FBFAF6;
}
.text-full h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.4;
}
.text-full div {
  color: #133A63;
  font-size: 1.4rem;
  line-height: 1.4;
}
.text-full div h3 {
  margin: 10px 0;
}
.text-full div + h2 {
  margin-top: 40px;
}
.text-full.center {
  text-align: center !important;
}
.text-full.center p {
  text-align: center !important;
  margin: 0 auto;
}

/* ============================================
       CARD SCENE
    ============================================ */
.card-scene-profil {
  width: 100%;
  max-width: 680px;
  opacity: 0;
  transform: translate(40px, 40px);
  /* ============================================
     CARD
  ============================================ */
}
.card-scene-profil .card-profil {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.09);
  padding: 20px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card-scene-profil .card:hover {
  box-shadow: 0 16px 56px rgba(26, 51, 88, 0.13), 0 4px 12px rgba(26, 51, 88, 0.07);
  transform: translateY(-2px);
}
.card-scene-profil {
  /* Left content */
}
.card-scene-profil .card__content {
  flex: 1;
}
.card-scene-profil .card__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #133A63;
  margin-bottom: 28px;
}
.card-scene-profil .card__lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-scene-profil .card__line {
  height: 10px;
  border-radius: 0;
  background: rgba(217, 217, 217, 0.5);
}
.card-scene-profil .card__line--long {
  width: 72%;
}
.card-scene-profil .card__line--short {
  width: 52%;
}
.card-scene-profil {
  /* Avatar — right side */
}
.card-scene-profil .card__avatar-wrap {
  flex-shrink: 0;
  padding: 5px;
  border-radius: 50%;
  background: rgba(217, 217, 217, 0.5);
}
.card-scene-profil .card__avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  background: #d0d5de;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-scene-profil .card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-scene-profil .card__avatar svg {
  width: 60px;
  height: 60px;
  opacity: 0.32;
}

.chart-scene {
  opacity: 0;
  width: 100%;
  max-width: 640px;
}

.chart-scene svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* Initial GSAP states set via CSS so no flash */
#layer-fan-right,
#layer-fan-left,
#layer-outer-ring,
#layer-inner-circle,
#layer-arcs,
#layer-icon-tl,
#layer-icon-bl,
#layer-icons-connectors,
#layer-center-text {
  opacity: 0;
}

/* All corner labels and curved letters start hidden */
.corner-label-group,
.st16-standalone,
.st1-standalone {
  opacity: 0;
}

.btn--sage {
  background: #688D84;
  color: #ffffff;
}
.btn--sage:hover {
  background: #5a7e76;
}

.service-block {
  padding: 100px 0;
  background: #FBFAF6;
  position: relative;
  overflow: hidden;
}
.service-block--alt {
  background: #d6e4d0;
}
.service-block--alt .service-block__inner {
  direction: rtl;
}
.service-block--alt .service-block__inner > * {
  direction: ltr;
}
.service-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-block__left {
  position: relative;
}
.service-block__image {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  position: relative;
}
.service-block__image .img-placeholder {
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-block__image .img-placeholder--blue {
  background: linear-gradient(135deg, #0f2e4d 0%, #1a4a6e 40%, #2d6a8a 100%);
}
.service-block__image .img-placeholder--green {
  background: linear-gradient(135deg, #2d5a50 0%, #3d7a6e 40%, #688D84 100%);
}
.service-block__right h2, .service-block__left h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  font-weight: 500;
  color: #133A63;
  line-height: 1.2;
  margin-bottom: 16px;
}
.service-block__right .intro-text, .service-block__left .intro-text {
  font-size: 1.5rem;
  color: #133A63;
  line-height: 1.75;
  margin-bottom: 36px;
  font-style: italic;
  opacity: 0.75;
  border-left: 3px solid #688D84;
  padding-left: 16px;
}
.service-block__right .desc, .service-block__left .desc {
  font-size: 1.4rem;
  color: #133A63;
  line-height: 1.75;
  margin-bottom: 36px;
}
@media (max-width: 1024px) {
  .service-block__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .service-block--alt .service-block__inner {
    direction: ltr;
  }
}

.service-number {
  font-size: 8rem;
  font-weight: 800;
  color: rgba(19, 58, 99, 0.06);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}

.service-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.card-profil-mini {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.09);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.card-profil-mini__content {
  flex: 1;
}
.card-profil-mini__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #133A63;
  margin-bottom: 8px;
}
.card-profil-mini__lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-profil-mini__line {
  height: 8px;
  background: rgba(217, 217, 217, 0.5);
}
.card-profil-mini__line--long {
  width: 70%;
}
.card-profil-mini__line--short {
  width: 50%;
}
.card-profil-mini__avatar-wrap {
  flex-shrink: 0;
  padding: 4px;
  border-radius: 50%;
  background: rgba(217, 217, 217, 0.3);
}
.card-profil-mini__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #d0d5de;
}
.card-profil-mini__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.phases {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}

.phase-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(19, 58, 99, 0.1);
}
.phase-item:first-child {
  border-top: 1px solid rgba(19, 58, 99, 0.1);
}

.phase-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #688D84;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.phase-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #133A63;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.phase-content p {
  font-size: 1.35rem;
  color: #133A63;
  line-height: 1.7;
  opacity: 0.8;
}

.results-box {
  background: #688D84;
  border-radius: 5px;
  padding: 28px 32px;
  margin-bottom: 32px;
}
.results-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.results-box p {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.results-box--sage {
  background: #688D84;
}

.metrics {
  background: #133A63;
  padding: 60px 0;
}
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 1024px) {
  .metrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .metrics__grid {
    grid-template-columns: 1fr;
  }
}

.metric-item {
  text-align: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.metric-item:last-child {
  border-right: none;
}
.metric-item__number {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.metric-item__number span {
  color: rgba(255, 255, 255, 0.5);
}
.metric-item p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media (max-width: 500px) {
  .metric-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.approach {
  padding: 100px 0;
  background: #FBFAF6;
}
.approach__header {
  text-align: center;
  margin-bottom: 64px;
}
.approach__header h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  color: #133A63;
  margin-bottom: 16px;
}
.approach__header p {
  font-size: 1.4rem;
  color: #133A63;
  opacity: 0.7;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}
.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .approach__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .approach__grid {
    grid-template-columns: 1fr;
  }
}

.approach-card {
  background: #ffffff;
  border-radius: 5px;
  padding: 36px 32px;
  box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.09);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: #688D84;
  transition: height 0.3s;
}
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.approach-card:hover::before {
  height: 100%;
}
.approach-card__icon {
  width: 44px;
  height: 44px;
  background: #d6e4d0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #688D84;
}
.approach-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #133A63;
  margin-bottom: 12px;
  line-height: 1.3;
}
.approach-card p {
  font-size: 1.35rem;
  color: #133A63;
  opacity: 0.75;
  line-height: 1.7;
}

.cta-band {
  background: #688D84;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-band::before {
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
}
.cta-band::after {
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.25;
  max-width: 560px;
}
.cta-band h2 strong {
  font-weight: 700;
}/*# sourceMappingURL=site.css.map */