/* =====================================================
   UGF — UM6P | Stylesheet
   Brand: Orange / Ivory — Font: Poppins
   ===================================================== */

:root {
  /* Brand colors (from UGF annual reports) */
  --navy: #15385B;
  --navy-900: #0E2740;
  --navy-700: #1B4774;
  --teal: #17A398;
  --teal-600: #0E8C82;
  --teal-300: #7ED1CA;
  --orange: #E8572A;
  --orange-600: #D0461A;
  --ivory: #F6F4EE;
  --cream: #FBF9F4;
  --ink: #0B1E33;
  --muted: #5E6B7A;
  --line: #E6E2D8;
  --white: #ffffff;

  /* System */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(15, 39, 64, 0.06);
  --shadow: 0 20px 40px -20px rgba(15, 39, 64, 0.25);
  --shadow-lg: 0 30px 60px -30px rgba(15, 39, 64, 0.35);

  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;

  --container: 1240px;
  --nav-h: 78px;

  /* Harmonized gradients — shared across sections */
  --grad-dark: linear-gradient(135deg, #15385B 0%, #0E2740 60%, #15385B 100%);
  --grad-dark-v: linear-gradient(180deg, #15385B 0%, #0E2740 100%);
  /* Light sections use a single flat cream so adjacent sections bleed seamlessly.
     Visual interest comes from the shared orb decorations, not from gradients. */
  --grad-light: #FBF9F4;
  --grad-light-warm: #FBF9F4;
  --orb-teal: radial-gradient(circle, rgba(23,163,152,.28), transparent 68%);
  --orb-orange: radial-gradient(circle, rgba(232,87,42,.2), transparent 68%);
  --orb-teal-strong: radial-gradient(circle, rgba(23,163,152,.45), transparent 68%);
}

/* Shared orb decoration — attach to any relatively-positioned section */
.s-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.s-orbs::before,
.s-orbs::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.s-orbs::before {
  width: 480px; height: 480px;
  background: var(--orb-teal);
  top: -140px; right: -140px;
}
.s-orbs::after {
  width: 420px; height: 420px;
  background: var(--orb-orange);
  bottom: -140px; left: -140px;
}
.s-orbs--dark::before { background: var(--orb-teal-strong); }
.s-orbs--dark::after { background: radial-gradient(circle, rgba(232,87,42,.3), transparent 68%); }

/* --------------------------- Reset --------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

body::before,
body::after { display: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* --------------------------- Logo --------------------------- */
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .3px;
}
.logo-um6p {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: var(--orange);
  color: #fff;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 18px;
}
.logo-um6p span {
  display: inline-block;
  margin: 0 1px;
  background: #fff;
  color: var(--orange);
  padding: 0 4px;
  border-radius: 2px;
}
.logo-sep {
  width: 2px; height: 28px;
  background: linear-gradient(180deg, transparent, var(--orange), transparent);
  border-radius: 2px;
  opacity: .6;
}
.logo-ugf { display: flex; flex-direction: column; gap: 2px; line-height: 1.05; }
.ugf-mark {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800;
  color: var(--teal-600);
  font-size: 20px;
  letter-spacing: .5px;
}
.ugf-mark .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(23, 163, 152, .18);
}
.logo-ugf__sub {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .3px;
  max-width: 110px;
}

/* --------------------------- Logo images --------------------------- */
.nav__logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 4px;
}

/* --------------------------- Navbar --------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 50;
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  background: rgba(251, 249, 244, .75);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  background: rgba(251, 249, 244, .92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--orange); }
.nav__links a:hover::after { width: 100%; }

/* Nav dropdown (Rapports) */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav__chev {
  width: 12px; height: 12px;
  transition: transform .25s ease;
}
.nav__dropdown:hover .nav__chev,
.nav__dropdown:focus-within .nav__chev { transform: rotate(180deg); }

