/* ============================================
   ABOUT.CSS — À propos Page
   ============================================ */

/* ── HERO ── */
.about-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  background: var(--n900);
  overflow: hidden;
  padding-top: var(--header-h);
}

.about-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(2, 12, 27, 0.75) 0%,
    rgba(2, 12, 27, 0.4) 50%,
    rgba(2, 12, 27, 0.8) 100%
  );
  z-index: 1;
}

.about-hero__grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(26, 111, 240, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 111, 240, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.about-hero__title em {
  color: var(--accent);
  font-style: normal;
}

.about-hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem var(--pad);
  position: relative;
  z-index: 2;
}

.about-hero__title {
  font-family: var(--fs);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* ── POSITIONING ── */
.positioning {
  background: var(--n800);
  position: relative;
  overflow: hidden;
}

.positioning__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.positioning__content .section-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.positioning__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.positioning__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.positioning__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  background: rgba(26, 111, 240, 0.1);
  border: 1px solid rgba(26, 111, 240, 0.2);
  border-radius: var(--r-pill);
  font-family: var(--fs);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition:
    background 0.3s,
    border-color 0.3s;
}

.positioning__tag:hover {
  background: rgba(26, 111, 240, 0.16);
  border-color: rgba(93, 163, 255, 0.35);
}

/* Tag icons */
.positioning__tag-icon {
  width: 14px;
  height: 14px;
  stroke: var(--blue3);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Pin — bounce */
.positioning__tag-icon--pin {
  animation: pinBounce 2.5s ease-in-out infinite;
}

@keyframes pinBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(0);
  }
}

/* Globe — slow spin */
.positioning__tag-icon--globe {
  animation: globeSpin 8s linear infinite;
}

@keyframes globeSpin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* Language — subtle pulse */
.positioning__tag-icon--lang {
  animation: langPulse 3s ease-in-out infinite;
}

@keyframes langPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

.positioning__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Globe wrapper */
.positioning__globe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
}

.positioning__globe-canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

.positioning__globe-canvas:active {
  cursor: grabbing;
}

.positioning__globe-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  opacity: 0.08;
  pointer-events: none;
  filter: brightness(0) invert(0.25)
    drop-shadow(0 0 40px rgba(93, 163, 255, 0.15));
  z-index: 0;
}

/* ── MISSION ── */
.mission {
  background: var(--g50);
  overflow: hidden;
  padding-bottom: 0 !important;
}

.mission__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem var(--pad) 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: stretch;
}

.mission__content {
  padding-bottom: 4rem;
}

/* Logo watermark behind team */
.mission__logo {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  opacity: 0;
  filter: brightness(0) invert(0.3)
    drop-shadow(0 0 30px rgba(93, 163, 255, 0.25))
    drop-shadow(0 0 60px rgba(93, 163, 255, 0.1));
  pointer-events: none;
  z-index: 0;
  clip-path: inset(0 100% 0 0);
}

/* Scan line over logo — animated by GSAP scrub */
.mission__logo-scan {
  position: absolute;
  top: 5%;
  left: 20%;
  width: 3px;
  height: 70%;
  background: linear-gradient(
    180deg,
    rgba(93, 163, 255, 0) 0%,
    rgba(93, 163, 255, 0.8) 30%,
    rgba(93, 163, 255, 0.8) 70%,
    rgba(93, 163, 255, 0) 100%
  );
  box-shadow: 0 0 14px 4px rgba(93, 163, 255, 0.4);
  pointer-events: none;
  z-index: 1;
}

.mission__eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.mission__visual {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

/* Team image — fills column, aligned to bottom */
.mission__team {
  flex: 1;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.mission__team-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.mission__title {
  color: var(--g700);
  margin-bottom: 1.5rem;
  margin-top: 0.75rem;
}

.mission__text {
  font-size: 1.05rem;
  color: var(--g500);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mission__quote {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--g100);
  border-left: 3px solid var(--blue2);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.mission__quote p {
  font-family: var(--fi);
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--g700);
  line-height: 1.5;
}

/* ── HOW WE OPERATE ── */
.how-we-operate {
  background: var(--n900);
  position: relative;
  overflow: hidden;
}

.how-we-operate__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.5rem var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.how-we-operate__content .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.operate-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.operate-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.operate-step:last-child {
  border-bottom: none;
}

.operate-step__num {
  font-family: var(--fs);
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(26, 111, 240, 0.3);
  line-height: 1.1;
  flex-shrink: 0;
  min-width: 36px;
}

.operate-step__title {
  font-family: var(--fs);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.operate-step__text {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.how-we-operate__visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.operate-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-sm);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all var(--t-base);
}

.operate-card:hover {
  background: rgba(26, 111, 240, 0.06);
  border-color: rgba(93, 163, 255, 0.15);
}

.operate-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-xs);
  background: rgba(26, 111, 240, 0.12);
  border: 1px solid rgba(26, 111, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.operate-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue3);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.operate-card__title {
  font-family: var(--fs);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.operate-card__text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* CTA aligned to left column (text block) */
.operate-cta {
  grid-column: 1;
  text-align: center;
  margin-top: 0.5rem;
}

/* ── 3D SUV ANGLE SLIDER ── */
.car-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  user-select: none;
}

/* Viewport — contains all angle images stacked */
.car-slider__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.85;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
}

