:root {
  --teal: #2CC7A5;
  --teal-dark: #22a488;
  --navy: #0E4C61;
  --navy-deep: #0a3849;
  --charcoal: #2B2E33;
  --coral: #FF8D6B;
  --cream: #F7F2EC;
  --mint: #A6D5C3;
  --sky: #DAF3F7;
  --white: #FFFFFF;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Public Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 90px;
}

#partenaires-contact {
  scroll-margin-top: 110px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 46, 51, 0.08);
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-media-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-deep);
  opacity: 0.9;
  transition: opacity .2s;
}

.nav-media-link:hover {
  opacity: 1;
}

.nav-media-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 100px;
  background: transparent;
  color: var(--navy-deep);
  transition: transform .2s ease;
  white-space: nowrap;
  z-index: 0;
}

.nav-media-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 1.5px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.nav-media-btn:hover {
  transform: translateY(-2px);
}

.nav-media-btn .media-underline::after {
  display: none;
}

.mobile-media-link {
  position: relative;
}

.media-underline {
  position: relative;
  display: inline-block;
}

.media-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.75;
  transition: opacity .2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-divider {
  width: 1px;
  height: 22px;
  background: rgba(43, 46, 51, 0.14);
  flex-shrink: 0;
}

/* SOLUTIONS DROPDOWN */
.has-dropdown {
  position: relative;
}

.has-dropdown>.nav-trigger.nav-trigger-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 9px 18px;
  border-radius: 100px;
  background: transparent;
  color: var(--charcoal);
  opacity: 0.75;
  border: 1.5px solid rgba(14, 76, 97, 0.25);
  transition: border-color .2s ease, transform .2s ease;
  white-space: nowrap;
  z-index: 0;
}

.has-dropdown>.nav-trigger.nav-trigger-pill:hover {
  opacity: 1;
  border-color: var(--navy);
  transform: none;
}

.nav-trigger-pill svg {
  width: 12px;
  height: 12px;
}

.has-dropdown>.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.75;
  padding: 0;
  transition: opacity .2s;
}

.has-dropdown>.nav-trigger:hover,
.has-dropdown.open>.nav-trigger {
  opacity: 1;
}

.nav-trigger svg {
  width: 13px;
  height: 13px;
  transition: transform .2s;
  flex-shrink: 0;
}

.has-dropdown.open>.nav-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(14, 76, 97, 0.16);
  border: 1px solid rgba(14, 76, 97, 0.06);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}

.has-dropdown.open>.nav-dropdown,
.has-dropdown:hover>.nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-deep);
  opacity: 1;
}

.nav-dropdown a:hover {
  background: var(--cream);
}

.nav-dropdown .dd-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(14, 76, 97, 0.08);
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--coral);
  color: var(--navy-deep);
  box-shadow: 0 8px 20px rgba(255, 141, 107, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 26px rgba(255, 141, 107, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(14, 76, 97, 0.25);
}

.btn-ghost:hover {
  border-color: var(--navy);
}

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

.btn-ghost-on-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost-on-dark:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.10);
}

.btn-ghost-on-dark:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* LANG TOGGLE */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(14, 76, 97, 0.10);
  border: 1px solid rgba(14, 76, 97, 0.14);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--navy);
  opacity: 0.68;
  cursor: pointer;
  transition: all .2s;
}

.lang-btn:hover {
  opacity: 0.9;
}

.lang-btn.active {
  background: var(--navy);
  color: var(--white);
  opacity: 1;
}

/* HERO */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% -10%, #123f52 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 92px 0 116px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 760px;
  height: 360px;
  border-radius: 50%;
  background: rgba(44, 199, 165, 0.28);
  filter: blur(70px);
  top: 20px;
  left: 38%;
  transform: translateX(-50%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 720px;
}

.hero h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--teal);
}

.hero h1 .light {
  font-weight: 500;
}

.hero .tagline-hook {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--mint);
  letter-spacing: -0.01em;
  max-width: 600px;
}