.nav__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 440px;
  padding: 14px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 43, 66, .06);
  box-shadow: 0 24px 48px -12px rgba(15, 43, 66, .22),
              0 8px 16px -6px rgba(15, 43, 66, .08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .3s cubic-bezier(.22,.61,.36,1), visibility 0s .25s;
  z-index: 200;
}
.nav__menu::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.nav__menu::after {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid rgba(15, 43, 66, .06);
  border-top: 1px solid rgba(15, 43, 66, .06);
  border-radius: 3px 0 0 0;
}
.nav__dropdown:hover .nav__menu,
.nav__dropdown:focus-within .nav__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .25s ease, transform .3s cubic-bezier(.22,.61,.36,1), visibility 0s 0s;
}
.nav__menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.nav__report {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  font-family: inherit;
}
.nav__report:hover {
  background: color-mix(in srgb, var(--teal) 6%, transparent);
  border-color: color-mix(in srgb, var(--teal) 18%, transparent);
  transform: translateY(-2px);
}
.nav__report-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 10px;
  background: #0E2740;
  box-shadow: 0 6px 14px -6px rgba(15, 43, 66, .3);
}
.nav__report-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.nav__report:hover .nav__report-cover img { transform: scale(1.06); }
.nav__report-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 2px 4px 4px;
}
.nav__report-year {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--orange);
}
.nav__report-title {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.nav__report-cta {
  font-size: 11.5px;
  color: var(--teal-600);
  font-weight: 600;
  margin-top: 3px;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity .25s ease, transform .25s ease;
}
.nav__report:hover .nav__report-cta { opacity: 1; transform: translateY(0); }

.nav__menu-all {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border-top: 1px solid rgba(15, 43, 66, .06);
  transition: color .2s ease;
}
.nav__menu-all:hover { color: var(--orange); }
.nav__menu-all::after { display: none !important; }

@media (max-width: 760px) {
  .nav__menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 10px 0 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
  }
  .nav__menu::after { display: none; }
  .nav__dropdown-trigger { width: 100%; justify-content: space-between; }
}

.nav__tools {
  display: flex; align-items: center; gap: 16px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(21, 56, 91, .06);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.lang-btn {
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--muted);
  transition: color .2s ease, background .2s ease;
}
.lang-btn.active { color: var(--navy); background: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, .06); }
.lang-btn:hover { color: var(--navy); }

.burger {
  display: none;
  width: 40px; height: 40px;
  padding: 10px 8px;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
}
.burger span {
  display: block;
  height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* --------------------------- Hero --------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 60px) 0 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}
.hero .blob { display: none; }
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(21, 56, 91, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 56, 91, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 85%);
}
.hero__dots { display: none; }
.blob { display: none; }

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 980px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(232, 87, 42, .08);
  border: 1px solid rgba(232, 87, 42, .25);
  color: var(--orange);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(232, 87, 42, .6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 87, 42, .6); }
  70%  { box-shadow: 0 0 0 12px rgba(232, 87, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 87, 42, 0); }
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -1px;
  margin: 0;
  color: #1a1a1a;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
}
.gradient-text {
  background: linear-gradient(95deg, var(--orange) 0%, var(--orange-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
  margin: 0;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(232, 87, 42, .45);
}
.btn--primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(232, 87, 42, .6);
}
.btn--ghost {
  background: #0e2740;
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(14, 39, 64, .45);
}
.btn--ghost:hover {
  background: #091e31;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(14, 39, 64, .6);
}
.btn--accent {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-600) 100%);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(23, 163, 152, .5),
              inset 0 1px 0 rgba(255, 255, 255, .2);
}
.btn--accent svg { width: 18px; height: 18px; }
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(23, 163, 152, .65),
              inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn--accent:hover svg { transform: scale(1.08); }

.hero__marquee {
  width: 100%;
  margin-top: 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee__track span:nth-child(even) { color: var(--ink); opacity: .3; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(21, 56, 91, .3);
  border-radius: 999px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-indicator span {
  width: 3px; height: 8px;
  background: var(--navy);
  border-radius: 3px;
  animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* --------------------------- Sections --------------------------- */
.section { padding: 120px 0; position: relative; }
.section__head { margin-bottom: 60px; max-width: 820px; }
.section__head--center { text-align: center; margin-inline: auto; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 20px;
}
.eyebrow::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--orange);
}
.section__head--center .eyebrow::after { left: 50%; transform: translateX(-50%); }
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: #1a1a1a;
  margin: 0 0 16px;
}
.section__sub {
  color: var(--muted);
  font-size: 17px;
  margin: 0 auto;
  max-width: 640px;
}

