/* ============================================================
   STEAM Education Alliance of the Americas — Stylesheet
   ============================================================ */

/* ── Navbar always-light override ── */
#navbar {
  background: rgba(255,255,255,0.92) !important;
}
.nav-logo { color: var(--text-dark) !important; }
.nav-logo span { color: var(--red-dark) !important; }
.nav-links a:not(.btn) { color: var(--text-dark) !important; font-size: 0.82rem !important; }
.nav-links a:not(.btn):hover { color: var(--salmon) !important; }
.nav-links .btn-salmon,
.nav-links .btn-salmon:visited { color: var(--white) !important; }
.nav-links .btn-salmon:hover { color: var(--white) !important; }
.nav-links .btn-salmon.active { color: var(--salmon) !important; background: var(--white); border-color: var(--white); }
.hamburger span { background: var(--dark-navy) !important; }

/* ── Active nav link ── */
.nav-links a.active {
  color: var(--salmon) !important;
  background: rgba(255,117,31,0.10);
  border-radius: 20px;
  padding: 5px 12px !important;
  box-shadow: inset 0 1px 3px rgba(255,117,31,0.15);
}

/* ── Page banner (inner pages) ── */
.page-banner {
  padding: 120px 0 50px;
  background-color: #1A2340;
  background-image:
    radial-gradient(ellipse 70% 50% at 15% 30%, rgba(124,40,116,0.50) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(201,46,70,0.65) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 10%, rgba(221,88,88,0.30) 0%, transparent 60%),
    linear-gradient(180deg, rgba(80,15,35,0.6) 0%, transparent 65%);
  text-align: center;
}
.page-banner .section-label { color: var(--pastel-orange); display: block; text-align: center; }
.page-banner h1 { text-align: center; }
.page-banner > .container { display: flex; flex-direction: column; align-items: center; }
.page-banner h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}
.page-banner + .story-chapter { padding-top: 72px; }

/* ── Homepage teaser cards ── */
.teasers-section {
  padding: 90px 0;
  background: var(--light-bg);
}
.teasers-section .section-title { text-align: center; }
.teasers-section .section-label { text-align: center; display: block; }
.teasers-header { text-align: center; margin-bottom: 48px; }
.teasers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.teaser-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
  border-left: 4px solid var(--salmon);
  color: var(--text-dark);
}
.teaser-card:nth-child(2) { border-left-color: var(--neon-pink); }
.teaser-card:nth-child(3) { border-left-color: var(--red-dark); }
.teaser-card:nth-child(4) { border-left-color: var(--pastel-lavender); }
.teaser-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.teaser-icon { font-size: 2rem; margin-bottom: 12px; }
.teaser-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.teaser-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 18px;
}
.teaser-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--salmon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── Stats strip (homepage) ── */
.stats-strip {
  padding: 70px 0;
  background: var(--dark-navy);
  color: var(--white);
}
.stats-strip .section-title    { color: var(--white); text-align: center; margin-bottom: 16px; }
.stats-strip .section-label    { color: var(--pastel-orange); text-align: center; display: block; }
.stats-strip .section-subtitle { color: rgba(255,255,255,0.70); text-align: center; margin: 0 auto 48px; }
.stats-strip .stats-grid { margin-bottom: 0; }


@media (max-width: 768px) {
  .teasers-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
}

:root {
  --salmon:          #FF751F;
  --pastel-orange:   #F2AB7D;
  --light-bg:        #E4E0D9;
  --red-dark:        #C92E46;
  --red-mid:         #DD5858;
  --red-soft:        #D35E63;
  --neon-pink:       #7C2874;
  --pastel-lavender: #CF92FF;
  --dark-navy:       #1A2340;
  --white:           #FFFFFF;
  --text-dark:       #1A1A2E;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --transition: 0.3s ease;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--red-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 640px;
  line-height: 1.7;
}

/* fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1180px;
  z-index: 1000;
  padding: 14px 0;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition), top var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.07);
  padding: 10px 0;
  top: 0;
}
#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: var(--white);
  max-width: 200px;
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo { color: var(--dark-navy); }
.nav-logo span {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}
#navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover { color: var(--salmon); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-salmon {
  background: var(--salmon);
  color: var(--white);
  border-color: var(--salmon);
}
.btn-salmon:hover {
  background: #e86510;
  border-color: #e86510;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,117,31,0.38);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--dark-navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark-navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--salmon); }
.mobile-menu .btn-salmon { font-size: 1rem; }


/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(124,40,116,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(255,117,31,0.18) 0%, transparent 60%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 0 80px;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pastel-orange);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--salmon), var(--pastel-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* Neural orb */
.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.neural-orb {
  width: 460px;
  height: 460px;
  max-width: 100%;
}


/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 22px;
}
.about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.mv-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 22px 20px;
  border-left: 4px solid var(--salmon);
}
.mv-card h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 8px;
}
.mv-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
}
.origin-box {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px 28px 28px 32px;
  border-left: 5px solid var(--neon-pink);
  margin-top: 28px;
}
.origin-box .origin-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 10px;
}
.origin-box p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #555;
  margin: 0;
}
/* Americas map */
.map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.map-container svg {
  max-width: 360px;
  width: 100%;
  filter: drop-shadow(0 8px 32px rgba(26,35,64,0.15));
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.map-legend span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-legend span::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--salmon);
}
.map-legend span.purple::before { background: var(--pastel-lavender); }


/* ============================================================
   PILLARS
   ============================================================ */
#pillars {
  padding: 100px 0;
  background: var(--light-bg);
}
.pillars-header {
  text-align: center;
  margin-bottom: 56px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border-top: 4px solid var(--salmon);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.pillar-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 8px;
}
.pillar-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.pillar-desc {
  font-size: 0.87rem;
  line-height: 1.65;
  color: #666;
}


/* ============================================================
   PILLARS INTERACTIVE
   ============================================================ */
.pillars-interactive {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pillars-nav {
  background: var(--dark-navy);
  display: flex;
  flex-direction: row;
}
.pillar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 28px 16px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  border-right: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.55);
  width: 100%;
}
.pillar-btn:last-child { border-right: none; }
.pillar-btn:hover,
.pillar-btn.active {
  background: rgba(255,255,255,0.06);
  border-bottom-color: var(--salmon);
  color: var(--white);
}
.pillar-btn-icon { font-size: 1.3rem; flex-shrink: 0; }
.pillar-btn-text { flex: none; }
.pillar-btn-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pastel-orange);
  margin-bottom: 4px;
}
.pillar-btn-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.35;
}
.pillar-btn .fa-chevron-right { display: none; }
.pillars-content {
  background: var(--white);
  display: grid;
  order: -1;
}
.pillar-panel {
  grid-area: 1 / 1;
  padding: 36px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.pillar-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pillar-panel-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.pillar-panel-icon { font-size: 3rem; line-height: 1; }
.pillar-panel-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 6px;
}
.pillar-panel-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  line-height: 1.2;
}
.pillar-panel-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: #555;
  max-width: 680px;
}

@media (max-width: 900px) {
  .pillars-nav { overflow-x: auto; }
  .pillar-btn { min-width: 130px; padding: 22px 12px 18px; }
}
@media (max-width: 600px) {
  .pillar-btn { min-width: 110px; padding: 18px 8px 14px; }
  .pillar-btn-name { font-size: 0.68rem; }
  .pillar-panel { padding: 32px 28px 36px; }
}

/* ============================================================
   PROGRAMS
   ============================================================ */
