@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

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

:root {
  --navy: #0e1e40;
  --navy-deep: #0a1733;
  --gold: #d7a40a;
  --gold-hover: #b8890a;
  --light: #f8f9fb;
  --white: #ffffff;
  --text: #374151;
  --text-light: #6b7280;
  --section-pad: 80px 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-emblem {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
}

nav { flex: 1; }

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-list a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-list a:hover { color: var(--gold); }

.btn-support {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .1s;
  flex-shrink: 0;
}

.btn-support:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(215,164,10,.08), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(215,164,10,.15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(215,164,10,.3);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(248,249,251,.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.35);
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-social { display: flex; align-items: center; gap: 12px; }

.hero-social span {
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 16px;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--gold); color: var(--navy); }

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3/2;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  max-width: 520px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(215,164,10,.3);
}

.image-placeholder-icon {
  font-size: 40px;
  opacity: .4;
}

/* ── STATS ── */
.stats {
  background: var(--light);
  padding: var(--section-pad);
}

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

.stat-card {
  background: var(--navy);
  padding: 32px 24px;
  border-radius: 12px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(14,30,64,.12);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── ABOUT ── */
.about {
  padding: var(--section-pad);
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image .image-placeholder {
  background: var(--light);
  border-color: #d1d5db;
  color: var(--text-light);
  aspect-ratio: 1;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ── DIRECTIONS ── */
.directions {
  background: var(--navy);
  padding: var(--section-pad);
}

.directions .section-title { color: var(--white); }
.directions .section-label { color: var(--gold); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header .section-text { color: rgba(248,249,251,.75); }

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

.direction-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(215,164,10,.2);
  border-radius: 12px;
  padding: 32px;
  transition: background .2s, border-color .2s;
}

.direction-card:hover {
  background: rgba(215,164,10,.08);
  border-color: rgba(215,164,10,.4);
}

.direction-icon {
  width: 52px; height: 52px;
  background: rgba(215,164,10,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.direction-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.direction-text {
  font-size: 14px;
  color: rgba(248,249,251,.7);
  line-height: 1.65;
}

/* ── IMPACT ── */
.impact {
  background: var(--navy);
  padding: var(--section-pad);
}

.impact .section-title { color: var(--white); }
.impact .section-label { color: var(--gold); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.impact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(215,164,10,.2);
  padding: 36px 28px;
  border-radius: 12px;
  text-align: center;
  transition: background .2s, border-color .2s;
}

.impact-card:hover {
  background: rgba(215,164,10,.08);
  border-color: rgba(215,164,10,.45);
}

.impact-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.impact-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.impact-desc {
  font-size: 14px;
  color: rgba(248,249,251,.6);
  line-height: 1.5;
}

/* ── STRATEGY ── */
.strategy {
  background: var(--light);
  padding: var(--section-pad);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strategy-grid .strategy-card:nth-child(4) { grid-column: 1 / 2; }
.strategy-grid .strategy-card:nth-child(5) { grid-column: 2 / 3; }

.strategy-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(14,30,64,.08);
  border-bottom: 3px solid var(--gold);
  transition: box-shadow .2s, transform .2s;
}

.strategy-card:hover {
  box-shadow: 0 6px 28px rgba(14,30,64,.13);
  transform: translateY(-3px);
}

.strategy-icon {
  width: 52px;
  height: 52px;
  background: rgba(215,164,10,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.strategy-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.strategy-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}

.strategy-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── PUBLICATIONS ── */
.publications {
  background: var(--light);
  padding: var(--section-pad);
}

.publications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pub-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(14,30,64,.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
}

.pub-card:hover {
  box-shadow: 0 6px 28px rgba(14,30,64,.13);
  transform: translateY(-3px);
}

.pub-cover {
  height: 200px;
  border-radius: 8px;
  background: #0e1e40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.pub-cover-title {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  opacity: .85;
}

.pub-tag {
  display: inline-block;
  background: rgba(215,164,10,.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.pub-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}

.pub-subtitle {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.pub-meta {
  font-size: 12px;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px solid rgba(14,30,64,.07);
}

.pub-meta strong {
  color: var(--text);
  font-weight: 600;
}

.btn-read {
  display: inline-block;
  margin-top: 4px;
  background: transparent;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 6px;
  border: 2px solid var(--navy);
  text-decoration: none;
  align-self: flex-start;
  transition: background .2s, color .2s;
}

.btn-read:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── PARTNERS ── */
.partners {
  background: var(--white);
  padding: var(--section-pad);
}

.partners-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}

.partner-logo {
  height: 64px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  padding: 8px;
}

/* ── CTA ── */
.cta {
  background: var(--navy-deep);
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

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

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }

  .header-inner { flex-wrap: wrap; }
  nav { order: 3; flex-basis: 100%; }
  .nav-list { justify-content: flex-start; gap: 2px; }
  .nav-list a { font-size: 13px; padding: 5px 8px; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-photo { max-width: 100%; aspect-ratio: 16/9; }
  .image-placeholder { max-width: 100%; aspect-ratio: 16/9; }

  .about-inner { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ── MONITOR STATS ── */
.monitor-stats {
  background: linear-gradient(160deg, var(--navy-deep) 0%, #091529 100%);
  border-bottom: 1px solid rgba(215,164,10,.2);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.monitor-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 120% at 50% 50%, rgba(215,164,10,.05), transparent);
  pointer-events: none;
}

.monitor-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.monitor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.monitor-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
}

.monitor-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #4ade80; }
  50% { opacity: .5; box-shadow: 0 0 3px #4ade80; }
}

.monitor-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.monitor-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(215,164,10,.15);
  border-radius: 12px;
  transition: background .2s, border-color .2s;
}

.monitor-item:hover {
  background: rgba(215,164,10,.06);
  border-color: rgba(215,164,10,.3);
}

.monitor-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(215,164,10,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 4px;
}

.monitor-item-icon--danger {
  background: rgba(248,113,113,.12);
  color: #f87171;
}

.monitor-item strong {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.monitor-item span {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

.monitor-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border: 1px solid rgba(215,164,10,.3);
  border-radius: 6px;
  transition: background .2s, border-color .2s;
}
.monitor-link:hover {
  background: rgba(215,164,10,.1);
  border-color: rgba(215,164,10,.5);
}

/* ── PROJECTS ── */
.projects {
  background: var(--white);
  padding: var(--section-pad);
}

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

.project-card {
  background: var(--light);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(14,30,64,.08);
  transition: box-shadow .2s, transform .2s;
}

.project-card:hover {
  box-shadow: 0 6px 28px rgba(14,30,64,.1);
  transform: translateY(-3px);
}

.project-card--featured {
  background: var(--navy);
  border-color: rgba(215,164,10,.3);
}

.project-card--featured .project-title { color: var(--white); }
.project-card--featured .project-desc { color: rgba(248,249,251,.75); }
.project-card--featured .project-meta span { color: rgba(248,249,251,.5); }

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(215,164,10,.12);
  padding: 4px 10px;
  border-radius: 20px;
}

.project-status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.project-status--active {
  background: rgba(74,222,128,.15);
  color: #4ade80;
}

.project-status--new {
  background: rgba(96,165,250,.15);
  color: #60a5fa;
}

.project-icon {
  width: 52px;
  height: 52px;
  background: rgba(215,164,10,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.project-card--featured .project-icon {
  background: rgba(215,164,10,.2);
}

.project-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.project-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(14,30,64,.08);
}

.project-card--featured .project-meta {
  border-top-color: rgba(255,255,255,.1);
}

.project-meta span {
  font-size: 12px;
  color: var(--text-light);
}

.btn-project {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: opacity .2s;
  align-self: flex-start;
}
.btn-project:hover { opacity: .7; }

/* ── NEWSLETTER ── */
.newsletter-form { margin-top: 24px; }

.newsletter-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.newsletter-row {
  display: flex;
  gap: 0;
}

.newsletter-row input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
}

.newsletter-row input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-row input:focus { border-color: rgba(215,164,10,.5); }

.newsletter-row button {
  background: var(--gold);
  border: none;
  border-radius: 0 6px 6px 0;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s;
}
.newsletter-row button:hover { background: var(--gold-hover); }
.newsletter-row button:disabled { opacity: .6; cursor: not-allowed; }

.newsletter-msg {
  font-size: 12px;
  margin-top: 8px;
  min-height: 16px;
}

/* ── RESPONSIVE additions ── */
@media (max-width: 768px) {
  .monitor-stats { padding: 32px 0; }
  .monitor-numbers { grid-template-columns: repeat(2, 1fr); }
  .monitor-item { padding: 18px 20px; }
  .monitor-item strong { font-size: 30px; }
  .monitor-header { flex-wrap: wrap; gap: 12px; }
  .projects-grid { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .publications-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .monitor-numbers { grid-template-columns: 1fr; }
}