.hero p.lede {
  margin-top: 24px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* AUDIENCE SPLIT */
.audience-split {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.audience-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 22px 24px;
  max-width: 330px;
  flex: 1;
  min-width: 260px;
  box-shadow: 0 8px 24px rgba(10, 56, 73, 0.25);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.audience-card.a1 {
  background: linear-gradient(160deg, rgba(255, 141, 107, 0.10) 0%, rgba(255, 255, 255, 0.05) 60%);
  border-color: rgba(255, 141, 107, 0.32);
}

.audience-card.a2 {
  background: linear-gradient(160deg, rgba(44, 199, 165, 0.10) 0%, rgba(255, 255, 255, 0.05) 60%);
  border-color: rgba(44, 199, 165, 0.32);
}

.audience-card:hover,
.audience-card:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 32px rgba(10, 56, 73, 0.35);
  outline: none;
}

.audience-card.a1:hover,
.audience-card.a1:focus-visible {
  border-color: rgba(255, 141, 107, 0.55);
  box-shadow: 0 14px 32px rgba(255, 141, 107, 0.22);
}

.audience-card.a2:hover,
.audience-card.a2:focus-visible {
  border-color: rgba(44, 199, 165, 0.55);
  box-shadow: 0 14px 32px rgba(44, 199, 165, 0.22);
}

.audience-card .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.audience-card.a1 .icon {
  background: var(--coral);
  color: var(--navy-deep);
}

.audience-card.a2 .icon {
  background: var(--teal);
  color: var(--navy-deep);
}

.audience-card .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.audience-card .sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 2px;
}

.audience-card.a1 .sub {
  color: rgba(255, 184, 158, 0.85);
}

.audience-card.a2 .sub {
  color: rgba(166, 224, 204, 0.85);
}

.audience-card .arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: transform .2s ease;
}

.audience-card:hover .arrow {
  transform: translateX(3px);
  color: var(--white);
}

/* Photo hero (très subtile, fondue sans ligne de séparation) */
.hero-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 34%, rgba(0, 0, 0, 0.4) 52%, rgba(0, 0, 0, 0.85) 68%, #000 85%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 34%, rgba(0, 0, 0, 0.4) 52%, rgba(0, 0, 0, 0.85) 68%, #000 85%);
}

.hero-photo-wrap img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  opacity: 0.4;
}

.hero-photo-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 56, 73, 0.97) 0%, rgba(14, 76, 97, 0.85) 40%, rgba(14, 76, 97, 0.65) 100%);
  mix-blend-mode: multiply;
}

@media (max-width:860px) {
  .hero-photo-wrap {
    display: none;
  }
}

/* Route motif */
.hero .wrap {
  position: relative;
  z-index: 3;
}

.route-svg {
  position: absolute;
  right: 32px;
  top: 48px;
  width: 480px;
  max-width: 42vw;
  opacity: 0.95;
  z-index: 2;
}

@media (max-width:860px) {
  .route-svg {
    display: none;
  }
}

.route-stop {
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .25s ease;
}

.route-stop:hover,
.route-stop:focus-visible {
  transform: scale(1.18);
  outline: none;
}

.route-stop circle.dot {
  transition: filter .25s ease;
}

.route-stop:hover circle.dot,
.route-stop:focus-visible circle.dot {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.55));
}

.route-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.route-label-bg {
  fill: rgba(10, 56, 73, 0.6);
}

.route-connector {
  stroke-width: 1.2;
  stroke-linecap: round;
}

/* PROBLEM */
.problem {
  background: var(--cream);
  padding: 90px 0;
}

.problem .wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

@media (max-width:860px) {
  .problem .wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  flex-shrink: 0;
}

.problem h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 6vw, 1.9rem);
  color: var(--navy-deep);
  margin-top: 10px;
  line-height: 1.2;
}

.problem h2 .nowrap-phrase {
  display: inline;
}

.problem p {
  font-size: 1.05rem;
  color: #4a4d52;
  margin-bottom: 0;
  max-width: 60ch;
}

.problem-block {
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(14, 76, 97, 0.12);
}

.problem-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.problem-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C24F26;
  margin-bottom: 10px;
}

