/* ========================================
   ELITE TEMPLATE — FULL REBUILD
   Font: Geist
   Colors from Framer tokens
   ======================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #F2F4F7;
  --color-dark: #0D2140;
  --color-white: #FFFFFF;
  --color-gray: #495a72;
  --color-light-gray: #d2d7da;
  --color-border-light: rgba(255, 255, 255, 0.12);
  --color-border-dark: rgba(13, 33, 64, 0.12);
  --color-dark-hover: #1a2228;
  --color-hover-light: #e5e5e5;
  --color-hover-lighter: #e9eaec;
  --color-black: #000000;
  --color-body-text: #374151;
  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1320px;
  --px: 28px;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-dark);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 26px;
}

.section-label--center {
  text-align: center;
}

.section-label--light {
  color: var(--color-white);
}

/* ===== NAV ===== */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--px);
  border-bottom: 1px solid var(--color-border-light);
  background: transparent;
}
.nav--dark {
  background: var(--color-dark);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.nav__links .nav__link--active {
  color: var(--color-white);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.nav__logo {
  color: var(--color-white);
  display: flex;
  align-items: center;
}

.nav__logo--footer {
  color: var(--color-dark);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.nav__links a:hover {
  color: var(--color-white);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__arrow {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.nav__dropdown:hover .nav__arrow {
  transform: rotate(180deg);
}

/* ===== NAV DROPDOWN PANEL ===== */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-panel {
  position: fixed;
  top: 0;
  left: calc(max(var(--px), calc((100vw - var(--container)) / 2)) - 2px);
  right: calc(max(var(--px), calc((100vw - var(--container)) / 2)) - 2px);
  width: auto;
  background: var(--color-white);
  display: flex;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 60px rgba(13, 33, 64, 0.12);
  z-index: 200;
}

.nav__dropdown.is-open .nav__dropdown-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Override base nav link styles for dropdown content */
.nav__links .nav__dropdown-panel a {
  color: var(--color-dark);
}

.nav__links .nav__dropdown-panel a::after {
  display: none;
}

.nav__dropdown-left {
  flex: 1;
  padding: 32px 48px;
}

.nav__dropdown-section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 14px;
}

.nav__dropdown-divider {
  height: 1px;
  background: var(--color-border-dark);
  margin-bottom: 8px;
}

.nav__dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border-dark);
  transition: opacity 0.2s;
}

.nav__dropdown-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.nav__dropdown-item:hover {
  opacity: 0.55;
}

.nav__dropdown-icon {
  width: 40px;
  height: 40px;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__dropdown-item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.nav__dropdown-item-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.3;
}

.nav__dropdown-item-desc {
  font-size: 14.5px;
  color: var(--color-gray);
  line-height: 1.5;
}

/* RIGHT column */
.nav__dropdown-right {
  width: 320px;
  flex-shrink: 0;
  overflow: hidden;
  padding: 8px 8px 8px 0;
}

.nav__dropdown-right-link {
  display: block;
  height: 100%;
  position: relative;
}

.nav__dropdown-right-link img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__dropdown-right-link:hover img {
  transform: scale(1.04);
}

.nav__dropdown-right-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--color-dark);
}

.nav__dropdown-right-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(8, 16, 20, 0.88) 0%, transparent 100%);
  z-index: 1;
}

.nav__dropdown-right-content h3 {
  font-size: 21px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.nav__dropdown-right-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav--open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; }
.nav--open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  padding: 11px 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  transition: background 0.2s, border-color 0.2s;
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Nav on light background */
.nav--on-light .nav__links a::after {
  background: var(--color-dark);
}
.nav--on-light .nav__logo-img {
  content: url('logo-gbm-blue.png');
}
.nav--on-light .nav__links a {
  color: rgba(13, 33, 64, 0.65);
}
.nav--on-light .nav__links a:hover {
  color: var(--color-dark);
}
.nav--on-light .nav__cta {
  color: var(--color-dark);
  border-color: rgba(13, 33, 64, 0.3);
}
.nav--on-light .nav__cta:hover {
  background: rgba(13, 33, 64, 0.06);
  border-color: rgba(13, 33, 64, 0.5);
}
.nav--on-light .nav__burger span {
  background: var(--color-dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--px);
  padding-bottom: 130px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 16, 20, 0.78) 40%, rgba(8, 16, 20, 0.22) 100%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 33, 64, 0.20);
  z-index: 0;
  pointer-events: none;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-top: 120px;
}

.hero__title {
  font-size: 70px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--color-white);
  max-width: 880px;
  margin-bottom: 30px;
}

