/* ==========================================================
   Skills Development Academy - style.css
   Modern Professional Website
   ========================================================== */

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0B1D3A;
  --navy-dark:  #07152A;
  --navy-mid:   #102447;
  --blue:       #1A4480;
  --accent:     #2563EB;
  --gold:       #C8922A;
  --gold-lt:    #F0BE6A;
  --white:      #FFFFFF;
  --off-white:  #F7F9FC;
  --text:       #1A2435;
  --text-muted: #566172;
  --green:      #047857;
  --green-bg:   #ECFDF5;
  --green-bd:   #A7F3D0;
  --blue-bg:    #EFF6FF;
  --blue-bd:    #BFDBFE;
  --border:     #E4EAF0;
  --r:          12px;
  --r-sm:       8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--off-white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── UTILITIES ───────────────────────────────────────────── */
.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.feature-text--light p,
p.feature-text--light {
  color: rgba(255,255,255,0.88);
  text-align: left;
  line-height: 1.8;
  margin-bottom: 16px;
}

.body-ol--light {
  color: rgba(255,255,255,0.88);
  text-align: left;
  padding-left: 22px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.body-ol--light li { margin-bottom: 8px; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 12px;
}

.eyebrow--gold { color: var(--gold-lt); }

.chip {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__inner--center .chip {
  display: block;
  text-align: center;
}

.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .eyebrow { display: block; }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.7;
}

.body-lg {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 18px;
  font-weight: 400;
}

.body-p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #ffffff !important;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 700;
}

.mt-p { margin-top: 20px; }

.conclusion-text {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #B07820; transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}

.btn--outline:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 200; }

.hdr-bar {
  background: var(--navy-dark);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 20px rgba(7,21,42,0.35);
}

.hdr-logo { display: flex; flex-direction: column; align-items: center; justify-content: center; align-self: center; gap: 2px; flex-shrink: 0; }
.hdr-logo-img { height: 36px; width: auto; display: block; }
.hdr-tagline { font-size: 0.7rem; color: rgba(255,255,255,0.6); letter-spacing: 0.01em; white-space: nowrap; }
.footer-logo-img { height: 56px; width: auto; display: block; }

/* ── HEADER CONTACT ────────────────────────────── */
.hdr-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 5px;
  flex-shrink: 0;
}
.hdr-contact__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.hdr-contact__item:hover { color: var(--gold); }
.hdr-contact__item svg { flex-shrink: 0; opacity: 0.8; }
@media (max-width: 900px) { .hdr-contact { display: none; } }
.hdr-partner-btn { font-size: 0.78rem; padding: 7px 14px; white-space: nowrap; text-decoration: none; align-self: center; margin-left: 8px; flex-shrink: 0; }
.hdr-back { flex: 1; display: flex; align-items: center; padding: 0 24px; }
.hdr-back__link { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.hdr-back__link:hover { color: var(--gold); }

.hdr-logomark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, #A06018 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200,146,42,0.35);
}

.hdr-logotype { display: flex; flex-direction: column; gap: 2px; }
.hdr-logotype strong { color: #fff; font-size: 1rem; font-weight: 700; line-height: 1.2; }
.hdr-logotype span { color: rgba(255,255,255,0.38); font-size: 0.72rem; font-weight: 400; }

.hdr-meta { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.8rem; flex-shrink: 0; }
.hdr-meta svg { flex-shrink: 0; }

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  flex: 1;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin: 0 24px;
}

.nav-scroller {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
}

.nav-scroller::-webkit-scrollbar { display: none; }

.nav-tab {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgb(255, 255, 255);
  padding: 0 18px;
  height: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

.nav-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 16px);
  height: 2px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.nav-tab:hover { color: rgba(255,255,255,0.75); }
