/* ─── Navigation ────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-ysr {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-health {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin-left: auto;
  /* single-line: scroll sideways instead of wrapping */
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE */
}

.nav-links::-webkit-scrollbar {
  display: none;
}

/* Chrome/Safari */
.nav-link {
  display: block;
  padding: 0.4rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-body);
  white-space: nowrap;
  position: relative;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--teal);
}

.nav-link.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
  margin-left: auto;
}

.hamburger-btn:hover {
  color: var(--teal);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 99;
}

.mobile-nav-links {
  list-style: none;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--teal);
  padding-left: 0.5rem;
}

/* ─── Hero Section ──────────────────────────────────────────── */
.hero {
  padding: 3.5rem 0 0;
  /* subtle warm cream gradient — matches mockup look */
  background: radial-gradient(ellipse 80% 60% at 70% -10%,
      #e8f5f3 0%,
      #f0faf9 30%,
      #ffffff 70%);
  overflow: visible;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  min-height: 580px;
  overflow: visible;
}

/* Left: Text */
.hero-left {
  padding-top: 1rem;
}

.hero-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title .accent {
  color: var(--teal);
}

.hero-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 1.75rem;
}

.hero-signature {
  margin-bottom: 2rem;
}

.signature-script {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.signature-roles {
  display: flex;
  flex-direction: column;
  /* vertical stack — like mockup */
  gap: 0.15rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Right: Photo — flat, no card, extends to right edge */
.hero-right {
  position: relative;
  align-self: center;
  padding-right: 0;
}

/* Photo is now a bare img, no wrapper card */
.hero-photo {
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.founder-badge {
  position: absolute;
  /* overlap bottom-right of the photo */
  bottom: -0.5rem;
  right: -1rem;
  background: var(--navy-card);
  border: 1px solid rgba(0, 137, 123, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem 1.1rem;
  max-width: 230px;
  box-shadow: 0 12px 36px rgba(11, 30, 45, 0.45);
  z-index: 2;
}

.founder-badge-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

.founder-badge-name {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.founder-badge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.founder-badge-list li {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.founder-badge-list li::before {
  content: "•";
  color: var(--teal);
  font-weight: 900;
}

/* ─── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-white);
  padding: 2rem 0;
}

.stats-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--teal);
  flex-shrink: 0;
  width: 40px;
  display: flex;
  align-items: center;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 3px;
  line-height: 1.3;
}

/* ─── Focus Areas ───────────────────────────────────────────── */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.focus-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.focus-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.focus-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.focus-card:hover .focus-icon {
  background: var(--teal);
  color: #fff;
}

.focus-name {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.focus-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Digital Innovations — horizontal card layout ─────────── */
.innovations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 kolom sejajar sesuai mockup */
  gap: 1.25rem;
}

.innovation-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.innovation-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.inno-body {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.25rem;
  flex-grow: 1;
}

.inno-left {
  flex: 1 1 55%;
  /* teks ambil ~55% lebar card */
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}

.inno-right {
  flex: 1 1 45%;
  /* phone mockup ~45% lebar card */
  display: flex;
  align-items: flex-end;
  /* phone nempel bawah card, sesuai gambar */
  justify-content: center;
}

.inno-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.innovation-card:hover .inno-right img {
  transform: scale(1.03);
}

.inno-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.inno-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

/* Specific app icon colors based on card position */
.innovation-card:nth-of-type(1) .inno-icon {
  background: rgba(45, 158, 99, 0.1);
  color: #2d9e63;
}

.innovation-card:nth-of-type(2) .inno-icon {
  background: rgba(26, 108, 168, 0.1);
  color: #1a6ca8;
}

.innovation-card:nth-of-type(3) .inno-icon {
  background: rgba(0, 137, 123, 0.15);
  color: #00897b;
}

.inno-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.inno-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}

.inno-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex-grow: 1;
}

.inno-mockup {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-section);
  height: 200px;
}

.inno-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.innovation-card:hover .inno-mockup img {
  transform: scale(1.04);
}

.inno-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-light);
  padding-top: 1.15rem;
  margin-top: auto;
}

/* ─── Digital Health Page (Vertical Layout) ──────────────────── */
.digital-health-card {
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
}

.innovation-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.innovation-logo-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.digital-health-card:nth-of-type(1) .innovation-logo-wrapper {
  background: rgba(45, 158, 99, 0.1);
  color: #2d9e63;
}

.digital-health-card:nth-of-type(2) .innovation-logo-wrapper {
  background: rgba(26, 108, 168, 0.1);
  color: #1a6ca8;
}

.digital-health-card:nth-of-type(3) .innovation-logo-wrapper {
  background: rgba(0, 137, 123, 0.15);
  color: #00897b;
}

.innovation-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.innovation-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.innovation-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
}

.innovation-mockup {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-section);
  width: 100%;
}

.innovation-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.digital-health-card:hover .innovation-mockup img {
  transform: scale(1.04);
}

.innovation-actions {
  display: flex;
  margin-top: auto;
}

.badge-coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  font-weight: 600;
  background: var(--bg-off);
  color: var(--text-muted);
  border: 1px solid var(--border);
  text-align: center;
}

.btn-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.btn-sm-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-body);
}

.btn-sm-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-sm-primary {
  background: var(--teal);
  color: #fff;
}

.btn-sm-primary:hover {
  background: var(--teal-hover);
}