#programs {
  padding: 100px 0;
  background: var(--white);
}
.programs-header {
  margin-bottom: 52px;
}
.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.program-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: row;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.program-card.muted { opacity: 0.75; filter: grayscale(0.3); }
.program-img {
  width: 220px;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--dark-navy) 0%, var(--neon-pink) 100%);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 18px;
}
.program-card:nth-child(2) .program-img {
  background: linear-gradient(135deg, var(--neon-pink) 0%, var(--salmon) 100%);
}
.program-card:nth-child(3) .program-img {
  background: linear-gradient(135deg, #2a3a5e 0%, #4a6080 100%);
}
.program-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.program-tag.featured {
  background: var(--salmon);
  color: var(--white);
}
.program-body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.program-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.program-sub {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}
.program-details {
  font-size: 0.83rem;
  color: #888;
  line-height: 1.7;
  padding: 12px 14px;
  background: var(--light-bg);
  border-radius: 8px;
  margin-bottom: 16px;
}
.program-details strong { color: var(--text-dark); }
.program-impact {
  margin-bottom: 20px;
}
.program-impact li {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}
.program-impact li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--salmon);
}
.program-cta {
  margin-top: auto;
  color: var(--salmon);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.program-cta:hover { gap: 10px; }


/* ============================================================
   IMPACT / STATS
   ============================================================ */
#impact {
  padding: 100px 0;
  background: var(--dark-navy);
  color: var(--white);
}
#impact .section-title { color: var(--white); }
#impact .section-subtitle { color: rgba(255,255,255,0.65); }
.impact-header {
  text-align: center;
  margin-bottom: 64px;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 80px;
}
.stat-card {
  flex: 0 0 calc(25% - 18px);
}
.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition), transform var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.stat-icon { font-size: 2rem; margin-bottom: 12px; }
.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--salmon);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* Testimonials */
.testimonials-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-section h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 36px;
  background: linear-gradient(90deg, var(--salmon), var(--red-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 44px 52px 44px 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--neon-pink);
  border-radius: var(--radius);
  text-align: left;
  position: relative;
}
.testimonial-slide::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--neon-pink);
  opacity: 0.25;
}
.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pastel-orange);
  letter-spacing: 0.04em;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 22px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--salmon);
  transform: scale(1.3);
}


/* ============================================================
   ADVISORY BOARD
   ============================================================ */
#advisory {
  padding: 100px 0;
  background: var(--light-bg);
}
.advisory-header {
  text-align: center;
  margin-bottom: 56px;
}
.advisory-header .section-subtitle { margin: 0 auto; }
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.board-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}
.board-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.board-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.board-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.board-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 12px; }
.board-info { flex: 1; }
.board-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.board-role {
  font-size: 0.78rem;
  color: var(--salmon);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2px;
}
.board-institution {
  font-size: 0.76rem;
  color: #888;
  line-height: 1.4;
}
.board-bio {
  font-size: 0.84rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 14px;
}
.board-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon-pink);
  transition: color var(--transition);
}
.board-linkedin:hover { color: var(--salmon); }


/* ============================================================
   HOMEPAGE — LIGHT HERO
   ============================================================ */
#hero-light {
  background: var(--light-bg);
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 64px;
}

.hero-deco-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-deco-bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-light-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero-light-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 0;
}
.hero-light-text .hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  color: var(--red-dark);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-light-text .hero-sub {
  font-size: 1rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-light-text .hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Hero eyebrow pill ── */
.hero-eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(255,117,31,0.10);
  border-radius: 20px;
  border: 1px solid rgba(255,117,31,0.22);
}

/* ── Hero mini stats strip ── */
.hero-mini-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(26,26,46,0.10);
}
.hero-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-mini-stat strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--red-dark);
  line-height: 1;
}
.hero-mini-stat span {
  font-size: 0.68rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 600;
}
.hero-mini-divider {
  width: 1px;
  height: 32px;
  background: rgba(26,26,46,0.12);
  flex-shrink: 0;
}