/* --------------------------- About --------------------------- */
.section--about {
  background: transparent;
  position: relative;
}
.section--about > .container { position: relative; z-index: 1; }
.section--about::before,
.section--about::after { content: none; }
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 18px;
}
.qq {

  color: white  !important;

}
.about__text p:first-child {
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.quote {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: '';
  position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px;
  background: var(--teal);
  border-radius: 50%;
  opacity: .2;
}
.quote__mark {
  width: 32px; height: 32px;
  color: var(--teal-300);
  margin-bottom: 14px;
  position: relative;
}
.quote p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 18px;
  position: relative;
}
.quote cite { font-style: normal; display: flex; flex-direction: column; gap: 2px; position: relative; }
.quote cite strong { color: #fff; font-weight: 700; }
.quote cite span { color: var(--teal-300); font-size: 13px; }

.about__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pillar {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.pillar__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-600));
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar:nth-child(2) .pillar__icon { background: linear-gradient(135deg, #2a2a2a, #1a1a1a); }
.pillar:nth-child(3) .pillar__icon { background: linear-gradient(135deg, var(--orange), var(--orange-600)); }
.pillar:nth-child(4) .pillar__icon { background: linear-gradient(135deg, #7C5AE0, #5B3DC4); }

.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.3;
}
.pillar p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }

/* --------------------------- Vision & Missions --------------------------- */
.section--vision {
  padding-top: 0;
  background: transparent;
  position: relative;
}
.section--vision > .container { position: relative; z-index: 1; }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vm {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.vm::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 6px;
  background: var(--orange);
}
.vm--dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff;
  border: none;
}
.vm--dark .eyebrow { color: var(--teal-300); }
.vm--dark .eyebrow::after { background: var(--orange); }
.vm h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -.5px;
}
.vm--dark h3 { color: #fff; }
.vm > p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
  font-size: 16px;
}
.vm--dark > p { color: rgba(255, 255, 255, .8); }
.vm__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.vm__list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px;
  background: rgba(232, 87, 42, .05);
  border-radius: 10px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.vm__list li::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px; margin-top: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.vm--dark .vm__list li { background: rgba(255, 255, 255, .06); color: #fff; }
.vm--dark .vm__list li::before { background: var(--orange); }

/* --------------------------- Figures — UGF in numbers --------------------------- */
.section--figures {
  background: transparent;
  position: relative;
}
.fx-deco { display: none; }
.section--figures > .container { position: relative; z-index: 1; }

/* Hero spotlight card */
.fx-spot {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  padding: 44px 48px;
  border-radius: 28px;
  background: var(--grad-dark);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(14,39,64,.55);
  margin-bottom: 28px;
}
.fx-spot__glow {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,163,152,.45), transparent 68%);
  right: -180px; top: -180px;
  filter: blur(10px);
  pointer-events: none;
}
.fx-spot__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.fx-spot__main { position: relative; display: flex; flex-direction: column; gap: 28px; }
.fx-spot__tag {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.fx-spot__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(23,163,152,.25);
  animation: fxPulse 2.4s ease-in-out infinite;
}
@keyframes fxPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(23,163,152,.25); }
  50% { box-shadow: 0 0 0 8px rgba(23,163,152,.08); }
}
.fx-spot__stage { display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.fx-spot__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(96px, 12vw, 180px);
  line-height: .9;
  letter-spacing: -6px;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.55) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.fx-spot__lbl { flex: 1; min-width: 200px; padding-bottom: 10px; }
.fx-spot__lbl h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; margin: 0;
  color: #fff;
}
.fx-spot__lbl p {
  margin: 6px 0 0;
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,.7);
  max-width: 320px;
}

/* Breakdown bars */
.fx-spot__breakdown {
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
  padding: 26px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}
