/* =========================================================
   Global Empact — Homepage
   Brand blue (logo): #428FDF | Site accent cyan: #0693e3
   ========================================================= */

:root {
  --blue: #428fdf;
  --blue-deep: #1a5fa8;
  --blue-dark: #0b3d6e;
  --cyan: #0693e3;
  --green: #00a87a;
  --navy: #0c2d4a;
  --ink: #152536;
  --muted: #5c6f82;
  --line: rgba(12, 45, 74, 0.1);
  --paper: #f3f7fb;
  --white: #ffffff;
  --sky: #e7f2fb;
  --header-h: 76px;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(11, 61, 110, 0.1);
  --font-display: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.35rem, 5vw, 3.85rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.65rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1rem; }

.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 3rem;
}

.section-head.light .eyebrow,
.section-head.light h2,
.section-head.light .section-lead {
  color: var(--white);
}

.section-head.light .eyebrow {
  color: #b7ddff;
}

.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan);
  font-weight: 700;
  margin-top: 0.5rem;
}

.text-link:hover { color: var(--blue-deep); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.45rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--cyan);
  color: var(--white);
}

.btn-primary:hover { background: var(--blue-deep); }

.btn-light {
  background: var(--white);
  color: var(--blue-deep);
}

.btn-light:hover { background: var(--sky); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border-color: rgba(6, 147, 227, 0.35);
}

.btn-outline:hover {
  border-color: var(--cyan);
  background: var(--sky);
}

.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
  min-height: var(--header-h);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo img {
  width: clamp(160px, 22vw, 220px);
  height: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-list > li > a {
  display: block;
  padding: 0.55rem 0.75rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-list > li > a:hover,
.nav-list > li > a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.dropdown a:hover {
  background: var(--sky);
  color: var(--cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .btn-light {
  min-height: 42px;
  padding-inline: 1.1rem;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero — AccBooks-style rounded stage + floating stats */
.hero-wrap {
  position: relative;
  padding: 1.25rem 1.25rem 0;
  margin-bottom: 4.5rem;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 720px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  border-radius: 28px;
  background: var(--blue-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 36, 64, 0.48) 0%, rgba(11, 61, 110, 0.28) 45%, rgba(12, 45, 74, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 36, 64, 0.1) 0%, rgba(8, 36, 64, 0.32) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 3.5rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(5.5rem, 10vw, 7rem);
  max-width: 640px;
  margin-left: max(calc((100% - 1160px) / 2 + 1.75rem), 2rem);
}

.hero-tagline {
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.1s forwards;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.22s forwards;
}

.hero-lead {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.34s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.46s forwards;
}

.hero .btn {
  border-radius: 999px;
  min-height: 50px;
  padding-inline: 1.6rem;
}

.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border-color: transparent;
}

.hero .btn-ghost:hover {
  background: var(--white);
}

.hero-stats {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 2.5rem));
  margin: -3.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(11, 61, 110, 0.12);
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.4rem;
}

.stat-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 147, 227, 0.12);
  color: var(--cyan);
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.stat-value {
  margin: 0;
  line-height: 1;
}

.stat-num,
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About — AccBooks-style copy + image montage */
.about {
  background: var(--white);
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  margin-bottom: 1.15rem;
  color: #000000;
}

.about-copy h2 span {
  color: #000000;
}

.about-copy > p {
  color: var(--muted);
  max-width: 520px;
}

.about-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.5rem 0 1.35rem;
  max-width: 420px;
}

.about-founder {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(6, 147, 227, 0.35);
  background: var(--sky);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-founder strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1rem;
}

.about-founder span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.about-copy .btn {
  border-radius: 999px;
  padding-inline: 1.5rem;
}

.about-montage {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 460px;
}

.montage-top,
.montage-tall,
.montage-quote {
  border-radius: 18px;
  overflow: hidden;
}

.montage-top {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.montage-quote {
  grid-column: 1;
  grid-row: 2;
  background: linear-gradient(160deg, var(--blue-dark), var(--cyan));
  color: var(--white);
  padding: 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.montage-tall {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
}

.montage-top img,
.montage-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  min-height: 180px;
}

.quote-rating {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
}

.quote-rating span {
  color: #ffd76a;
  letter-spacing: 0.08em;
  margin-right: 0.35rem;
}

.montage-quote blockquote {
  margin: 0;
}

.montage-quote blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--white);
}

