/* ============================================================
   IMWIRSA — Shared Stylesheet
   Brand system carried over from the v1 landing page, extended
   with multi-page navigation, page headers and content blocks.
   ============================================================ */

:root {
  --navy:    #1B3A6B;
  --navy2:   #162F58;
  --teal:    #0D6E8A;
  --teal2:   #0A5A72;
  --coral:   #E8523A;
  --coral2:  #C94028;
  --gold:    #B8860B;
  --white:   #FFFFFF;
  --slate:   #F4F7FA;
  --gray:    #64748B;
  --dark:    #1A1A2E;
  --border:  #E2E8F0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

section[id], div[id], h2[id], h3[id] { scroll-margin-top: 96px; }

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ── NAVBAR ──────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(27, 58, 107, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(22, 47, 88, 0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 0;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0; margin-right: 30px;
}
.nav-logo-mark {
  width: 40px; height: 40px; flex-shrink: 0;
}
.nav-logo-text .org-name {
  font-size: 18px; font-weight: 800; color: var(--white);
  letter-spacing: 0.5px; line-height: 1;
}
.nav-logo-text .org-sub {
  font-size: 9px; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 1px; line-height: 1.3;
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; flex: 1;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  padding: 10px 13px; border-radius: 8px;
  transition: all 0.2s; white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
}
.nav-links > li > a:hover,
.nav-links > li.open > a { color: white; background: rgba(255,255,255,0.1); }
.nav-links a.active { color: white; background: rgba(255,255,255,0.14); }
.nav-links .app-link {
  background: var(--teal); color: white !important;
  padding: 9px 16px; border-radius: 8px; font-weight: 600;
}
.nav-links .app-link:hover { background: var(--teal2); }
.caret { font-size: 9px; opacity: 0.7; transition: transform .2s; }
.nav-links > li.open .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 250px; background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 8px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  list-style: none; z-index: 1001;
}
.nav-links > li:hover > .dropdown,
.nav-links > li.open > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 13px; color: rgba(255,255,255,0.82); text-decoration: none;
  transition: all .15s;
}
.dropdown a:hover { background: rgba(255,255,255,0.08); color: white; padding-left: 18px; }

.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-cta {
  background: var(--coral); color: white;
  border: none; border-radius: 8px; padding: 9px 18px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; font-family: inherit; white-space: nowrap;
  text-decoration: none; display: inline-flex;
}
.nav-cta:hover { background: var(--coral2); transform: translateY(-1px); }

.nav-burger {
  display: none; width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06);
  cursor: pointer; margin-left: 10px; position: relative;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ''; position: absolute; left: 9px; width: 22px; height: 2px;
  background: white; transition: all .25s;
}
.nav-burger span { top: 19px; }
.nav-burger span::before { top: -7px; }
.nav-burger span::after { top: 7px; }
.nav-burger.active span { background: transparent; }
.nav-burger.active span::before { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span::after { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE HERO (inner pages) ───────────────────────────────────────── */
.page-hero {
  padding: 158px 32px 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal2) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(93,211,240,0.18) 0%, transparent 55%);
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb {
  font-size: 12.5px; color: rgba(255,255,255,0.6); margin-bottom: 18px;
  display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.page-hero h1 {
  font-size: clamp(30px, 4vw, 46px); font-weight: 800; color: white;
  letter-spacing: -0.5px; margin-bottom: 14px; max-width: 780px;
}
.page-hero p {
  font-size: 16.5px; color: rgba(255,255,255,0.82); line-height: 1.7;
  max-width: 640px;
}
.page-nav-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 26px; position: relative; z-index: 1; }
.page-nav-pills a {
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px; padding: 7px 16px; text-decoration: none; transition: all .2s;
}
.page-nav-pills a:hover { background: rgba(255,255,255,0.2); color: white; }

/* ── WAVE ──────────────────────────────────────────────────────────── */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ── SECTION COMMONS ───────────────────────────────────────────────── */
section { padding: 90px 32px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11.5px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 10px; display: block;
}
.section-title {
  font-size: clamp(28px, 3vw, 42px); font-weight: 800;
  color: var(--navy); line-height: 1.15;
  letter-spacing: -0.5px; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--gray); line-height: 1.7;
  max-width: 620px; font-weight: 400;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

.body-copy { font-size: 16px; color: var(--gray); line-height: 1.8; max-width: 760px; }
.body-copy + .body-copy { margin-top: 18px; }
.body-copy strong { color: var(--dark); }
h3.block-title { font-size: 22px; font-weight: 800; color: var(--navy); margin: 8px 0 14px; }

/* ── STATS STRIP ───────────────────────────────────────────────────── */
.stats-strip { background: var(--slate); padding: 60px 32px; }
.stats-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.stat-card {
  background: white; border-radius: 18px; padding: 28px 20px;
  text-align: center; border: 1px solid var(--border);
  transition: all 0.25s; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,58,107,0.12); }