/* SOLUTIONS - segmented tabs */
.solutions {
  padding: 100px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head p.subtitle {
  margin-top: 14px;
  font-size: 1.05rem;
  color: #4a4d52;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--navy-deep);
  margin-top: 10px;
  line-height: 1.15;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 11px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(14, 76, 97, 0.15);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.tab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(14, 76, 97, 0.10);
  color: var(--navy);
  transition: all .2s;
}

.tab-btn.active .tab-num {
  background: rgba(255, 255, 255, 0.25);
  color: inherit;
}

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tab-btn[data-tab="0"].active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tab-btn[data-tab="1"].active {
  background: var(--teal);
  color: var(--navy-deep);
  border-color: var(--teal);
}

.tab-btn[data-tab="2"].active {
  background: var(--coral);
  color: var(--navy-deep);
  border-color: var(--coral);
}

.tab-btn[data-tab="3"].active {
  background: #FFD55D;
  color: var(--navy-deep);
  border-color: #FFD55D;
}

.tab-panels {
  position: relative;
  min-height: 280px;
}

.tab-sticky-summary {
  display: none;
}

@media (max-width:780px) {
  .tab-sticky-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    position: sticky;
    top: 76px;
    z-index: 40;
    background: var(--white);
    padding: 12px 20px;
    margin: 0 -20px 18px;
    border-bottom: 1px solid rgba(14, 76, 97, 0.1);
    box-shadow: 0 4px 10px rgba(14, 76, 97, 0.05);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--navy-deep);
  }

  .tab-sticky-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--navy);
    transition: background .2s ease;
  }

  .tab-sticky-label {
    opacity: 0.6;
    font-weight: 600;
  }

  .tab-sticky-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.tab-panel {
  display: none;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
  animation: fadein .35s ease;
}

.tab-panel.active {
  display: grid;
}

@media (max-width:780px) {
  .tab-panel.active {
    grid-template-columns: 1fr;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

.tab-card {
  background: var(--sky);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.tab-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.4rem;
}

.tab-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy-deep);
}

.tab-card-photo {
  position: relative;
  width: 100%;
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  min-height: 120px;
}

.tab-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-card-photo-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14, 76, 97, 0.55) 0%, rgba(10, 56, 73, 0.90) 100%);
  mix-blend-mode: multiply;
}

.tab-groups {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width:760px) {
  .tab-groups {
    grid-template-columns: 1fr;
  }
}

.tab-group {
  background: var(--white);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid rgba(14, 76, 97, 0.08);
  box-shadow: 0 1px 2px rgba(14, 76, 97, 0.06), 0 1px 8px rgba(14, 76, 97, 0.05);
  transition: background .2s ease;
}

.tab-group:hover {
  background: var(--sky);
}

.tab-group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tab-group-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-group-icon svg {
  width: 18px;
  height: 18px;
}

.tab-group-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-deep);
  line-height: 1.25;
}

.tab-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.tab-group li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.9rem;
  color: #3a3d42;
  line-height: 1.4;
}

.tab-group li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
}

/* MID CTA */
.mid-cta {
  background: var(--cream);
  padding: 56px 0;
}

.mid-cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mid-cta h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy-deep);
}

.mid-cta p {
  font-size: 0.95rem;
  color: #4a4d52;
  margin-top: 4px;
}

/* QUI NOUS SOMMES */
.team {
  background: var(--white);
  padding: 100px 0;
}

.team .section-head {
  margin-bottom: 24px;
}

.team .intro {
  max-width: 720px;
  font-size: 1.05rem;
  color: #3a3d42;
  margin-bottom: 48px;
}

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