/* Programs */
.programs {
  background: linear-gradient(165deg, #071929 0%, #0b3d6e 55%, #0a4f8c 100%);
  color: var(--white);
}

.programs .section-head .eyebrow {
  color: #8ec8ff;
}

.programs .section-head h2,
.programs .program-item h3 {
  color: var(--white);
}

.programs .section-lead,
.programs .program-item p {
  color: rgba(255, 255, 255, 0.78);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.program-item {
  padding: 1.6rem 1.4rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.25s ease, transform 0.25s var(--ease);
}

.program-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.program-icon {
  width: 44px;
  height: 44px;
  color: #8ec8ff;
  margin-bottom: 1rem;
}

.program-icon svg {
  width: 100%;
  height: 100%;
}

.program-item h3 {
  margin-bottom: 0.55rem;
}

.program-item p {
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.program-item > a {
  color: #9fd0ff;
  font-weight: 700;
  font-size: 0.92rem;
}

.program-item > a:hover { color: var(--white); }

/* Impact */
.impact {
  background:
    linear-gradient(180deg, var(--sky) 0%, var(--white) 100%);
}

.impact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.impact-intro p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.impact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.impact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.2rem 1.3rem;
  background: var(--white);
  border-left: 3px solid var(--cyan);
  box-shadow: 0 8px 24px rgba(11, 61, 110, 0.05);
}

.impact-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cyan);
  line-height: 1.2;
}

.impact-item h3 {
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.impact-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Pathways */
.pathways {
  background: var(--paper);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.pathway {
  background: var(--white);
  padding: 1.7rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease, color 0.3s ease;
}

.pathway:hover {
  background: var(--sky);
  border-color: rgba(6, 147, 227, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(11, 61, 110, 0.1);
}

.pathway-featured {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(6, 147, 227, 0.35);
  transform: translateY(0);
  box-shadow: 0 10px 28px rgba(11, 61, 110, 0.06);
}

.pathway-featured:hover {
  background: var(--sky);
  border-color: rgba(6, 147, 227, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(11, 61, 110, 0.1);
  color: var(--navy);
}

.pathway-featured h3 { color: var(--navy); }
.pathway-featured p { color: var(--muted); }
.pathway-featured li { color: var(--ink); }

.pathway-featured .pathway-tag {
  background: rgba(6, 147, 227, 0.14);
  color: var(--blue-deep);
}

.pathway-tag {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 0.85rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.pathway h3 { margin-bottom: 0.6rem; }

.pathway > p {
  color: var(--muted);
  font-size: 0.95rem;
  flex-grow: 0;
}

.pathway ul {
  margin: 0.5rem 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.pathway li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}

.pathway li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.pathway-featured li::before {
  background: #7dffc8;
}

.pathway .btn {
  margin-top: auto;
  align-self: stretch;
  width: 100%;
  cursor: pointer;
}

.pathway-featured .btn-primary {
  background: var(--white);
  color: var(--blue-deep);
}

.pathway-featured .btn-primary:hover {
  background: var(--sky);
}

.pathway:hover .btn-outline {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}

/* Community */
.community {
  background: var(--white);
}

.community-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.community-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
}

.community-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(12, 45, 74, 0.35));
}

.community-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.community-copy > p {
  color: var(--muted);
}

.community-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 1.75rem;
}

.community-features li {
  padding-left: 1rem;
  border-left: 2px solid var(--green);
  color: var(--muted);
  font-size: 0.98rem;
}

.community-features strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.15rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
}

/* SDG */
.sdg {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1463ad 45%, var(--cyan) 100%);
  color: var(--white);
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.sdg-item {
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s var(--ease);
}

.sdg-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.sdg-item span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #b8e4ff;
  margin-bottom: 0.35rem;
  line-height: 1.1;
}

.sdg-item h3 {
  color: var(--white);
  font-size: 0.92rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

/* Summit */
.summit {
  padding-top: 0;
  margin-top: -2rem;
}

.summit-banner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(12, 45, 74, 0.88), rgba(6, 147, 227, 0.82)),
    url("https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=1600&q=80")
      center/cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.summit-copy .eyebrow { color: #b7ddff; }
.summit-copy h2 { color: var(--white); }
.summit-copy p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: 1.4rem;
}