.hero__desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-light-gray);
  max-width: 570px;
  flex: 1;
  margin-bottom: 0;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__reassurance {
  display: block;
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  white-space: nowrap;
  margin-top: 20px;
  margin-bottom: 32px;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero__reassurance.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  border-radius: 0;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover svg {
  transform: translate(3px, -3px);
}

.btn--primary {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn--primary:hover {
  background: var(--color-hover-light);
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-dark-hover);
}

/* ===== FOUNDER STORY ===== */
.founder-story {
  padding: 88px var(--px);
}

.founder-story__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.founder-story__inner > h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 52px;
  max-width: 770px;
}

.founder-story__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-bottom: 0;
}

.founder-story__cols p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray);
}

.founder-story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--color-border-dark);
}

.founder-story__stat {
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  border-right: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
}

.founder-story__stat:last-child {
  border-right: none;
}

.founder-story__stat-label {
  font-size: 15px;
  color: var(--color-gray);
  font-weight: 400;
}

.founder-story__stat-value {
  font-size: 79px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-dark);
  align-self: flex-end;
  text-align: right;
}

/* ===== LOGOS MARQUEE ===== */
.logos {
  padding: 40px 0;
  overflow: hidden;
}

.logos__track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: scroll-logos 25s linear infinite;
  white-space: nowrap;
}

.logos__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-black);
  opacity: 1;
}

.logos__logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

@keyframes scroll-logos {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ===== PILLARS ===== */
.pillars {
  padding: 88px var(--px);
}

.pillars__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pillars__left h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 52px;
}

.pillars__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.pillars__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-dark);
  border-radius: 50%;
  font-size: 12px;
  margin-bottom: 12px;
}

.pillars__item h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}

.pillars__item p {
  font-size: 16px;
  color: var(--color-gray);
}

.pillars__item {
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillars__item:hover {
  border-bottom-color: rgba(8, 16, 20, 0.15);
  padding-left: 8px;
}

.pillars__right {
  position: static;
}

.pillars__photo-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.pillars__photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.pillars__founder {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(8, 16, 20, 0.8);
  backdrop-filter: blur(10px);
}

.pillars__founder-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
}

.pillars__founder-info strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
}

.pillars__founder-info span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-light-gray);
}

.pillars__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.pillars__speak {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 15px;
  transition: opacity 0.2s;
}

.pillars__speak:hover {
  opacity: 0.7;
}

/* ===== SERVICES ===== */
.services {
  padding: 88px var(--px);
}

.services__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.services__inner > h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 52px;
  text-align: left;
  white-space: nowrap;
}

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

.services__card {
  display: block;
  border-radius: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services__card:hover {
  transform: translateY(-8px);
}

.services__card-img {
  position: relative;
  height: 616px;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 16px;
}

.services__card-img img {
  filter: grayscale(0.3);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s;
}

.services__card:hover .services__card-img img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.services__img--societe {
  object-position: 55% center;
}

.services__card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.services__card:hover .services__card-arrow {
  background: var(--color-dark);
  color: var(--color-white);
}

.services__card-arrow svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.services__card:hover .services__card-arrow svg {
  transform: translate(3px, -3px);
}

.services__card:hover .services__card-arrow svg path {
  stroke: var(--color-white);
}

.services__card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 33, 64, 0.20);
  z-index: 2;
  pointer-events: none;
}

.services__card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

.services__card-arrow { z-index: 4; }
.services__card-title { z-index: 4; }
.services__card-sub { z-index: 4; }

.services__card-title {
  position: absolute;
  bottom: 64px;
  left: 22px;
  right: 22px;
  color: var(--color-white);
  font-size: 26px;
  font-weight: 500;
}

.services__card-sub {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--color-white);
  font-size: 13px;
  line-height: 1.4;
}

.services__card p:not(.services__card-sub) {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.5;
}

.services__card-sub {
  color: var(--color-white);
}

/* ===== FRAMEWORK ===== */
.framework {
  padding: 88px var(--px);
}

.framework__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.framework__inner > h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 52px;
  text-align: left;
  max-width: 800px;
}

.framework__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.framework__icon {
  margin-bottom: 20px;
  color: var(--color-dark);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.framework__item {
  padding: 30px 26px;
  border: 1px solid var(--color-border-dark);
  transition: background 0.2s ease;
}

.framework__item:hover {
  background: var(--color-white);
}

.framework__item h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.framework__item p {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.6;
}

/* ===== CASE STUDIES ===== */
.cases {
  padding: 88px var(--px);
}

.cases__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.cases__title {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 64px;
}

.cases__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 24px;
  min-height: 480px;
}