/* ── Hero visual wrapper ── */
.hero-visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.btn-pill {
  border-radius: 50px !important;
  padding: 14px 36px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700 !important;
}
.btn-outline-dark {
  background: transparent;
  color: var(--neon-pink);
  border: 2px solid var(--neon-pink);
}
.btn-outline-dark:hover {
  background: var(--neon-pink);
  color: var(--white);
  border-color: var(--neon-pink);
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
}
.hero-photo-card {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  border: 5px solid var(--white);
  aspect-ratio: 4/3;
  background: #c8c0b4;
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-family: var(--font-body);
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--neon-pink) 60%, var(--salmon) 100%);
  padding: 20px;
  text-align: center;
}
.hero-photo-placeholder span { font-size: 2.5rem; }

.hero-steam-brand {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-steam-brand img { max-height: 160px; width: auto; max-width: 100%; height: auto; }

@media (max-width: 1024px) {
  .hero-light-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-light-text { padding: 80px 0 60px; text-align: center; }
  .hero-light-text .hero-sub { margin: 0 auto 32px; }
  .hero-light-text .hero-ctas { justify-content: center; }
  .hero-mini-stats { justify-content: center; }
}

/* ── Nav logo image + text ── */
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Montserrat', var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--red-mid);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-logo-fallback {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.3;
  color: var(--text-dark);
  max-width: 180px;
}
.nav-logo-fallback span {
  display: block;
  font-size: 1.05rem;
  color: var(--red-dark);
}

/* ── Homepage "What is the Alliance?" ── */
#home-about {
  padding: 88px 0;
  background: var(--white);
}
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Americas connection visual ── */
.americas-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow);
}
.americas-region {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.americas-region-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aaa;
}
.americas-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.americas-node {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  font-weight: 500;
}
.americas-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 16px 0;
}
.americas-connector-line {
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, var(--border), var(--salmon));
}
.americas-connector-line:last-child {
  background: linear-gradient(to bottom, var(--salmon), var(--border));
}
.americas-connector-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--salmon), var(--neon-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.americas-caption {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #aaa;
  text-align: center;
  font-style: italic;
}
.home-about-text .what-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 16px;
}
.home-about-text p,
#home-about p {
  font-size: 1.02rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}
.home-about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--neon-pink);
  transition: gap var(--transition);
}
.home-about-link:hover { gap: 12px; }

/* ── Homepage Featured Programs ── */
#home-programs {
  padding: 88px 0;
  background: var(--light-bg);
}
.home-programs-header {
  text-align: center;
  margin-bottom: 48px;
}
.home-programs-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red-dark);
}
.feat-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feat-card-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.feat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feat-card-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
}
.feat-badge {
  position: absolute;
  bottom: -18px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: 3px solid var(--white);
}
.feat-card-body {
  padding: 28px 20px 22px;
}
.feat-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.feat-card-desc {
  font-size: 0.86rem;
  color: #777;
  line-height: 1.65;
  margin-bottom: 14px;
}
.feat-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--salmon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.feat-card-link:hover { gap: 10px; }

/* Featured (middle) card */
.feat-card-featured {
  border: 2px solid var(--salmon);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255,117,31,0.22);
  position: relative;
}
.feat-card-featured:hover {
  transform: translateY(-13px);
  box-shadow: 0 20px 60px rgba(255,117,31,0.30);
}
.feat-card-ribbon {
  position: absolute;
  top: 14px;
  right: -1px;
  background: var(--salmon);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 4px 0 0 4px;
  z-index: 2;
}

/* ── Stories / Gallery section ── */
#home-stories {
  padding: 88px 0;
  background: var(--white);
}
.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.stories-text h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.stories-text p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 24px;
}
.stories-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--salmon);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.stories-link:hover { gap: 12px; }
.stories-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.story-photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.story-photo:hover img { transform: scale(1.04); }
.story-photo .ph {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
}