.summit-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summit-points li {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  background: var(--paper);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.testimonial-main {
  min-width: 0;
}

.testimonial {
  display: none;
  margin: 0;
}

.testimonial.is-active {
  display: block;
  animation: fadeSoft 0.55s var(--ease);
}

@keyframes fadeSoft {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial blockquote {
  margin: 0 0 1.5rem;
}

.testimonial blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.45;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
}

.testimonial figcaption strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
}

.testimonial figcaption span {
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  background: var(--sky);
}

.testimonial-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.testimonial-image.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.testimonial-image.is-exit {
  opacity: 0;
  transform: translateX(-40px);
  z-index: 2;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.slider-btn:hover {
  background: var(--sky);
  border-color: var(--cyan);
}

.slider-dots {
  display: flex;
  gap: 0.45rem;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(6, 147, 227, 0.3);
  cursor: pointer;
  padding: 0;
}

.slider-dots button.is-active {
  background: var(--cyan);
  width: 22px;
  border-radius: 999px;
}

/* Insights */
.insights {
  background: var(--white);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.insight {
  padding: 1.5rem 0;
  border-top: 2px solid var(--cyan);
}

.insight time {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.insight h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.insight p {
  color: var(--muted);
  font-size: 0.96rem;
}

.insight a {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.92rem;
}

.insight a:hover { color: var(--blue-deep); }

/* Join / Lead form */
.join {
  background:
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(0, 168, 122, 0.1), transparent 55%),
    var(--paper);
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.join-copy p {
  color: var(--muted);
}

.join-bullets {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.join-bullets li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 600;
  color: var(--navy);
}

.join-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--green);
  border-radius: 2px;
}

.email-box {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.email-box:hover {
  border-color: rgba(6, 147, 227, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 61, 110, 0.08);
}

.email-box-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 147, 227, 0.12);
  color: var(--cyan);
}

.email-box strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.email-box em {
  font-style: normal;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.95rem;
}

.section-cta {
  margin-top: 2rem;
}

.lead-form {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.optional {
  font-weight: 500;
  color: var(--muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1.5px solid rgba(12, 45, 74, 0.14);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 147, 227, 0.15);
}

.form-row input.is-invalid,
.form-row select.is-invalid {
  border-color: #d64545;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 1.3em;
}

.form-note.is-success { color: var(--green); }
.form-note.is-error { color: #d64545; }

/* Lead modal popup */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 36, 64, 0.62);
  backdrop-filter: blur(3px);
}

.lead-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(96vh, 900px);
  overflow: auto;
  background: var(--white);
  border-radius: 18px;
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 24px 60px rgba(8, 36, 64, 0.28);
  animation: fadeSoft 0.35s var(--ease);
}

.lead-modal-form .form-row {
  margin-bottom: 0.85rem;
}

.lead-modal-form textarea {
  min-height: 72px;
}

.lead-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-close:hover {
  background: var(--sky);
  color: var(--cyan);
}

.lead-modal-head {
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}

.lead-modal-head h2 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.lead-modal-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.lead-modal-form .form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.req {
  color: #d64545;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .lead-modal-form .form-row-split {
    grid-template-columns: 1fr;
  }
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.cta-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  filter: saturate(1.05);
}

.cta-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(66, 143, 223, 0.55) 0%,
    rgba(26, 95, 168, 0.65) 55%,
    rgba(12, 45, 74, 0.88) 100%
  );
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 0.65rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.cta-inner .hero-cta {
  justify-content: center;
  opacity: 1;
  animation: none;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 320px;
  font-size: 0.95rem;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer a {
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #b8e4ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem 0;
  font-size: 0.88rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p { margin: 0; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Letter animation removed — headings use section reveal fade only */

/* Inner pages */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 6.5rem) 0 clamp(3.5rem, 6vw, 4.5rem);
  color: var(--white);
  background: var(--blue-dark);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/images/about-team.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(7, 25, 41, 0.88) 0%, rgba(11, 61, 110, 0.78) 45%, rgba(6, 147, 227, 0.55) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.85rem;
  line-height: 1.2;
  max-width: 780px;
  margin-bottom: 0.85rem;
}

@media (max-width: 640px) {
  .page-hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
  }
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0;
  font-size: 1.08rem;
}