.cases__card--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.cases__card-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cases__card-text h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 16px;
}

.cases__card-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-light-gray);
  margin-bottom: 24px;
}

.cases__link {
  font-size: 15px;
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cases__link:hover {
  opacity: 0.7;
}

.cases__card-img {
  position: relative;
  overflow: hidden;
}

.cases__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cases__see-all {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  color: var(--color-dark);
  padding: 17px 22px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0;
  transition: background 0.25s ease;
}

.cases__see-all svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cases__see-all:hover {
  background: var(--color-hover-light);
}

.cases__see-all:hover svg {
  transform: translate(3px, -3px);
}

/* ===== OUR APPROACH ===== */
.approach {
  padding: 88px var(--px);
  background: var(--color-white);
}

.approach__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.approach__left {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 600px;
}

.approach__left img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.approach__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 33, 64, 0.20);
  z-index: 2;
  pointer-events: none;
}

.approach__left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
  pointer-events: none;
  z-index: 1;
}

.approach__cta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-white);
  padding: 11px 24px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  transition: background 0.2s, border-color 0.2s;
}

.approach__cta svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.approach__cta:hover svg {
  transform: translate(3px, -3px);
}

.approach__right h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 52px;
}

.approach__accordion {
  display: flex;
  flex-direction: column;
}

.approach__acc-item {
  border-top: 1px solid var(--color-border-dark);
  overflow: hidden;
}

.approach__acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
}

.approach__acc-header h3 {
  font-size: 20px;
  font-weight: 400;
}

.approach__acc-num {
  font-size: 15px;
  color: var(--color-gray);
}

.approach__acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach__acc-item--active .approach__acc-body {
  max-height: 300px;
}

.approach__acc-body p {
  padding-bottom: 24px;
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 88px var(--px);
}

.testimonials__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.testimonials__inner > h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 52px;
  max-width: 770px;
}

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

.testimonials__card {
  background: var(--color-white);
  border-radius: 0;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(8, 16, 20, 0.10);
}

.testimonials__card-bio {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials__avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-light-gray);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonials__avatar-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials__card--video {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--color-dark);
}

.testimonials__video-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.testimonials__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials__play svg {
  fill: var(--color-dark);
  margin-left: 3px;
}

.testimonials__video-label,
.testimonials__video-duration {
  position: absolute;
  color: var(--color-white);
  font-size: 13px;
  z-index: 1;
}

.testimonials__video-label {
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials__video-duration {
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-light-gray);
}

.testimonials__card--video .testimonials__author {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 32px;
  z-index: 1;
  color: var(--color-white);
}

.testimonials__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials__author-name {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
}

.testimonials__author-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray);
}

.testimonials__card blockquote {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark);
}

.testimonials__company {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray);
}

/* ===== BLOG / INSIGHTS ===== */
.blog {
  padding: 88px var(--px);
}

.blog__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.blog__header h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.blog__all--mobile { display: none; }
.blog__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  padding-bottom: 2px;
  flex-shrink: 0;
  margin-bottom: 6px;
  transition: opacity 0.2s;
}

.blog__all svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog__all:hover {
  opacity: 0.55;
}

.blog__all:hover svg {
  transform: translate(3px, -3px);
}

.blog__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  align-items: stretch;
}

.blog__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.blog__side .blog__card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog__side .blog__card .blog__card-img {
  flex: 1;
  min-height: 80px;
  max-height: 180px;
}

.blog__card {
  display: block;
  background: var(--color-white);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog__card:hover {
  transform: translateY(-5px);
}

.blog__card--featured {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog__card--featured .blog__card-img {
  height: 420px;
  flex: none;
}

.blog__card-img {
  position: relative;
  overflow: hidden;
}

.blog__card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 33, 64, 0.20);
  z-index: 1;
  pointer-events: none;
}

.blog__card-img img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog__card:hover .blog__card-img img {
  transform: scale(1.05);
}

.blog__card-body {
  padding: 12px 16px 14px;
}

.blog__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 8px;
}

.blog__card--featured .blog__card-body h3 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.blog__side .blog__card-body h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--color-dark);
  margin-bottom: 0;
}

.blog__card--featured .blog__card-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-gray);
  margin-bottom: 20px;
}

.blog__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-gray);
  border-top: 1px solid var(--color-border-dark);
  padding-top: 10px;
  margin-top: 10px;
}

.blog__meta-dot {
  color: var(--color-light-gray);
}
.blog__meta--spaced {
  margin-bottom: 24px;
}

