/* IQAC — Figma Homepage system (node 496:2) */

/* TT Hoves: place licensed files in assets/fonts/ (Regular/Medium/DemiBold). */
@font-face {
  font-family: "TT Hoves";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("TT Hoves Regular"), local("TTHoves-Regular");
}

@font-face {
  font-family: "TT Hoves";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("TT Hoves Medium"), local("TTHoves-Medium");
}

@font-face {
  font-family: "TT Hoves";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("TT Hoves DemiBold"), local("TTHoves-DemiBold");
}

:root {
  --blue: #235fd9;
  --navy: #0c3a8b;
  --muted: #e8ecf5;
  --charcoal: #2a2a2a;
  --nav-bg: #f9f8f8;
  --white: #ffffff;
  --black: #000000;
  --role-light: #cfdcf7;
  --role-muted: #898989;
  --meta-blue: #a9c5f6;
  --radius-btn: 16px;
  --radius-card: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: none;
  --font: "TT Hoves", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-demi: 600;
  --header-top: 177px;
  --header-nav: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: min(100% - 112px, 1808px);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 81px;
  padding: 1.25rem 4rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: clamp(1rem, 1.1vw, 1.625rem);
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-download img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(12, 58, 139, 0.08);
}

.header-top {
  background: var(--white);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 177px;
  padding-block: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 1;
}

.brand-seal {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-seal--light {
  filter: brightness(0) invert(1);
}

.brand-text {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.6vw, 30px);
  min-width: 0;
  flex-wrap: nowrap;
}

.brand-tagline {
  font-size: clamp(0.85rem, 1.15vw, 1.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  max-width: 309px;
  flex-shrink: 1;
}

.brand-tagline .tag-lg {
  font-size: 1.083em;
}

.brand-name {
  font-size: clamp(2rem, 3.3vw, 4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.theme-btn {
  width: 24px;
  height: 24px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.theme-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.lang-btn {
  width: 72px;
  height: 72px;
  border-radius: 100px;
  border: 0;
  color: #0c2249;
  font-weight: 600;
  font-size: 1.5rem;
  background: var(--muted);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: var(--muted);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-nav {
  background: var(--nav-bg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3.75vw, 72px);
  min-height: 92px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: clamp(0.95rem, 1.15vw, 1.5rem);
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
}

.site-nav > a::after,
.site-nav > .nav-item > a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c9cdd8;
  flex-shrink: 0;
}

.site-nav a.is-active {
  color: var(--black);
  font-weight: 500;
}

.site-nav a.is-active::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
  min-height: clamp(520px, 42vw, 810px);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 2rem;
  padding-top: clamp(2.5rem, 5vw, 6.5rem);
  padding-bottom: clamp(7rem, 10vw, 9rem);
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 15ch;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.hero-media img {
  width: min(100%, 900px);
  max-height: clamp(320px, 44vw, 760px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
}

.hero-deco,
.hero-sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-deco {
  left: -7%;
  bottom: 6.63%;
  width: 13.39%;
  height: auto;
  opacity: 0.9;
}

.hero-sparkle {
  left: 68.4%;
  top: 30.7%;
  width: 4%;
  height: auto;
  mix-blend-mode: plus-lighter;
}

.hero-partners {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 0 1.75rem;
  background: linear-gradient(180deg, transparent, rgba(12, 40, 120, 0.35));
  z-index: 2;
}

.hero-partners-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero-partners-inner::-webkit-scrollbar {
  display: none;
}

.hero-partner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
  min-width: 220px;
  color: var(--white);
}

.hero-partner--inha {
  min-width: 262px;
}

.hero-partner--inha img {
  width: 262px;
  height: 77px;
  max-width: none;
}

.hero-partner--taqu img,
.hero-partner img.is-mono {
  width: 72px;
  height: 72px;
  max-width: 72px;
}

.hero-partner img {
  width: auto;
  height: 56px;
  max-width: 120px;
  object-fit: contain;
}

.hero-partner img.is-mono {
  filter: brightness(0) invert(1);
}

.hero-partner span {
  font-size: clamp(0.85rem, 1.15vw, 1.625rem);
  font-weight: 500;
  line-height: 1.2;
  max-width: 18rem;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 5.5vw, 5.5rem) 0;
}

.section--tight {
  padding-top: 0;
}

.section-title {
  font-size: clamp(2.25rem, 3.4vw, 4rem);
  font-weight: 500;
  color: var(--black);
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.02em;
}

/* News */
.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 2vw, 2.25rem);
  align-items: stretch;
}

.news-featured-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: clamp(360px, 38vw, 729px);
  box-shadow: var(--shadow-soft);
  flex: 1;
}