.page-hero .eyebrow {
  color: #b7ddff;
}

/* About page — Who We Are */
.about-who {
  background: var(--white);
}

.who-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.who-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  background: var(--sky);
  box-shadow: 0 16px 40px rgba(11, 61, 110, 0.1);
}

.who-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  min-height: 420px;
}

.who-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0.25rem;
}

.who-copy p {
  color: var(--muted);
  margin-bottom: 0.95rem;
}

.who-stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.5rem 0 1.35rem;
  padding: 0.95rem 1.1rem;
  background: var(--paper);
  border-left: 3px solid var(--cyan);
  border-radius: 0 12px 12px 0;
}

.who-stat strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--navy);
  line-height: 1;
}

.who-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* About page — What We Do */
.about-what {
  background: var(--paper);
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.core-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.45rem 1.25rem;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
}

.core-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 147, 227, 0.35);
  box-shadow: 0 12px 28px rgba(11, 61, 110, 0.08);
}

.core-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.65rem;
}

.core-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}

.core-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* About page — Intellectual Community */
.about-community {
  background: var(--white);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.offer-card {
  padding: 1.4rem 1.3rem;
  background: var(--paper);
  border-radius: 14px;
  border-top: 3px solid var(--cyan);
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
  background: var(--sky);
}

.offer-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a {
  color: #d6ebff;
}

.breadcrumb a:hover {
  color: var(--white);
}

.content-block {
  max-width: 760px;
}

.content-block p {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.feature-list li {
  padding: 1.1rem 1.2rem;
  background: var(--paper);
  border-left: 3px solid var(--cyan);
}

.feature-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.feature-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 61, 110, 0.12);
  border-color: rgba(6, 147, 227, 0.3);
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sky);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card time {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.blog-card a {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 0.75rem;
}

.blog-card a:hover {
  color: var(--blue-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
}

.contact-card {
  padding: 1.25rem 1.3rem;
  background: var(--paper);
  border-radius: 14px;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  margin: 0;
}

.contact-card a:hover {
  color: var(--cyan);
}

.program-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.program-overview-card {
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.program-overview-card:hover {
  background: var(--white);
  border-color: rgba(6, 147, 227, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 61, 110, 0.12);
}

.program-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sky);
}

.program-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 45, 74, 0.28));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-overview-card:hover .program-card-media::after {
  opacity: 1;
}

.program-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s var(--ease);
}

.program-overview-card:hover .program-card-media img {
  transform: scale(1.06);
}

.program-card-body {
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-overview-card h3 {
  margin-bottom: 0.5rem;
}

.program-overview-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.program-card-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.92rem;
}

.program-card-link:hover {
  color: var(--blue-deep);
}

/* Audience section */
.audience-section {
  background: var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem 1.35rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 147, 227, 0.35);
  box-shadow: 0 14px 32px rgba(11, 61, 110, 0.1);
}

.audience-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 147, 227, 0.12);
  color: var(--cyan);
  margin-bottom: 1rem;
}

.audience-icon svg {
  width: 30px;
  height: 30px;
}

.audience-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-band .btn {
  cursor: pointer;
  font: inherit;
}

.summit-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.summit-highlights article {
  padding: 1.25rem;
  background: var(--paper);
  border-radius: 12px;
}