.car-slider__viewport:active {
  cursor: grabbing;
}

/* Individual angle images — absolute stacked */
.car-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 60%;
  opacity: 0;
  z-index: 0;
  will-change: opacity, transform;
  pointer-events: none;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.car-slider__img.active {
  opacity: 1;
  z-index: 2;
}

/* Reflection container */
.car-slider__reflect {
  position: absolute;
  bottom: -30%;
  left: 0;
  right: 0;
  height: 50%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.car-slider__reflect-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transform: scaleY(-1);
  opacity: 0;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    transparent 50%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    transparent 50%
  );
  filter: blur(3px) brightness(0.4);
}

.car-slider__reflect-img.active {
  opacity: 1;
}

/* Ground glow */
.car-slider__glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 6px;
  background: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    rgba(93, 163, 255, 0.2) 0%,
    rgba(93, 163, 255, 0.06) 40%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.1);
  }
}

/* Scan line */
.car-slider__scanline {
  position: absolute;
  top: 5%;
  left: -4px;
  width: 3px;
  height: 85%;
  background: linear-gradient(
    180deg,
    rgba(93, 163, 255, 0) 0%,
    rgba(93, 163, 255, 0.7) 20%,
    rgba(93, 163, 255, 1) 50%,
    rgba(93, 163, 255, 0.7) 80%,
    rgba(93, 163, 255, 0) 100%
  );
  box-shadow:
    0 0 14px 4px rgba(93, 163, 255, 0.3),
    0 0 40px 8px rgba(93, 163, 255, 0.08);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
}

/* Step info */
.car-slider__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 1.5rem;
}

.car-slider__step-num {
  font-family: var(--fs);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue3);
  opacity: 0.5;
  line-height: 1;
}

.car-slider__step-title {
  font-family: var(--fs);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* Progress track + dots */
.car-slider__progress {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.car-slider__track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.car-slider__fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--blue3), rgba(93, 163, 255, 0.4));
  border-radius: 2px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}

.car-slider__dots {
  display: flex;
  justify-content: space-between;
  margin-top: -5px;
  position: relative;
}

.car-slider__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: all 0.3s;
}

.car-slider__dot span {
  font-family: var(--fs);
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s;
}

.car-slider__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(93, 163, 255, 0.25);
  background: transparent;
  transition: all 0.3s;
  opacity: 0;
}

.car-slider__dot.active span {
  color: var(--blue3);
}

.car-slider__dot.active::before {
  opacity: 1;
  width: 28px;
  height: 28px;
  border-color: rgba(93, 163, 255, 0.3);
  background: rgba(93, 163, 255, 0.06);
}

.car-slider__dot:hover:not(.active) span {
  color: rgba(255, 255, 255, 0.5);
}

/* Swipe hint */
.car-slider__hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
}