.news-featured-img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.news-featured-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 36%;
  padding: clamp(1.5rem, 2.5vw, 3rem) clamp(1.5rem, 2.5vw, 3rem) 1.5rem;
  background: rgba(0, 64, 255, 0.22);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.news-featured-overlay h3 {
  font-size: clamp(1.15rem, 2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 28ch;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.9rem, 1.1vw, 1.25rem);
  color: var(--role-muted);
}

.news-meta--light {
  color: var(--white);
}

.news-meta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.carousel-dots span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d5d9e4;
}

.carousel-dots span.is-active {
  background: var(--blue);
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  height: 100%;
}

.news-side-title {
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  font-weight: 500;
  color: var(--black);
  margin: 0;
}

.news-side-card {
  display: grid;
  grid-template-columns: clamp(120px, 11vw, 198px) minmax(0, 1fr);
  gap: 1.15rem;
  align-items: stretch;
  min-height: clamp(148px, 11vw, 198px);
  border-radius: var(--radius-card);
  background: var(--muted);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-side-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.news-side-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(148px, 11vw, 198px);
  object-fit: cover;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.news-side-card--blue {
  position: relative;
  background: var(--blue);
}

.news-side-card--blue img {
  position: relative;
}

.news-side-card--blue::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(120px, 11vw, 198px);
  height: 100%;
  background: linear-gradient(180deg, rgba(35, 95, 217, 0.15), rgba(35, 95, 217, 0.55));
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.news-side-card > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem 1.25rem 1.1rem 0;
  min-width: 0;
}

