
:root {
  --navy: #12344a;
  --navy-2: #0a2738;
  --green: #0aa77d;
  --green-dark: #08765f;
  --mint: #dff4ed;
  --mint-2: #f1faf7;
  --purple: #7a5592;
  --purple-light: #eee5f4;
  --coral: #f3a6a3;
  --ink: #243842;
  --muted: #667b83;
  --line: #dce9e5;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(18,52,74,.12);
  --shadow-soft: 0 12px 30px rgba(18,52,74,.08);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang HK', 'Microsoft JhengHei', sans-serif; font-size: 19px; line-height: 1.75; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
.noscript-note { padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 { margin: 0; color: var(--navy); font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang HK', 'Microsoft JhengHei', sans-serif; line-height: 1.18; }
p { margin: 0; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; transform: translateY(-150%); padding: 10px 16px; border-radius: 10px; background: var(--navy); color: #fff; }
.skip-link:focus { transform: none; }

.topline { background: var(--navy-2); color: rgba(255,255,255,.86); font-size: 15px; }
.topline-inner { min-height: 34px; display: flex; justify-content: flex-end; align-items: center; gap: 28px; }
.topline a { color: #fff; font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(18,52,74,.08); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; }
.brand-icon { flex: 0 0 auto; fill: #0db26b; }
.brand-stack { display: flex; flex-direction: column; }
.brand-word { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang HK', 'Microsoft JhengHei', sans-serif; font-size: 25px; font-weight: 700; letter-spacing: .01em; line-height: 1.25; }
.brand-word .w1 { color: #9155a7; }
.brand-word .w2 { color: #0db26b; }
.brand small { display: block; color: #a0a09f; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang HK', 'Microsoft JhengHei', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .1em; line-height: 1.4; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 23px; margin-left: auto; }
.site-nav > a, .nav-group > a { position: relative; padding: 28px 0; color: var(--navy); font-size: 16px; font-weight: 700; white-space: nowrap; }
.site-nav > a::after, .nav-group > a::after { content: ''; position: absolute; right: 0; bottom: 20px; left: 0; height: 3px; border-radius: 99px; background: linear-gradient(90deg,var(--green),var(--purple)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--green-dark); }
.nav-group { position: relative; }
.subnav { position: absolute; top: calc(100% - 8px); left: -24px; width: 250px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.nav-group:hover .subnav, .nav-group:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--ink); font-size: 16px; font-weight: 600; }
.subnav a:hover, .subnav a.active { background: var(--mint-2); color: var(--green-dark); }
.nav-cta { flex: 0 0 auto; padding: 11px 18px; border-radius: 999px; background: var(--green); color: #fff; font-size: 16px; font-weight: 800; box-shadow: 0 9px 22px rgba(10,167,125,.22); transition: transform .2s, background .2s; }
.nav-cta:hover { transform: translateY(-2px); background: var(--green-dark); }
.lang-btn { flex: 0 0 auto; padding: 9px 15px; border: 1.5px solid var(--green); border-radius: 999px; background: #fff; color: var(--green-dark); font-family: inherit; font-size: 14px; font-weight: 800; cursor: pointer; white-space: nowrap; transition: background .2s, color .2s; }
.lang-btn:hover { background: var(--green); color: #fff; }
@media (max-width: 1060px) { .lang-btn { margin-left: auto; } }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 9px; border: 0; border-radius: 12px; background: var(--mint-2); }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 5px; background: var(--navy); }

.home-hero, .masthead { position: relative; overflow: hidden; background: var(--mint); }
.home-hero::after, .masthead::after { content: ''; position: absolute; right: -12%; bottom: -115px; left: -8%; height: 190px; border-radius: 50% 50% 0 0; background: #fff; transform: rotate(-2deg); }
.home-hero { min-height: 680px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 60px; padding-block: 76px 128px; }
.masthead .hero-grid { min-height: 590px; padding-block: 66px 120px; }
.hero-copy { max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--green-dark); font-family: inherit; font-size: 15px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--coral); }
.eyebrow.light { color: #fff; }
.hero-copy h1 { max-width: 760px; margin-top: 17px; font-size: clamp(44px,5.4vw,72px); letter-spacing: -.04em; }
.masthead .hero-copy h1 { font-size: clamp(42px,4.7vw,64px); }
.hero-copy h1 em { color: var(--green-dark); font-style: normal; }
.hero-copy > p { max-width: 630px; margin-top: 24px; color: #455f69; font-size: 21px; line-height: 1.9; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 24px; border: 1px solid transparent; border-radius: 999px; font-size: 17px; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #fff; box-shadow: 0 12px 28px rgba(10,167,125,.24); }
.button-primary:hover { background: var(--green-dark); }
.button-outline { border-color: var(--green); background: rgba(255,255,255,.5); color: var(--green-dark); }
.button-outline:hover { background: #fff; }
.button-white { background: #fff; color: var(--green-dark); }
.button-ghost { border-color: rgba(255,255,255,.58); color: #fff; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 28px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-size: 15px; font-weight: 700; }
.hero-proof span::before { content: '✓'; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--green); }
.hero-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
.hero-visual img { position: relative; z-index: 2; width: min(100%,540px); aspect-ratio: 1.05; object-fit: cover; border-radius: 43% 57% 58% 42% / 46% 38% 62% 54%; box-shadow: var(--shadow); }
.orbit { position: absolute; z-index: 1; width: 112%; aspect-ratio: 1.25; border: 2px dotted rgba(10,118,95,.52); border-radius: 50%; transform: rotate(-8deg); }
.hero-visual::before { content: ''; position: absolute; z-index: 3; bottom: 5%; left: 3%; width: 120px; height: 120px; border-radius: 48% 52% 41% 59%; background: rgba(10,167,125,.44); }
.media-badge, .float-note { position: absolute; z-index: 4; padding: 11px 17px; border-radius: 16px; background: #fff; color: var(--navy); box-shadow: var(--shadow-soft); font-size: 14px; font-weight: 800; }
.media-badge { right: 0; bottom: 5%; }
.float-note { display: grid; padding: 12px 16px; }
.float-note small { color: var(--muted); font-weight: 600; }
.note-one { top: 10%; left: -4%; }
.note-two { right: -5%; bottom: 20%; }
.shape { position: absolute; border-radius: 50%; pointer-events: none; }
.shape-one { top: -140px; right: -100px; width: 390px; height: 390px; border: 1px solid rgba(122,85,146,.22); }
.shape-two { bottom: 40px; left: -100px; width: 260px; height: 260px; background: rgba(255,255,255,.38); }

.trust-wrap { position: relative; z-index: 5; margin-top: -70px; }
.trust-strip { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.trust-strip > div { display: flex; align-items: center; gap: 13px; padding: 23px 24px; }
.trust-strip > div + div { border-left: 1px solid var(--line); }
.trust-strip span { color: var(--purple); font-family: inherit; font-size: 15px; font-weight: 800; }
.trust-strip p { line-height: 1.35; }
.trust-strip b, .trust-strip small { display: block; }
.trust-strip b { color: var(--navy); font-size: 16px; }
.trust-strip small { margin-top: 4px; color: var(--muted); font-size: 13px; }

.section { padding: 92px 0; }
.soft-section { background: var(--mint-2); }
.mint-band { background: var(--mint); }
.dark-section { background: var(--navy-2); color: #fff; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2 { margin-top: 13px; font-size: clamp(34px,4vw,50px); letter-spacing: -.035em; }
.section-heading > p { max-width: 690px; margin-top: 18px; color: var(--muted); font-size: 19px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.dark-section .section-heading h2, .dark-section .section-heading p { color: #fff; }
.dark-section .section-heading p { opacity: .76; }
.service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.service-grid.three { grid-template-columns: repeat(3,1fr); }
.service-grid.four { grid-template-columns: repeat(4,1fr); gap: 20px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.card-image { position: relative; overflow: hidden; }
.card-image img { width: 100%; height: 250px; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .card-image img { transform: scale(1.035); }
.card-image > span { position: absolute; top: 18px; left: 18px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.93); color: var(--green-dark); font-size: 14px; font-weight: 800; }
.card-content { padding: 26px; }
.card-content h3 { font-size: 27px; }
.card-content > p { margin-top: 12px; color: var(--muted); font-size: 17px; }
.mini-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 17px 0 0; padding: 0; list-style: none; }
.mini-list li { padding: 5px 10px; border-radius: 999px; background: var(--mint-2); color: var(--green-dark); font-size: 13px; font-weight: 700; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; color: var(--green-dark); font-size: 16px; font-weight: 800; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.text-link.large { font-size: 18px; }
.split-layout { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 76px; }
.split-layout.reverse { grid-template-columns: 1.08fr .92fr; }
.image-stack { position: relative; }
.image-stack img { width: 100%; aspect-ratio: 1.05; min-height: 480px; object-fit: cover; border-radius: 34% 20px 34% 20px; box-shadow: var(--shadow); }
.image-caption { position: absolute; right: -18px; bottom: 24px; max-width: 260px; padding: 16px 19px; border-radius: 16px; background: var(--purple); color: #fff; font-size: 15px; font-weight: 800; box-shadow: var(--shadow-soft); }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 15px 0; padding-left: 38px; color: var(--ink); }
.check-list li::before { content: '✓'; position: absolute; top: 2px; left: 0; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green-dark); font-size: 15px; font-weight: 900; }
.dark-section .check-list li { color: #fff; }
.reason-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.reason-grid.three { grid-template-columns: repeat(3,1fr); }
.reason-grid article { padding: 29px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.06); }
.reason-grid article > span { color: var(--coral); font-family: inherit; font-size: 15px; font-weight: 800; }
.reason-grid h3 { margin-top: 24px; color: #fff; font-size: 23px; }
.reason-grid p { margin-top: 11px; color: rgba(255,255,255,.7); font-size: 16px; }
.steps { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 34px; }
.steps::before { content: ''; position: absolute; top: 27px; right: 10%; left: 10%; height: 1px; background: var(--line); }
.steps article { position: relative; text-align: center; }
.steps article > span { position: relative; z-index: 2; width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 20px; border: 7px solid #fff; border-radius: 50%; background: var(--green); color: #fff; font-family: inherit; font-weight: 800; box-shadow: 0 0 0 1px var(--line); }
.soft-section .steps article > span { border-color: var(--mint-2); }
.steps h3 { font-size: 22px; }
.steps p { margin-top: 8px; color: var(--muted); font-size: 16px; }
.team-band { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 60px; }
.team-band .section-heading { margin-bottom: 0; }
.role-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.role-cloud span { padding: 12px 17px; border: 1px solid rgba(18,52,74,.12); border-radius: 999px; background: #fff; color: var(--navy); font-size: 16px; font-weight: 800; box-shadow: var(--shadow-soft); }
.role-cloud.large { justify-content: center; }
.role-cloud.large span { padding: 16px 22px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-soft); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card > div { padding: 23px; }
.blog-card span { color: var(--green-dark); font-size: 14px; font-weight: 800; }
.blog-card h3 { margin-top: 9px; font-size: 23px; }
.blog-card p { margin-top: 10px; color: var(--muted); font-size: 16px; }
.blog-card a { display: inline-block; margin-top: 18px; color: var(--green-dark); font-size: 15px; font-weight: 800; }

.programme-table { display: grid; grid-template-columns: repeat(2,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-soft); }
.programme-table > div { padding: 38px; }
.programme-table > div + div { border-left: 1px solid var(--line); }
.programme-table > div:first-child { border-top: 8px solid var(--purple); }
.programme-table > div:last-child { border-top: 8px solid var(--coral); }
.programme-table span { color: var(--green-dark); font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.programme-table h3 { margin: 8px 0 22px; font-size: 28px; }
.format-grid, .value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.format-grid article, .value-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); }
.format-grid span, .value-grid span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--mint); color: var(--green-dark); font-family: inherit; font-size: 15px; font-weight: 800; }
.format-grid h3, .value-grid h3 { margin-top: 21px; font-size: 22px; }
.format-grid p, .value-grid p { margin-top: 9px; color: var(--muted); font-size: 16px; }
.feature-course { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 65px; padding: 52px; border-radius: 34px; background: var(--purple-light); }
.feature-course h2 { margin-top: 12px; font-size: clamp(34px,4vw,50px); }
.feature-course > div > p { margin-top: 18px; color: #52666e; }
.feature-course img { width: 100%; max-height: 470px; object-fit: contain; }
.chip-list { display: flex; flex-wrap: wrap; gap: 12px; }
.chip-list span { padding: 12px 17px; border: 1px solid var(--line); border-radius: 999px; background: var(--mint-2); color: var(--green-dark); font-size: 16px; font-weight: 700; }
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.audience-grid.three { grid-template-columns: repeat(3,1fr); }
.audience-grid article { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); }
.audience-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--purple-light); color: var(--purple); font-weight: 800; }
.audience-grid h3 { margin-top: 22px; font-size: 22px; }
.audience-grid p { margin-top: 9px; color: var(--muted); font-size: 16px; }
.role-grid { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; }
.role-grid article { padding: 30px; background: #fff; }
.role-grid article + article { border-left: 1px solid var(--line); }
.role-grid b { color: var(--green-dark); font-size: 18px; }
.role-grid p { margin-top: 14px; color: var(--muted); font-size: 16px; }
.medical-note { margin-top: 24px; padding: 20px 22px; border-left: 4px solid var(--coral); border-radius: 0 14px 14px 0; background: #fff4f3; }
.medical-note b { color: #8a3431; }
.medical-note p { margin-top: 6px; color: #674a49; font-size: 16px; }
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--line); background: #fff; font-size: 14px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 7px; color: var(--muted); }
.breadcrumb a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.related-links { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 28px; }
.related-links a { display: block; min-height: 100%; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; color: var(--navy); font-weight: 750; box-shadow: var(--shadow-soft); }
.related-links a small { display: block; margin-top: 6px; color: var(--muted); font-weight: 500; }
.editorial-note { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 15px; }
.editorial-note p + p { margin-top: 8px; }
.article-directory { margin-top: 32px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.article-directory h3 { font-size: 20px; }
.article-directory ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px 28px; margin: 14px 0 0; padding-left: 22px; }
.article-directory a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.form-privacy { margin: 18px 0; padding: 14px 16px; border-left: 3px solid var(--green); background: var(--mint-2); color: var(--muted); font-size: 14px; }
.lead-copy { color: var(--muted); font-size: 20px; }
.value-grid { grid-template-columns: repeat(3,1fr); }
.value-grid.four { grid-template-columns: repeat(4,1fr); }
.partner-note { max-width: 820px; margin: 46px auto 0; padding: 28px 32px; border-radius: 20px; background: var(--mint-2); text-align: center; }
.partner-note b { color: var(--green-dark); }
.partner-note p { margin-top: 8px; color: var(--muted); }
.logo-wall { display: grid; grid-template-columns: repeat(6,1fr); gap: 18px; }
.logo-wall.accred { grid-template-columns: repeat(5,1fr); max-width: 940px; margin-inline: auto; }
.logo-wall .logo-tile { display: flex; align-items: center; justify-content: center; height: 104px; padding: 16px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); }
.logo-wall .logo-tile img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; }
.logo-wall .logo-tile img.zoomed { transform: scale(3); }
.logo-wall .logo-tile.text-logo { flex-direction: row; gap: 9px; }
@media (max-width: 1060px) { .logo-wall { grid-template-columns: repeat(4,1fr); } .logo-wall.accred { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) { .logo-wall { grid-template-columns: repeat(3,1fr); } .logo-wall.accred { grid-template-columns: repeat(2,1fr); } }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-details article { margin-top: 20px; padding: 21px 0; border-top: 1px solid var(--line); }
.contact-details article > span, .contact-details small { display: block; color: var(--muted); font-size: 14px; }
.contact-details a, .contact-details article > p { display: block; margin-top: 5px; color: var(--navy); font-size: 21px; font-weight: 700; }
.contact-details small { margin-top: 5px; }
.enquiry-form { padding: 36px; border: 1px solid var(--line); border-radius: 26px; background: var(--mint-2); }
.enquiry-form h2 { font-size: 34px; }
.enquiry-form > p { margin: 10px 0 25px; color: var(--muted); font-size: 16px; }
.enquiry-form label { display: block; margin-top: 15px; color: var(--navy); font-size: 15px; font-weight: 800; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #cedfda; border-radius: 12px; background: #fff; color: var(--ink); }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { outline: 3px solid rgba(10,167,125,.16); border-color: var(--green); }
.map-section iframe { width: 100%; height: 440px; display: block; border: 0; }
.jobs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.jobs-grid article { padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); }
.jobs-grid span { color: var(--green-dark); font-size: 13px; font-weight: 800; }
.jobs-grid h3 { margin-top: 8px; font-size: 23px; }
.jobs-grid p { margin-top: 10px; color: var(--muted); font-size: 16px; }
.jobs-grid a { display: inline-block; margin-top: 18px; color: var(--green-dark); font-size: 15px; font-weight: 800; }
.jobs-grid .job-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 18px; border-radius: 16px; background: linear-gradient(145deg,var(--mint),var(--purple-light)); color: var(--green-dark); box-shadow: 0 8px 18px rgba(10,167,125,.14); }
.jobs-grid .job-icon svg { width: 28px; height: 28px; }
.featured-story { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 30px; background: var(--mint-2); }
.featured-story img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.featured-story > div { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 50px; }
.featured-story h2 { margin-top: 12px; font-size: 44px; }
.featured-story p { margin-top: 18px; color: var(--muted); }

.closing-cta { padding: 64px 0; background: linear-gradient(110deg,var(--green-dark),var(--green) 52%,var(--purple)); color: #fff; }
.closing-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.closing-cta h2 { margin-top: 10px; color: #fff; font-size: 40px; }
.closing-cta p { margin-top: 10px; color: rgba(255,255,255,.8); }
.closing-cta .button-row { margin-top: 0; }
.site-footer { padding: 68px 0 24px; background: var(--navy-2); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 48px; }
.brand-inverse .brand-word .w1 { color: #c9a3de; }
.brand-inverse .brand-word .w2 { color: #4fe0ac; }
.brand-inverse .brand-icon { fill: #4fe0ac; }
.brand-inverse small { color: rgba(255,255,255,.6); }
.footer-brand > p { max-width: 320px; margin-top: 20px; }
.footer-grid h3 { margin-bottom: 17px; color: #fff; font-size: 17px; }
.footer-grid > div > a, .footer-grid > div > p { display: block; margin: 9px 0; font-size: 15px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.floating-chat { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px 9px 9px; border-radius: 999px; background: #22b573; color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.22); font-size: 14px; font-weight: 800; }
.floating-chat span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #22b573; font-family: 'Manrope',sans-serif; }

[data-reveal] { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .site-nav { gap: 15px; }
  .site-nav > a, .nav-group > a { font-size: 15px; }
  .nav-cta { display: none; }
  .service-grid.three { grid-template-columns: repeat(2,1fr); }
  .service-grid.four { grid-template-columns: repeat(2,1fr); }
  .reason-grid, .format-grid, .value-grid.four, .audience-grid { grid-template-columns: repeat(2,1fr); }
  .role-grid { grid-template-columns: repeat(2,1fr); }
  .role-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .role-grid article:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .topline { display: none; }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; margin-left: auto; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; width: 100vw; height: calc(100vh - 72px); display: block; padding: 24px; overflow-y: auto; background: #fff; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a, .nav-group > a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 20px; }
  .site-nav > a::after, .nav-group > a::after { display: none; }
  .subnav { position: static; width: 100%; padding: 8px 0 15px 18px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .subnav a { padding: 7px 0; }
  .hero-grid, .masthead .hero-grid, .split-layout, .split-layout.reverse, .team-band, .feature-course, .contact-layout, .featured-story { grid-template-columns: 1fr; }
  .related-links { grid-template-columns: 1fr; }
  .article-directory ul { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; padding-top: 55px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 410px; }
  .hero-visual img { max-height: 440px; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .trust-strip > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-strip > div:nth-child(4) { border-top: 1px solid var(--line); }
  .split-layout { gap: 48px; }
  .image-stack { max-width: 680px; margin-inline: auto; }
  .image-stack img { min-height: 420px; }
  .reason-grid.three { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); gap: 35px 24px; }
  .steps::before { display: none; }
  .programme-table { grid-template-columns: 1fr; }
  .programme-table > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .blog-grid, .jobs-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .closing-grid { grid-template-columns: 1fr; }
  .closing-cta .button-row { margin-top: 0; }
  .featured-story > div { padding: 36px; }
}

@media (max-width: 620px) {
  body { font-size: 18px; }
  .shell { width: min(100% - 30px,1180px); }
  .brand-word { font-size: 21px; }
  .brand small { display: none; }
  .home-hero::after, .masthead::after { bottom: -145px; }
  .home-hero { min-height: auto; }
  .hero-grid, .masthead .hero-grid { padding-block: 46px 125px; }
  .hero-copy h1, .masthead .hero-copy h1 { font-size: 41px; }
  .hero-copy > p { font-size: 18px; }
  .button-row { display: grid; grid-template-columns: 1fr; width: 100%; }
  .button { width: 100%; }
  .hero-visual { min-height: 330px; }
  .hero-visual img { width: 92%; }
  .orbit { width: 100%; }
  .float-note { display: none; }
  .media-badge { right: 4%; bottom: 0; }
  .trust-wrap { margin-top: -58px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { padding: 16px 18px; }
  .trust-strip > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: 36px; }
  .service-grid, .service-grid.three, .service-grid.four, .reason-grid, .format-grid, .value-grid, .value-grid.four, .audience-grid, .audience-grid.three, .blog-grid, .jobs-grid { grid-template-columns: 1fr; }
  .card-image img { height: 220px; }
  .image-stack img { min-height: 340px; }
  .image-caption { right: 10px; bottom: 10px; }
  .steps { grid-template-columns: 1fr; }
  .steps article { display: grid; grid-template-columns: 50px 1fr; text-align: left; column-gap: 16px; }
  .steps article > span { grid-row: 1 / 3; width: 48px; height: 48px; margin: 0; }
  .steps p { margin-top: 5px; }
  .programme-table > div { padding: 26px; }
  .feature-course { gap: 30px; padding: 28px 22px; }
  .role-grid { grid-template-columns: 1fr; }
  .role-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .contact-layout { gap: 35px; }
  .enquiry-form { padding: 25px 19px; }
  .featured-story img { min-height: 280px; }
  .featured-story > div { padding: 28px 22px; }
  .featured-story h2 { font-size: 36px; }
  .closing-cta h2 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .floating-chat b { display: none; }
  .floating-chat { right: 14px; bottom: 14px; padding: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* language toggle placement on mobile: sits left of the hamburger, no overflow */
@media (max-width: 860px) {
  .nav-wrap { gap: 10px; }
  .lang-btn { order: 2; margin-left: auto; padding: 8px 12px; }
  .menu-toggle { order: 3; flex: 0 0 auto; margin-left: 0; }
}

/* ============ Dark mode (reduces glare / brightness for easier reading) ============ */
.theme-btn { flex: 0 0 auto; width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 0; border: 1.5px solid var(--green); border-radius: 999px; background: #fff; color: var(--green-dark); font-size: 18px; line-height: 1; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.theme-btn:hover { background: var(--mint-2); transform: translateY(-1px); }
@media (max-width: 860px) { .theme-btn { order: 2; margin-left: 6px; } }

:root[data-theme="dark"] {
  color-scheme: dark;
  --navy: #eef3f5;
  --green-dark: #34e0ac;
  --mint: #12211c;
  --mint-2: #0f1a20;
  --purple-light: #241a2c;
  --ink: #dce7ea;
  --muted: #9fb3ba;
  --line: rgba(255,255,255,.14);
  --shadow: 0 24px 60px rgba(0,0,0,.55);
  --shadow-soft: 0 12px 30px rgba(0,0,0,.4);
}

[data-theme="dark"] body { background: #0e1519; }
[data-theme="dark"] .site-header { background: #0e1519; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: rgba(255,255,255,.08); }
[data-theme="dark"] .topline { background: #0e1519; }
[data-theme="dark"] .skip-link { background: #0e1519; color: var(--navy); }

[data-theme="dark"] .noscript-note,
[data-theme="dark"] .subnav,
[data-theme="dark"] .trust-strip,
[data-theme="dark"] .service-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .programme-table,
[data-theme="dark"] .format-grid article,
[data-theme="dark"] .value-grid article,
[data-theme="dark"] .audience-grid article,
[data-theme="dark"] .role-grid article,
[data-theme="dark"] .role-cloud span,
[data-theme="dark"] .breadcrumb,
[data-theme="dark"] .related-links a,
[data-theme="dark"] .article-directory,
[data-theme="dark"] .jobs-grid article,
[data-theme="dark"] .media-badge,
[data-theme="dark"] .float-note,
[data-theme="dark"] .lang-btn,
[data-theme="dark"] .theme-btn,
[data-theme="dark"] .enquiry-form input,
[data-theme="dark"] .enquiry-form select,
[data-theme="dark"] .enquiry-form textarea,
[data-theme="dark"] .site-nav {
  background: #161f25;
}
[data-theme="dark"] .theme-btn:hover { background: #1c2830; }

/* Keep header controls visually continuous with the dark header. */
[data-theme="dark"] .site-header .site-nav,
[data-theme="dark"] .site-header .lang-btn,
[data-theme="dark"] .site-header .theme-btn {
  background: #0e1519;
}

[data-theme="dark"] .enquiry-form input,
[data-theme="dark"] .enquiry-form select,
[data-theme="dark"] .enquiry-form textarea { border-color: rgba(255,255,255,.18); }

[data-theme="dark"] .home-hero::after,
[data-theme="dark"] .masthead::after { background: #0e1519; }
[data-theme="dark"] .steps article > span { border-color: #0e1519; }

[data-theme="dark"] .hero-copy > p,
[data-theme="dark"] .feature-course > div > p { color: var(--muted); }
[data-theme="dark"] .trust-strip span,
[data-theme="dark"] .audience-grid article > span { color: #c9a6dc; }

[data-theme="dark"] .medical-note { background: #241615; }
[data-theme="dark"] .medical-note b { color: #ff9c96; }
[data-theme="dark"] .medical-note p { color: #d9b9b6; }

[data-theme="dark"] .button-outline { background: rgba(255,255,255,.06); }
[data-theme="dark"] .logo-wall .logo-tile { background: #fff; }

/* blog article body (post.html) */
.post-body { max-width: 820px; margin-inline: auto; }
.post-body img { width: 100%; border-radius: 20px; margin: 0 0 28px; box-shadow: var(--shadow-soft); }
.post-body p { margin: 0 0 18px; font-size: 18px; line-height: 1.95; color: var(--ink); }
.post-body h2, .post-body h3 { margin: 32px 0 12px; color: var(--navy); }
.post-body h3 { font-size: 23px; }
.post-body ul, .post-body ol { margin: 0 0 18px; padding-left: 24px; }
.post-body li { margin: 9px 0; font-size: 18px; line-height: 1.85; }
.post-body strong { color: var(--navy); }
.post-meta { margin-top: 12px; color: var(--muted); font-size: 15px; font-weight: 700; }