/* ── Bottom CTA bar ── */
#home-cta-bar {
  background: linear-gradient(90deg, var(--dark-navy) 0%, var(--neon-pink) 100%);
  padding: 28px 0;
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cta-bar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.cta-bar-text {
  font-size: 0.95rem;
  white-space: nowrap;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  max-width: 460px;
}
.btn-outline-salmon {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  white-space: nowrap;
}
.btn-outline-salmon:hover {
  background: var(--white);
  color: var(--neon-pink);
}

/* ── Partners logo in footer ── */
.footer-brand > a {
  display: inline-block;
}
.footer-partners-logo {
  display: block;
  height: auto;
  max-width: 220px;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  margin-top: 16px;
  transition: opacity var(--transition);
}
.footer-partners-logo:hover { opacity: 1; }

@media (max-width: 1024px) {
  .hero-light-inner { grid-template-columns: 1fr; }
  .hero-light-photo { display: none; }
  .hero-light-text { padding: 80px 0 60px; text-align: center; }
  .hero-light-text .hero-sub { margin: 0 auto 32px; }
  .hero-light-text .hero-ctas { justify-content: center; }
  .home-about-grid { grid-template-columns: 1fr; }
  .feat-programs-grid { grid-template-columns: 1fr 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .feat-programs-grid { grid-template-columns: 1fr; }
  .stories-photos { grid-template-columns: 1fr 1fr; }
  .cta-bar-inner { flex-direction: column; text-align: center; }
  .cta-bar-left { flex-direction: column; text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark-navy);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pastel-orange);
  margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--salmon); }
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.footer-contact li .icon { flex-shrink: 0; font-size: 1rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.social-links { display: flex; gap: 14px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.social-link:hover {
  background: var(--salmon);
  color: var(--white);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .programs-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-graphic { display: none; }
  .hero-ctas { justify-content: center; }
}
@media (max-width: 768px) {
  .nav-links, .nav-links .btn { display: none; }
  .hamburger { display: flex; }
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .pillar-card { scroll-snap-align: start; min-width: 240px; }
  .programs-grid { grid-template-columns: 1fr; }
  .program-card { flex-direction: column; }
  .program-img { width: 100%; height: 140px; align-items: flex-end; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-slide { padding: 28px 24px; }
  .about-mv { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
}


/* ============================================================
   ENHANCEMENTS — Icons, Gradients, Visual Polish
   ============================================================ */

/* Gradient text on hero title key phrase — animated shimmer sweep */
.hero-light-text .hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--salmon) 0%, var(--neon-pink) 40%, var(--red-dark) 60%, var(--salmon) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroEmSweep 4s linear 1.2s infinite;
}

@keyframes heroEmSweep {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* Staggered line entrance */
@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title-line {
  display: block;
  opacity: 0;
  animation: heroLineIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.1s; }
.hero-title-line:nth-child(2) { animation-delay: 0.28s; }
.hero-title-line:nth-child(3) { animation-delay: 0.46s; }

/* Section label accent dot */
.section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ── Stat icon squares ── */
.stat-icon {
  font-size: 1.4rem;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.10);
  transition: transform 0.3s ease;
}
.stat-card:hover .stat-icon { transform: scale(1.12) rotate(-6deg); }
.stat-card:nth-child(1) .stat-icon { background: rgba(255,117,31,0.22);  color: #ff9e5e; }
.stat-card:nth-child(2) .stat-icon { background: rgba(207,146,255,0.22); color: var(--pastel-lavender); }
.stat-card:nth-child(3) .stat-icon { background: rgba(201,46,70,0.20);   color: #e07080; }
.stat-card:nth-child(4) .stat-icon { background: rgba(242,171,125,0.30); color: var(--pastel-orange); }
.stat-card:nth-child(5) .stat-icon { background: rgba(207,146,255,0.22); color: var(--pastel-lavender); }

/* ── Pillar button icon squares ── */
.pillar-btn-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: rgba(255,255,255,0.08);
  color: var(--pastel-orange);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.pillar-btn:hover .pillar-btn-icon,
.pillar-btn.active .pillar-btn-icon {
  background: var(--salmon);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,117,31,0.40);
}

/* ── Pillar panel icon gradient square ── */
.pillar-panel-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--salmon), var(--neon-pink));
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(255,117,31,0.30);
}