@media (max-width:900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.team-photo {
  aspect-ratio: 3/4;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.team-photo svg {
  width: 34%;
  height: 34%;
  opacity: 0.55;
}

.team-card.m1 .team-photo {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.team-card.m2 .team-photo {
  background: linear-gradient(160deg, var(--coral) 0%, #c96f4f 100%);
}

.team-card.m3 .team-photo {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
}

.team-card.m4 .team-photo {
  background: linear-gradient(160deg, #FFD55D 0%, #AD913F 100%);
}

.team-info {
  padding: 18px 20px 22px;
  text-align: left;
}

.team-info h3 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

.team-info p {
  font-size: 0.85rem;
  color: #5a5d62;
  margin-top: 4px;
  line-height: 1.35;
}

.team-quote-box {
  margin-top: 48px;
  background: var(--sky);
  border-radius: 20px;
  padding: 34px 38px;
  max-width: 720px;
  position: relative;
}

.team-quote-box .qmark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(14, 76, 97, 0.15);
  line-height: 1;
  position: absolute;
  top: 14px;
  left: 24px;
}

.team-quote-box p {
  position: relative;
  font-size: 1.05rem;
  color: var(--navy-deep);
  font-weight: 600;
  padding-left: 18px;
}

/* PROOF */
.proof {
  position: relative;
  overflow: hidden;
  background: radial-gradient(140% 180% at 90% 120%, #123f52 0%, var(--navy-deep) 55%, #071e28 100%);
  color: var(--white);
  padding: 80px 0;
}

.proof::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(44, 199, 165, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.proof .wrap {
  position: relative;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.proof-stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--teal);
  animation: proofGlow 3.5s ease-in-out infinite;
}

@keyframes proofGlow {

  0%,
  100% {
    text-shadow: 0 0 0 rgba(44, 199, 165, 0);
  }

  50% {
    text-shadow: 0 0 22px rgba(44, 199, 165, 0.55);
  }
}

.proof-stat .label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.proof-quote {
  position: relative;
  max-width: 480px;
  font-size: 1.1rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.94);
  border-left: 3px solid var(--coral);
  padding-left: 26px;
}

.proof-quote .quote-mark {
  position: absolute;
  top: -38px;
  left: -6px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 141, 107, 0.18);
  line-height: 1;
  pointer-events: none;
}

.proof-quote span.text {
  position: relative;
  display: block;
  font-style: italic;
}

.proof-quote span.signature {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--mint);
}

/* TEMOIGNAGES PARTENAIRES */
.testimonials {
  position: relative;
  overflow: hidden;
  background: radial-gradient(140% 180% at 10% -10%, #123f52 0%, var(--navy-deep) 55%, #071e28 100%);
  color: var(--white);
  padding: 90px 0;
}

.testimonials .section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.testimonials .section-head h2 {
  color: var(--white);
}

.testimonials .section-head .eyebrow {
  color: var(--mint);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width:820px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 40px 36px;
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testimonial-card p.quote-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
}

.testimonial-card .signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.testimonial-card .signature img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-card .signature .sig-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card .signature .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.testimonial-card .signature .role {
  font-size: 0.88rem;
  color: var(--mint);
}

/* HOW IT WORKS */
.how {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 20px;
  position: relative;
}

@media (max-width:900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding: 24px 22px 26px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(14, 76, 97, 0.06), 0 1px 8px rgba(14, 76, 97, 0.05);
  border: 1px solid rgba(14, 76, 97, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.step:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(14, 76, 97, 0.08), 0 8px 20px rgba(14, 76, 97, 0.08);
  border-color: rgba(14, 76, 97, 0.12);
}

.step .step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--teal);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 5px rgba(44, 199, 165, 0.14);
}

.step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.95rem;
  color: #5a5d62;
}

@media (min-width:901px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 39px;
    right: -28px;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    z-index: 1;
    background: linear-gradient(90deg, rgba(44, 199, 165, 0.55), rgba(44, 199, 165, 0.08));
  }
}

@media (max-width:560px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 38px;
    width: 2px;
    height: 28px;
    border-radius: 2px;
    z-index: 1;
    background: linear-gradient(180deg, rgba(44, 199, 165, 0.55), rgba(44, 199, 165, 0.08));
  }
}

/* NEWSLETTER */
.newsletter {
  background: var(--sky);
  padding: 100px 0;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

@media (max-width:860px) {
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy-deep);
  margin-top: 10px;
  line-height: 1.2;
}

.newsletter-content p.lede2 {
  margin-top: 16px;
  font-size: 1.05rem;
  color: #3a3d42;
}

.newsletter-list {
  list-style: none;
  margin-top: 28px;
}

.newsletter-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.98rem;
  color: #3a3d42;
}