.car-slider__hint-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.car-slider__hint-content {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.6rem;
  font-family: var(--fs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.car-slider__hint-content svg {
  opacity: 0.5;
  animation: hintSlide 2s ease-in-out infinite;
}

@keyframes hintSlide {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.7;
  }
}

/* ── Car Slider Pictograms ── */
.car-slider__pictos {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

.car-slider__picto {
  display: none;
  width: 180px;
  height: 180px;
  padding: 30px;
}

.car-slider__picto.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pictoIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pictoIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.car-slider__picto svg {
  width: 100%;
  height: 100%;
}

/* Shared SVG styles */
.picto__ring {
  fill: none;
  stroke: var(--blue3);
  stroke-width: 1.5;
  animation: pictoRingPulse 2.5s ease-in-out infinite;
}

.picto__handle,
.picto__spoke,
.picto__trail {
  stroke: var(--blue3);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.picto__shape {
  fill: rgba(93, 163, 255, 0.2);
  stroke: var(--blue3);
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.picto__core {
  fill: var(--accent);
  stroke: none;
}

.picto__line,
.picto__arrow {
  fill: none;
  stroke: var(--blue3);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Animations per picto type */

/* 01 Loupe — pulse ring */
@keyframes pictoRingPulse {
  0%,
  100% {
    stroke-opacity: 0.6;
  }
  50% {
    stroke-opacity: 1;
  }
}

/* 02 Rocket — float up */
.car-slider__picto[data-slide="1"] svg {
  animation: pictoFloat 2s ease-in-out infinite;
}

@keyframes pictoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* 03 Gear — spin */
.car-slider__picto[data-slide="2"] svg {
  animation: pictoSpin 6s linear infinite;
}

@keyframes pictoSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 04 Chart — draw line */
.car-slider__picto[data-slide="3"] .picto__line {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation:
    pictoDraw 1.5s 0.3s ease forwards,
    pictoDrawLoop 3s 2s ease-in-out infinite;
}

.car-slider__picto[data-slide="3"] .picto__arrow {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: pictoArrowDraw 0.5s 1.2s ease forwards;
}

@keyframes pictoDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pictoDrawLoop {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes pictoArrowDraw {
  to {
    stroke-dashoffset: 0;
  }
}

/* ── KEY FIGURES ── */
.key-figures {
  background: var(--n800);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.key-figures__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.key-figure {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--r-xs);
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.key-figure + .key-figure {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
}

.key-figure:hover {
  background: rgba(26, 111, 240, 0.06);
  border-color: rgba(93, 163, 255, 0.15);
  border-radius: var(--r-xs);
}

.key-figure:hover .key-figure__number {
  color: var(--blue3);
}

.key-figure__number {
  font-family: var(--fs);
  font-size: clamp(0.95rem, 1.3vw, 1.3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  transition: color 0.35s;
  white-space: nowrap;
}

.key-figure__label {
  font-size: clamp(0.55rem, 0.65vw, 0.65rem);
  font-family: var(--fi);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.35s;
  white-space: nowrap;
}

.key-figure:hover .key-figure__label {
  color: rgba(255, 255, 255, 0.55);
}

/* ── REAL-WORLD IMPACT ── */
.impact {
  position: relative;
  overflow: hidden;
}

.impact__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/about/about-impact-bg.png") center/cover no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

.impact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 12, 27, 0.88) 0%,
    rgba(2, 12, 27, 0.7) 50%,
    rgba(2, 12, 27, 0.88) 100%
  );
  z-index: 1;
}

.impact__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem var(--pad);
  position: relative;
  z-index: 2;
}

.impact__header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.impact__card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-sm);
  padding: 2.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.impact__subject {
  text-align: center;
  margin-bottom: 2rem;
}

.impact__subject-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(26, 111, 240, 0.1);
  border: 1px solid rgba(26, 111, 240, 0.2);
  border-radius: var(--r-pill);
  font-family: var(--fs);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.impact__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.impact__stat {
  text-align: center;
  flex: 1;
  padding: 0.75rem 0.5rem;
  border-radius: var(--r-xs);
  transition: all 0.35s;
}

.impact__stat:hover {
  background: rgba(26, 111, 240, 0.06);
}

.impact__stat:hover .impact__stat-num {
  color: var(--blue3);
}

.impact__stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.impact__stat-num {
  font-family: var(--fs);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.4rem;
  transition: color 0.35s;
}

.impact__stat-label {
  font-size: 0.72rem;
  font-family: var(--fi);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

/* Shield icon for savings stat */
.impact__stat-icon {
  margin-bottom: 0.4rem;
}

.impact__shield {
  width: 36px;
  height: 40px;
}

.impact__shield-path {
  fill: none;
  stroke: var(--blue3);
  stroke-width: 1.5;
  stroke-linejoin: round;
  animation: shieldBreathe 3s ease-in-out infinite;
}

.impact__shield-check {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation:
    shieldCheckDraw 2s 0.5s ease forwards,
    shieldCheckLoop 4s 2.5s ease-in-out infinite;
}

@keyframes shieldBreathe {
  0%,
  100% {
    stroke: rgba(93, 163, 255, 0.5);
  }
  50% {
    stroke: rgba(93, 163, 255, 0.9);
  }
}

@keyframes shieldCheckDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes shieldCheckLoop {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.impact__stat--shield:hover .impact__shield-path {
  stroke: var(--accent);
  fill: rgba(26, 111, 240, 0.08);
}

/* ── TEAM EXPERTISE ── */
.team-expertise {
  background: var(--n800);
  position: relative;
  overflow: hidden;
}

.team-expertise__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem var(--pad);
}

.team-expertise__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.team-expertise__header .eyebrow {
  justify-content: center;
}

.team-expertise__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-top: 1rem;
}

.team-expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ── Team Card ── */
.team-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-sm);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.team-card:hover {
  background: rgba(26, 111, 240, 0.06);
  border-color: rgba(93, 163, 255, 0.2);
  transform: translateY(-4px);
}

/* Avatar — initials circle */
.team-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(26, 111, 240, 0.2) 0%,
    rgba(93, 163, 255, 0.08) 100%
  );
  border: 1.5px solid rgba(93, 163, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
}

.team-card:hover .team-card__avatar {
  border-color: rgba(93, 163, 255, 0.4);
  box-shadow: 0 0 20px rgba(93, 163, 255, 0.15);
}

.team-card__initials {
  font-family: var(--fs);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue3);
  letter-spacing: 0.05em;
}