.fx-slice { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; align-items: center; }
.fx-slice__head { display: flex; align-items: baseline; gap: 10px; }
.fx-slice__num {
  font-family: var(--font-display);
  font-weight: 700; font-size: 28px;
  color: #fff;
  min-width: 40px;
}
.fx-slice__lbl {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.78);
}
.fx-slice__pct {
  grid-column: 2; grid-row: 1;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.6);
}
.fx-slice__bar {
  grid-column: 1 / -1;
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.fx-slice__bar i {
  display: block; height: 100%;
  width: calc(var(--pct) * 1%);
  border-radius: 3px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  box-shadow: 0 0 16px var(--c1);
  transform-origin: left;
  animation: fxBarIn 1.2s cubic-bezier(.25,1,.5,1) .2s both;
}
@keyframes fxBarIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.fx-slice[data-type="rd"]  { --c1: #17A398; --c2: #3FD0C4; }
.fx-slice[data-type="tt"]  { --c1: #E8572A; --c2: #FF8658; }
.fx-slice[data-type="edu"] { --c1: #6BA8F2; --c2: #A6CCFF; }

/* Stats grid */
.fx-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.fx-stat {
  position: relative;
  padding: 24px 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .3s;
}
.fx-stat::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--acc);
  transform: scaleY(.3); transform-origin: top;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.fx-stat:hover {
  transform: translateY(-4px);
  border-color: var(--acc);
  box-shadow: 0 16px 40px -20px var(--acc);
}
.fx-stat:hover::before { transform: scaleY(1); }
.fx-stat[data-accent="teal"]   { --acc: #17A398; }
.fx-stat[data-accent="orange"] { --acc: #E8572A; }
.fx-stat[data-accent="navy"]   { --acc: #15385B; }
.fx-stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--navy);
}
.fx-stat__label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--muted);
  max-width: calc(100% - 36px);
}
.fx-stat__ico {
  position: absolute;
  top: 18px; right: 18px;
  width: 24px; height: 24px;
  color: var(--acc);
  opacity: .35;
  transition: opacity .3s, transform .3s;
}
.fx-stat:hover .fx-stat__ico { opacity: 1; transform: scale(1.08) rotate(-6deg); }

/* Satisfaction */
.fx-sat {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.fx-sat__item {
  padding: 32px 30px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 26px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.fx-sat__item:hover {
  border-color: var(--teal);
  box-shadow: 0 16px 40px -24px rgba(23,163,152,.35);
  transform: translateY(-3px);
}
.fx-sat__txt h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--teal);
}
.fx-sat__txt p {
  margin: 0;
  font-size: 15px; line-height: 1.55;
  color: var(--ink); font-weight: 500;
}

/* Ring (shared) */
.sat__ring { position: relative; width: 110px; height: 110px; flex-shrink: 0; }
.sat__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.sat__ring svg circle { fill: none; stroke-width: 10; stroke: rgba(23, 163, 152, .12); }
.sat__ring svg .sat__bar {
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: calc(326.73 - (326.73 * var(--pct) / 100));
  transition: stroke-dashoffset 1.5s cubic-bezier(.25, 1, .5, 1);
}
.sat__ring span {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--navy);
}
.sat__ring span i { font-style: normal; font-size: 16px; color: var(--teal); margin-left: 2px; }

/* Responsive */
@media (max-width: 1100px) {
  .fx-grid { grid-template-columns: repeat(3, 1fr); }
  .fx-spot { grid-template-columns: 1fr; padding: 36px 32px; }
}
@media (max-width: 720px) {
  .fx-grid { grid-template-columns: repeat(2, 1fr); }
  .fx-sat { grid-template-columns: 1fr; }
  .fx-spot__stage { flex-direction: column; align-items: flex-start; gap: 16px; }
  .fx-sat__item { flex-direction: column; text-align: center; gap: 18px; }
}

/* --------------------------- Programmes --------------------------- */
.section--programmes {
  background: transparent;
  position: relative;
}
.section--programmes::after,
.section--programmes::before { content: none; }
.section--programmes > .container { position: relative; }

.prog-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}
.prog-head .section__head { margin-bottom: 0; }
.prog-head__lede {
  margin: 0;
  font-size: 16px; line-height: 1.6;
  color: var(--muted);
  padding-left: 18px;
  border-left: 3px solid var(--teal);
}
@media (max-width: 900px) {
  .prog-head { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  .filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border-radius: 18px;
    padding: 6px;
    gap: 6px;
  }
  .filter {
    padding: 10px 12px;
    font-size: 13px;
    justify-content: center;
    border-radius: 12px;
  }
  .filter__count {
    font-size: 10px;
    min-width: 20px;
  }
}

.filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 8px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px -8px rgba(21,56,91,.12);
}
.filter {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
}
.filter__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c, var(--teal));
  flex-shrink: 0;
}
.filter__count {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(21,56,91,.08);
  color: var(--navy);
  font-size: 11px; font-style: normal; font-weight: 700;
  min-width: 22px; text-align: center;
  transition: background .25s, color .25s;
}
.filter:hover { color: var(--navy); }
.filter:hover .filter__count { background: rgba(21,56,91,.14); }
.filter.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(21,56,91,.45);
}
.filter.active .filter__count {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.filter.active .filter__dot {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.2);
}

/* Programs — masharie.ma style horizontal cards */
.programs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .programs { grid-template-columns: 1fr; } }

.prog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.prog-card:hover {
  box-shadow: 0 8px 32px rgba(21,56,91,.12);
  border-color: rgba(23,163,152,.3);
}
@media (min-width: 540px) { .prog-card { flex-direction: row; } }

/* Left — logo strip */
.prog-card__logos {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: #f8f9fb;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 540px) {
  .prog-card__logos {
    flex-direction: column;
    border-bottom: none;
    border-right: 1px solid var(--line);
    min-width: 76px;
    max-width: 76px;
  }
}

.prog-logo-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
  flex-shrink: 0;
}
.prog-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.prog-logo-box--text {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}

/* Vertical divider (hidden, handled by border-right) */
.prog-card__divider { display: none; }

/* Right — content */
.prog-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
}
.prog-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.prog-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -.01em;
  line-height: 1.3;
  margin: 0;
}
.prog-card__tag {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  white-space: nowrap;
}
.prog-card[data-type="rd"]  .prog-card__tag { background: var(--navy); }
.prog-card[data-type="tt"]  .prog-card__tag { background: #1a1a1a; }
.prog-card[data-type="edu"] .prog-card__tag { background: var(--orange); }

.prog-card__sub {
  margin-top: 4px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
}
.prog-card__desc {
  margin-top: 10px;
  font-size: .83rem;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}
.prog-card__footer {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}
.prog-card__link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(21,56,91,.3);
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.prog-card__link:hover { color: var(--orange); text-decoration-color: var(--orange); }
.prog-card__link svg { transition: transform .2s ease; }
.prog-card__link:hover svg { transform: translateX(2px); }

/* --------------------------- Thématiques — Bento Grid --------------------------- */
.section--themes {
  background: var(--grad-dark);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.section--themes::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.section--themes__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.section--themes__orb--a {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,87,42,.25), transparent 65%);
  top: -160px; left: -120px;
}
.section--themes__orb--b {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(232,87,42,.3), transparent 65%);
  bottom: -160px; right: -120px;
}
.section--themes > .container { position: relative; z-index: 1; }
.section--themes .section__title { color: #fff; font-size: clamp(34px, 4vw, 58px); }
.section--themes .eyebrow { color: var(--teal-300); }
.section--themes .section__head { position: relative; }
.section__sub--light { color: rgba(255,255,255,.65); max-width: 640px; margin-left: auto; margin-right: auto; }

/* Compact grid — 5 columns, uniform cards */
.themes-bento {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}

.themes-bento .tb-card { grid-column: span 1; }

/* Base card */
.tb-card {
  position: relative;
  padding: 18px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  cursor: default;
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              border-color .35s ease,
              box-shadow .35s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 130px;
}

/* Gradient background blob */
.tb-card__bg {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  right: -60px; bottom: -60px;
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.tb-card:hover .tb-card__bg {
  opacity: .22;
  transform: scale(1.2);
}

/* Hover lift */
.tb-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px -20px var(--accent);
}

/* Accent bar top */
.tb-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px 3px 0 0;
  transition: width .4s cubic-bezier(.2,.8,.2,1);
  z-index: 2;
}
.tb-card:hover::before { width: 100%; }