.newsletter-list .ico {
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.newsletter-list .ico-badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 76, 97, 0.08);
  color: var(--navy);
}

.newsletter-list .ico-badge svg {
  width: 17px;
  height: 17px;
}

.newsletter-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(14, 76, 97, 0.1);
}

.newsletter-form-card .card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-deep);
  margin-bottom: 18px;
}

.blog-teaser {
  margin-top: 20px;
  background: var(--cream);
  border-radius: 20px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.blog-teaser:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 76, 97, 0.10);
}

.blog-teaser .ico-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 141, 107, 0.16);
  color: var(--coral);
}

.blog-teaser .ico-badge svg {
  width: 22px;
  height: 22px;
}

.blog-teaser-text {
  flex: 1;
}

.blog-teaser-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}

.blog-teaser-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy-deep);
}

.blog-teaser-arrow {
  flex-shrink: 0;
  color: var(--navy);
  opacity: 0.5;
  transition: transform .2s;
}

.blog-teaser:hover .blog-teaser-arrow {
  transform: translateX(3px);
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form .name-row {
  display: flex;
  gap: 12px;
}

@media (max-width:480px) {
  .newsletter-form .name-row {
    flex-direction: column;
  }
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"],
.newsletter-form select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(14, 76, 97, 0.2);
  background: var(--cream);
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%230E4C61' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.newsletter-form select {
  cursor: pointer;
  padding-right: 44px;
}

.newsletter-form select:invalid {
  color: rgba(14, 76, 97, 0.55);
}

.newsletter-form .name-row input[type="text"] {
  flex: 1;
  min-width: 0;
}

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus,
.newsletter-form select:focus {
  border-color: var(--teal);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter-optin {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--charcoal);
  opacity: 0.85;
  line-height: 1.4;
  padding: 2px 6px;
  cursor: pointer;
}

.newsletter-optin input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--teal-dark);
  cursor: pointer;
}

.newsletter-success {
  display: none;
  margin-top: 18px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: rgba(44, 199, 165, 0.12);
  padding: 16px 22px;
  border-radius: 16px;
}

.newsletter-success.show {
  display: block;
}

.newsletter-error {
  display: none;
  margin-top: 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #9a3325;
  background: rgba(214, 83, 64, 0.12);
  padding: 16px 22px;
  border-radius: 16px;
}

.newsletter-error.show {
  display: block;
}

.newsletter-fineprint {
  margin-top: 16px;
  font-size: 0.8rem;
  color: #5a5d62;
}

/* ESPACE PARTENAIRES */
.partners {
  background: var(--cream);
  padding: 100px 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width:860px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

.partner-card {
  background: var(--white);
  border-radius: 20px;
  padding: 34px;
  border: 1px solid rgba(14, 76, 97, 0.08);
  display: flex;
  flex-direction: column;
  transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.partner-card:hover {
  background: var(--sky);
  border-color: rgba(14, 76, 97, 0.16);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(14, 76, 97, 0.10);
}

.partner-card .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(44, 199, 165, 0.12);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
  transition: background .22s ease, color .22s ease;
}

.partner-card:hover .tag {
  background: var(--teal-dark);
  color: #fff;
}

.partner-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.partner-card p {
  font-size: 0.95rem;
  color: #4a4d52;
  margin-bottom: 20px;
  flex-grow: 1;
}

.partner-card a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .22s ease, color .22s ease;
}

.partner-card:hover a {
  color: var(--coral);
  gap: 9px;
}

.partner-contact {
  margin-top: 48px;
  background: var(--navy-deep);
  border-radius: 24px;
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--white);
}

.partner-contact h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  max-width: 420px;
}

.partner-contact p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 8px;
  font-size: 0.95rem;
}

/* FINAL CTA */
.final-cta {
  background: radial-gradient(120% 160% at 85% 110%, #123f52 0%, var(--navy) 50%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.15;
}

.final-cta p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 38px;
  flex-wrap: wrap;
}

.newsletter-note {
  margin-top: 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  display: inline-block;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  transition: color .2s;
}

.newsletter-note:hover {
  color: rgba(255, 255, 255, 0.85);
}