.nav-tab.active { color: #fff; font-weight: 600; }
.nav-tab.active::after { transform: translateX(-50%) scaleX(1); }

/* ── SECTIONS (one-page) ──────────────────────────────── */
.tab-panel { display: block; }
.tab-panel { scroll-margin-top: 72px; }

@keyframes pgFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero--short { min-height: 52vh; }
.hero--tall  { min-height: auto; padding: 80px 0; align-items: flex-start; }

/* Force all text elements in hero sections to be white */
.hero p,
.hero li {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.hero ol li {
  font-weight: 700 !important;
}

.hero--program {
  flex-direction: column;
  align-items: stretch;
  min-height: auto;
}

.hero__body-block {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 80px 80px;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__body-block p {
  color: #ffffff !important;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
  margin: 0 0 14px;
  max-width: none;
}

.hero__body-block ol {
  color: #ffffff !important;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
  padding-left: 22px;
  margin: 0 0 14px;
}

.hero__body-block ol li { margin-bottom: 6px; color: #ffffff !important; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,21,42,0.92) 0%,
    rgba(16,36,71,0.82) 50%,
    rgba(26,68,128,0.6) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.hero__inner--center {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  text-align: center;
}

.hero__inner--wide { max-width: 900px; }

.hero__body {
  text-align: center;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.hero__inner--center .hero__body p,
.hero__body p {
  font-size: 1rem;
  color: #ffffff !important;
  line-height: 1.8;
  max-width: none;
  margin: 0 0 14px 0;
  text-align: center;
  font-weight: 700 !important;
}

.hero__inner--center .hero__body ol,
.hero__inner--center ol,
.hero ol {
  color: #ffffff !important;
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 0;
  margin: 0 auto 14px auto;
  text-align: left;
  list-style-position: inside;
  display: inline-block;
  font-weight: 700 !important;
}

.hero__inner--center ol li,
.hero ol li {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.hero__inner--center > ol,
.hero__inner--center > p,
.hero--short p,
.hero--short ol {
  color: #ffffff !important;
}

.hero--short ol li,
.hero--short .hero__inner--center ol li {
  color: #ffffff !important;
}

/* Ensure all text elements in hero--short are white */
.hero--short .hero__inner--center p,
.hero--short .hero__inner p,
.hero--short .body-p,
.hero--short ol,
.hero--short ol li,
.hero--short li {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.hero__body ol li {
  margin-bottom: 6px;
  padding-left: 4px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  text-align: center;
}

.hero h1 em { font-style: normal; color: var(--gold-lt); }

.hero p {
  font-size: 1.1rem;
  color: #ffffff !important;
  line-height: 1.8;
  max-width: 100%;
  margin-bottom: 36px;
  font-weight: 700 !important;
}

.hero__inner--center > p {
  text-align: center;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.hero .hero__body-block p {
  max-width: none;
  font-size: 1rem;
  color: #ffffff !important;
  line-height: 1.8;
  text-align: left;
  margin: 0 0 14px;
}

.hero .hero__body-block ol {
  max-width: none;
  color: #ffffff !important;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
  padding-left: 60px;
  margin: 0 0 14px;
}

.hero .hero__body-block ol li { margin-bottom: 6px; color: #ffffff !important; }

.hero__inner--center p { margin: 0 auto 36px; color: #ffffff !important; font-weight: 700 !important; }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero__inner--center .hero__cta { justify-content: center; }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── FEATURE SECTIONS ────────────────────────────────────── */
.feature-section { padding: 100px 60px; }
.feature-section--white { background: #fff; }
.feature-section--light { background: var(--off-white); }
.feature-section--navy  { background: var(--navy); }

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.content-section--center {
  text-align: center;
}

.content-section--center h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.feature-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-grid--reverse .feature-visual { order: -1; }

.feature-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.feature-text--light h2 { color: #fff; }

.feature-text p {
  font-size: 1rem;
  line-height: 1.82;
  color: #3D4A5C;
  margin-bottom: 16px;
}

.feature-text--light p { color: rgba(255,255,255,0.72); }
.feature-text p strong { color: var(--navy); font-weight: 600; }
.feature-text--light p strong { color: var(--gold-lt); }
.feature-text p:last-child { margin-bottom: 0; }

.photo-frame {
  border-radius: var(--r);
  overflow: hidden;
  height: 420px;
  box-shadow: 0 30px 80px rgba(10,20,50,0.18), 0 8px 24px rgba(10,20,50,0.1);
}

.photo-frame--dark {
  box-shadow: 0 30px 80px rgba(10,20,50,0.4), 0 8px 24px rgba(10,20,50,0.2);
}

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  text-align: center;
}

.stat-item strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-lt);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── SERVICES LIST (Home) ────────────────────────────────── */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.service-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 26px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
  background: #fff;
}

.service-row:nth-child(2n) { border-right: none; }
.service-row:nth-last-child(-n+2) { border-bottom: none; }
.service-row:hover { background: var(--off-white); }

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-bg);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg { width: 20px; height: 20px; color: var(--accent); display: block; }

.service-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.service-content p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── CHECK LIST ─────────────────────────────────────────── */
.check-list { list-style: none; margin: 20px 0; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: #3D4A5C;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.check-list--light li { color: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.08); }
.check-list--light li::before { background-color: var(--gold); }

/* ── SPLIT SECTION ───────────────────────────────────────── */
.split-section { background: var(--navy); padding: 90px 60px; }

.split-section__inner { max-width: 1400px; margin: 0 auto; }

.split-section__header { text-align: center; margin-bottom: 56px; }

.split-section__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.split-section__cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }

.split-col { border-radius: var(--r); padding: 40px; }
.split-col--green { background: rgba(4,120,87,0.15); border: 1px solid rgba(167,243,208,0.2); }
.split-col--blue  { background: rgba(37,99,235,0.15); border: 1px solid rgba(147,197,253,0.2); }

.split-col__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.split-col--green .split-col__icon { background: rgba(4,120,87,0.25); color: #34D399; }
.split-col--blue  .split-col__icon { background: rgba(37,99,235,0.25); color: #60A5FA; }
.split-col__icon svg { width: 24px; height: 24px; }

.split-col h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.split-col--green h3 { color: #34D399; }
.split-col--blue  h3 { color: #60A5FA; }

.resp-list { list-style: none; }

.resp-list li {
  padding: 9px 0 9px 16px;
  font-size: 0.93rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.resp-list li:last-child { border-bottom: none; }

.resp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.split-col--green .resp-list li::before { background: #34D399; }
.split-col--blue  .resp-list li::before { background: #60A5FA; }

.split-col--gold  { background: rgba(180,120,0,0.15); border: 1px solid rgba(251,191,36,0.25); }
.split-col--gold .split-col__icon { background: rgba(180,120,0,0.25); color: #FCD34D; }
.split-col--gold h3 { color: #FCD34D; }
.split-col--gold .resp-list li::before { background: #FCD34D; }

.split-col--gold .split-col__cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

.btn-pdf-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  background: #FCD34D;
  color: #1a1a2e;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  width: 100%;
}
.btn-pdf-download:hover { background: #FDE68A; transform: translateY(-1px); }
.btn-pdf-download svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-pdf-view {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  background: transparent;
  color: #FCD34D;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  border: 1px solid rgba(252,211,77,0.4);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-pdf-view:hover { background: rgba(252,211,77,0.1); border-color: #FCD34D; }
.btn-pdf-view svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── COMPLIANCE BANNER ──────────────────────────────────── */
.compliance-banner { background: linear-gradient(90deg, #7C2D12 0%, #C2410C 100%); padding: 48px 60px; }

.compliance-banner__inner { display: flex; gap: 24px; align-items: flex-start; max-width: 960px; margin: 0 auto; }

.compliance-banner__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FED7AA;
}

.compliance-banner__icon svg { width: 26px; height: 26px; }

.compliance-banner__text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FED7AA;
  margin-bottom: 10px;
}

.compliance-banner__text p { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.85); }

/* ── QUOTE BLOCK ─────────────────────────────────────────── */
.quote-block {
  display: flex;
  gap: 0;
  padding: 48px 52px;
  background: var(--navy-dark);
  border-radius: var(--r);
  overflow: hidden;
}

.quote-block__accent {
  width: 4px;
  background: var(--gold);
  border-radius: 4px;
  flex-shrink: 0;
  margin-right: 36px;
}

.quote-block__body p { font-size: 1.05rem; line-height: 1.85; color: rgba(255,255,255,0.75); font-style: italic; }

/* ── TWO VALUE ROW ───────────────────────────────────────── */
.two-value-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }

.value-box { border-radius: var(--r); padding: 32px; }
.value-box--blue  { background: var(--blue-bg);  border: 1px solid var(--blue-bd);  }
.value-box--green { background: var(--green-bg); border: 1px solid var(--green-bd); }

.value-box svg { width: 28px; height: 28px; margin-bottom: 16px; }
.value-box--blue svg  { color: var(--accent); }
.value-box--green svg { color: var(--green);  }

.value-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.value-box--blue h3  { color: var(--blue);  }
.value-box--green h3 { color: var(--green); }
.value-box p { font-size: 0.93rem; line-height: 1.7; color: #3D4A5C; }

/* ── PROFILE SECTION ─────────────────────────────────────── */
.profile-section { background: #fff; padding: 100px 60px; }

.profile-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.profile-photo { border-radius: var(--r); overflow: hidden; height: 460px; box-shadow: 0 24px 60px rgba(10,20,50,0.15); }

.profile-credentials { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
}

.cred-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.profile-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.profile-lead { font-size: 1.1rem; line-height: 1.8; color: var(--text); margin-bottom: 20px; }
.profile-content p { font-size: 0.97rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 14px; }

/* ── PARTNER TYPE GRID ───────────────────────────────────── */
.partner-type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.partner-type {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.partner-type:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,20,50,0.1);
  border-color: var(--blue-bd);
}

.partner-type__icon {
  width: 56px;
  height: 56px;
  background: var(--blue-bg);
  border-radius: var(--r-sm);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.partner-type__icon svg { width: 24px; height: 24px; }
.partner-type h3 { font-size: 0.9rem; font-weight: 600; color: var(--navy); line-height: 1.4; }

/* ── NUMBERED SERVICES ───────────────────────────────────── */
.numbered-services { max-width: 860px; margin: 0 auto; }

.ns-item {
  display: grid;
  grid-template-columns: 80px 1fr 64px;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.ns-item:last-child { border-bottom: none; }

.ns-item--alt { background: var(--off-white); padding: 36px 24px; border-radius: var(--r-sm); margin: 0 -24px; }

.ns-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--border);
  letter-spacing: -2px;
  line-height: 1;
  transition: color 0.2s;
}

.ns-item:hover .ns-number { color: var(--blue-bd); }

.ns-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.ns-body p  { font-size: 0.93rem; line-height: 1.72; color: var(--text-muted); }

.ns-visual {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}

.ns-item:hover .ns-visual { background: var(--blue-bg); color: var(--accent); border-color: var(--blue-bd); }
.ns-visual svg { width: 22px; height: 22px; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section { background: var(--navy-dark); overflow: hidden; }

.cta-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
}

.cta-section__text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-section__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.cta-section__text p { font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.65); }
.cta-section__text strong { color: var(--gold-lt); }

.cta-section__visual { height: 400px; overflow: hidden; }
.cta-section__visual img { height: 100%; object-fit: cover; }

/* ── INDUSTRY SHOWCASE ───────────────────────────────────── */
.industry-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.industry-tile {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  height: 180px;
  background-size: cover;
  background-position: center;
  cursor: default;
  transition: transform 0.3s, box-shadow 0.3s;
}

.industry-tile:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 48px rgba(10,20,50,0.2);
}

.industry-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,21,42,0.82) 0%, rgba(7,21,42,0.3) 60%, transparent 100%);
}

.industry-tile span {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.07); }

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 60px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.footer-logo-img { height: 44px; width: auto; display: block; }
.footer-meta p { color: rgba(255,255,255,0.4); font-size: 0.83rem; line-height: 1.6; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ── COMPLIANCE ROWS ─────────────────────────────── */
.compliance-rows {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cr-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 24px;
  padding: 32px 0;
  border-bottom: 1px solid #e8ecf2;
  align-items: flex-start;
}
.cr-item:first-child { border-top: 1px solid #e8ecf2; }
.cr-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.cr-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}
.cr-body p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}
.cr-note {
  padding: 28px 0 4px;
  padding-left: 80px;
}
.cr-note p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}
@media (max-width: 680px) {
  .cr-item { grid-template-columns: 44px 1fr; gap: 0 16px; }
  .cr-icon { width: 40px; height: 40px; border-radius: 10px; }
  .cr-note { padding-left: 0; }
}

/* ── ASQA PANEL ─────────────────────────────────────────── */
.asqa-panel {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,31,68,0.07);
}
.asqa-panel__left {
  background: var(--navy);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.asqa-panel__heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin: 0;
}
.asqa-panel__callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gold);
  color: #1a1200;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: auto;
}
.asqa-panel__callout svg { flex-shrink: 0; margin-top: 2px; }
.asqa-panel__right {
  background: #fff;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.asqa-panel__right p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}
@media (max-width: 900px) {
  .asqa-panel { grid-template-columns: 1fr; }
  .asqa-panel__left { padding: 40px 32px; }
  .asqa-panel__right { padding: 40px 32px; }
}

/* ── COUNTRY CARDS ───────────────────────────────────────── */
.country-cards-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.country-cards-heading {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin: 0 0 28px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--gold);
}
.country-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.country-card {
  position: relative;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
  box-shadow: 0 8px 32px rgba(10,31,68,0.18);
}
.country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10,31,68,0.28);
}
.country-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,21,42,0.85) 0%, rgba(7,21,42,0.35) 55%, rgba(7,21,42,0.1) 100%);
  transition: background 0.35s;
}
.country-card:hover .country-card__overlay {
  background: linear-gradient(to top, rgba(7,21,42,0.9) 0%, rgba(7,21,42,0.45) 55%, rgba(7,21,42,0.15) 100%);
}
.country-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}
.country-card__name {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.country-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 999px;
  letter-spacing: 0.2px;
  width: fit-content;
  margin: 0 auto;
}
.country-card__badge strong {
  color: var(--gold);
  font-weight: 700;
}
@media (max-width: 900px) {
  .country-cards { grid-template-columns: 1fr; max-width: 480px; }
  .country-card { height: 320px; }
}

/* ── COUNTRY CARD ACTIVE + CTA ───────────────────────────── */
.country-card--active {
  box-shadow: 0 0 0 4px var(--gold), 0 20px 48px rgba(10,31,68,0.28);
  transform: translateY(-6px);
}
.country-card--active .country-card__overlay {
  background: linear-gradient(to top, rgba(7,21,42,0.92) 0%, rgba(7,21,42,0.5) 55%, rgba(7,21,42,0.18) 100%);
}
.country-card__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: 0.4px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}
.country-card:hover .country-card__cta,
.country-card--active .country-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── EXPRESS INTEREST LABEL ──────────────────────────────── */
.country-card__express-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #fff;
  margin: 4px 0 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 16px;
  border-radius: 999px;
}