.stat-icon { font-size: 28px; margin-bottom: 12px; }
.stat-val {
  font-size: 36px; font-weight: 800; color: var(--teal);
  line-height: 1; margin-bottom: 8px;
}
.stat-desc { font-size: 13px; color: var(--dark); line-height: 1.5; font-weight: 500; }
.stat-source { font-size: 10.5px; color: var(--gray); margin-top: 8px; font-style: italic; }

/* ── OLD VS NEW comparison (Why a new approach) ───────────────────── */
.compare-section { background: white; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.compare-card { border-radius: 20px; padding: 32px; border: 1px solid var(--border); }
.compare-card.old { background: var(--slate); }
.compare-card.new { background: var(--navy); color: white; }
.compare-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; display: block; }
.compare-card.old .compare-label { color: var(--gray); }
.compare-card.new .compare-label { color: #5DD3F0; }
.compare-card h4 { font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.compare-card.old h4 { color: var(--navy); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare-list li { font-size: 14px; line-height: 1.6; padding-left: 24px; position: relative; }
.compare-card.old .compare-list li::before { content: '✕'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }
.compare-card.new .compare-list li::before { content: '✓'; position: absolute; left: 0; color: #5DD3F0; font-weight: 700; }
.compare-card.old .compare-list li { color: var(--gray); }
.compare-card.new .compare-list li { color: rgba(255,255,255,0.85); }

/* ── MWAPP ─────────────────────────────────────────────────────────── */
.mwapp-section { background: white; }
.mwapp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.mwapp-phone-wrap {
  display: flex; justify-content: center; position: relative;
}
.phone-mockup {
  width: 280px; background: var(--navy);
  border-radius: 40px; padding: 14px;
  box-shadow: 0 40px 80px rgba(27,58,107,0.35), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
}
.phone-screen {
  background: #0f1e3d; border-radius: 28px; overflow: hidden;
  min-height: 540px;
}
.phone-status {
  background: #1b3a6b; padding: 8px 20px 5px;
  display: flex; justify-content: space-between;
  color: white; font-size: 10px;
}
.phone-header {
  background: linear-gradient(135deg, #1b3a6b, #2e75b6);
  padding: 16px 14px 20px; color: white;
}
.phone-header-top {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 12px;
}
.phone-logo { font-size: 13px; font-weight: 800; }
.phone-logo-sub { font-size: 8px; opacity: 0.7; }
.phone-port { font-size: 22px; font-weight: 800; margin-bottom: 2px; }
.phone-port-sub { font-size: 11px; opacity: 0.75; }
.phone-badges { display: flex; gap: 5px; margin-top: 10px; }
.phone-badge {
  background: rgba(255,255,255,0.18); border-radius: 10px;
  padding: 3px 8px; font-size: 9px; color: white;
}
.phone-badge.green { background: rgba(26,122,74,0.7); }
.phone-content { padding: 12px; }
.phone-assistant {
  background: #1e3a5f; border-radius: 12px; padding: 10px 12px; margin-bottom: 10px;
  display: flex; align-items: flex-start; gap: 8px;
}
.assistant-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #2e75b6, #0d6e8a);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.assistant-text { font-size: 10px; color: #e8f4fd; line-height: 1.5; }
.assistant-name { font-size: 8.5px; color: #7ec8f0; font-weight: 600; margin-bottom: 2px; }
.phone-section-title { font-size: 9px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.6px; margin: 8px 0 5px; }
.phone-row {
  background: #1a2a40; border-radius: 9px; padding: 8px 10px;
  display: flex; align-items: center; gap: 8px; margin-bottom: 5px;
}
.phone-row-icon { font-size: 14px; width: 22px; text-align: center; flex-shrink: 0; }
.phone-row-body { flex: 1; }
.phone-row-title { font-size: 10px; font-weight: 600; color: #e8f4fd; }
.phone-row-sub { font-size: 8.5px; color: #7ec8f0; margin-top: 1px; }
.phone-row-tag { font-size: 7.5px; background: rgba(26,122,74,0.5); color: #4ade80; border-radius: 4px; padding: 1px 4px; display: inline-block; margin-top: 2px; }
.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 26px; background: var(--navy); border-radius: 0 0 14px 14px; z-index: 2;
}
.phone-side-glow {
  position: absolute; top: 20%; left: -30px; bottom: 20%;
  width: 60px;
  background: radial-gradient(ellipse, rgba(13,110,138,0.4), transparent);
  filter: blur(20px);
}

.mwapp-features { display: flex; flex-direction: column; gap: 8px; margin: 28px 0; }
.mwapp-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border-radius: 14px;
  border: 1px solid var(--border); background: white;
  transition: all 0.2s;
}
.mwapp-feature:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(13,110,138,0.1); }
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--slate); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.feature-body h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.feature-body p { font-size: 12.5px; color: var(--gray); line-height: 1.5; }
.mwapp-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--dark); color: white; border-radius: 12px;
  padding: 10px 20px; text-decoration: none; transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.store-btn:hover { background: #2a2a3e; transform: translateY(-2px); }
.store-btn .store-icon { font-size: 22px; }
.store-btn-text { line-height: 1.2; }
.store-btn-text small { font-size: 9px; opacity: 0.7; display: block; }
.store-btn-text strong { font-size: 13px; }
.coming-soon-badge {
  background: #fef3c7; color: #92400e; border-radius: 6px;
  padding: 3px 8px; font-size: 10px; font-weight: 700;
}

/* ── HOW IT WORKS (step flow) ─────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.step-card { background: var(--slate); border-radius: 18px; padding: 28px 22px; border: 1px solid var(--border); position: relative; }
.step-num { font-size: 13px; font-weight: 800; color: var(--teal); margin-bottom: 14px; }
.step-card h4 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── FOR CENTRES / dark feature band ──────────────────────────────── */
.centres-section { background: var(--navy); padding: 90px 32px; position: relative; overflow: hidden; }
.centres-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,110,138,0.3), transparent 70%);
}
.centres-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.centres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.centres-text .section-title { color: white; }
.centres-text .section-sub { color: rgba(255,255,255,0.75); max-width: 480px; }
.centres-keeps { margin: 28px 0; display: flex; flex-direction: column; gap: 10px; }
.keep-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.85);
}
.keep-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(74,222,128,0.2); border: 1px solid rgba(74,222,128,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.centres-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.benefit-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 20px;
  transition: all 0.25s;
}
.benefit-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.benefit-icon { font-size: 24px; margin-bottom: 10px; }
.benefit-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 6px; }
.benefit-desc { font-size: 12.5px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.centres-cta { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.btn-coral {
  background: var(--coral); color: white; border: none; border-radius: 12px;
  padding: 13px 26px; font-size: 15px; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-coral:hover { background: var(--coral2); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.35); border-radius: 12px;
  padding: 12px 24px; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: inherit; text-decoration: none;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-primary {
  background: var(--teal); color: white;
  border: none; border-radius: 12px;
  padding: 15px 30px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--teal2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,110,138,0.4); }
.btn-secondary {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px; padding: 13px 28px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; font-family: inherit;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-navy {
  background: var(--navy); color: white; border: none; border-radius: 12px;
  padding: 13px 26px; font-size: 14.5px; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); }

/* ── RESEARCH ──────────────────────────────────────────────────────── */
.research-section { background: var(--slate); }
.research-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px;
}
.research-card {
  background: white; border-radius: 18px; padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.25s; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.research-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(27,58,107,0.12); border-color: var(--teal); }
.research-logo { height: 36px; margin-bottom: 16px; display: flex; align-items: center; }
.research-logo-text { font-size: 13px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
.research-logo-text.wmu { color: #003087; }
.research-logo-text.ilo { color: #007EB5; }
.research-logo-text.ics { color: #1B3A6B; }
.research-logo-text.sailors { color: #C41E3A; }
.research-logo-text.cardiff { color: #8B0000; }
.research-title { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 8px; }
.research-desc { font-size: 12px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.research-link { font-size: 12.5px; font-weight: 600; color: var(--teal); text-decoration: none; display: flex; align-items: center; gap: 4px; }
.research-link:hover { color: var(--teal2); }

/* ── MISSION / PILLARS ─────────────────────────────────────────────── */
.mission-section { background: white; }
.mission-desc { font-size: 17px; color: var(--gray); line-height: 1.7; text-align: center; max-width: 720px; margin: 0 auto 56px; }
.mission-pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.pillar { text-align: center; padding: 28px 18px; border-radius: 18px; border: 1px solid var(--border); transition: all 0.25s; background: var(--slate); }
.pillar:hover { border-color: var(--teal); background: white; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,58,107,0.1); }
.pillar-icon { font-size: 32px; margin-bottom: 14px; }
.pillar-title { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pillar-desc { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ── APPROACH / TIMELINE FLOW ─────────────────────────────────────── */
.approach-section { background: var(--navy); padding: 90px 32px; }
.approach-title { color: white; text-align: center; }
.approach-sub { color: rgba(255,255,255,0.7); text-align: center; max-width: 560px; margin: 0 auto 56px; }
.approach-flow { display: flex; align-items: center; gap: 0; overflow-x: auto; padding-bottom: 8px; }
.approach-step {
  display: flex; flex-direction: column; align-items: center;
  min-width: 140px; padding: 24px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; text-align: center; flex: 1;
  transition: all 0.2s;
}
.approach-step:hover { background: rgba(255,255,255,0.12); }
.approach-arrow { color: rgba(255,255,255,0.3); font-size: 20px; flex-shrink: 0; padding: 0 6px; }
.approach-step-icon { font-size: 28px; margin-bottom: 12px; }
.approach-step-title { font-size: 13px; font-weight: 700; color: white; margin-bottom: 6px; }
.approach-step-desc { font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ── VERTICAL TIMELINE (Roadmap) ──────────────────────────────────── */
.timeline { position: relative; max-width: 780px; margin-top: 40px; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-left: 60px; margin-bottom: 36px; }
.timeline-dot {
  position: absolute; left: 11px; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal); border: 4px solid white; box-shadow: 0 0 0 2px var(--teal);
}
.timeline-year { font-size: 13px; font-weight: 800; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.timeline-item h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.timeline-item p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── PORT NETWORK GRID ────────────────────────────────────────────── */
.ports-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 20px; }
.port-card-mini {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 18px; text-align: center; transition: all .2s; text-decoration: none;
}
.port-card-mini:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(27,58,107,0.12); }
.port-flag { font-size: 30px; margin-bottom: 10px; }
.port-name { font-size: 14.5px; font-weight: 700; color: var(--navy); }
.port-country { font-size: 11.5px; color: var(--gray); margin-top: 2px; }
.port-status { display: inline-block; margin-top: 10px; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px; background: #dcfce7; color: #15803d; }

/* ── GENERIC CARD GRID ────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.info-card { background: var(--slate); border: 1px solid var(--border); border-radius: 18px; padding: 26px; transition: all .2s; }
.info-card:hover { border-color: var(--teal); background: white; box-shadow: 0 10px 28px rgba(27,58,107,0.1); transform: translateY(-3px); }
.info-card .icon { font-size: 26px; margin-bottom: 12px; }
.info-card h4 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.info-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── ASSISTANT PERSONA CARDS ──────────────────────────────────────── */
.persona-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.persona-card { background: white; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: all .2s; }
.persona-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 14px 32px rgba(27,58,107,0.12); }
.persona-top { background: linear-gradient(135deg, var(--navy), var(--teal2)); padding: 26px 20px; text-align: center; color: white; }
.persona-avatar { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 10px; }
.persona-name { font-size: 16px; font-weight: 800; }
.persona-role { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.persona-body { padding: 18px 20px; }
.persona-body p { font-size: 12.5px; color: var(--gray); line-height: 1.6; }

/* ── QUOTE BLOCK ───────────────────────────────────────────────────── */
.quote-block { background: var(--slate); border-left: 4px solid var(--teal); border-radius: 4px 16px 16px 4px; padding: 28px 32px; margin: 28px 0; }
.quote-block p { font-size: 17px; font-style: italic; color: var(--navy); line-height: 1.6; font-weight: 500; }
.quote-block cite { display: block; margin-top: 12px; font-size: 12.5px; color: var(--gray); font-style: normal; }

/* ── CONTACT ───────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 24px; align-items: start; }
.contact-card { background: var(--slate); border: 1px solid var(--border); border-radius: 18px; padding: 26px; margin-bottom: 16px; }
.contact-card h4 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.contact-card p, .contact-card a { font-size: 13.5px; color: var(--gray); line-height: 1.7; text-decoration: none; }
.contact-card a:hover { color: var(--teal); }
.social-row { display: flex; gap: 10px; margin-top: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 10px; background: white; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: all .2s;
}
.social-row a:hover { border-color: var(--teal); transform: translateY(-2px); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 2px solid var(--border); border-radius: 10px; padding: 12px 14px;
  font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.map-embed { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); margin-top: 20px; }

/* ── PARTNERS / JOIN ──────────────────────────────────────────────── */
.partners-section { background: var(--slate); }
.partners-logos { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 48px; }
.partner-logo {
  background: white; border: 1px solid var(--border); border-radius: 12px; padding: 14px 24px;
  font-size: 13px; font-weight: 700; color: var(--navy); transition: all 0.2s; display: flex; align-items: center; gap: 8px;
}
.partner-logo:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(13,110,138,0.12); }
.join-box { background: white; border-radius: 20px; padding: 48px; border: 1px solid var(--border); text-align: center; box-shadow: 0 4px 24px rgba(27,58,107,0.08); }
.join-box h3 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.join-box p { font-size: 15px; color: var(--gray); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.join-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.join-input { flex: 1; border: 2px solid var(--border); border-radius: 12px; padding: 12px 18px; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s; }
.join-input:focus { border-color: var(--teal); }
.join-btn { background: var(--coral); color: white; border: none; border-radius: 12px; padding: 12px 24px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s; white-space: nowrap; }
.join-btn:hover { background: var(--coral2); }

/* ── TOOLKIT LIST (Partners) ──────────────────────────────────────── */
.toolkit-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.toolkit-item {
  display: flex; align-items: center; gap: 16px; background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 20px; transition: all .2s;
}
.toolkit-item:hover { border-color: var(--teal); box-shadow: 0 6px 18px rgba(27,58,107,0.08); }
.toolkit-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--slate); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.toolkit-body h4 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.toolkit-body p { font-size: 12.5px; color: var(--gray); }
.toolkit-dl { margin-left: auto; font-size: 12.5px; font-weight: 600; color: var(--teal); text-decoration: none; white-space: nowrap; }

/* ── FOOTER ────────────────────────────────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 32px 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-brand .brand-name { font-size: 20px; font-weight: 800; color: white; margin-bottom: 6px; }
.footer-brand .brand-sub { font-size: 10.5px; opacity: 0.5; text-transform: uppercase; letter-spacing: 1px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,0.6); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-langs { display: flex; gap: 8px; }
.footer-lang { font-size: 12px; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); border-radius: 6px; padding: 4px 10px; cursor: pointer; border: none; font-family: inherit; transition: all 0.2s; }
.footer-lang:hover { color: white; background: rgba(255,255,255,0.12); }

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { align-items: flex-start; }
  .mwapp-grid { grid-template-columns: 1fr; }
  .phone-mockup { width: 240px; }
  .centres-grid { grid-template-columns: 1fr; }
  .mission-pillars { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .compare-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .ports-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .persona-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--navy2);
    flex-direction: column; align-items: stretch; gap: 0; padding: 14px; overflow-y: auto;
    transform: translateX(-100%); transition: transform .25s ease; }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li > a { padding: 14px 12px; font-size: 15px; justify-content: space-between; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none;
    background: rgba(255,255,255,0.05); box-shadow: none; margin: 0 0 6px; }
  .nav-links > li.open .dropdown { display: block; }
  .nav-right .nav-cta { display: none; }
  .nav-burger { display: block; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .research-grid { grid-template-columns: 1fr 1fr; }
  .mission-pillars { grid-template-columns: 1fr 1fr; }
  .approach-flow { gap: 8px; }
  .approach-arrow { display: none; }
  .join-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
  .page-hero { padding: 130px 20px 50px; }
  .steps-grid { grid-template-columns: 1fr; }
  .ports-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* keyboard focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal); outline-offset: 2px;
}