/* ── Partner way icon squares ── */
.partner-way .way-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.partner-way:hover .way-icon { transform: scale(1.1) rotate(-5deg); }
.partner-way:nth-child(1) .way-icon { background: rgba(255,117,31,0.14);  color: var(--salmon); }
.partner-way:nth-child(2) .way-icon { background: rgba(124,40,116,0.14);  color: var(--neon-pink); }
.partner-way:nth-child(3) .way-icon { background: rgba(201,46,70,0.14);   color: var(--red-dark); }
.partner-way:nth-child(4) .way-icon { background: rgba(26,35,64,0.12);    color: var(--dark-navy); }
.partner-way:nth-child(5) .way-icon { background: rgba(207,146,255,0.18); color: #9b5de5; }

/* ── Contact item icon circles ── */
.contact-item .c-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: rgba(255,117,31,0.10);
  color: var(--salmon);
}

/* ── Footer contact icon accent ── */
.footer-contact li .icon { color: var(--pastel-orange); }

/* ── Publication icon squares (impact page) ── */
.pub-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--white);
}
.pub-icon-salmon   { background: linear-gradient(135deg, var(--salmon), #e86510); }
.pub-icon-pink     { background: linear-gradient(135deg, var(--neon-pink), #5a1858); }
.pub-icon-red      { background: linear-gradient(135deg, var(--red-dark), #dd5858); }
.pub-icon-lavender { background: linear-gradient(135deg, var(--pastel-lavender), #9b5de5); }

/* ── Enhanced CTA btn glow ── */
.btn-salmon:hover { box-shadow: 0 8px 30px rgba(255,117,31,0.50); }

/* ── Enhanced feat-card hover ── */
.feat-card:hover { box-shadow: 0 14px 50px rgba(255,117,31,0.18); }

/* ── Hero photo placeholder icon ── */
.hero-photo-placeholder i { font-size: 2.5rem; opacity: 0.45; }


/* ============================================================
   BENTO GRID — Stats Strip
   ============================================================ */
.bento-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}
.bento-stat {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: default;
}
.bento-stat:hover { transform: scale(1.025); }
.bento-stat.bento-wide  { grid-column: span 2; }
.bento-stat.bento-feature {
  background: linear-gradient(135deg, rgba(255,117,31,0.18), rgba(124,40,116,0.18)) !important;
  border-color: rgba(255,117,31,0.25) !important;
}


/* ============================================================
   BENTO GRID — Featured Programs (Homepage)
   ============================================================ */
.bento-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


/* ============================================================
   STORYTELLING PROGRAMS — programs.html
   ============================================================ */
.story-chapter {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.story-chapter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start;
}
/* Wider text column for program detail pages */
.programs-chapter .story-chapter-inner {
  grid-template-columns: 55% 1fr;
  gap: 56px;
}
.programs-chapter .story-details-box {
  padding: 10px 20px;
  border-radius: 8px;
}
.story-chapter-inner.reverse { direction: rtl; }
.story-chapter-inner.reverse > * { direction: ltr; }

.chapter-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 16px;
}
.chapter-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.chapter-bg-num {
  display: none;
}
.story-chapter:nth-child(even) .chapter-bg-num { right: auto; left: -10px; }
.story-chapter > .container { position: relative; z-index: 1; }

.story-chapter-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.story-chapter-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 22px;
}
.story-details-box {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 0.86rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 20px;
  border-left: 3px solid var(--salmon);
}
.story-details-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.story-details-box ul li::before {
  content: "–";
  margin-right: 8px;
  opacity: 0.5;
}
.story-details-box strong { color: var(--text-dark); }
.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.story-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #555;
}
.story-highlight i {
  color: var(--salmon);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.story-visual {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.story-visual:hover img { transform: scale(1.03); }
.story-visual-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  font-size: 3rem;
  color: rgba(255,255,255,0.35);
}

/* Chapter colour themes */
.chapter-navy  { background: var(--dark-navy); }
.chapter-navy .story-chapter-title   { color: #fff; }
.chapter-navy .story-chapter-desc    { color: rgba(255,255,255,0.68); }
.chapter-navy .story-details-box     { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.62); }
.chapter-navy .story-details-box strong { color: rgba(255,255,255,0.90); }
.chapter-navy .story-highlight        { color: rgba(255,255,255,0.70); }
.chapter-navy .chapter-eyebrow        { color: var(--pastel-orange); }
.chapter-navy .chapter-eyebrow::before { background: var(--pastel-orange); }
.chapter-navy .chapter-bg-num         { color: rgba(255,255,255,0.05); }
.chapter-navy .program-cta            { color: var(--pastel-orange); }

.chapter-cream { background: var(--light-bg); }
.chapter-cream .story-details-box { background: rgba(0,0,0,0.05); color: #555; }
#program-entrepreneurial .story-chapter-title { color: var(--red-dark); }

.chapter-green { background: #0f1f14; }
.chapter-green .story-chapter-title  { color: #e8f5e9; }
.chapter-green .story-chapter-desc   { color: rgba(232,245,233,0.68); }
.chapter-green .story-details-box    { background: rgba(255,255,255,0.07); color: rgba(232,245,233,0.60); border-left-color: #5ab865; }
.chapter-green .story-details-box strong { color: rgba(232,245,233,0.90); }
.chapter-green .story-highlight       { color: rgba(232,245,233,0.70); }
.chapter-green .story-highlight i     { color: #5ab865; }
.chapter-green .chapter-eyebrow       { color: #5ab865; }
.chapter-green .chapter-eyebrow::before { background: #5ab865; }
.chapter-green .chapter-bg-num        { color: rgba(255,255,255,0.04); }
.chapter-green .program-cta           { color: #5ab865; }

/* ── About page — Origin timeline ── */
.about-timeline {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 12px 28px;
  align-self: center;
}
.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  border: 2px solid rgba(255,255,255,0.35);
  flex-shrink: 0;
  margin-top: 5px;
}
.timeline-dot.active {
  background: var(--salmon);
  border-color: var(--salmon);
  box-shadow: 0 0 14px rgba(255,117,31,0.50);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pastel-orange);
  display: block;
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 0.9rem;
  line-height: 1.62;
  color: rgba(255,255,255,0.68);
  margin: 0;
}

/* ── About page — Mission & Vision row ── */
.about-mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card-full {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--salmon);
}
.mv-card-full:nth-child(2) { border-top-color: var(--neon-pink); }
.mv-card-full h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mv-card-full:nth-child(2) h4 { color: var(--neon-pink); }
.mv-card-full p {
  font-size: 0.95rem;
  line-height: 1.82;
  color: #555;
  margin: 0;
}
@media (max-width: 768px) {
  .about-mv-row { grid-template-columns: 1fr; }
  .about-timeline { padding: 8px 20px; }
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-feat-grid { grid-template-columns: 1fr 1fr; }
  .bento-feat-grid .feat-card:first-child { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 900px) {
  .bento-stats { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .bento-stat.bento-wide { grid-column: span 1; }
  .story-chapter-inner,
  .story-chapter-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .story-visual { display: none; }
  .chapter-bg-num { display: none; }
}
@media (max-width: 600px) {
  .bento-feat-grid { grid-template-columns: 1fr; }
}
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .achievements-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STUDENT FAQ
============================================================ */
.student-faq h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-pink);
  margin-bottom: 14px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.72rem;
  color: var(--salmon);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-item[open] summary {
  color: var(--neon-pink);
}
.faq-item p {
  padding: 0 18px 14px;
  font-size: 0.86rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   MEDIA PAGE
   ============================================================ */

/* Documentary placeholder */
.media-doc-placeholder {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: border-color 0.3s;
}
.media-doc-placeholder:hover {
  border-color: rgba(255,120,80,0.4);
}
.media-doc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 40px;
}
.media-doc-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.4);
}
.media-doc-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.media-doc-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* Gallery filters */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.gallery-filter {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-filter:hover {
  border-color: var(--salmon);
  color: var(--salmon);
}
.gallery-filter.active {
  background: var(--salmon);
  border-color: var(--salmon);
  color: var(--white);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #bbb;
  font-size: 0.8rem;
  text-align: center;
  padding: 16px;
}
.gallery-placeholder i {
  font-size: 1.6rem;
  color: #ccc;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* Scroll progress bar — lives inside #navbar, clipped by its border-radius */
#scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--salmon);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 1;
  transition: transform 0.1s linear;
  pointer-events: none;
  border-radius: 0;
}

/* Button ripple */
.btn { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-expand 0.55s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-expand {
  to { transform: scale(4); opacity: 0; }
}

/* prefers-reduced-motion — disable all animations for users who request it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
  #scroll-progress { transition: none; }
}

/* ═══════════════════════════════════════════════
   PARTNER PAGE
   ═══════════════════════════════════════════════ */

.partner-page {
  padding: 80px 0 100px;
  background: var(--light-bg);
}

/* ── Proof strip ── */
.partner-proof {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 72px;
  overflow: hidden;
}
.partner-proof-item {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.partner-proof-item:last-child { border-right: none; }
.partner-proof-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.partner-proof-label {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.4;
}

/* ── Two-column layout ── */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 385px;
  gap: 52px;
  align-items: start;
}

/* ── Ways to partner grid ── */
.partner-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--red-dark);
  margin-bottom: 16px;
}
.partner-info > p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}
.partner-info .partner-ways-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red-dark);
  margin: 36px 0 20px;
}
.partner-ways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 16px;
}
.partner-way {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.partner-way:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.way-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--salmon), var(--neon-pink));
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.partner-way h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.partner-way p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ── What happens next strip ── */
.partner-next {
  margin-top: 48px;
  background: var(--dark-navy);
  border-radius: var(--radius);
  padding: 32px 28px;
  color: var(--white);
}
.partner-next h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.partner-next-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.partner-step {
  display: flex;
  align-items: center;
  gap: 14px;
}
.partner-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--salmon), var(--neon-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.partner-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
  margin: 0;
}

/* ── Contact card ── */
.contact-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  overflow: hidden;
}
.contact-card-header {
  background: linear-gradient(135deg, var(--neon-pink), var(--dark-navy));
  padding: 16px 32px;
  text-align: center;
}
.contact-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}
.contact-card-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.contact-card-body {
  padding: 28px 32px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.c-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--salmon);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 3px;
}
.contact-item a, .contact-item p {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.5;
}
.contact-item a { color: var(--salmon); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--salmon), var(--red-dark));
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
}
.contact-cta:hover { opacity: 0.92; transform: translateY(-2px); }

.contact-social {
  padding: 20px 32px;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.contact-social span {
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-social .social-link {
  background: var(--light-bg);
  color: var(--neon-pink);
}
.contact-social .social-link:hover {
  background: var(--neon-pink);
  color: var(--white);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .partner-grid { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .partner-proof { flex-wrap: wrap; }
  .partner-proof-item { flex: 1 1 45%; border-bottom: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .partner-ways { grid-template-columns: 1fr; }
  .partner-next-steps { gap: 12px; }
  .partner-proof-item { flex: 1 1 100%; }
}
}