/* Info — name + role */
.team-card__info {
  transition: opacity 0.3s;
}

.team-card__name {
  font-family: var(--fs);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.team-card__role {
  font-size: 0.72rem;
  font-family: var(--fs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue3);
  opacity: 0.7;
}

/* Detail — revealed on hover */
.team-card__detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s 0.1s;
}

.team-card:hover .team-card__detail {
  max-height: 120px;
  opacity: 1;
}

.team-card__expertise {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.25rem;
}

/* ── SWISS DIFFERENTIATION ── */
.swiss-diff {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.swiss-diff__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.swiss-diff__video {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: 0.25;
}

.swiss-diff__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(2, 12, 27, 0.85) 0%,
    rgba(2, 12, 27, 0.6) 40%,
    rgba(2, 12, 27, 0.6) 60%,
    rgba(2, 12, 27, 0.85) 100%
  );
}

.swiss-diff__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}

.swiss-diff__header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 3.5rem;
}

.swiss-diff__header em {
  color: var(--accent);
  font-style: normal;
}

.swiss-diff__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-top: 1rem;
}

/* Grid — 4 pillars */
.swiss-diff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

/* ── Pillar card ── */
.swiss-pillar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-sm);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Hover glow sweep */
.swiss-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(26, 111, 240, 0.6),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiss-pillar:hover::before {
  left: 100%;
}

.swiss-pillar:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(26, 111, 240, 0.15);
  transform: translateY(-6px);
}

/* Icon wrap */
.swiss-pillar__icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(26, 111, 240, 0.06);
  border: 1px solid rgba(26, 111, 240, 0.12);
  transition: all 0.4s;
}

.swiss-pillar:hover .swiss-pillar__icon-wrap {
  background: rgba(26, 111, 240, 0.1);
  border-color: rgba(26, 111, 240, 0.25);
  box-shadow: 0 0 25px rgba(26, 111, 240, 0.1);
  transform: scale(1.08);
}

/* Swiss cross icon */
.swiss-pillar__cross {
  position: relative;
  width: 18px;
  height: 18px;
}

.swiss-pillar__cross span {
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
}