/* Number watermark */
.tb-card::after {
  content: attr(data-num);
  position: absolute;
  right: 10px; bottom: -12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--accent);
  opacity: .08;
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  z-index: 0;
}
.tb-card:hover::after { opacity: .18; transform: translateY(-3px); }

/* Icon */
.tb-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 6px 18px -6px var(--accent);
}
.tb-card:hover .tb-card__icon { transform: scale(1.1) rotate(-4deg); }
.tb-card__icon svg {
  width: 20px; height: 20px;
  color: #fff;
  stroke: #fff;
}

/* Body */
.tb-card__body {
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}

/* Number (large background watermark) */
.tb-card__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .7;
}

/* Title */
.tb-card__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -.2px;
}

/* Sub text — hidden in compact layout */
.tb-card__sub { display: none; }

/* Responsive */
@media (max-width: 1100px) {
  .themes-bento { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .themes-bento { grid-template-columns: repeat(2, 1fr); }
  .tb-card { min-height: 110px; padding: 14px 14px; }
}

/* --------------------------- Committees / Testimonials --------------------------- */
.section--committees {
  background: transparent;
  position: relative;
}
.section--committees > .container { position: relative; z-index: 1; }
.section--committees::before,
.section--committees::after { content: none; }
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testim {
  --tc: var(--teal);
  --tc2: var(--teal-600);
  position: relative;
  padding: 40px 34px 32px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(15, 43, 66, .06);
  box-shadow: 0 1px 2px rgba(15, 43, 66, .04);
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s cubic-bezier(.22,.61,.36,1),
              box-shadow .4s ease,
              border-color .4s ease;
}
.testim::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--tc) 0%, var(--tc2) 100%);
  border-radius: 4px 0 0 4px;
  transition: width .4s cubic-bezier(.22,.61,.36,1);
}
.testim::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tc) 0%, transparent 70%);
  opacity: 0;
  z-index: -1;
  transition: opacity .5s ease;
  filter: blur(30px);
}
.testim:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 40px -12px rgba(15, 43, 66, .15),
              0 8px 16px -8px rgba(15, 43, 66, .08);
}
.testim:hover::before { width: 6px; }
.testim:hover::after { opacity: .18; }

.testim__mark {
  position: absolute;
  top: 22px; right: 24px;
  width: 42px; height: 42px;
  color: var(--tc);
  opacity: .2;
  transition: opacity .4s ease, transform .4s ease;
}
.testim:hover .testim__mark {
  opacity: .4;
  transform: scale(1.1) rotate(-4deg);
}

.testim p {
  position: relative;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 26px;
  font-weight: 400;
  letter-spacing: -.1px;
}
.testim p::before,
.testim p::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--tc);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path d='M14 10c-5 0-9 4-9 9v19h14V19h-6c0-2 2-4 4-4h1V10h-4zm20 0c-5 0-9 4-9 9v19h14V19h-6c0-2 2-4 4-4h1V10h-4z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path d='M14 10c-5 0-9 4-9 9v19h14V19h-6c0-2 2-4 4-4h1V10h-4zm20 0c-5 0-9 4-9 9v19h14V19h-6c0-2 2-4 4-4h1V10h-4z'/></svg>");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  vertical-align: -2px;
  opacity: .8;
}
.testim p::before { margin-right: 6px; }
.testim p::after  { margin-left: 6px; transform: rotate(180deg); }
.testim footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 43, 66, .06);
}
.testim__who { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.testim__who strong { color: #1a1a1a; font-size: 15px; font-weight: 700; line-height: 1.3; }
.testim__who span { color: var(--muted); font-size: 12.5px; line-height: 1.4; }

/* --------------------------- Reports --------------------------- */
.section--reports {
  background: transparent;
  position: relative;
}
.section--reports > .container { position: relative; z-index: 1; }
.section--reports::before,
.section--reports::after { content: none; }

.reports {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.report {
  position: relative;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(15, 43, 66, .06);
  box-shadow: 0 1px 2px rgba(15, 43, 66, .04);
  overflow: hidden;
  transition: transform .45s cubic-bezier(.22,.61,.36,1),
              box-shadow .45s ease;
}
.report:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -14px rgba(15, 43, 66, .22),
              0 8px 18px -8px rgba(15, 43, 66, .1);
}
.report__cover {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0E2740;
  cursor: pointer;
}
.report__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.report:hover .report__cover img { transform: scale(1.06); }
.report__shine {
  position: absolute;
  top: 0; left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg,
              transparent 20%,
              rgba(255, 255, 255, .2) 50%,
              transparent 80%);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .8s cubic-bezier(.22,.61,.36,1);
}
.report:hover .report__shine { left: 120%; }

.report__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              transparent 40%,
              rgba(15, 39, 64, .6) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .4s ease;
}
.report:hover .report__overlay { opacity: 1; }