.summit-highlights h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.summit-highlights p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .program-grid,
  .pathway-grid,
  .insight-grid,
  .sdg-grid,
  .blog-grid,
  .program-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pathway-featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-montage {
    min-height: 400px;
  }

  .testimonial-layout,
  .contact-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr 1fr;
  }

  .who-copy {
    grid-column: 1 / -1;
    order: -1;
  }

  .core-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-media {
    min-height: 320px;
    order: -1;
  }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--blue-deep);
    padding: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s var(--ease), opacity 0.25s ease, visibility 0.25s;
  }

  .nav.is-open {
    max-height: min(80vh, 520px);
    overflow: auto;
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.12);
    margin: 0.25rem 0 0.5rem;
    display: none;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .dropdown a { color: var(--white); }

  .dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .header-actions .btn-light {
    display: none;
  }

  .about-grid,
  .impact-grid,
  .community-grid,
  .join-grid,
  .summit-banner {
    grid-template-columns: 1fr;
  }

  .hero-wrap {
    padding: 0.85rem 0.85rem 0;
    margin-bottom: 3.5rem;
  }

  .hero {
    border-radius: 20px;
    min-height: 560px;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
    width: min(100%, calc(100% - 2.5rem));
    max-width: none;
    padding-bottom: 5rem;
  }

  .hero-stats {
    margin-top: -2.5rem;
  }

  .about-montage {
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .program-grid,
  .pathway-grid,
  .insight-grid,
  .footer-grid,
  .hero-stats,
  .blog-grid,
  .program-overview-grid,
  .summit-highlights,
  .core-grid,
  .offer-grid,
  .who-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .sdg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .sdg-item {
    padding: 1rem 0.75rem;
    min-height: 100%;
  }

  .sdg-item h3 {
    font-size: 0.85rem;
  }

  .about-montage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .montage-top,
  .montage-quote,
  .montage-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .montage-top img,
  .montage-tall img {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .montage-tall img {
    aspect-ratio: 4 / 5;
  }

  .community-visual,
  .community-visual img {
    min-height: 280px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .lead-modal-dialog {
    padding: 1.35rem 1.15rem 1.25rem;
  }
}

/* =========================================================
   Virtual Mentorship Program — detail layout
   ========================================================= */
.program-detail {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--paper);
}

.program-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.program-detail-main {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: 0 8px 24px rgba(11, 61, 110, 0.04);
}

.detail-card h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-bottom: 0.85rem;
}

.detail-card p {
  color: var(--muted);
}

.detail-list {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  font-weight: 500;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--cyan);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.area-chips span {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(6, 147, 227, 0.18);
}

.apply-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.85rem 0 1rem;
}

.apply-item {
  padding: 0.95rem 1rem;
  background: var(--paper);
  border-radius: 12px;
  border-left: 3px solid var(--cyan);
  font-weight: 700;
  color: var(--navy);
}

.apply-note {
  margin: 0;
  color: var(--muted);
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.workshop-item {
  padding: 1.1rem 1.15rem;
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
}

.workshop-item:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 147, 227, 0.3);
  box-shadow: 0 10px 24px rgba(11, 61, 110, 0.08);
}

.workshop-item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.workshop-item p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.sticky-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.join-panel {
  background: var(--white);
  border: 1px solid rgba(6, 147, 227, 0.22);
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.25rem;
  box-shadow: 0 18px 40px rgba(11, 61, 110, 0.12);
}

.join-panel-head .eyebrow {
  margin-bottom: 0.45rem;
}

.join-panel-head h2 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.join-panel-head p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.join-form .form-row {
  margin-bottom: 0.85rem;
}

.join-form .form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.join-form input[type="file"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1.5px dashed rgba(12, 45, 74, 0.2);
  border-radius: 10px;
  background: var(--paper);
  font: inherit;
}

.contact-box {
  background: linear-gradient(160deg, var(--blue-dark), var(--cyan));
  color: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.2rem;
  box-shadow: 0 14px 32px rgba(11, 61, 110, 0.16);
}

.contact-box h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.contact-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.94rem;
}

.contact-box a,
.contact-box span {
  color: rgba(255, 255, 255, 0.95);
}

.contact-box a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.mobile-join-cta {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  text-align: center;
  min-height: 50px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(6, 147, 227, 0.35);
}

.mobile-join-cta:hover {
  background: var(--blue-deep);
  color: var(--white);
}

@media (max-width: 1024px) {
  .program-detail-layout {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
  }

  .workshop-grid,
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .mobile-join-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body {
    padding-bottom: 5rem;
  }
}

@media (max-width: 640px) {
  .join-form .form-row-split {
    grid-template-columns: 1fr;
  }

  .area-chips span {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   Summit page — event detail layout (Global Empact theme)
   ========================================================= */
.summit-hero {
  position: relative;
  isolation: isolate;
  min-height: min(88svh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--blue-dark);
  color: var(--white);
}

.summit-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.summit-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 6s var(--ease);
  pointer-events: none;
}

.summit-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.summit-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(7, 25, 41, 0.88) 0%, rgba(11, 61, 110, 0.72) 48%, rgba(6, 147, 227, 0.38) 100%);
}

