:root {
  --ink: #101a3f;
  --ink-soft: #4d5877;
  --blue: #075cf6;
  --blue-dark: #063cb7;
  --blue-deep: #071a5c;
  --aqua: #20cdbb;
  --coral: #ff6a4d;
  --yellow: #ffd44d;
  --paper: #f5f8ff;
  --paper-warm: #fffaf3;
  --white: #ffffff;
  --line: #dbe4f3;
  --success: #007d71;
  --shadow-sm: 0 12px 35px rgba(16, 26, 63, 0.08);
  --shadow-lg: 0 28px 80px rgba(7, 26, 92, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 40px), 860px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 9vw, 128px);
}

.section--compact {
  padding-block: clamp(56px, 7vw, 92px);
}

.section--paper {
  background: var(--paper);
}

.section--warm {
  background: var(--paper-warm);
}

.section--deep {
  overflow: hidden;
  background: var(--blue-deep);
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head--center {
  display: block;
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 14px 0 0 var(--yellow);
  content: "";
  margin-right: 13px;
}

.breadcrumbs {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 680;
}

.breadcrumbs a {
  color: var(--blue-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.breadcrumbs span[aria-current="page"] {
  color: inherit;
}

.page-hero--deep .breadcrumbs {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero--deep .breadcrumbs a {
  color: var(--white);
}

.section--deep .eyebrow,
.cta .eyebrow,
.page-hero--deep .eyebrow {
  color: #9dece4;
}

.display-title {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6.2vw, 5.8rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.1vw, 3.9rem);
  font-weight: 820;
}

.section-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.section--deep .section-lead,
.page-hero--deep .section-lead {
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 760;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(7, 92, 246, 0.27);
  color: var(--white);
}

.button--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(7, 92, 246, 0.34);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: #b7c5dc;
  box-shadow: var(--shadow-sm);
}

.button--light {
  background: var(--white);
  color: var(--blue-deep);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(219, 228, 243, 0.86);
  box-shadow: 0 10px 35px rgba(16, 26, 63, 0.06);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
}

.site-logo img {
  width: 174px;
}

.site-nav {
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 10px 11px;
  border-radius: 999px;
  color: #3e4968;
  font-size: 0.9rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--paper);
  color: var(--blue-dark);
}

.nav-mobile-action {
  display: none;
}

.site-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.language-link {
  padding: 8px 5px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.login-link {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  align-items: center;
  justify-content: center;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before {
  position: absolute;
  top: -6px;
}

.menu-toggle__icon::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 9vw, 126px) clamp(84px, 10vw, 140px);
  background:
    linear-gradient(rgba(7, 92, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 92, 246, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(32, 205, 187, 0.22), transparent 27%),
    radial-gradient(circle at 12% 75%, rgba(255, 212, 77, 0.24), transparent 25%),
    var(--white);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.hero::after {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 84px solid rgba(7, 92, 246, 0.055);
  border-radius: 50%;
  content: "";
  right: -260px;
  bottom: -290px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 0.78fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.hero__copy {
  max-width: 690px;
}

.hero__copy .section-lead {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero__title-accent {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.hero__title-accent::after {
  position: absolute;
  z-index: -1;
  right: -2%;
  bottom: 0.06em;
  left: -2%;
  height: 0.19em;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  transform: rotate(-1.5deg);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  margin: 26px 0 0;
  padding: 0;
  gap: 9px 18px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 650;
  list-style: none;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__proof li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  content: "";
}

.hero-visual {
  position: relative;
  padding: 18px 16px 24px 34px;
}

.hero-visual::before {
  position: absolute;
  inset: 4% 10% 8% 0;
  border: 2px solid var(--blue);
  border-radius: 49% 51% 40% 60% / 45% 42% 58% 55%;
  content: "";
  transform: rotate(-5deg);
}

.hero-visual__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.05;
  border: 8px solid var(--white);
  border-radius: 45% 55% 36% 64% / 40% 38% 62% 60%;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.hero-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-stat {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(230px, 58%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 20px;
  background: rgba(7, 26, 92, 0.94);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.floating-stat strong {
  display: block;
  margin-bottom: 2px;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.floating-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

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

.info-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 26, 63, 0.02);
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.info-card:hover {
  border-color: #bed0ee;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.info-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 13px;
  background: var(--paper);
  color: var(--blue);
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 850;
}

.info-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--paper);
  color: var(--blue);
  place-items: center;
}

.info-card__icon svg {
  width: 28px;
  height: 28px;
}

.info-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.info-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.impact {
  position: relative;
}

.impact::before {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(32, 205, 187, 0.09);
  border-radius: 50%;
  content: "";
  top: -180px;
  right: -140px;
}

.metric-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.metric {
  padding: 34px 24px 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.metric:first-child {
  padding-left: 0;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 4.25rem);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.9rem;
  font-weight: 650;
}

.metric-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  text-align: right;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split--reverse .split__copy {
  order: 1;
}

.split__copy .section-title {
  margin-bottom: 24px;
}

.split__copy .section-lead {
  margin-bottom: 26px;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  aspect-ratio: 1.18;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.split__media::after {
  position: absolute;
  z-index: -1;
  width: 44%;
  height: 44%;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
  right: -6%;
  bottom: -8%;
}

.check-list {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 11px;
  color: var(--ink-soft);
}

.check-list li::before {
  display: grid;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(32, 205, 187, 0.15);
  color: var(--success);
  content: "✓";
  font-size: 0.76rem;
  font-weight: 900;
  place-items: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 37px;
  right: -24px;
  width: 30px;
  height: 2px;
  background: var(--blue);
  content: "";
}

.step strong {
  display: block;
  margin-bottom: 24px;
  color: var(--coral);
  font-size: 0.77rem;
  letter-spacing: 0.13em;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.recognition-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: 56px;
  align-items: center;
}

.video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 7px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: #020817;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.27);
  text-decoration: none;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.9);
  transition: filter 250ms ease, transform 500ms var(--ease);
}

.video-frame:hover > img {
  filter: brightness(0.82) saturate(1);
  transform: scale(1.025);
}

.video-frame__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  padding-left: 4px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  color: var(--blue);
  font-size: 1.25rem;
  place-items: center;
  transform: translate(-50%, -50%);
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  margin: 38px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.partner-list li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 760;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.story-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: var(--radius-md);
  color: var(--white);
}

.story-card:first-child {
  min-height: 520px;
  grid-row: span 2;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.story-card:hover img {
  transform: scale(1.035);
}

.story-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4, 12, 44, 0.92));
  content: "";
}

.story-card__caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.story-card__caption span {
  display: block;
  margin-bottom: 7px;
  color: #9dece4;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card__caption h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 9vw, 116px);
  background:
    radial-gradient(circle at 8% 20%, rgba(32, 205, 187, 0.28), transparent 24%),
    radial-gradient(circle at 90% 100%, rgba(255, 212, 77, 0.18), transparent 24%),
    var(--blue);
  color: var(--white);
}

.cta::after {
  position: absolute;
  width: 330px;
  height: 330px;
  border: 55px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  top: -170px;
  right: -90px;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: end;
}

.cta .section-title {
  max-width: 790px;
  margin-bottom: 18px;
}

.cta p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding-block: 70px 26px;
  background: #050d2d;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.9fr 0.9fr;
  gap: 38px;
  padding-bottom: 48px;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.91rem;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links,
.footer-addresses,
.social-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links,
.footer-addresses {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-addresses a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-addresses a:hover {
  color: var(--white);
}

.footer-addresses li {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.86rem;
}

.footer-addresses strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  place-items: center;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.social-links a:hover {
  background: var(--white);
  color: var(--blue-deep);
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(74px, 9vw, 126px);
  background:
    linear-gradient(rgba(7, 92, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 92, 246, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.page-hero--deep {
  background:
    radial-gradient(circle at 80% 20%, rgba(32, 205, 187, 0.2), transparent 28%),
    var(--blue-deep);
  color: var(--white);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.page-hero__copy .section-lead {
  margin-top: 24px;
  margin-bottom: 30px;
}

.page-hero__media {
  position: relative;
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 1.08;
  border: 7px solid var(--white);
  border-radius: 32% 68% 44% 56% / 53% 40% 60% 47%;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.page-hero__media::before {
  position: absolute;
  width: 78px;
  height: 78px;
  border: 20px solid var(--coral);
  border-radius: 50%;
  content: "";
  top: -22px;
  right: -18px;
}

.quote-block {
  padding: clamp(32px, 5vw, 62px);
  border-left: 6px solid var(--coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--paper-warm);
}

.quote-block p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

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

.initiative-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.initiative-card__top {
  min-height: 160px;
  padding: 28px;
  background: var(--blue);
  color: var(--white);
}

.initiative-card:nth-child(2) .initiative-card__top {
  background: var(--coral);
}

.initiative-card:nth-child(3) .initiative-card__top {
  background: var(--aqua);
  color: var(--ink);
}

.initiative-card__top span {
  display: block;
  margin-bottom: 36px;
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.initiative-card__top h3 {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.initiative-card__body {
  padding: 28px;
}

.initiative-card__body p {
  color: var(--ink-soft);
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.team-card img {
  width: 100%;
  aspect-ratio: 0.83;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9);
  transition: filter 250ms ease, transform 450ms var(--ease);
}

.team-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.team-card__body {
  padding: 20px;
}

.team-card h3 {
  margin-bottom: 5px;
  font-size: 1.08rem;
}

.team-card p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.team-card a {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 760;
  text-decoration: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  display: grid;
  min-height: 100%;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  grid-template-columns: 60px 1fr;
  gap: 22px;
}

.service-card__icon {
  display: grid;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--paper);
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 840;
  place-items: center;
}

.service-card:nth-child(3n + 2) .service-card__icon {
  background: #fff0ec;
  color: #c9381b;
}

.service-card:nth-child(3n) .service-card__icon {
  background: #ddfaf7;
  color: #00776d;
}

.service-card h2 {
  margin: 3px 0 11px;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: #dbe4f3;
  grid-column: span 4;
}

.gallery-item--wide {
  grid-column: span 8;
}

.gallery-item--tall {
  min-height: 540px;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 12, 44, 0.72));
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.gallery-item::before {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  content: "+";
  font-size: 1.3rem;
  font-weight: 500;
  opacity: 0;
  place-items: center;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item:hover::after,
.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover::before {
  transform: translateY(0);
}

.lightbox {
  width: min(92vw, 1100px);
  max-height: 90vh;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.lightbox::backdrop {
  background: rgba(3, 8, 28, 0.86);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  border-radius: 22px;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 1.35rem;
  place-items: center;
}

.faq-tools {
  position: relative;
  max-width: 760px;
  margin: 0 auto 34px;
}

.faq-search {
  width: 100%;
  min-height: 60px;
  padding: 15px 52px 15px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-search::placeholder {
  color: #7b85a0;
}

.faq-tools::after {
  position: absolute;
  top: 17px;
  right: 20px;
  color: var(--blue);
  content: "⌕";
  font-size: 1.45rem;
  line-height: 1;
}

.faq-status {
  min-height: 24px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
}

.faq-list {
  display: grid;
  max-width: 860px;
  margin-inline: auto;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  display: flex;
  min-height: 72px;
  padding: 20px 58px 20px 22px;
  align-items: center;
  font-weight: 760;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 22px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  content: "+";
  display: grid;
  font-size: 1.2rem;
  place-items: center;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 58px 24px 22px;
  color: var(--ink-soft);
}

.faq-item__answer a {
  color: var(--blue-dark);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  gap: 56px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.contact-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.contact-card p,
.contact-card a {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.form-shell {
  overflow: hidden;
  min-height: 720px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-shell [hidden] {
  display: none !important;
}

.form-facade {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 720px;
  padding: clamp(38px, 6vw, 72px);
  overflow: hidden;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 92% 8%, rgba(32, 205, 187, 0.28), transparent 28%),
    radial-gradient(circle at 8% 100%, rgba(255, 212, 77, 0.3), transparent 30%),
    linear-gradient(145deg, #f7faff, #eef5ff 52%, #fffaf3);
}

.form-facade::after {
  position: absolute;
  z-index: -1;
  width: 250px;
  height: 250px;
  border: 48px solid rgba(7, 92, 246, 0.07);
  border-radius: 50%;
  content: "";
  right: -118px;
  bottom: -112px;
}

.form-facade__mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  border-radius: 18px;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(7, 92, 246, 0.25);
  color: var(--white);
  font-size: 1.5rem;
  place-items: center;
}

.form-facade .eyebrow {
  margin-bottom: 16px;
}

.form-facade h2 {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.55rem);
}

.form-facade > p:not(.form-facade__note, .form-facade__feedback) {
  max-width: 570px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.form-facade .button-row {
  align-items: center;
}

.form-facade__note {
  max-width: 520px;
  margin: 24px 0 0;
  color: #65708d;
  font-size: 0.82rem;
}

.form-facade__feedback {
  width: 100%;
  margin: 20px 0 0;
  padding: 12px 14px;
  border: 1px solid #f1bcb2;
  border-radius: 12px;
  background: #fff2ef;
  color: #8d2d1f;
  font-size: 0.88rem;
}

.form-embed {
  position: relative;
  min-height: 920px;
  background: var(--white);
}

.form-embed__status {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  margin: 0;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 42%, rgba(32, 205, 187, 0.18), transparent 24%),
    var(--paper);
  color: var(--ink-soft);
  font-weight: 720;
  place-items: center;
  text-align: center;
}

.form-shell iframe {
  width: 100%;
  height: 920px;
  border: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}

.form-shell.is-loaded iframe {
  opacity: 1;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  gap: 10px;
}

.legal-nav a {
  color: var(--ink-soft);
  font-size: 0.84rem;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--blue-dark);
}

.legal-copy {
  color: var(--ink-soft);
}

.legal-copy h2 {
  margin: 52px 0 14px;
  color: var(--ink);
  font-size: 1.65rem;
  scroll-margin-top: calc(var(--header-height) + 30px);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy li + li {
  margin-top: 8px;
}

.notice {
  padding: 18px 20px;
  border: 1px solid #badbd7;
  border-radius: 14px;
  background: #edfffc;
  color: #145b54;
  font-size: 0.9rem;
}

.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;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .hero .reveal,
.js .page-hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1080px) {
  .site-header__inner {
    gap: 16px;
  }

  .site-nav a {
    padding-inline: 8px;
    font-size: 0.84rem;
  }

  .login-link {
    display: none;
  }

  .hero__grid,
  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
    gap: 46px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 72px;
  }

  .site-logo img {
    width: 152px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 24px 20px 40px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1.04rem;
  }

  .nav-mobile-action {
    display: list-item;
  }

  .nav-mobile-action a {
    margin-top: 8px;
    background: var(--blue);
    color: var(--white);
    text-align: center;
  }

  .nav-mobile-action a:hover {
    background: var(--blue-dark);
    color: var(--white);
  }

  .site-header__actions {
    margin-left: auto;
  }

  .site-header__actions .button {
    display: none;
  }

  .hero__grid,
  .page-hero__grid,
  .split,
  .recognition-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .page-hero__media {
    width: min(100%, 560px);
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-grid,
  .initiative-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(n + 3) {
    margin-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .metric:nth-child(3) {
    padding-left: 0;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step::after {
    display: none;
  }

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

  .story-card:first-child {
    min-height: 430px;
    grid-column: span 2;
    grid-row: auto;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr;
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }

  .gallery-item {
    grid-column: span 6;
  }

  .gallery-item--wide {
    grid-column: span 12;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container,
  .container--narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 72px;
  }

  .section--compact {
    padding-block: 56px;
  }

  .site-header__inner {
    gap: 10px;
  }

  .site-logo img {
    width: 138px;
  }

  .language-link {
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 52px;
  }

  .display-title {
    font-size: clamp(2.55rem, 14.5vw, 4.35rem);
  }

  .hero-visual {
    padding: 12px 4px 20px 14px;
  }

  .floating-stat {
    right: -3px;
    padding: 15px 16px;
  }

  .card-grid,
  .initiative-grid,
  .service-grid,
  .steps,
  .team-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .service-card {
    padding: 24px;
  }

  .service-card {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }

  .service-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .metric {
    padding-inline: 14px;
  }

  .story-card,
  .story-card:first-child {
    min-height: 390px;
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    flex-wrap: wrap;
  }

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

  .gallery-item,
  .gallery-item--wide {
    min-height: 360px;
    grid-column: auto;
  }

  .gallery-item--tall {
    min-height: 460px;
    grid-row: auto;
  }

  .contact-grid {
    gap: 34px;
  }

  .form-shell {
    min-height: 660px;
  }

  .form-facade {
    min-height: 660px;
    padding: 34px 26px;
  }

  .form-facade__mark {
    width: 52px;
    height: 52px;
    margin-bottom: 26px;
    border-radius: 16px;
  }

  .form-facade .button-row {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .form-embed {
    min-height: 860px;
  }

  .form-shell iframe {
    height: 860px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .cta,
  .site-footer,
  .legal-nav {
    display: none;
  }

  body {
    color: #000;
  }

  .page-hero,
  .section {
    padding-block: 24px;
    background: #fff;
  }

  .legal-layout {
    display: block;
  }
}