.report__view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  color: var(--navy);
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transform: translateY(12px);
  transition: transform .4s cubic-bezier(.22,.61,.36,1), background .25s ease, color .25s ease;
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, .25);
}
.report__view svg { width: 16px; height: 16px; }
.report:hover .report__view { transform: translateY(0); }
.report__view:hover { background: var(--orange); color: #fff; }

.report__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
}
.report__year {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--orange);
  padding: 4px 10px;
  background: color-mix(in srgb, var(--orange) 12%, transparent);
  border-radius: 6px;
  margin-bottom: 6px;
}
.report__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}
.report__dl {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--navy);
  background: color-mix(in srgb, var(--navy) 6%, transparent);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.report__dl svg { width: 18px; height: 18px; }
.report__dl:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

/* PDF Modal */
.pdf-modal[hidden] { display: none; }
.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: pdfFadeIn .25s ease;
}
@keyframes pdfFadeIn { from { opacity: 0; } to { opacity: 1; } }
.pdf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 45, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pdf-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 94vh;
  background: #0E2740;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .6),
              0 0 0 1px rgba(255, 255, 255, .04);
  animation: pdfSlideUp .4s cubic-bezier(.22,.61,.36,1);
}
@keyframes pdfSlideUp {
  from { transform: translateY(24px) scale(.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.pdf-modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  background: linear-gradient(180deg, #15385B 0%, #12304E 100%);
  color: #fff;
  flex: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.pdf-modal__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.pdf-modal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: 0 0 12px currentColor;
}
.pdf-modal__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  margin-left: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdf-modal__actions { display: flex; gap: 8px; flex: 0 0 auto; }
.pdf-modal__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .25s ease, color .25s ease;
  text-decoration: none;
}
.pdf-modal__icon svg { width: 18px; height: 18px; }
.pdf-modal__icon:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-1px);
}
.pdf-modal__icon--close:hover {
  background: #E26E2A;
  color: #fff;
}
.pdf-modal__stage {
  position: relative;
  flex: 1 1 auto;
  background: radial-gradient(ellipse at center,
              #15385B 0%,
              #0E2740 100%);
  overflow: hidden;
}
.pdf-modal__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
}
.pdf-modal__loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, .75);
  font-family: var(--font-display);
  font-size: 13.5px;
  letter-spacing: .3px;
  z-index: 1;
  pointer-events: none;
}
.pdf-modal__spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .1);
  border-top-color: var(--orange);
  border-right-color: var(--teal);
  animation: pdfSpin .9s linear infinite;
}
@keyframes pdfSpin { to { transform: rotate(360deg); } }

@media (max-width: 640px) {
  .reports { grid-template-columns: 1fr; max-width: 420px; }
  .pdf-modal { padding: 0; }
  .pdf-modal__dialog { height: 100vh; border-radius: 0; }
  .pdf-modal__bar {
    padding: 12px 14px;
    gap: 8px;
  }
  .pdf-modal__title {
    font-size: 14px;
  }
  .pdf-modal__icon {
    width: 36px;
    height: 36px;
  }
  .pdf-modal__icon svg { width: 16px; height: 16px; }
}