.summit-hero__dots {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.summit-hero__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.summit-hero__dots button.is-active {
  background: var(--white);
  transform: scale(1.2);
}

.summit-hero__inner {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 4rem) 0 3.5rem;
}

.summit-hero .eyebrow.light,
.summit-hero .eyebrow {
  color: #b7ddff;
}

.summit-hero h1 {
  color: var(--white);
  max-width: 30ch;
  margin-bottom: 1rem;
}

.summit-hero__lead {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  margin-bottom: 1.75rem;
}

.summit-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.summit-hero__meta li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.summit-hero__meta strong {
  display: block;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.summit-detail {
  padding-top: 4rem;
}

.summit-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.summit-detail__main {
  display: grid;
  gap: 3rem;
}

.summit-detail__main h2 {
  margin-bottom: 0.85rem;
}

.summit-checklist {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.summit-checklist li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}

.summit-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--cyan);
}

.summit-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.summit-benefit {
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.summit-benefit__num {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cyan);
  margin-bottom: 0.55rem;
}

.summit-benefit h3 {
  margin-bottom: 0.35rem;
}

.summit-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.summit-split-section {
  background: var(--paper);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.summit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  align-items: start;
}

.summit-split__col h2 {
  margin-bottom: 0.85rem;
}

.summit-split__col .summit-agenda {
  margin-top: 1rem;
}

.summit-agenda {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.summit-agenda li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: agenda;
  font-weight: 600;
  color: var(--navy);
}

.summit-agenda {
  counter-reset: agenda;
}

.summit-agenda li::before {
  content: counter(agenda, decimal-leading-zero);
  flex-shrink: 0;
  width: 2rem;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 700;
}

.summit-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.summit-audience span {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(6, 147, 227, 0.18);
}

.summit-book {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.6rem 1.45rem 1.5rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.summit-book h2 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.summit-book__note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.summit-book__contact {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue-deep);
}

.summit-book__contact a:hover {
  color: var(--cyan);
}

.summit-experience {
  background: var(--navy);
  color: var(--white);
}

.summit-experience .section-head {
  margin-bottom: 2rem;
}

.summit-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.summit-exp-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.summit-exp-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.summit-exp-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.summit-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.summit-sponsor {
  padding: 1.6rem 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.summit-sponsor.featured {
  background: var(--navy);
  border-color: transparent;
  color: var(--white);
}

.summit-sponsor.featured h3,
.summit-sponsor.featured .summit-sponsor__tier {
  color: var(--white);
}

.summit-sponsor.featured ul li {
  color: rgba(255, 255, 255, 0.78);
}

.summit-sponsor__tier {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.summit-sponsor h3 {
  margin-bottom: 1rem;
}

.summit-sponsor ul {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1.35rem;
}

.summit-sponsor ul li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.summit-sponsor .btn {
  display: inline-flex;
}

.summit-sponsor.featured .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.summit-sponsor.featured .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.summit-members {
  background: var(--paper);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.summit-members__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.summit-members__row h2 {
  margin-bottom: 0.5rem;
}

.summit-members__row p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .summit-detail__layout {
    grid-template-columns: 1fr;
  }

  .summit-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .summit-book {
    position: static;
  }

  .summit-exp-grid,
  .summit-sponsor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .summit-hero {
    min-height: auto;
  }

  .summit-hero__inner {
    padding-top: calc(var(--header-h) + 2.75rem);
    padding-bottom: 2.5rem;
  }

  .summit-benefit-grid {
    grid-template-columns: 1fr;
  }

  .summit-hero__meta {
    gap: 1.15rem 1.5rem;
  }
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(11, 61, 110, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  background: #1ebe57;
  box-shadow: 0 14px 32px rgba(11, 61, 110, 0.34);
  color: #fff;
  outline: none;
}

.whatsapp-float svg {
  display: block;
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 3.15rem;
    height: 3.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    transform: none;
  }
}