/* ── EXPRESS INTEREST BUTTONS ────────────────────────────── */
.btn-express-interest {
  display: inline-block;
  width: 100%;
  max-width: 220px;
  padding: 9px 16px;
  background: #C8922A;
  background: var(--gold, #C8922A);
  color: #1a1a2e;
  border: none;
  border-radius: 24px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
  position: relative;
  z-index: 2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.btn-express-interest:hover {
  background: #e0a830;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.btn-express-interest--local {
  background: #C8922A;
  background: var(--gold, #C8922A);
  color: #1a1a2e;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.btn-express-interest--local:hover {
  background: #e0a830;
  transform: translateY(-2px);
}

/* ── EOI MODAL ───────────────────────────────────────────── */
.eoi-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}
.eoi-modal[hidden] { display: none; }
.eoi-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 40, 0.72);
  cursor: pointer;
}
.eoi-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 820px;
  padding: 48px 44px 56px;
  z-index: 1;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}
.eoi-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #555;
  line-height: 1;
}
.eoi-modal__close:hover { color: #111; }
.eoi-modal__heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy, #0a1628);
  margin: 0 0 4px;
}
.eoi-modal__subheading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold, #c9922a);
  margin: 0 0 14px;
}
.eoi-modal__intro {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 28px;
  border-bottom: 1px solid #e5e7ef;
  padding-bottom: 24px;
}
.eoi-form__section {
  margin-bottom: 32px;
}
.eoi-form__section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy, #0a1628);
  margin: 0 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold, #c9922a);
}
.eoi-form__hint {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 12px;
}
.eoi-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.eoi-form__grid label,
.eoi-form__full {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  gap: 4px;
}
.eoi-form__full {
  grid-column: 1 / -1;
}
.eoi-form__grid input,
.eoi-form__grid textarea,
.eoi-form__textarea {
  padding: 8px 10px;
  border: 1px solid #d0d4e0;
  border-radius: 6px;
  font-size: 0.88rem;
  font-family: inherit;
  background: #f8f9fc;
  width: 100%;
  box-sizing: border-box;
}
.eoi-form__grid input:focus,
.eoi-form__textarea:focus { outline: 2px solid var(--gold, #c9922a); border-color: transparent; }
.eoi-form__grid--programs {
  grid-template-columns: 36px 1fr 2fr 1fr 1fr;
  align-items: center;
}
.eoi-form__col-head {
  font-size: 0.78rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
}
.eoi-form__row-num {
  font-size: 0.82rem;
  color: #aaa;
  text-align: center;
}
.eoi-form__checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eoi-form__checklist label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 400;
  color: #333;
  cursor: pointer;
}
.eoi-form__checklist--yesno {
  display: grid;
  grid-template-columns: 2fr 80px 80px;
  align-items: center;
  gap: 8px 12px;
}
.eoi-form__checklist--yesno span {
  font-size: 0.88rem;
  color: #333;
}
.eoi-form__actions {
  margin-top: 32px;
  text-align: right;
}
.eoi-form__submit {
  padding: 12px 36px;
  background: var(--gold, #c9922a);
  color: #1a1a2e;
  border: none;
  border-radius: 28px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
.eoi-form__submit:hover { background: #e0a830; }
@media (max-width: 640px) {
  .eoi-modal__dialog { padding: 28px 18px 36px; }
  .eoi-form__grid { grid-template-columns: 1fr; }
  .eoi-form__grid--programs { grid-template-columns: 24px 1fr 1fr; }
  .eoi-form__col-head:nth-child(n+4),
  .eoi-form__grid--programs input:nth-child(n+4) { display: none; }
}

/* ── INTERNATIONAL EOI FORM EXTRAS ───────────────────────── */
.eoi-form__checklist--yesno-na {
  display: grid;
  grid-template-columns: 2fr 70px 70px 90px;
  align-items: center;
  gap: 8px 12px;
}
.eoi-form__checklist--yesno-na span {
  font-size: 0.88rem;
  color: #333;
}
.eoi-form__grid--programs-intl {
  grid-template-columns: 36px 1fr 2fr 1.4fr 1fr 1fr;
  align-items: center;
}
@media (max-width: 640px) {
  .eoi-form__checklist--yesno-na { grid-template-columns: 2fr 56px 56px 70px; }
  .eoi-form__grid--programs-intl { grid-template-columns: 24px 1fr 1fr; }
  .eoi-form__grid--programs-intl .eoi-form__col-head:nth-child(n+4),
  .eoi-form__grid--programs-intl input:nth-child(n+4) { display: none; }
}

/* ── PROJECTS PANEL ──────────────────────────────────────── */
.projects-panel {
  background: var(--off-white);
  padding: 56px 32px 72px;
  border-top: 3px solid var(--gold);
}
.demo-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 28px;
}
.projects-panel[hidden] { display: none; }
.projects-panel__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.projects-panel__hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}
.projects-panel__title-wrap {
  flex: 1;
  min-width: 300px;
}
.projects-panel__country {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin: 0 0 8px 0;
}
.projects-panel__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.3px;
  margin: 0 0 12px 0;
}
.projects-panel__tagline {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.5;
  margin: 0;
  max-width: 700px;
}
.projects-panel__close {
  background: none;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  border-radius: 6px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}
.projects-panel__close:hover { background: var(--navy); color: #fff; }

/* ── PROJECT GRID ────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ── PROJECT CARD ────────────────────────────────────────── */
.project-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10,31,68,0.12);
}
.project-card__head {
  background: var(--navy);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.project-card__code {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.75;
  text-transform: uppercase;
}
.project-card__status {
  font-size: 0.68rem;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.project-card__status--open { background: #22c55e; color: #fff; }
.project-card__status--eoi  { background: var(--gold); color: var(--navy); }
.project-card__body {
  padding: 20px 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.project-card__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.project-card__type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.project-card__institution {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.project-card__desc {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  margin-top: 4px;
}
.project-card__foot {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
}
.project-card__btn {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 5px;
  padding: 7px 16px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}
.project-card__btn:hover { background: var(--navy); color: #fff; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .partner-type-grid { grid-template-columns: repeat(3, 1fr); }
  .profile-grid { grid-template-columns: 300px 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .feature-section { padding: 72px 32px; }
  .split-section { padding: 72px 32px; }
  .feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid--reverse .feature-visual { order: 0; }
  .split-section__cols { grid-template-columns: 1fr; }
  .split-col--gold .split-col__cta .btn-pdf-download { width: 100%; justify-content: center; }
  .services-list { grid-template-columns: 1fr; }
  .service-row { border-right: none !important; }
  .service-row:last-child { border-bottom: none; }
  .two-value-row { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-photo { height: 360px; }
  .cta-section__inner { grid-template-columns: 1fr; }
  .cta-section__visual { height: 280px; }
  .industry-showcase { grid-template-columns: repeat(2, 1fr); }
  .partner-type-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .hdr-bar { padding: 0 16px; height: 60px; }
  .hdr-meta { display: none; }
  .hdr-logotype strong { font-size: 0.88rem; }
  .hdr-logotype span { display: none; }
  .site-nav { margin: 0 12px; }
  .hero__inner { padding: 60px 24px; margin-left: 0; }
  .hero h1 { font-size: 2rem; letter-spacing: -0.8px; }
  .feature-section { padding: 56px 24px; }
  .compliance-banner { padding: 36px 24px; }
  .split-section { padding: 56px 24px; }
  .profile-section { padding: 56px 24px; }
  .cta-section__text { padding: 48px 28px; }
  .footer-top { padding: 36px 24px 28px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; }
  .stats-strip { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .industry-showcase { grid-template-columns: 1fr 1fr; }
  .partner-type-grid { grid-template-columns: repeat(2, 1fr); }
  .ns-item { grid-template-columns: 48px 1fr; }
  .ns-visual { display: none; }
  .compliance-banner__inner { flex-direction: column; }
  .quote-block { padding: 32px 24px; }
  .container-narrow { padding: 0 20px; }
}

/* ── ALIGN AREAS (How Offshore Institutions Can Align) ────── */
.align-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.align-area {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.align-area:hover {
  box-shadow: 0 12px 36px rgba(10,20,50,0.1);
  transform: translateY(-3px);
}

.align-area__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--navy);
}

.align-area__num {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.align-area__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.align-area__body { padding: 18px 22px; }

.area-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 14px 0 6px;
}

.align-area__body > .area-label:first-child { margin-top: 0; }

.dot-list { list-style: none; margin: 0 0 12px; padding: 0; }

.dot-list li {
  font-size: 0.91rem;
  color: #3D4A5C;
  line-height: 1.65;
  padding: 3px 0 3px 16px;
  position: relative;
}

.dot-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.align-area__sub {
  background: var(--blue-bg);
  border: 1px solid var(--blue-bd);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  margin-top: 10px;
}

.align-area__sub > strong {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.align-area__sub .dot-list { margin-bottom: 0; }
.align-area__sub .dot-list li { font-size: 0.88rem; }
.align-area__sub .dot-list li::before { background: var(--accent); }

.warn-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 4px solid #D97706;
  border-radius: var(--r-sm);
  padding: 12px 16px;
  margin-top: 10px;
}

.warn-box__label {
  font-size: 0.74rem;
  font-weight: 700;
  color: #92400E;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.warn-box .dot-list { margin-bottom: 0; }
.warn-box .dot-list li { color: #78350F; font-size: 0.88rem; }
.warn-box .dot-list li::before { background: #D97706; }

/* ── STAGE GRID ─────────────────────────────────────────── */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.stage-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 26px 20px;
  transition: background 0.25s;
}

.stage-card:hover { background: rgba(255,255,255,0.1); }

.stage-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.stage-card__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.stage-card__sub-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.stage-card ul { list-style: none; padding: 0; margin: 0; }

.stage-card ul li {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
  padding: 3px 0 3px 14px;
  position: relative;
}

.stage-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold-lt);
  opacity: 0.65;
}

/* ── THREE-COL LAYOUT ─────────────────────────────────────── */
.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── SCORECARD TABLE ─────────────────────────────────────── */
.scorecard-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,20,50,0.06);
  margin-bottom: 16px;
}

.scorecard-table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 12px 18px;
  text-align: left;
  letter-spacing: 0.3px;
}

.scorecard-table thead th:last-child { text-align: right; }

.scorecard-table tbody td {
  padding: 10px 18px;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.scorecard-table tbody tr:last-child td { border-bottom: none; }
.scorecard-table tbody tr:nth-child(even) td { background: var(--off-white); }
.scorecard-table tbody tr:nth-child(odd) td { background: #fff; }

.scorecard-table tbody td:last-child {
  text-align: right;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
}

.score-bands { display: flex; flex-direction: column; gap: 8px; }

.score-band {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
}

.score-band--green { background: var(--green-bg); border: 1px solid var(--green-bd); }
.score-band--amber { background: #FFFBEB; border: 1px solid #FDE68A; }
.score-band--red   { background: #FEF2F2; border: 1px solid #FECACA; }

.score-band__range { font-weight: 800; font-size: 0.92rem; min-width: 52px; }
.score-band--green .score-band__range { color: var(--green); }
.score-band--amber .score-band__range { color: #92400E; }
.score-band--red   .score-band__range { color: #991B1B; }

.score-band__label { color: var(--text-muted); font-size: 0.86rem; }

/* ── BENCH REFS ─────────────────────────────────────────── */
.bench-refs { display: flex; flex-direction: column; gap: 8px; }

.bench-ref {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--blue-bg);
  border: 1px solid var(--blue-bd);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}

.bench-ref__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── BP LIST ─────────────────────────────────────────────── */
.bp-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }

.bp-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}

.bp-list li:hover { background: var(--blue-bg); border-color: var(--blue-bd); }

.bp-list__num {
  width: 30px;
  height: 30px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .align-areas { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; gap: 40px; }
  .stage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .stage-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   FORCE WHITE AND BOLD TEXT IN HERO SECTIONS - ALL SCREENS
   ══════════════════════════════════════════════════════════ */

/* Ultra-high specificity rules for ALL screen sizes */
.hero--short .hero__inner--center p,
.hero--short .hero__inner--center .body-p,
.hero--short .hero__inner--center ol,
.hero--short .hero__inner--center ol li,
.hero--short .hero__inner--center li,
.hero--short p,
.hero--short ol,
.hero--short ol li,
.hero--short li,
.hero--short .body-p {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* Additional coverage for nested elements */
.hero--short * {
  color: #ffffff !important;
}

.hero--short p,
.hero--short li,
.hero--short .body-p {
  font-weight: 700 !important;
}

/* Ultra-wide screens (2K, 4K, etc.) - Force white and bold */
@media (min-width: 1920px) {
  .hero--short .hero__inner--center p,
  .hero--short .hero__inner--center .body-p,
  .hero--short .hero__inner--center ol,
  .hero--short .hero__inner--center ol li,
  .hero--short .hero__inner--center li,
  .hero--short p,
  .hero--short ol,
  .hero--short ol li,
  .hero--short li,
  .hero--short .body-p {
    color: #ffffff !important;
    font-weight: 700 !important;
  }
}

@media (min-width: 2560px) {
  .hero--short .hero__inner--center p,
  .hero--short .hero__inner--center .body-p,
  .hero--short .hero__inner--center ol,
  .hero--short .hero__inner--center ol li,
  .hero--short .hero__inner--center li,
  .hero--short p,
  .hero--short ol,
  .hero--short ol li,
  .hero--short li,
  .hero--short .body-p {
    color: #ffffff !important;
    font-weight: 700 !important;
  }
}

@media (min-width: 3840px) {
  .hero--short .hero__inner--center p,
  .hero--short .hero__inner--center .body-p,
  .hero--short .hero__inner--center ol,
  .hero--short .hero__inner--center ol li,
  .hero--short .hero__inner--center li,
  .hero--short p,
  .hero--short ol,
  .hero--short ol li,
  .hero--short li,
  .hero--short .body-p {
    color: #ffffff !important;
    font-weight: 700 !important;
  }
}