/* ===== FAQ ===== */
.faq {
  padding: 88px var(--px);
}

.faq__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}

.faq__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq__left h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.faq__contact {
  display: block;
  padding: 52px 22px 22px;
  background: var(--color-white);
  border-radius: 0;
  font-size: 17px;
  color: var(--color-gray);
  transition: background 0.2s;
}

.faq__contact span:first-child {
  display: block;
  color: var(--color-dark);
  font-weight: 500;
  margin-bottom: 4px;
}

.faq__contact:hover {
  background: var(--color-hover-lighter);
}

.faq__item {
  border-top: 1px solid var(--color-border-dark);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
}

.faq__question h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq__question:hover h3 {
  color: var(--color-gray);
}

.faq__toggle {
  font-size: 24px;
  color: var(--color-gray);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq__item--active .faq__toggle {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item--active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: 24px;
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 88px var(--px);
  background: var(--color-dark);
}

.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__left {
  color: var(--color-white);
}

.contact__left h2 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: var(--color-white);
}

.contact__left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.contact__field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact__field input,
.contact__field select {
  padding: 12px 17px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  color: var(--color-white);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.contact__field input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact__field input:focus,
.contact__field select:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.contact__field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23ffffff' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact__field select option {
  background: var(--color-white);
  color: var(--color-dark);
}

.contact__optional {
  font-weight: 400;
  opacity: 0.5;
  text-transform: none;
  letter-spacing: 0;
}

.contact__checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.contact__checkbox input[type="checkbox"] {
  display: none;
}

.contact__checkbox:has(input:checked) {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-dark);
}

.contact__checkbox:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.contact__field textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: inherit;
  color: var(--color-white);
  resize: vertical;
  min-height: 88px;
  -webkit-appearance: none;
  outline: none;
}

.contact__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact__field textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.contact__submit svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact__submit:hover svg {
  transform: translate(3px, -3px);
}

@media (max-width: 1024px) {
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__left { position: static; }
  .contact__left h2 { font-size: 40px; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg);
  padding: 44px var(--px);
}
.footer--bordered {
  border-top: 1px solid var(--color-border-dark);
}

.footer__bottom {
  background: transparent;
  padding: 0;
  max-width: var(--container);
  margin: 0 auto;
}

.footer__bottom-inner {
  padding: 56px 0;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-top: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border-dark);
}

.footer__col-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.footer__col p {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}
p.footer__contact-email {
  margin-bottom: 4px;
}
p.footer__contact-phone {
  margin-bottom: 12px;
}
.footer__contact-link {
  color: inherit;
  text-decoration: none;
}