.final-signature {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 28px;
  padding: 32px 48px;
  margin-bottom: 44px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  max-width: 90%;
  box-sizing: border-box;
}

.final-signature img {
  height: clamp(70px, 16vw, 200px);
  width: auto;
  max-width: 100%;
  display: block;
}

@media (max-width:480px) {
  .final-signature {
    padding: 16px 18px;
    max-width: 94%;
  }
}

footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.5);
  padding: 32px 0;
  font-size: 0.85rem;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color .2s;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer .footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* RESEAUX SOCIAUX */
.social-connect {
  background: var(--cream);
  padding: 52px 0;
  text-align: center;
}

.social-connect .eyebrow {
  display: block;
  margin-bottom: 10px;
}

.social-connect h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--navy-deep);
  margin-bottom: 28px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(14, 76, 97, 0.10);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-icons a svg {
  width: 22px;
  height: 22px;
}

.social-icons a:hover {
  background: var(--navy-deep);
  color: #fff;
  transform: translateY(-3px);
}

/* À PROPOS (fusionné) */
.ap-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 15% -10%, #123f52 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 90px 0 80px;
}

@media (min-width:861px) {
  .ap-hero {
    min-height: calc(32vw + 120px);
  }
}

.ap-hero .wrap {
  position: relative;
  z-index: 3;
}

.ap-hero-photo-wrap {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 30%;
  aspect-ratio: 1289/1400;
  border-radius: 28px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.45), 0 12px 28px rgba(0, 0, 0, 0.3);
}

.ap-hero-photo-wrap img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: bottom center;
}

@media (max-width:860px) {
  .ap-hero-photo-wrap {
    display: none;
  }
}

.ap-hero .eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(166, 213, 195, 0.12);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.ap-hero .eyebrow-dark::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.ap-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: min(760px, 62vw);
}

.ap-hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.ap-hero p {
  margin-top: 22px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: min(640px, 58vw);
}

@media (max-width:1100px) {
  .ap-hero h1 {
    max-width: min(760px, 56vw);
  }

  .ap-hero p {
    max-width: min(640px, 52vw);
  }
}

.ap-section {
  padding: 88px 0;
}

.ap-section.alt {
  background: var(--cream);
}

.ap-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy-deep);
  margin-top: 10px;
  line-height: 1.2;
  max-width: 760px;
}

.ap-section p.body-text {
  margin-top: 20px;
  font-size: 1.05rem;
  color: #3a3d42;
  max-width: 760px;
}

.ap-section p.body-text+p.body-text {
  margin-top: 14px;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 26px;
  align-items: start;
}

@media (max-width:860px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.vision-grid .body-text {
  max-width: 52ch;
}

.vision-grid .body-text+.body-text {
  margin-top: 16px;
}

.vision-grid>div:first-child>p.body-text:first-child {
  margin-top: 0;
}

.vision-grid>div:last-child>.vision-block:first-child {
  padding-top: 6px;
}

.vision-block {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(14, 76, 97, 0.12);
}

.vision-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.vision-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C24F26;
  margin-bottom: 10px;
}

.vision-block p {
  font-size: 1rem;
  color: #4a4d52;
  max-width: 50ch;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 56px;
  align-items: start;
  margin-top: 10px;
}

@media (max-width:900px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

.mission-verbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mission-verb {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-deep);
  background: var(--sky);
  padding: 8px 16px;
  border-radius: 100px;
}

.mission-side {
  background: var(--white);
  border-radius: 24px;
  padding: 24px 20px;
  border: 1px solid rgba(14, 76, 97, 0.08);
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.mission-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 14px;
  position: relative;
  transition: background .2s ease;
}

.mission-stat:hover {
  background: var(--sky);
}

.mission-stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--coral);
  line-height: 1;
}

.mission-stat .label {
  font-size: 0.92rem;
  color: #4a4d52;
}

.mission-stat+.mission-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: rgba(14, 76, 97, 0.08);
}

.ap-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}

@media (max-width:780px) {
  .ap-values-grid {
    grid-template-columns: 1fr;
  }
}