/* ─── Publications & News Split ─────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
}

.split-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.875rem;
  margin-bottom: 1.5rem;
}

.split-heading {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
}

.link-view-all {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.link-view-all:hover {
  color: var(--teal-hover);
}

/* Publication rows on Home */
.pub-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pub-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  transition: var(--transition);
}

.pub-row:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.pub-badge {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pub-body {
  flex: 1;
  min-width: 0;
}

.pub-title-text {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pub-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.pub-cite {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.pub-cite-scopus {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pub-cite-num {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.pub-cite-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: block;
}

/* News list on Home */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.news-row {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.news-thumb {
  width: 88px;
  height: 66px;
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-title-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.news-title-link:hover {
  color: var(--teal);
}

.news-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ─── Partners Slider ───────────────────────────────────────── */
.partners-section {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  background: var(--bg-white);
}

.partners-eyebrow {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 2rem;
}

.partners-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.partners-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 0.875rem;
}

.partners-arrow-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.partners-logos {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0;
}

.partners-logos::-webkit-scrollbar {
  display: none;
}

/* Partner Logo Card */
.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  transition: var(--transition);
  min-width: 160px;
  height: 80px;
  flex-shrink: 0;
}

.partner-logo-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.partner-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 4rem 0 0;
  font-size: 0.83rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-logo-text {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.25rem;
}

.footer-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.footer-desc {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 0.625rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

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

.footer-link {
  color: #64748b;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: #fff;
  padding-left: 3px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  color: #64748b;
  font-size: 0.8rem;
}

.footer-contact-icon {
  color: var(--teal);
  width: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-newsletter-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin: 1.5rem 0 0.625rem;
}

.footer-newsletter-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0.875rem;
  line-height: 1.55;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.625rem 1rem;
  color: #fff;
  font-size: 0.78rem;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: #475569;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.625rem;
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--teal-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #475569;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link {
  transition: var(--transition);
}

.footer-bottom-link:hover {
  color: #fff;
}

/* ─── Mental Health Center Page ─────────────────────────────── */
.mhc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.mhc-info h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.mhc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mhc-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mhc-list-icon {
  color: var(--teal);
  font-size: 1.2rem;
  margin-top: 2px;
}

.mhc-list-title {
  color: var(--text-dark);
  display: block;
  font-weight: 700;
}

.mhc-list-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.mhc-form-card {
  margin: 0;
  width: 100%;
}

.mhc-form-card h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Responsive MHC Grid */
@media (max-width: 992px) {
  .mhc-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── Research & Focus Page ─────────────────────────────────── */
.research-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.research-card {
  text-align: left;
  align-items: flex-start;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}

.research-card .focus-icon {
  margin-bottom: 1.25rem;
}

.research-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.research-desc {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Responsive Research Grid */
@media (max-width: 768px) {
  .research-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ─── Publications Page ─────────────────────────────────────── */
.publication-card {
  display: grid;
  grid-template-columns: 60px 1fr 120px;
  gap: 1.5rem;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.publication-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pub-citations {
  text-align: center;
  background: var(--bg-off);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.pub-citations-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pub-citations-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
}

.pub-doi-link {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 500;
  transition: var(--transition);
}

.pub-doi-link:hover {
  color: var(--teal-hover);
}

@media (max-width: 600px) {
  .publication-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
    justify-items: center;
  }
}

/* ─── Books Page ────────────────────────────────────────────── */
.books-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.book-item-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.book-item-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.book-cover {
  width: 100px;
  height: 140px;
  background-color: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

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

@media (max-width: 900px) {
  .books-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .book-item-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* Global Publication/Book Typography Helpers */
.pub-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.pub-meta-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.pub-meta-text strong {
  color: var(--text-body);
}

/* ─── News List Page ────────────────────────────────────────── */
.news-item-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.news-item-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.news-item-thumb {
  width: 160px;
  height: 110px;
  background-color: var(--bg-off);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.news-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item-category {
  display: inline-block;
  font-size: 0.7rem;
  background-color: var(--teal-light);
  color: var(--teal);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.news-item-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.news-item-title a {
  color: inherit;
  transition: var(--transition);
}

.news-item-title a:hover {
  color: var(--teal);
}

.news-item-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.news-item-excerpt {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .news-item-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .news-item-thumb {
    width: 100%;
    height: 160px;
  }
}

/* ─── Contact Page ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-method-body strong {
  color: var(--text-dark);
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-method-body span, 
.contact-method-body a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-method-body a {
  transition: var(--transition);
}

.contact-method-body a:hover {
  color: var(--teal);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── Responsive (Public Sections) ───────────────────────────── */
@media (max-width: 1150px) {
  .nav-links {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-right {
    max-width: 500px;
    margin: 0 auto;
  }

  .stats-card {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item:nth-child(3) {
    border-right: none;
  }

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

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

  .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 2rem;
  }

  .hero-photo {
    height: 400px;
  }

  .founder-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: -2.5rem auto 0;
    max-width: 90%;
    z-index: 5;
    box-shadow: var(--shadow-lg);
  }

  .innovation-card {
    padding: 1.5rem;
  }

  .inno-body {
    flex-direction: column;
    gap: 1.5rem;
  }

  .inno-left {
    flex: 1;
  }

  .inno-right {
    flex: 1;
    align-items: center;
  }

  .inno-right img {
    max-height: 250px;
    width: auto;
  }
}

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

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}