.swiss-pillar__cross span:first-child {
  width: 100%;
  height: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.swiss-pillar__cross span:last-child {
  width: 5px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

/* SVG icons */
.swiss-pillar__svg {
  width: 28px;
  height: 28px;
}

.swiss-pillar__ring {
  fill: none;
  stroke: rgba(26, 111, 240, 0.5);
  stroke-width: 1.5;
  transition: stroke 0.4s;
}

.swiss-pillar__loupe-handle {
  stroke: rgba(26, 111, 240, 0.5);
  transition: stroke 0.4s;
}

.swiss-pillar:hover .swiss-pillar__loupe-handle {
  stroke: var(--accent);
}

.swiss-pillar:hover .swiss-pillar__ring {
  stroke: var(--accent);
}

.swiss-pillar__check {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.6s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiss-pillar:hover .swiss-pillar__check {
  stroke-dashoffset: 0;
}

.swiss-pillar__shield-path {
  fill: none;
  stroke: rgba(26, 111, 240, 0.5);
  stroke-width: 1.5;
  stroke-linejoin: round;
  transition:
    stroke 0.4s,
    fill 0.4s;
}

.swiss-pillar:hover .swiss-pillar__shield-path {
  stroke: var(--accent);
  fill: rgba(26, 111, 240, 0.08);
}

.swiss-pillar__shield-check {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.5s 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiss-pillar:hover .swiss-pillar__shield-check {
  stroke-dashoffset: 0;
}

.swiss-pillar__star {
  fill: rgba(26, 111, 240, 0.15);
  stroke: rgba(26, 111, 240, 0.4);
  stroke-width: 1;
  transition:
    fill 0.4s,
    stroke 0.4s,
    transform 0.5s;
  transform-origin: center;
}

.swiss-pillar:hover .swiss-pillar__star {
  fill: rgba(26, 111, 240, 0.3);
  stroke: var(--accent);
  transform: rotate(15deg);
}

/* Titles + text */
.swiss-pillar__title {
  font-family: var(--fs);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.swiss-pillar__text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Animated progress bar */
.swiss-pillar__bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.swiss-pillar__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--blue3));
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiss-pillar__fill.animated {
  /* width set by JS via data-fill */
}

/* ── Swiss badge ── */
.swiss-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem 2.5rem;
  background: rgba(26, 111, 240, 0.04);
  border: 1px solid rgba(26, 111, 240, 0.1);
  border-radius: var(--r-sm);
  max-width: 550px;
  margin: 0 auto;
  transition: all 0.4s;
}

.swiss-badge:hover {
  background: rgba(26, 111, 240, 0.06);
  border-color: rgba(26, 111, 240, 0.2);
}

.swiss-badge__shield {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(26, 111, 240, 0.2);
  animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(26, 111, 240, 0.15);
  }
  50% {
    box-shadow: 0 0 35px rgba(26, 111, 240, 0.3);
  }
}

.swiss-badge__cross {
  position: relative;
  width: 18px;
  height: 18px;
}

.swiss-badge__cross span {
  position: absolute;
  background: #fff;
  border-radius: 1px;
}

.swiss-badge__cross span:first-child {
  width: 100%;
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.swiss-badge__cross span:last-child {
  width: 4px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.swiss-badge__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, #0a1628 0%, #0f2247 50%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(26, 111, 240, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-final__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem var(--pad);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-final__eyebrow {
  justify-content: center;
}

.cta-final__title {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .positioning__inner,
  .how-we-operate__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .mission__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 0;
  }

  .mission__team {
    min-height: 300px;
    max-width: 500px;
    margin: 0 auto;
  }

  .team-expertise__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .swiss-diff__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Fix background-attachment: fixed on mobile (iOS doesn't support it) */
  .impact__bg {
    background-attachment: scroll;
  }

  .team-expertise__grid {
    grid-template-columns: 1fr;
  }

  .swiss-diff__grid {
    grid-template-columns: 1fr;
  }

  .swiss-diff {
    padding: 3rem 0;
  }

  .swiss-badge {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .impact__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .impact__stat-sep {
    width: 40px;
    height: 1px;
  }

  .impact__card {
    padding: 1.5rem 1.25rem;
  }

  /* Fix truncated "Notre fondation" section on mobile */
  .positioning__inner {
    padding: 3rem var(--pad);
    gap: 2.5rem;
  }

  .positioning__visual {
    width: 100%;
    overflow: visible;
  }

  .positioning__stat {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .positioning__stat-num {
    font-size: 1.6rem;
    flex-shrink: 0;
  }

  .positioning__stat-label {
    font-size: 0.8rem;
    flex: 1;
    min-width: 0;
  }

  .positioning__tags {
    flex-wrap: wrap;
  }

  /* Fix truncated mission section on mobile */
  .mission__inner {
    padding: 3rem var(--pad) 0;
  }

  .mission__text {
    font-size: 0.95rem;
  }

  .mission__eyebrow {
    order: 0;
  }

  .mission__content {
    order: 1;
  }

  .mission__visual {
    order: 2;
  }

  .mission__team {
    min-height: 250px;
    position: relative;
  }

  .mission__team-img {
    width: 100%;
  }

  .mission__logo {
    width: 50%;
    top: 15%;
  }

  .mission__logo-scan {
    height: 60%;
    top: 5%;
  }

  /* Fix how-we-operate on mobile */
  .how-we-operate__inner {
    padding: 3rem var(--pad);
    gap: 2.5rem;
  }

  .operate-step {
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .operate-step__num {
    font-size: 1.5rem;
    min-width: 36px;
  }

  .car-slider__viewport {
    aspect-ratio: 1 / 0.9;
  }

  .car-slider__hint {
    max-width: 260px;
  }

  .operate-cta {
    margin-top: 1.5rem;
  }

  /* Fix differentiators on mobile */
  .about-diff__inner {
    padding: 3rem var(--pad);
  }

  /* Fix CTA final on mobile */
  .cta-final__inner {
    padding: 3rem var(--pad);
  }

  .cta-final__actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-final__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