.ap-value-card {
  background: var(--white);
  border: 1px solid rgba(14, 76, 97, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.ap-value-card:hover {
  background: var(--sky);
  border-color: rgba(14, 76, 97, 0.16);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(14, 76, 97, 0.10);
}

.ap-value-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--teal);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .22s ease, transform .22s ease;
}

.ap-value-card:hover .num {
  background: var(--coral);
  transform: scale(1.08);
}

.ap-value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.ap-value-card p {
  font-size: 0.95rem;
  color: #4a4d52;
}

.ap-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}

@media (max-width:780px) {
  .ap-impact-grid {
    grid-template-columns: 1fr;
  }
}

.ap-impact-card {
  border-radius: 20px;
  padding: 32px;
  color: var(--white);
}

.ap-impact-card.c0 {
  background: var(--navy-deep);
}

.ap-impact-card.c1 {
  background: var(--teal-dark);
}

.ap-impact-card.c2 {
  background: #c96f4f;
}

.ap-impact-card.c3 {
  background: #FFD55D;
  color: var(--navy-deep);
}

.ap-impact-card.c3 .tag {
  background: rgba(14, 76, 97, 0.12);
  color: var(--navy-deep);
}

.ap-impact-card.c3 p {
  color: rgba(10, 56, 73, 0.82);
}

.ap-impact-card .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.ap-impact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.ap-impact-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width:640px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links a:not(.btn) {
    display: none;
  }

  .has-dropdown {
    display: none;
  }

  .nav-divider {
    display: none;
  }

  .nav-links .btn {
    display: none;
  }

  .nav-links .lang-toggle {
    display: none;
  }
}

/* HAMBURGER (mobile nav) */
.hamburger {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: transparent;
  border: 1.5px solid rgba(14, 76, 97, 0.18);
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
  -webkit-tap-highlight-color: transparent;
}

.hamburger:hover {
  border-color: rgba(14, 76, 97, 0.35);
}

.hamburger-bars {
  position: relative;
  width: 20px;
  height: 14px;
}

.hamburger-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-deep);
  transition: transform .28s ease, opacity .2s ease, top .28s ease;
}

.hamburger-bars span:nth-child(1) {
  top: 0;
}

.hamburger-bars span:nth-child(2) {
  top: 6px;
}

.hamburger-bars span:nth-child(3) {
  top: 12px;
}

.hamburger.open .hamburger-bars span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.hamburger.open .hamburger-bars span:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-bars span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 56, 73, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
  z-index: 70;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, 86vw);
  background: var(--white);
  z-index: 80;
  box-shadow: -16px 0 40px rgba(10, 56, 73, 0.18);
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  flex-shrink: 0;
  padding: 0 22px;
  border-bottom: 1px solid rgba(43, 46, 51, 0.08);
}

.mobile-menu-head .logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.mobile-brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy-deep);
}

.mobile-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(14, 76, 97, 0.18);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
}

.mobile-close svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-body {
  padding: 14px 10px 24px;
  flex: 1;
}

.mobile-link {
  display: block;
  padding: 14px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-deep);
  border-radius: 12px;
}

.mobile-link:active {
  background: var(--cream);
}

.mobile-group {
  border-bottom: 1px solid rgba(43, 46, 51, 0.06);
}

.mobile-group:last-of-type {
  border-bottom: none;
}

.mobile-group-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-deep);
  border-radius: 12px;
}

.mobile-group-trigger svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform .2s ease;
  color: rgba(14, 76, 97, 0.55);
}

.mobile-group.open .mobile-group-trigger svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.mobile-group.open .mobile-submenu {
  max-height: 400px;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px 11px 14px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.85;
}

.mobile-submenu a:active {
  background: var(--cream);
}

.mobile-submenu .dd-num {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(14, 76, 97, 0.08);
  color: var(--navy);
}

.mobile-menu-foot {
  padding: 18px 22px 26px;
  border-top: 1px solid rgba(43, 46, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.mobile-menu-foot .btn {
  width: 100%;
}

.mobile-lang-toggle {
  align-self: flex-start;
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width:640px) {
  .hamburger {
    display: flex;
  }
}