/* --------------------------- Partners --------------------------- */
.section--partners {
  background: transparent;
  position: relative;
}
.section--partners > .container { position: relative; z-index: 1; }
.section--partners::before { content: none; }
.partners-marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.partners-row {
  overflow: hidden;
  width: 100%;
}
.partners-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-left 55s linear infinite;
  will-change: transform;
}
.partners-row--reverse .partners-track { animation-name: marquee-right; }
.partners-marquee:hover .partners-track { animation-play-state: paused; }

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.partner {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(15, 43, 66, .08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  letter-spacing: .3px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.22,.61,.36,1),
              border-color .35s ease,
              box-shadow .35s ease;
  box-shadow: 0 1px 2px rgba(15, 43, 66, .04);
}
.partner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--orange) 0%, var(--teal) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity .35s ease;
  filter: blur(14px);
}
.partner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg,
              transparent 20%,
              rgba(255, 255, 255, .55) 50%,
              transparent 80%);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .65s cubic-bezier(.22,.61,.36,1);
}
.partner img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .35s ease;
}
.partner:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 12px 30px -8px rgba(15, 43, 66, .18),
              0 4px 10px -2px rgba(15, 43, 66, .08);
}
.partner:hover::before { opacity: .45; }
.partner:hover::after { left: 120%; }
.partner:hover img { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
}

@media (max-width: 640px) {
  .partner { width: 150px; height: 88px; padding: 14px; }
  .partners-track { gap: 14px; animation-duration: 40s; }
}

/* --------------------------- CTA / Contact --------------------------- */
.section--cta {
  background: linear-gradient(180deg, transparent 0%, transparent 50%, #15385B 50%, #0E2740 100%);
  padding-bottom: 60px;
  position: relative;
}
.section--cta > .container { position: relative; z-index: 1; }
.cta {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  padding: 64px;
  background: var(--grad-dark);
  border-radius: var(--radius-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(14,39,64,.6);
}
.cta::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: .35;
}
.cta::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: .2;
}
.cta__text { position: relative; }
.cta__text .eyebrow { color: var(--teal-300); }
.cta__text .section__title { color: #fff; font-size: 36px; }
.cta__text p { color: rgba(255, 255, 255, .75); margin: 0 0 28px; font-size: 16px; line-height: 1.65; }
.cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta .btn--primary { background: var(--orange); box-shadow: 0 14px 30px -12px rgba(232, 87, 42, .55); }
.cta .btn--primary:hover { background: var(--orange-600); }
.cta .btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; }
.cta .btn--ghost:hover { background: rgba(255, 255, 255, .14); }

.cta__info {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  padding: 32px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.info { display: flex; flex-direction: column; gap: 4px; }
.info__label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--teal-300); font-weight: 700;
}
.info__val { color: #fff; font-size: 15px; font-weight: 500; }

/* --------------------------- Footer --------------------------- */
.footer {
  background: linear-gradient(180deg, #0E2740 0%, #081A2E 100%);
  color: rgba(255, 255, 255, .7);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before,
.footer::after { content: none; }
.footer > .container { position: relative; z-index: 1; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
}
.footer__brand p {
  margin-top: 20px;
  line-height: 1.7;
  font-size: 14.5px;
  max-width: 320px;
}
.footer__brand .logo-ugf__sub,
.footer .logo-ugf__sub { color: rgba(255,255,255,.6); }
.footer .ugf-mark { color: var(--teal-300); }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__cols h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 18px;
}
.footer__cols a {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, .65);
  font-size: 14.5px;
  transition: color .2s ease;
}
.footer__cols a:hover { color: var(--teal-300); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

/* --------------------------- Reveal animation --------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------- Responsive --------------------------- */
@media (max-width: 980px) {
  .about__grid,
  .vm-grid,
  .testimonials,
  .cta,
  .footer__inner { grid-template-columns: 1fr; }
  .cta { padding: 44px 32px; }
  .section { padding: 90px 0; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform .3s ease;
    align-items: stretch;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 12px 10px; border-radius: 8px; }
  .nav__links a:hover { background: rgba(23, 163, 152, .08); }
  .burger { display: flex; }
  .logo-ugf__sub { display: none; }

  .about__pillars { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .vm { padding: 36px 28px; }
  .vm h3 { font-size: 24px; }
}