.footer__col a {
  display: block;
  font-size: 15px;
  color: var(--color-gray);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--color-dark);
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  color: var(--color-gray);
  transition: color 0.2s;
}
.footer__socials a:hover {
  color: var(--color-dark);
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.footer__bar span {
  font-size: 14px;
  color: var(--color-gray);
}

/* ===== TEXT WIPE REVEAL ===== */
.text-wipe {
  overflow: hidden;
  display: block;
}

.text-wipe-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-wipe-inner.visible {
  transform: translateY(0);
}

/* ===== UTILITIES ===== */
.u-fw-light { font-weight: 300; }
.u-mt-20 { margin-top: 20px; }
.u-self-start { align-self: flex-start; }
.u-text-link { color: var(--color-dark); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav__links { gap: 28px; }
  .nav__links a { font-size: 14px; }
  .nav__cta { font-size: 13px; padding: 12px 20px; }
  .hero__title { font-size: 52px; }
  .pillars__inner,
  .approach__inner,
  .faq__inner { grid-template-columns: 1fr; gap: 16px; }
  .pillars__left h2,
  .founder-story__inner > h2,
  .services__inner > h2,
  .framework__inner > h2,
  .cases__title,
  .approach__right h2,
  .testimonials__inner > h2,
  .faq__left h2 { font-size: 40px; }
  .services__grid,
  .framework__grid,
  .testimonials__grid { grid-template-columns: 1fr; }
  .cases__card { grid-template-columns: 1fr; }
  .cases__card-img { height: 330px; }
  .services__card-img { height: 440px; }
  .services__card-title { bottom: 22px; }
  .services__card-sub { display: none; }
  .approach__left { display: none; }
  .blog__grid { grid-template-columns: 1fr; }
  .blog__header { align-items: flex-start; flex-direction: column; gap: 24px; }
  .blog__header .blog__all { display: none; }
  .faq__contact { display: none; }
  /* Contact form mobile */
  .contact__row { grid-template-columns: 1fr; }
  .contact__checkboxes { flex-direction: column; }
  .contact__checkbox { width: 100%; }
  .blog__all--mobile { display: flex; justify-content: center; margin-top: 32px; }
  .blog__header h2 { font-size: 40px; }
  .blog__card--featured .blog__card-img { min-height: 240px; }
}

@media (max-width: 900px) {
  .founder-story__inner > h2,
  .services__inner > h2,
  .framework__inner > h2,
  .cases__title,
  .approach__right h2,
  .testimonials__inner > h2,
  .blog__header h2,
  .faq__left h2,
  .footer__cta-inner h2 { text-align: center; }

  /* Nav mobile */
  .nav {
    position: fixed;
    background: transparent;
    border-bottom-color: transparent;
  }
  .nav.nav--dark {
    background: var(--color-dark);
    border-bottom-color: rgba(255,255,255,0.08);
  }
  .nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .nav__logo { order: 1; }
  .nav__logo-img { height: 30px; }
  .nav__burger {
    display: flex;
    order: 2;
    width: 32px;
    height: 32px;
    gap: 4px;
  }
  .nav__burger span { width: 18px; }
  .nav__cta {
    order: 3;
    justify-self: end;
    padding: 7px 11px;
    font-size: 12px;
    white-space: nowrap;
  }
  .nav.nav--dark .nav__cta {
    border-color: var(--color-dark);
  }
  .nav--on-light .nav__cta {
    border-color: var(--color-dark);
  }
  /* Nav scrolled state (mobile) */
  .nav.nav--scrolled {
    background: var(--color-white);
    border-bottom-color: rgba(0,0,0,0.08);
  }
  .nav.nav--scrolled .nav__cta {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
  }
  .nav.nav--scrolled .nav__burger span {
    background: var(--color-dark);
  }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 100;
  }
  .nav__links a {
    font-size: 28px;
    color: rgba(255,255,255,0.85);
  }
  .nav__links a::after { display: none; }
  .nav--open .nav__links { display: flex; }

  .hero__title { font-size: 40px; }
  .hero__content { padding-top: 80px; }
  .hero__reassurance { white-space: normal; }
  .hero__buttons { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Founder story 1 colonne */
  .founder-story__cols { grid-template-columns: 1fr; gap: 24px; }

  /* Services title sans nowrap */
  .services__inner > h2 { white-space: normal; }

  /* Section padding */
  .founder-story,
  .services,
  .approach,
  .framework,
  .blog,
  .faq,
  .contact-section,
  .cases,
  .pillars,
  .testimonials { padding-top: 56px; padding-bottom: 56px; }

  /* Section heading sizes */
  .pillars__left h2,
  .founder-story__inner > h2,
  .services__inner > h2,
  .framework__inner > h2,
  .cases__title,
  .approach__right h2,
  .testimonials__inner > h2,
  .faq__left h2,
  .blog__header h2,
  .contact__left h2,
  .vr-defi h2,
  .vr-visas h2,
  .vr-inclus h2,
  .vr-process h2,
  .vr-pourquoi h2,
  .vr-cta h2 { font-size: 30px; }

  .footer__cols { grid-template-columns: 1fr; }

}

/* ===== ARTICLE PAGES ===== */

.article-hero {
  padding: 160px var(--px) 80px;
  background: var(--color-dark);
  color: var(--color-white);
}
.article-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.article-hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.article-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  max-width: 820px;
  margin-bottom: 32px;
}
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.article-hero__meta span {
  color: rgba(255,255,255,0.45);
}
.article-hero__cover {
  margin-top: 60px;
  width: 100%;
  max-width: var(--container);
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 4px;
}
.article-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-body {
  background: var(--color-white);
  padding: 80px var(--px);
}
.article-body__inner {
  max-width: 720px;
  margin: 0 auto;
}
.article-body__inner p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-body-text);
  margin-bottom: 24px;
}
.article-body__inner h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-dark);
  margin: 48px 0 16px;
  line-height: 1.3;
}
.article-body__inner ul {
  margin: 0 0 24px 0;
  padding-left: 20px;
}
.article-body__inner ul li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-body-text);
  margin-bottom: 10px;
}

.article-cta {
  background: var(--color-dark);
  padding: 100px var(--px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.article-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.article-cta h2 {
  font-size: 42px;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.article-cta__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.article-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  color: var(--color-dark);
  text-decoration: none;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.article-cta__btn:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .article-cta__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .article-cta h2 { font-size: 28px; }
  .article-cta__right { align-items: center; }
}