.news-side-card p {
  font-size: clamp(1.05rem, 1.4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
}

.news-side-card--blue p,
.news-side-card--blue .news-meta {
  color: var(--white);
}

.news-side-card--blue .news-meta {
  color: var(--meta-blue);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.stat-card {
  border-radius: var(--radius-lg);
  min-height: clamp(200px, 15vw, 287px);
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.25rem, 2.5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 500;
  line-height: 1;
  display: block;
}

.stat-card span {
  font-size: clamp(1rem, 1.45vw, 2rem);
  opacity: 0.78;
  line-height: 1.25;
  max-width: 14ch;
  display: block;
}

.stat-card--blue {
  background: var(--blue);
  color: var(--white);
}

.stat-card--muted {
  background: var(--muted);
  color: var(--blue);
}

.stat-card--dark {
  background: var(--charcoal);
  color: var(--white);
}

.stat-card--dark span {
  font-size: clamp(0.95rem, 1.35vw, 1.625rem);
  max-width: 14ch;
}

/* Experts — Figma 496:2 (434×350 proportions, absolute) */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.expert-card {
  position: relative;
  border-radius: 16px;
  aspect-ratio: 434 / 350;
  min-height: 0;
  padding: 0;
  display: block;
  overflow: hidden;
  box-shadow: none;
}

.expert-card--dark {
  background: #2a2a2a;
  color: #fff;
}

.expert-card--blue {
  background: #235fd9;
  color: #fff;
}

.expert-card--muted {
  background: #e8ecf5;
  color: #000;
}

.expert-top {
  display: contents;
}

/*
 * Figma expert avatar — dual layer (496:52 / 68 / 108)
 * All sizes % of card so text never overlaps when cards shrink.
 * Circle right ≈ 36.4% (158/434); name left = 41.935% (182/434) → ~24px @434.
 */
.expert-avatar {
  position: absolute;
  left: 1.843%; /* 8/434 */
  top: 6.857%; /* 24/350 */
  width: 36.406%; /* 158/434 */
  height: 52.571%; /* 184/350 */
  max-width: none;
  overflow: hidden;
  contain: paint;
  z-index: 1;
  pointer-events: none;
}

.expert-avatar-circle {
  position: absolute;
  left: 5.063%; /* 8/158 */
  top: 18.478%; /* 34/184 */
  width: 89.873%; /* 142/158 */
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #235fd9;
  z-index: 0;
}

.expert-avatar-circle--light {
  background: #fff;
}

.expert-avatar-in {
  position: absolute;
  display: block;
  z-index: 1;
}

.expert-avatar-in img,
.expert-avatar-pop img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 0%;
  pointer-events: none;
}

.expert-avatar-pop {
  position: absolute;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

/* Dark — Kristofer: identical 182×182 img box in both layers (no ghost) */
.expert-avatar--dark .expert-avatar-in {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.expert-avatar--dark .expert-avatar-in img {
  position: absolute;
  left: -6.211%; /* -8.82/142 */
  top: -27.965%; /* -39.71/142 */
  width: 128.169%; /* 182/142 */
  height: 128.169%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 0%;
}

.expert-avatar--dark .expert-avatar-pop {
  left: 0;
  top: -2.717%; /* -5/184 */
  width: 100%;
  height: 52.754%; /* 97.067/184 */
}

.expert-avatar--dark .expert-avatar-pop img {
  position: absolute;
  left: -0.519%; /* -0.82/158 — same as in-layer wrap x */
  top: -0.732%; /* (-5.71+5)/97 */
  width: 115.19%; /* 182/158 */
  height: 187.5%; /* 182/97 */
  max-width: none;
  object-fit: cover;
  object-position: 50% 0%;
}

/* Blue — Iqbolxon: identical img box in both layers */
.expert-avatar--blue .expert-avatar-in {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.expert-avatar--blue .expert-avatar-in img {
  position: absolute;
  left: -11.972%; /* -17/142 */
  top: -22.535%; /* -32/142 */
  width: 122.535%; /* 174/142 */
  height: 122.535%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 0%;
}

.expert-avatar--blue .expert-avatar-pop {
  left: 0;
  top: 1.087%; /* 2/184 */
  width: 100%;
  height: 61.957%; /* 114/184 */
}

.expert-avatar--blue .expert-avatar-pop img {
  position: absolute;
  /* in wrap: left 8-17=-9, top 34-32=2; pop at (0,2) → img (-9,0) size 174 */
  left: -5.696%; /* -9/158 */
  top: 0;
  width: 110.127%; /* 174/158 */
  height: 152.632%; /* 174/114 */
  max-width: none;
  object-fit: cover;
  object-position: 50% 0%;
}

/* Muted — Xamid: same img geometry in both layers (no split-face) */
.expert-avatar--muted .expert-avatar-in {
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.expert-avatar--muted .expert-avatar-in img {
  position: absolute;
  left: 4.93%; /* 7/142 */
  top: -21.13%; /* -30/142 */
  width: 90.14%; /* 128/142 */
  height: 140.85%; /* 200/142 */
  max-width: none;
  object-fit: cover;
  object-position: 50% 6%;
}

.expert-avatar--muted .expert-avatar-pop {
  display: block;
  left: 9.494%; /* 15/158 */
  top: 0;
  width: 81.013%; /* 128/158 */
  height: 26.087%; /* 48/184 */
}

.expert-avatar--muted .expert-avatar-pop img {
  position: absolute;
  left: 0;
  top: 8.333%; /* 4/48 — match in-layer wrap y */
  width: 100%;
  height: 416.67%; /* 200/48 — same box as in-layer */
  max-width: none;
  object-fit: cover;
  object-position: 50% 6%;
}

.expert-info {
  position: absolute;
  left: 41.935%; /* 182/434 — always clear of circle at 36.4% */
  top: 0;
  width: 53%;
  height: 100%;
  padding: 0;
  margin: 0;
  z-index: 3;
  isolation: isolate;
  pointer-events: none;
}

.expert-info h3 {
  position: absolute;
  left: 0;
  top: 16%; /* 56/350 */
  width: 212px;
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.1rem, 1.77vw, 34px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.expert-card--dark .expert-info h3 {
  top: 18.286%; /* 64/350 */
  width: 258px;
  max-width: 100%;
  font-size: clamp(1.05rem, 1.67vw, 32px);
  line-height: 1;
}

.expert-info p {
  position: absolute;
  left: 0;
  top: 41.14%; /* 144/350 */
  margin: 0;
  font-size: clamp(0.8rem, 1.04vw, 20px);
  line-height: 1.1;
  max-width: 202px;
}

.expert-card--dark .expert-info p,
.expert-card--blue .expert-info p {
  color: #cfdcf7;
  max-width: 168px;
}

.expert-card--muted .expert-info p {
  color: #898989;
}

/* Oxford — horizontally centered */
.expert-uni {
  position: absolute;
  left: 50%;
  top: 67.71%;
  transform: translateX(-50%);
  width: 69.82%; /* 303/434 */
  height: 25.43%; /* 89/350 */
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.expert-uni img.expert-logo {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  margin: 0;
  filter: none;
}

.expert-card--dark .expert-uni img.expert-logo,
.expert-card--blue .expert-uni img.expert-logo {
  filter: none;
}

/* LSE group — also centered as a block (72/434 ≈ 16.6%) */
.expert-uni--lse {
  left: 16.59%;
  top: 65.43%;
  transform: none;
  width: 66.82%;
  height: 27.14%;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}

.expert-uni--lse .expert-uni-mark {
  position: absolute;
  left: 7.93%; /* 23/290 */
  top: 8.4%;
  width: 27.24%; /* 79/290 */
  height: auto;
  aspect-ratio: 1;
  border-radius: 0;
  flex-shrink: 0;
  filter: none !important;
  max-width: none;
  max-height: none;
}

.expert-uni--lse .expert-uni-name {
  position: absolute;
  left: 41.38%; /* 120/290 */
  top: 17.9%;
  width: 65.86%; /* 191/290 */
  margin: 0;
  font-size: clamp(0.55rem, 0.89vw, 17px);
  line-height: 1.25;
  font-weight: 500;
  max-width: none;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  color: #000;
}

.expert-uni--lse .lse-sm {
  font-size: 0.7em;
}

.expert-uni--lse .lse-lg {
  font-size: 1em;
}

.expert-card--dark .expert-uni--lse .expert-uni-name,
.expert-card--blue .expert-uni--lse .expert-uni-name {
  color: #fff;
}

@media (max-width: 1200px) {
  .experts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expert-card {
    aspect-ratio: auto;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .experts-grid {
    grid-template-columns: 1fr;
  }
}

/* Nizom */
.nizom-band {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 3.5rem);
  display: flex;
  justify-content: center;
}

.nizom-card {
  width: min(100%, 1075px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-soft);
}

.nizom-copy {
  max-width: 34rem;
}

.nizom-copy h2 {
  font-size: clamp(1.75rem, 2.8vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--black);
}

.nizom-copy p {
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  line-height: 1.35;
  color: var(--black);
}

/* Partners */
#hamkorlar.section {
  overflow: hidden;
}

.partners-track-wrap {
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.partners-track-wrap .partners-grid {
  grid-template-columns: repeat(6, minmax(220px, 434px));
  width: max-content;
  margin-left: -402px;
  gap: 24px;
}

.partner-card {
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  background: var(--muted);
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  box-shadow: none;
  overflow: hidden;
}

.partner-card--peek {
  opacity: 1;
}

.partner-card--blue {
  background: var(--blue);
  color: var(--white);
}

.partner-card .partner-logo {
  width: auto;
  max-width: 78%;
  height: clamp(110px, 11vw, 168px);
  object-fit: contain;
  margin: 1rem auto 0;
  flex-shrink: 0;
}

.partner-card--blue .partner-logo {
  filter: none;
  max-width: 85%;
  height: clamp(70px, 8vw, 110px);
}

.partner-card p {
  font-size: clamp(0.95rem, 1.2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.3;
  max-width: 18ch;
  margin: 0;
  color: var(--charcoal);
}

.partner-card--blue p {
  font-size: clamp(1rem, 1.35vw, 2rem);
  color: var(--white);
}

.partner-card--blue .p-lg {
  font-size: 1.094em;
}

/* CTA — Figma 511:165: box clips watermark; graduate is sibling overhang */
.cta-band {
  position: relative;
  overflow: visible;
}

.cta-box {
  position: relative;
  display: block;
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  overflow: hidden; /* clips watermark like Figma overflow-clip */
  min-height: clamp(460px, 34vw, 604px);
  box-shadow: none;
}

.cta-watermark {
  position: absolute;
  left: 59.62%;
  right: 0;
  top: -6.79%;
  bottom: -15.56%;
  width: auto;
  height: auto;
  object-fit: fill;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  border-radius: 0;
}

.cta-copy {
  padding: clamp(2.25rem, 3.5vw, 3.5rem) clamp(1.75rem, 3vw, 3rem);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  position: relative;
  z-index: 2;
  align-self: center;
}

.cta-copy h2 {
  font-size: clamp(2rem, 3.4vw, 4.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.cta-copy p {
  font-size: clamp(1rem, 1.3vw, 1.65rem);
  line-height: 1.45;
  max-width: 34ch;
  opacity: 0.95;
}

.cta-copy .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.cta-media {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46%, 830px);
  z-index: 3;
  pointer-events: none;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.cta-media img {
  width: 100%;
  height: auto;
  max-height: min(763px, 126%);
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--blue);
  color: var(--white);
  margin-top: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: 2rem;
}

.footer-left .brand {
  margin-bottom: 2rem;
}

.brand--footer .brand-name,
.brand--footer .brand-tagline {
  color: var(--white);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: clamp(2rem, 5.5vw, 5rem);
  margin-bottom: 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.footer-col a {
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  opacity: 0.95;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-social p {
  font-size: clamp(1.25rem, 1.6vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.social-row a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

.social-row img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  padding: 1.5rem clamp(1.5rem, 2vw, 3rem);
  min-height: clamp(140px, 9.5vw, 181px);
  justify-content: center;
}

.contact-card--dark {
  background: var(--charcoal);
  color: var(--white);
}

.contact-card--white {
  background: var(--white);
  color: var(--blue);
}

.contact-label {
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  font-weight: 400;
}

.contact-value {
  font-size: clamp(1.35rem, 2.4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  word-break: break-word;
}

.contact-value--sm {
  font-size: clamp(1.1rem, 1.45vw, 1.85rem);
  line-height: 1.3;
}

.contact-value--email {
  font-size: clamp(1.15rem, 2vw, 2.75rem);
  word-break: break-all;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding: 1rem 0 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: clamp(0.95rem, 1.1vw, 1.5rem);
}

/* Accordion helpers (inner pages) */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--muted);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--charcoal);
}

.accordion-trigger .step {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}

.accordion-trigger::after {
  content: "+";
  margin-left: auto;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue);
}

.accordion-item.is-open .accordion-trigger::after {
  content: "–";
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel-inner {
  overflow: hidden;
  padding: 0 1.5rem;
  opacity: 0;
  transition: opacity 0.2s ease, padding 0.25s ease;
}

.accordion-item.is-open .accordion-panel-inner {
  padding: 0 1.5rem 1.5rem;
  opacity: 1;
}

/* Inner-page layout utilities live at end of file (Figma inner pages) */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.75rem);
}

.section-head .section-title {
  margin-bottom: 0;
}

.see-all {
  color: var(--blue);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.1vw, 1.25rem);
  white-space: nowrap;
}

.see-all:hover {
  text-decoration: underline;
}

.content-card,
.card {
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .experts-grid,
  .partners-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-copy {
    max-width: 60%;
  }

  .cta-media {
    position: absolute;
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
    width: min(42%, 420px);
    height: auto;
    margin: 0;
  }

  .cta-media img {
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 0;
  }

  .cta-band {
    padding-top: 3rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .container {
    width: min(100% - 2rem, 1808px);
  }

  .header-top-inner {
    min-height: auto;
    padding-block: 1rem;
  }

  .brand-tagline {
    display: none;
  }

  .brand-seal {
    width: 56px;
    height: 56px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .header-actions .btn {
    min-height: 52px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }

  .lang-btn {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-nav {
    position: relative;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
    padding: 1rem;
    background: var(--white);
    border-bottom: 1px solid #e5e8f0;
    box-shadow: 0 16px 40px rgba(12, 58, 139, 0.12);
    max-height: calc(100vh - 120px);
    overflow: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 0.5rem;
    border-bottom: 1px solid #eef1f7;
  }

  .site-nav a::after {
    display: none !important;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 8rem;
    text-align: left;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    max-height: 280px;
  }

  .nizom-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .nizom-card .btn {
    width: 100%;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .stats-grid,
  .experts-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .news-side-card {
    grid-template-columns: 96px 1fr;
  }

  .header-actions .btn {
    display: none;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .contact-value,
  .contact-value--email {
    font-size: 1.5rem;
  }

  .hero-partner span {
    max-width: 10rem;
    font-size: 0.9rem;
  }
}

/* ========== Inner pages (Figma row y≈-14980) ========== */

.page-hero {
  padding: 2rem 0 0;
  background: transparent;
  color: var(--white);
  overflow: visible;
}

.page-hero-banner {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 36vw, 693px);
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  padding: clamp(2rem, 4vw, 5rem) clamp(1.5rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
}

/* Per-page Figma variants */
.page-hero-banner--blue {
  background: var(--blue);
}

.page-hero-banner--blue-deep {
  background: #0c3a8b;
}

.page-hero-banner--charcoal {
  background: #2a2a2a;
}

.page-hero-banner--photo {
  padding: 0;
  background: #0a2a6e;
  overflow: hidden;
}

.page-hero-banner--photo .page-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.page-hero-banner--photo .page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(35, 95, 217, 0.96) 0%,
    rgba(35, 95, 217, 0.88) 38%,
    rgba(35, 95, 217, 0.35) 62%,
    rgba(35, 95, 217, 0) 82%
  );
  pointer-events: none;
}

.page-hero-banner--photo .page-hero-copy {
  padding: clamp(2rem, 4vw, 5rem) clamp(1.5rem, 4vw, 4.5rem);
  max-width: min(52%, 40rem);
}

.page-hero-banner--with-visual {
  overflow: hidden;
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.page-hero-banner--with-visual .page-hero-copy {
  max-width: min(52%, 42rem);
  z-index: 3;
}

.page-hero-banner--charcoal.page-hero-banner--with-visual .page-hero-copy h1,
.page-hero-banner--blue.page-hero-banner--with-visual .page-hero-copy h1 {
  max-width: min(100%, 20ch);
}

.page-hero-banner--charcoal.page-hero-banner--with-visual .page-hero-copy {
  max-width: min(54%, 44rem);
}

.page-hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(48%, 820px);
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.page-hero-visual--panel {
  overflow: hidden;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.page-hero-visual--panel img {
  object-fit: cover;
  object-position: center center;
}

.page-hero-visual--cutout {
  top: 0;
  height: 100%;
  bottom: 0;
  width: min(50%, 780px);
  right: 0;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.page-hero-visual--cutout img {
  object-fit: contain;
  object-position: right bottom;
  height: 100%;
  width: auto;
  max-width: 100%;
  filter: none;
}

.page-hero-banner--with-visual.page-hero-banner--blue,
.page-hero-banner--with-visual.page-hero-banner--charcoal {
  overflow: hidden;
}

.page-hero-banner--with-visual.page-hero-banner--cutout-ok {
  overflow: hidden;
  min-height: clamp(360px, 40vw, 693px);
}

.page-hero-banner--charcoal .page-eyebrow {
  color: #aca7a7;
}

.page-hero-banner--charcoal .page-lead {
  color: rgba(255, 255, 255, 0.92);
}

/* Dark network info banner (Validatsiya Figma card) */
.info-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 4.5rem) clamp(1.5rem, 4vw, 4rem);
  min-height: clamp(260px, 28vw, 480px);
  display: flex;
  align-items: center;
}

.info-banner--dark {
  background: #2a2a2a;
  color: var(--white);
}

.info-banner--network .info-banner-copy {
  position: relative;
  z-index: 2;
  max-width: min(62%, 40rem);
}

.info-banner--network .info-banner-copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 18ch;
}

.info-banner--network .info-banner-copy p:not(.page-eyebrow) {
  margin: 1.25rem 0 0;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
}

.info-banner--network .info-banner-network {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42%, 520px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .info-banner--network .info-banner-copy {
    max-width: 100%;
  }

  .info-banner--network .info-banner-network {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: min(70%, 320px);
    margin: 1.5rem auto 0;
    display: block;
  }

  .info-banner--network {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-hero-banner--mark {
  overflow: hidden;
}

.page-hero-banner--mark .page-hero-mark {
  position: absolute;
  right: -4%;
  bottom: -28%;
  width: min(42%, 520px);
  height: auto;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  filter: brightness(0) invert(1);
}

.page-hero-banner--compact {
  min-height: clamp(220px, 24vw, 420px);
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(100%, 64rem);
}

.page-eyebrow {
  margin: 0 0 1rem;
  font-size: clamp(0.95rem, 1.1vw, 1.25rem);
  color: #aca7a7;
  font-weight: 400;
}

.page-hero h1,
.page-hero-copy h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4.2vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 18ch;
  color: var(--white);
}

.page-lead,
.page-hero .lead {
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.75rem);
  line-height: 1.4;
  color: var(--white);
  max-width: 42rem;
  opacity: 1;
}

/* About hero — Figma 496:314 (1808×693); grads overhang below */
.page-hero-banner--grads {
  display: block;
  padding: 0;
  min-height: 0;
  height: auto;
  aspect-ratio: 1808 / 693;
  overflow: visible;
  margin-bottom: 4.5%; /* room for ~65px grad overhang @693 */
}

.page-hero-banner--grads .page-hero-copy {
  position: absolute;
  left: 3.982%; /* 72/1808 */
  top: 0;
  width: 56.858%; /* 1028/1808 */
  max-width: none;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.page-hero-banner--grads .page-eyebrow {
  position: absolute;
  left: 0;
  top: 16.162%; /* 112/693 */
  margin: 0;
  font-size: clamp(0.85rem, 1.15vw, 18px);
  line-height: 1.22;
  color: #aca7a7;
  font-weight: 400;
}

.page-hero-banner--grads .page-hero-copy h1 {
  position: absolute;
  left: 0;
  top: 25.108%; /* 174/693 */
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: clamp(1.6rem, 3.75vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.page-hero-banner--grads .page-lead {
  position: absolute;
  left: 0;
  top: 68.398%; /* 474/693 */
  width: 69.26%; /* 712/1028 of copy */
  max-width: none;
  margin: 0;
  font-size: clamp(0.95rem, 1.67vw, 32px);
  line-height: 1.125;
  color: var(--white);
  opacity: 1;
}

.page-hero-grads {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.page-hero-grads .grad-f,
.page-hero-grads .grad-m {
  position: absolute;
  top: 0.144%; /* 1/693 */
  bottom: auto;
  right: auto;
  height: auto;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  opacity: 1;
}

.page-hero-grads .grad-f {
  left: 54.757%; /* 990/1808 */
  width: 27.876%; /* 504/1808 */
  height: 109.235%; /* 757/693 */
}

.page-hero-grads .grad-m {
  left: 72.069%; /* 1303/1808 */
  width: 30.476%; /* 551/1808 */
  height: 106.494%; /* 738/693 */
}

.stack-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.info-card {
  width: min(100%, 1124px);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 3.5rem) clamp(1.25rem, 2.5vw, 2.5rem);
}

.info-card h2 {
  font-size: clamp(1.25rem, 2.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.info-card p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.75rem);
  line-height: 1.45;
}

.info-card--blue {
  background: var(--blue);
  color: var(--white);
}

.info-card--soft {
  background: var(--muted);
  color: #0c2249;
}

.quote-band {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 4rem) 1.5rem;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.quote-band::before,
.quote-band::after {
  content: "";
  position: absolute;
  width: min(280px, 30vw);
  height: min(400px, 70%);
  background: url("../assets/icons/logo.svg") center / contain no-repeat;
  opacity: 0.12;
  filter: brightness(10);
  pointer-events: none;
}

.quote-band::before {
  left: -2%;
  top: 10%;
}

.quote-band::after {
  right: -2%;
  top: 10%;
  transform: scaleX(-1);
}

.quote-card {
  position: relative;
  z-index: 1;
  width: min(100%, 1124px);
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1.25rem, 3vw, 3.5rem);
  color: var(--charcoal);
}

.quote-text {
  font-size: clamp(1.05rem, 1.7vw, 2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 1.5rem;
}

.quote-attr {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.quote-attr img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.quote-attr strong {
  display: block;
  font-size: clamp(1.05rem, 1.4vw, 1.75rem);
  font-weight: 600;
}

.quote-attr span {
  display: block;
  margin-top: 0.25rem;
  font-size: clamp(0.95rem, 1.2vw, 1.5rem);
  color: var(--charcoal);
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.framework-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.framework-card {
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  min-height: 220px;
}

.framework-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.framework-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: var(--navy);
}

.framework-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--charcoal);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.program-card {
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 280px;
}

.program-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
}

.program-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  color: var(--navy);
}

.program-card p {
  margin: 0;
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.45;
}

.btn-sm {
  min-height: 52px;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  align-self: flex-start;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
}

.step-card--row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}

.step-card--row .step-num {
  margin-bottom: 0;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.step-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.principle-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-card,
.benefit-card {
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.principle-card h3,
.benefit-card h3 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-size: 1.25rem;
}

.principle-card p,
.benefit-card p {
  margin: 0;
  line-height: 1.45;
}

.section-title--sm {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.narrow {
  width: min(100% - 3.5rem, 1124px);
  margin-inline: auto;
}

.faq .accordion-item {
  background: var(--muted);
}

.rpl-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.rpl-kicker {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  opacity: 0.9;
}

.rpl-side h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.rpl-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.rpl-list li {
  font-size: 1.05rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(255, 255, 255, 0.35);
}

.rpl-how-title {
  margin-bottom: 1rem;
  width: 100%;
}

.rpl-how-title h2 {
  margin: 0;
}

.steps-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.doc-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.2s ease;
}

.doc-card:hover {
  transform: translateY(-2px);
}

.doc-card h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--navy);
}

.doc-card p {
  margin: 0;
  flex: 1;
  line-height: 1.45;
}

.doc-card span {
  color: var(--blue);
  font-weight: 600;
}

.news-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--muted);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-card-body h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  line-height: 1.3;
  color: var(--navy);
}

.news-card-body p {
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 1200px) {
  .framework-grid,
  .framework-grid--4,
  .steps-row,
  .principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-banner--grads {
    aspect-ratio: auto;
    min-height: 420px;
    height: auto;
    padding: 2rem 1.5rem 12rem;
    margin-bottom: 2rem;
  }

  .page-hero-banner--with-visual {
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    padding-bottom: 0;
    min-height: 0;
  }

  .page-hero-banner--with-visual .page-hero-copy {
    max-width: 100%;
    padding-bottom: 1.5rem;
  }

  .page-hero-visual,
  .page-hero-visual--cutout,
  .page-hero-visual--bleed-top {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 220px;
    right: auto;
    top: auto;
    bottom: auto;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
  }

  .page-hero-visual--cutout img,
  .page-hero-visual--bleed-top img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center top;
    filter: none;
  }

  .page-hero-banner--photo .page-hero-copy {
    max-width: 100%;
  }

  .page-hero-banner--cutout-ok {
    margin-bottom: 0;
  }

  .page-hero-banner--grads .page-hero-copy {
    position: relative;
    left: auto;
    width: auto;
    max-width: 36rem;
    height: auto;
  }

  .page-hero-banner--grads .page-eyebrow,
  .page-hero-banner--grads .page-hero-copy h1,
  .page-hero-banner--grads .page-lead {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
  }

  .page-hero-banner--grads .page-eyebrow {
    margin-bottom: 1rem;
  }

  .page-hero-banner--grads .page-lead {
    margin-top: 1.25rem;
  }

  .page-hero-grads {
    opacity: 0.9;
  }

  .page-hero-grads .grad-f,
  .page-hero-grads .grad-m {
    top: auto;
    bottom: 0;
    height: 70%;
    width: auto;
  }

  .page-hero-grads .grad-f {
    left: auto;
    right: 22%;
  }

  .page-hero-grads .grad-m {
    left: auto;
    right: -4%;
  }

  .rpl-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .program-grid,
  .benefits-grid,
  .doc-grid,
  .news-page-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-grads {
    display: none;
  }

  .page-hero-banner--grads {
    padding-bottom: 2rem;
  }

  .page-hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .framework-grid,
  .framework-grid--4,
  .steps-row,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .quote-attr img {
    width: 72px;
    height: 72px;
  }

  .narrow {
    width: min(100% - 2rem, 1124px);
  }
}


/* ===== Figma sync (2026-09): nav dropdowns, footer, inner heroes ===== */
.site-nav {
  overflow: visible;
  justify-content: space-between;
}

.site-nav .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav .nav-item > a {
  padding: 0.5rem 0;
}

.nav-sub {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 50;
  padding: 22px 0 26px;
  white-space: nowrap;
}

.nav-sub::before {
  content: "";
  position: absolute;
  left: -100vw;
  right: -100vw;
  top: 0;
  bottom: 0;
  background: #f1f1f1;
  z-index: -1;
}

.nav-sub-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-sub a {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  white-space: nowrap;
}

.nav-sub a:hover {
  color: var(--blue);
}

.nav-item.has-sub:hover .nav-sub,
.nav-item.has-sub:focus-within .nav-sub {
  display: block;
}

.footer-col {
  gap: 0;
}

.footer-col a {
  line-height: 1;
  margin-bottom: clamp(1rem, 2vw, 38px);
}

.footer-col a:last-child {
  margin-bottom: 0;
}

/* News featured — Figma has only date/read time, no title overlay */
.news-featured-overlay {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  min-height: 0;
  padding: 0 0 clamp(1.5rem, 3vw, 60px) clamp(1.5rem, 2.8vw, 54px);
}

.news-featured-overlay h3 {
  display: none;
}

.hero-sparkle {
  display: none;
}

.hero-partners {
  background: none;
}

/* Inner page hero — Figma 1808×693 banner right after nav */
.page-hero {
  padding-top: 0;
}

.page-hero-banner--figma {
  display: block;
  padding: clamp(2rem, 5.8vw, 112px) clamp(1.5rem, 3.75vw, 72px) clamp(2rem, 4vw, 72px);
  min-height: 0;
  aspect-ratio: 1808 / 693;
  overflow: hidden;
}

.page-hero-banner--figma.is-tight {
  padding-top: clamp(1.75rem, 4.2vw, 80px);
}

.page-hero-banner--figma .page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 57%;
}

.page-hero-banner--figma .page-eyebrow {
  margin: 0 0 clamp(0.75rem, 2.1vw, 40px);
  font-size: clamp(0.85rem, 0.95vw, 18px);
  line-height: 1.22;
  color: #aca7a7;
}

.page-hero-banner--figma.is-tight .page-eyebrow {
  margin-bottom: clamp(0.75rem, 1.9vw, 36px);
}

.page-hero-banner--blue .page-eyebrow {
  color: #a9c5f6;
}

.page-hero-banner--figma h1 {
  font-size: clamp(1.75rem, 3.75vw, 72px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: none;
}

.page-hero-banner--figma .page-lead {
  margin-top: clamp(1rem, 1.9vw, 36px);
  font-size: clamp(1rem, 1.67vw, 32px);
  line-height: 1.125;
  max-width: 900px;
}

.page-hero-banner--figma.is-tight .page-lead {
  margin-top: clamp(0.75rem, 1.05vw, 20px);
}

.page-hero-banner--figma .page-lead--p {
  font-size: clamp(0.95rem, 1.25vw, 24px);
  line-height: 1.5;
  max-width: 1000px;
  margin-top: clamp(1rem, 2.3vw, 44px);
}

.page-hero-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: none;
  z-index: 1;
  pointer-events: none;
}

.page-hero-banner--figma .page-hero-mark {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  z-index: 1;
  filter: none;
  opacity: 1;
}

.info-card--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--after-hero {
  padding-top: clamp(2rem, 3.6vw, 68px);
}

@media (max-width: 1024px) {
  .page-hero-banner--figma {
    aspect-ratio: auto;
    min-height: 0;
  }
  .page-hero-banner--figma .page-hero-copy {
    max-width: 100%;
  }
  .page-hero-img,
  .page-hero-banner--figma .page-hero-mark {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    margin-top: 1.5rem;
    border-radius: 16px;
  }
  .nav-sub {
    display: none !important;
  }
}

.page-hero-banner--figma.is-wide .page-hero-copy {
  max-width: 66%;
}

.page-hero-mark--k {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  z-index: 1;
  pointer-events: none;
}

/* Hero hands: Figma uses the source image mirrored */
.hero-media img {
  filter: none;
  transform: scaleX(-1);
}

@media (min-width: 1201px) {
  .hero-media {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: auto;
    display: block;
    z-index: 0;
  }

  .hero-media img {
    height: 100%;
    width: auto;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: left top;
  }
}

@media (max-width: 640px) {
  .cta-copy {
    max-width: 100%;
  }
  .cta-media {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 320px);
    margin: -1rem auto 0;
  }
  .cta-band {
    padding-top: 0;
  }
}

@media (max-width: 1024px) {
  .page-hero-banner--figma .page-hero-mark--k {
    display: none;
  }
}
