@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Sora:wght@600;700;800&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Sora', 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Outfit', 'Sora', sans-serif;
  --ink: #0d3833;
  --ink-2: #1e4d46;
  --muted: #496762;
  --teal: #0f766e;
  --teal-dark: #072b27;
  --teal-soft: #eef7f5;
  --green: #65b82a;
  --green-soft: #e2f5d5;
  --line: #cfdfdc;
  --paper: #ffffff;
  --canvas: #f7faf9;
  --shadow: 0 24px 70px rgba(16, 63, 57, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

h1, h2, h3, h4, h5, h6,
.hero h1,
.section-heading-row h2,
.course-card h3,
.catalogue-card h3,
.catalogue-heading h2,
.proof-row strong,
.learning-top h2,
.process-copy h2,
.why-copy h2,
.center-heading h2,
.student-heading h2,
.career-copy h2,
.faq-heading h2,
.enquiry-copy h2 {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: min(1340px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; background: white; padding: 12px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }

.announcement { background: var(--teal-dark); color: white; font-size: 13px; }
.announcement-inner { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 18px; position: relative; }
.announcement-inner > span:first-child { display: flex; gap: 8px; align-items: center; }
.announcement-place { color: #c7ddd9; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.2); }
.announcement a { position: absolute; right: 0; color: #dff6d1; font-weight: 650; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #8fe24e; box-shadow: 0 0 0 5px rgba(143,226,78,.12); }

.site-header { background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(207,223,220,.8); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(16px); }
.nav-row { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { display: block; width: 174px; height: auto; aspect-ratio: 2.5 / 1; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.main-nav a { font-size: 14px; font-weight: 600; color: var(--ink-2); transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.phone-link { display: flex; align-items: center; gap: 8px; }
.phone-link > span:last-child { display: flex; flex-direction: column; }
.phone-link small { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.phone-link strong { font-size: 12.5px; margin-top: 2px; }
.phone-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; font-weight: 800; }
.button { border-radius: 11px; background: var(--teal); color: white; font-weight: 750; display: inline-flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 10px 24px rgba(15,118,110,.18); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { background: #0b6962; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(15,118,110,.23); }
.button-small { padding: 12px 16px; font-size: 13px; }
.button-large { min-height: 52px; padding: 0 22px; }
.button-ghost { background: white; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.button-ghost:hover { background: var(--teal-soft); color: var(--teal-dark); box-shadow: none; }
.menu-button { display: none; border: 0; background: transparent; width: 40px; height: 40px; padding: 9px; }
.menu-button span { height: 2px; display: block; background: var(--ink); margin: 5px 0; }

.hero { position: relative; overflow: hidden; background: linear-gradient(145deg, #f8fbfa 0%, #f2f9f6 46%, #f8fbfa 100%); border-bottom: 1px solid #e4efed; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(15,118,110,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(15,118,110,.06) 1px, transparent 1px); background-size: 36px 36px; mask-image: linear-gradient(to right, black, transparent 70%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; contain: strict; }
.hero-orb-one { width: 370px; height: 370px; right: 5%; top: 80px; background: radial-gradient(circle, rgba(112,189,50,.18), rgba(112,189,50,0) 68%); }
.hero-orb-two { width: 320px; height: 320px; right: 34%; bottom: -190px; background: radial-gradient(circle, rgba(15,118,110,.12), rgba(15,118,110,0) 70%); }
.hero-grid { position: relative; min-height: 660px; padding: 78px 0 66px; display: grid; grid-template-columns: 1.03fr .97fr; gap: 60px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; border: 1px solid #c9ded9; border-radius: 999px; background: rgba(255,255,255,.72); color: var(--teal); padding: 8px 12px; font-size: 12px; font-weight: 750; letter-spacing: .02em; }
.eyebrow span { color: var(--green); font-size: 9px; }
.hero h1 { max-width: 620px; font-size: clamp(45px, 5vw, 67px); line-height: 1.02; letter-spacing: -.052em; margin: 23px 0 22px; font-weight: 720; }
.hero h1 em { font-style: normal; color: var(--teal); position: relative; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 7px; background: linear-gradient(90deg, var(--green), transparent 84%); border-radius: 999px; opacity: .7; }
.hero-support { max-width: 585px; margin: -4px 0 8px; color: var(--ink-2); font-size: 18px; line-height: 1.5; font-weight: 650; }
.hero-lead { font-size: 17px; line-height: 1.72; color: var(--muted); max-width: 585px; margin: 0; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 29px; }
.branch-choice { margin-top: 29px; padding-top: 21px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; max-width: 585px; }
.branch-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
.branch-options { display: flex; gap: 8px; }
.branch-options button { min-height: 36px; border-radius: 999px; border: 1px solid var(--line); background: white; padding: 0 13px; display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 680; cursor: pointer; }
.branch-options button span { width: 7px; height: 7px; border-radius: 50%; border: 1px solid #9bb7b2; }
.branch-options button.active { border-color: #83c65b; background: var(--green-soft); color: #2b5e24; }
.branch-options button.active span { background: var(--green); border-color: var(--green); box-shadow: 0 0 0 3px rgba(112,189,50,.15); }
.branch-note { font-size: 10.5px; color: #829592; margin-left: auto; }
.intent-summary { max-width: 585px; margin-top: 12px; padding: 11px 12px; border: 1px solid #cfe2de; border-radius: 13px; background: rgba(255,255,255,.78); display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 22px rgba(16,63,57,.05); }
.intent-mark { flex: 0 0 34px; height: 34px; border-radius: 10px; background: var(--teal); color: white; display: grid; place-items: center; font-size: 9px; font-weight: 850; }
.intent-summary p { margin: 0 auto 0 0; display: flex; flex-direction: column; gap: 2px; }.intent-summary small { font-size: 7px; letter-spacing: .12em; color: #79908c; font-weight: 800; }.intent-summary strong { font-size: 11px; }.intent-summary a { font-size: 10px; color: var(--teal); font-weight: 800; white-space: nowrap; }
.micro-proof { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 34px; height: 34px; border-radius: 50%; border: 3px solid white; margin-left: -8px; display: grid; place-items: center; font-size: 9px; font-weight: 800; color: white; background: var(--teal); }
.avatar-stack span:first-child { margin-left: 0; background: #116c86; }
.avatar-stack span:last-child { background: #4c7d2f; }
.micro-proof p { margin: 0; font-size: 11.5px; color: var(--muted); line-height: 1.45; }
.micro-proof strong { color: var(--ink); }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(112,189,50,.24), rgba(15,118,110,.03) 54%, transparent 72%); }
.learning-card { position: relative; z-index: 2; width: min(465px, 100%); background: rgba(255,255,255,.94); border: 1px solid #c8dcd8; border-radius: 26px; padding: 25px; box-shadow: var(--shadow); transform: rotate(1.2deg); }
.learning-card::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(15,118,110,.07); border-radius: 20px; pointer-events: none; }
.learning-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.tiny-label { color: var(--teal); font-size: 9px; letter-spacing: .17em; font-weight: 800; }
.learning-top h2 { font-size: 21px; margin: 6px 0 0; letter-spacing: -.025em; }
.plan-status { display: flex; align-items: center; gap: 6px; background: var(--green-soft); color: #3b6e2c; border-radius: 99px; padding: 7px 9px; font-size: 10px; font-weight: 750; }
.plan-status i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.skill-route { margin: 23px 2px 18px; position: relative; display: grid; gap: 10px; }
.route-line { position: absolute; width: 1px; height: calc(100% - 28px); left: 15px; top: 15px; background: #d4e1df; }
.route-item { position: relative; display: flex; align-items: center; gap: 11px; background: #f7faf9; border: 1px solid #e1ebe9; border-radius: 12px; padding: 9px 11px; }
.route-item > span { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; background: white; border: 1px solid #c9d9d6; display: grid; place-items: center; font-size: 10px; font-weight: 800; z-index: 1; }
.route-item div { display: flex; flex-direction: column; gap: 2px; }
.route-item small { font-size: 8px; color: #8a9c99; letter-spacing: .1em; font-weight: 700; }
.route-item strong { font-size: 11.5px; }
.route-item.done > span { background: var(--green); color: white; border-color: var(--green); }
.route-item.current { border-color: #87bcb5; background: var(--teal-soft); }
.route-item.current > span { background: var(--teal); color: white; border-color: var(--teal); }
.code-panel { background: #0d2f2c; color: #d9ece8; border-radius: 15px; padding: 13px 15px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); }
.code-head { display: flex; align-items: center; justify-content: space-between; font-size: 8px; color: #86aaa5; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
.code-head > span { display: flex; gap: 4px; }
.code-head i { width: 5px; height: 5px; border-radius: 50%; background: #e46e64; }
.code-head i:nth-child(2) { background: #dfb452; }
.code-head i:nth-child(3) { background: #6bbf68; }
.code-head b { font-weight: 650; color: #9adf6d; }
.code-panel pre { margin: 10px 0 2px; font: 10.5px/1.65 var(--font-geist-mono), monospace; }
.code-purple { color: #d6a6ff; }.code-blue { color: #79c9ff; }.code-green { color: #9adf6d; }
.plan-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 13px; }
.plan-footer > div { display: flex; align-items: center; gap: 9px; border: 1px solid #dde8e6; border-radius: 11px; padding: 9px; }
.mini-icon { width: 25px; height: 25px; border-radius: 8px; background: var(--teal-soft); display: grid; place-items: center; color: var(--teal); font-weight: 800; }
.plan-footer p { margin: 0; display: flex; flex-direction: column; }
.plan-footer small { font-size: 7.5px; color: #899995; }.plan-footer strong { font-size: 9px; margin-top: 2px; }
.floating-card { position: absolute; z-index: 3; background: white; border: 1px solid #d5e2df; border-radius: 13px; box-shadow: 0 15px 35px rgba(16,63,57,.12); padding: 10px 13px; display: flex; align-items: center; gap: 9px; }
.floating-card > span { width: 27px; height: 27px; border-radius: 8px; background: var(--green-soft); color: #4f8c2d; display: grid; place-items: center; font-size: 11px; font-weight: 900; }
.floating-card p { margin: 0; display: flex; flex-direction: column; }.floating-card small { font-size: 7px; color: #8b9b98; text-transform: uppercase; letter-spacing: .08em; }.floating-card strong { font-size: 9.5px; margin-top: 2px; }
.floating-one { left: -3px; top: 122px; animation: float 5s ease-in-out infinite; }.floating-two { right: -4px; bottom: 82px; animation: float 5s 1s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-8px) } }

.proof-strip { background: linear-gradient(180deg, #ffffff 0%, #f7faf9 100%); border-bottom: 1px solid #dce8e5; padding: 10px 0; }
.proof-row { min-height: 88px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 14px; }
.proof-row > div { min-height: 60px; display: flex; align-items: center; gap: 12px; padding: 10px 16px; background: rgba(255, 255, 255, 0.85); border: 1px solid #e2ebe8; border-radius: 14px; box-shadow: 0 4px 14px -4px rgba(15, 76, 68, 0.04); transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1); }
.proof-row > div:hover { background: #ffffff; border-color: #a3d4cb; transform: translateY(-2px); box-shadow: 0 8px 20px -4px rgba(15, 76, 68, 0.08); }
.proof-icon { flex: 0 0 36px; width: 36px; height: 36px; border-radius: 11px; background: linear-gradient(135deg, #eef7f5 0%, #dcf0ec 100%); color: var(--teal); display: grid; place-items: center; font-size: 11px; font-weight: 800; border: 1px solid #c9e4df; font-family: var(--font-heading); }
.proof-row p { margin: 0; display: flex; flex-direction: column; gap: 2px; }
.proof-row strong { font-size: 13px; font-weight: 700; color: #0d3833; font-family: var(--font-heading); letter-spacing: -0.01em; }
.proof-row small { color: var(--muted); font-size: 10.5px; font-weight: 500; line-height: 1.35; }

.goal-section { padding: 80px 0 70px; background: white; }
.section-kicker { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: #f0fdfa; border: 1px solid #ccfbf1; font-size: 10.5px; letter-spacing: .15em; font-weight: 800; color: var(--teal); text-transform: uppercase; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; margin: 12px 0 28px; gap: 24px; }
.section-heading-row h2 { font-size: clamp(32px, 4.2vw, 45px); letter-spacing: -.038em; margin: 0 0 8px; font-weight: 750; color: #0d3833; }
.section-heading-row p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.section-heading-row > a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: #f0fdfa; border: 1px solid #ccfbf1; font-size: 13px; font-weight: 750; color: var(--teal); white-space: nowrap; transition: all 0.2s ease; }
.section-heading-row > a:hover { background: var(--teal); color: white; border-color: var(--teal); transform: translateX(3px); box-shadow: 0 6px 18px rgba(15, 118, 110, 0.2); }
.goal-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.goal-tabs button { min-height: 48px; border-radius: 14px; border: 1.5px solid #dce8e5; background: #f8faf9; display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; text-align: left; font-size: 13px; font-weight: 700; color: #1e4d46; cursor: pointer; transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 2px 8px rgba(15, 76, 68, 0.03); }
.goal-tabs button > span { flex: 0 0 auto; min-width: 24px; height: 24px; padding: 0 7px; border-radius: 999px; background: #e6f3f0; color: var(--teal); display: inline-grid; place-items: center; font-size: 11px; font-weight: 800; transition: all 0.2s ease; }
.goal-tabs button:hover { border-color: #92cdc3; background: #ffffff; color: var(--teal); transform: translateY(-2px); box-shadow: 0 8px 20px -4px rgba(15, 76, 68, 0.1); }
.goal-tabs button.active { border-color: var(--teal); background: linear-gradient(135deg, #0f766e 0%, #0b5c56 100%); color: #ffffff; box-shadow: 0 8px 22px rgba(15, 118, 110, 0.28); transform: translateY(-1px); }
.goal-tabs button.active > span { background: rgba(255, 255, 255, 0.22); color: #ffffff; backdrop-filter: blur(4px); }
.recommendation-panel { scroll-margin-top: 105px; margin-top: 25px; border-radius: 22px; padding: 25px; color: white; background: linear-gradient(135deg, #0b3b36 0%, #0d5c53 100%); display: grid; grid-template-columns: 1.55fr .65fr; gap: 24px; align-items: stretch; position: relative; overflow: hidden; box-shadow: 0 18px 45px rgba(11,59,54,.14); }
.recommendation-panel::before { content: ""; position: absolute; width: 270px; height: 270px; border-radius: 50%; background: rgba(112,189,50,.14); right: 15%; top: -210px; pointer-events: none; }
.recommendation-main, .local-action-card { position: relative; z-index: 1; }.recommendation-label { color: #a9df82; font-size: 8px; letter-spacing: .16em; font-weight: 850; }.recommendation-main > h3 { margin: 7px 0 5px; font-size: 24px; letter-spacing: -.025em; }.recommendation-main > p { margin: 0; color: #b9d0cc; font-size: 11px; line-height: 1.5; }
.recommendation-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 18px; }.recommendation-card { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: center; padding: 13px; border-radius: 15px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.08); }.recommendation-card h4 { margin: 0; font-size: 13px; }.recommendation-card small { display: block; margin-top: 4px; color: #aac5c0; font-size: 8px; }.recommendation-card .course-mark { width: 38px; height: 38px; border-radius: 11px; }.recommendation-actions { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }.recommendation-actions a { min-height: 33px; border-radius: 9px; display: grid; place-items: center; font-size: 9px; font-weight: 800; border: 1px solid rgba(255,255,255,.17); }.recommendation-actions a:first-child { background: white; color: var(--teal-dark); }.recommendation-actions a:last-child { background: var(--green); border-color: var(--green); color: #143b1a; }
.local-action-card { background: white; color: var(--ink); border-radius: 17px; padding: 18px; display: flex; flex-direction: column; }.local-action-card > span { color: var(--teal); font-size: 7px; letter-spacing: .15em; font-weight: 850; }.local-action-card h3 { font-size: 21px; margin: 5px 0 8px; }.local-action-card > p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.55; }.local-action-card > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: auto; padding-top: 14px; }.local-action-card > div a { border: 1px solid var(--line); border-radius: 8px; min-height: 32px; display: grid; place-items: center; color: var(--teal); font-size: 8px; font-weight: 800; }.local-action-card > div a:nth-child(2) { background: var(--teal-soft); }.local-action-card > small { color: #7a908c; font-size: 7.5px; line-height: 1.45; margin-top: 9px; }
.course-intro { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin: 48px 0 25px; padding-top: 48px; border-top: 1px solid #dfebe8; }
.course-intro > div span { font-size: 9px; letter-spacing: .17em; font-weight: 800; color: var(--teal); }
.course-intro h2 { margin: 7px 0 0; font-size: clamp(27px, 3vw, 37px); letter-spacing: -.035em; }
.course-intro > p { width: min(460px, 48%); color: var(--muted); line-height: 1.65; font-size: 13px; margin: 0; }
.course-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.course-card { min-width: 0; border: 1px solid #dbe7e4; border-radius: 19px; background: #fff; padding: 20px; box-shadow: 0 9px 28px rgba(16,63,57,.05); display: flex; flex-direction: column; transition: .22s ease; position: relative; overflow: hidden; }
.course-card::before { content: ""; position: absolute; height: 3px; left: 20px; right: 20px; top: 0; background: var(--teal); opacity: 0; transform: scaleX(.4); transition: .22s ease; }
.course-card:hover, .course-card.is-relevant { border-color: #a8cdc8; transform: translateY(-3px); box-shadow: 0 16px 38px rgba(16,63,57,.09); }
.course-card.is-relevant::before { opacity: 1; transform: scaleX(1); }
.course-topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.course-topline small { color: #405f5a; letter-spacing: .09em; font-size: 7px; font-weight: 800; text-align: right; }
.course-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: white; background: var(--teal); font-size: 11px; font-weight: 850; box-shadow: 0 8px 18px rgba(15,118,110,.13); }
.course-mark.blue { background: #1776a2; }.course-mark.gold { background: #79500d; }.course-mark.purple { background: #6953a5; }.course-mark.pink { background: #a93e76; }.course-mark.red { background: #b8554b; }.course-mark.green { background: #4f822b; }.course-mark.orange { background: #854212; }
.course-card h3 { margin: 18px 0 8px; font-size: 20px; letter-spacing: -.025em; }
.course-card > p { color: var(--muted); font-size: 12px; line-height: 1.58; margin: 0; min-height: 58px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 17px 0 20px; }
.skill-tags span { border: 1px solid #dbe7e4; border-radius: 999px; padding: 5px 7px; font-size: 8px; color: #55706c; background: #fafcfb; }
.course-links { margin: auto -20px -20px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #e2ebe9; }
.course-links a { display: flex; flex-direction: column; gap: 3px; padding: 13px 14px; border-right: 1px solid #e2ebe9; background: #fbfdfc; }
.course-links a:last-child { border-right: 0; }.course-links a:hover, .course-links a.preferred { background: var(--teal-soft); }
.course-links span { font-size: 8px; color: #405f5a; }.course-links b { font-size: 9px; color: var(--teal); }
.catalogue-section { scroll-margin-top: 105px; margin-top: 54px; border: 1px solid #d0e3de; border-radius: 28px; background: linear-gradient(145deg, #ffffff 0%, #f4f9f8 100%); padding: 36px; box-shadow: 0 24px 60px -10px rgba(15, 76, 68, 0.08); }
.catalogue-heading { display: grid; grid-template-columns: 1fr minmax(280px, 390px); gap: 35px; align-items: end; margin-bottom: 24px; }
.catalogue-heading > div > span { color: #0f766e; font-size: 11px; letter-spacing: 0.15em; font-weight: 850; text-transform: uppercase; }
.catalogue-heading h2 { margin: 8px 0 7px; font-size: clamp(27px, 3vw, 37px); letter-spacing: -0.035em; color: #0d3833; }
.catalogue-heading p { margin: 0; color: #496762; font-size: 14px; line-height: 1.6; max-width: 650px; }
.course-search { height: 52px; display: flex; align-items: center; gap: 12px; padding: 0 16px; border: 1.5px solid #c2dbd6; border-radius: 16px; background: #ffffff; box-shadow: 0 8px 24px -4px rgba(15, 76, 68, 0.06); transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.course-search:focus-within { border-color: #0f766e; box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15), 0 12px 28px -4px rgba(15, 76, 68, 0.1); }
.course-search input { min-width: 0; width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 14px; font-weight: 500; }
.course-search input::placeholder { color: #8ca09c; }
.catalogue-results { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.catalogue-card { min-width: 0; display: flex; flex-direction: column; border: 1px solid #e0ebe8; border-radius: 20px; background: #ffffff; padding: 22px; position: relative; overflow: hidden; transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease; }
.catalogue-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3.5px; background: linear-gradient(90deg, #0f766e, #10b981); opacity: 0; transition: opacity 0.25s ease; }
.catalogue-card:hover { border-color: #0f766e; box-shadow: 0 18px 40px -8px rgba(15, 76, 68, 0.14); transform: translateY(-4px); }
.catalogue-card:hover::before { opacity: 1; }
.catalogue-card-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.catalogue-card .course-mark { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #0f766e 0%, #115e59 100%); color: #ffffff; display: grid; place-items: center; font-size: 13px; font-weight: 800; letter-spacing: 0.05em; box-shadow: 0 6px 14px -2px rgba(15, 118, 110, 0.3); flex-shrink: 0; }
.category-badge { background: #f0fdfa; color: #0f766e; border: 1px solid #ccfbf1; font-size: 10.5px; font-weight: 750; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; display: inline-block; }
.catalogue-card-body { flex: 1; display: flex; flex-direction: column; }
.catalogue-card h3 { margin: 0 0 12px; font-size: 17px; font-weight: 750; color: #0d3833; line-height: 1.35; letter-spacing: -0.015em; }
.skill-chips-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; margin-bottom: 18px; }
.skill-chip { background: #f2f7f6; color: #385e58; border: 1px solid #e1ecea; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 7px; }
.catalogue-card-footer { border-top: 1px solid #edf4f2; margin-top: auto; padding-top: 16px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.branch-routes { display: flex; flex-wrap: wrap; gap: 8px; }
.catalogue-route { display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: 10px; background: #f0fdfa; color: #0f766e; border: 1px solid #ccfbf1; font-size: 12px; font-weight: 750; text-decoration: none; transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); }
.catalogue-route:hover { background: #0f766e; color: #ffffff; border-color: #0f766e; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25); }
.catalogue-route svg { transition: transform 0.2s ease; }
.catalogue-route:hover svg { transform: translateX(3px); }
.catalogue-enquire { display: inline-flex; align-items: center; gap: 5px; color: #527570; font-size: 12px; font-weight: 650; text-decoration: none; padding: 6px 10px; border-radius: 8px; transition: all 0.2s ease; }
.catalogue-enquire:hover { color: #0f766e; background: rgba(15, 118, 110, 0.06); }
.catalogue-empty { grid-column: 1 / -1; padding: 34px; border: 1px dashed #bdd3cf; border-radius: 15px; text-align: center; background: white; }.catalogue-empty strong { font-size: 14px; }.catalogue-empty p { color: var(--muted); font-size: 10px; }.catalogue-empty a { color: var(--teal); font-size: 10px; font-weight: 800; }.show-all-courses { min-height: 43px; border: 1px solid #bfd7d2; background: white; color: var(--teal); border-radius: 11px; padding: 0 17px; margin: 18px auto 0; display: flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 800; cursor: pointer; }.show-all-courses:hover { background: var(--teal-soft); }
.course-help { margin-top: 22px; padding: 19px 22px; background: var(--teal-soft); border: 1px solid #cbe1dd; border-radius: 17px; display: flex; align-items: center; gap: 15px; }
.help-icon { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center; background: var(--teal); color: white; font-weight: 850; }
.course-help > div:nth-child(2) { margin-right: auto; }.course-help strong { font-size: 13px; }.course-help p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.course-help .button { padding: 12px 16px; font-size: 11px; }

.process-section { background: var(--teal-dark); color: white; padding: 90px 0; position: relative; overflow: hidden; }
.process-section::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(112,189,50,.12); filter: blur(80px); left: -160px; top: -180px; }
.process-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 82px; align-items: center; position: relative; }
.section-kicker.light { color: #a9df82; }.process-copy h2 { margin: 13px 0 17px; font-size: clamp(34px, 4vw, 48px); letter-spacing: -.04em; line-height: 1.08; }
.process-copy > p { color: #b9d0cc; font-size: 14px; line-height: 1.7; margin: 0 0 24px; }
.text-link { color: var(--teal); font-size: 12px; font-weight: 800; display: inline-flex; gap: 8px; align-items: center; }.text-link.light { color: #b6ea91; }
.process-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; counter-reset: steps; }
.process-list li { min-height: 165px; padding: 20px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); border-radius: 17px; display: flex; gap: 15px; align-items: flex-start; }
.process-list li:first-child { background: white; color: var(--ink); }.process-list > li > span { flex: 0 0 35px; width: 35px; height: 35px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #b8e99a; font-size: 9px; font-weight: 850; }
.process-list li:first-child > span { background: var(--green-soft); color: #4d812f; }.process-list h3 { font-size: 15px; margin: 3px 0 8px; }.process-list p { font-size: 11px; line-height: 1.58; color: #b8cfcb; margin: 0; }.process-list li:first-child p { color: var(--muted); }

.why-section { padding: 105px 0; background: #fbfdfc; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.why-visual { background: white; border: 1px solid #d2e1de; border-radius: 25px; padding: 24px; box-shadow: var(--shadow); position: relative; }
.why-visual::after { content: ""; position: absolute; width: 100px; height: 100px; background: var(--green-soft); border-radius: 24px; right: -25px; bottom: -25px; z-index: -1; transform: rotate(9deg); }
.dashboard-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 17px; border-bottom: 1px solid #e1ebe9; }
.dashboard-head span { font-size: 8px; font-weight: 850; letter-spacing: .14em; color: var(--teal); }.dashboard-head b { color: #4e7a34; font-size: 8px; background: var(--green-soft); border-radius: 999px; padding: 7px 9px; }
.dashboard-score { display: flex; align-items: center; justify-content: space-between; gap: 25px; background: var(--teal-dark); color: white; border-radius: 17px; padding: 20px; margin: 18px 0; }
.dashboard-score div { display: flex; flex-direction: column; }.dashboard-score strong { font-size: 20px; }.dashboard-score small { color: #adcbc6; margin-top: 5px; font-size: 9px; }.dashboard-score > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 18px; font-weight: 900; }
.dashboard-bars { display: grid; gap: 17px; padding: 8px 2px; }.dashboard-bars > div { display: grid; gap: 7px; }.dashboard-bars span { display: flex; justify-content: space-between; font-size: 9px; }.dashboard-bars span b { font-size: 9px; }.dashboard-bars span i { font-style: normal; color: var(--muted); }.dashboard-bars em { height: 7px; border-radius: 99px; background: #edf3f1; overflow: hidden; }.dashboard-bars u { display: block; height: 100%; background: linear-gradient(90deg, var(--teal), var(--green)); border-radius: 99px; }
.dashboard-task { margin-top: 21px; border: 1px solid #dbe8e5; border-radius: 14px; padding: 15px; background: #f8fbfa; display: flex; flex-direction: column; }.dashboard-task span { font-size: 7px; letter-spacing: .14em; color: var(--teal); font-weight: 850; }.dashboard-task strong { margin-top: 7px; font-size: 12px; }.dashboard-task small { margin-top: 4px; color: var(--muted); font-size: 9px; }
.why-copy h2 { font-size: clamp(35px, 4vw, 48px); line-height: 1.07; letter-spacing: -.043em; margin: 13px 0 18px; }.why-lead { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0 0 25px; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }.why-list > div { display: flex; gap: 11px; }.why-list > div > span { flex: 0 0 31px; height: 31px; border-radius: 10px; background: var(--teal-soft); display: grid; place-items: center; color: var(--teal); font-size: 8px; font-weight: 850; }.why-list p { margin: 1px 0 0; display: flex; flex-direction: column; }.why-list strong { font-size: 12px; }.why-list small { font-size: 9.5px; color: var(--muted); line-height: 1.5; margin-top: 5px; }

.branch-section { padding: 96px 0; background: white; }.center-heading { max-width: 650px; text-align: center; margin: 0 auto 42px; }.center-heading h2 { margin: 10px 0; font-size: clamp(34px, 4vw, 47px); letter-spacing: -.04em; }.center-heading p { margin: 0; color: var(--muted); font-size: 14px; }
.branch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }.branch-card { border: 1px solid #d8e6e3; border-radius: 22px; overflow: hidden; background: #fff; box-shadow: 0 12px 40px rgba(16,63,57,.06); transition: .2s ease; }.branch-card.selected { border-color: #80bdb5; box-shadow: 0 18px 48px rgba(15,118,110,.12); }
.branch-facts { display: grid; gap: 6px; margin: 14px 0 16px; }
.branch-facts span { display: flex; align-items: flex-start; gap: 7px; color: #536d69; font-size: 11px; line-height: 1.45; }
.branch-facts span::before { content: "✓"; flex: 0 0 17px; width: 17px; height: 17px; display: grid; place-items: center; margin-top: 1px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); font-size: 9px; font-weight: 850; }
.branch-map { height: 155px; background: #eaf3f0; position: relative; overflow: hidden; display: grid; place-items: center; }.branch-map::before { content: ""; position: absolute; inset: 0; opacity: .6; background-image: linear-gradient(37deg, transparent 46%, white 47%, white 52%, transparent 53%), linear-gradient(150deg, transparent 43%, #d6e5e1 44%, #d6e5e1 48%, transparent 49%); background-size: 110px 90px, 140px 95px; }.branch-map .road { position: absolute; height: 8px; width: 120%; background: rgba(255,255,255,.75); transform: rotate(-9deg); }.branch-map .road-two { transform: rotate(38deg); }.branch-map .road-three { transform: rotate(90deg); width: 70%; }.branch-map i { position: relative; width: 48px; height: 48px; background: var(--teal); color: white; border-radius: 50% 50% 50% 10%; transform: rotate(-45deg); display: grid; place-items: center; font-size: 20px; font-style: normal; box-shadow: 0 12px 24px rgba(15,118,110,.25); }.branch-map i::first-letter { transform: rotate(45deg); }.branch-map b { position: absolute; bottom: 14px; background: white; border-radius: 999px; padding: 7px 11px; font-size: 9px; box-shadow: 0 7px 15px rgba(16,63,57,.1); }
.branch-body { padding: 24px; }.branch-title { display: flex; justify-content: space-between; gap: 20px; align-items: center; }.branch-title small { font-size: 7px; color: var(--teal); letter-spacing: .15em; font-weight: 850; }.branch-title h3 { margin: 4px 0 0; font-size: 25px; }.branch-title > span { font-size: 8px; color: #315a1f; background: var(--green-soft); padding: 7px 9px; border-radius: 999px; font-weight: 750; }.branch-body > p { color: var(--muted); font-size: 11px; line-height: 1.6; min-height: 54px; margin: 15px 0 9px; }.branch-phone { color: var(--teal); font-weight: 800; font-size: 13px; }.branch-actions { display: flex; gap: 9px; margin-top: 18px; }.branch-actions .button { flex: 1; padding: 13px; font-size: 11px; box-shadow: none; }.icon-button { flex: 0 0 42px; width: 42px; border: 1px solid var(--line); border-radius: 11px; display: grid; place-items: center; font-weight: 800; }.choose-centre { width: 100%; border: 0; border-top: 1px solid #e1ebe9; background: transparent; color: var(--teal); margin-top: 17px; padding: 14px 0 0; font-size: 9.5px; font-weight: 750; cursor: pointer; }

.student-section { background: #f7faf9; border-top: 1px solid #e1ebe9; padding: 90px 0; }.student-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 32px; }.student-heading h2 { margin: 10px 0 0; font-size: clamp(32px, 3.7vw, 43px); letter-spacing: -.04em; }.student-heading-aside { max-width: 390px; }.student-heading-aside p { color: var(--muted); font-size: 11px; line-height: 1.6; margin: 0 0 9px; }.student-heading-aside a { color: var(--teal); font-size: 10px; font-weight: 800; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }.review-grid article { background: white; border: 1px solid #dce8e5; border-radius: 18px; padding: 21px; box-shadow: 0 9px 28px rgba(16,63,57,.04); }.review-top { display: flex; align-items: center; gap: 11px; }.review-top > span { width: 38px; height: 38px; border-radius: 50%; background: var(--teal-dark); color: white; display: grid; place-items: center; font-size: 9px; font-weight: 850; }.review-top div { display: flex; flex-direction: column; }.review-top strong { font-size: 11px; }.review-top small { margin-top: 3px; font-size: 8px; color: var(--muted); }.review-grid article > p { color: var(--muted); font-size: 11.5px; line-height: 1.68; min-height: 78px; margin: 20px 0 17px; }.review-grid article > b { display: inline-flex; background: var(--teal-soft); color: var(--teal); border-radius: 999px; padding: 6px 8px; font-size: 8px; }

.career-section { padding: 90px 0; background: white; }.career-card { border-radius: 25px; background: linear-gradient(135deg, #0b3b36 0%, #0c524b 100%); color: white; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; padding: 58px 66px; overflow: hidden; position: relative; }.career-card::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(112,189,50,.16); right: -120px; top: -140px; }.career-copy h2 { font-size: clamp(34px, 4vw, 48px); line-height: 1.08; letter-spacing: -.04em; max-width: 650px; margin: 13px 0 16px; }.career-copy > p { color: #bdd3cf; font-size: 13px; line-height: 1.65; max-width: 670px; }.career-points { display: flex; flex-wrap: wrap; gap: 8px; margin: 23px 0; }.career-points span { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.07); padding: 8px 10px; border-radius: 999px; font-size: 9px; }.career-copy .disclaimer { font-size: 8.5px; color: #95b5af; margin-bottom: 0; }
.career-visual { position: relative; min-height: 285px; display: grid; place-items: center; }.resume-card { width: 250px; border-radius: 16px; padding: 22px; background: white; color: var(--ink); transform: rotate(3deg); box-shadow: 0 24px 50px rgba(0,0,0,.22); }.resume-card span { font-size: 7px; color: var(--teal); letter-spacing: .14em; font-weight: 850; }.resume-card h3 { font-size: 17px; margin: 8px 0 25px; }.resume-card > div { height: 7px; border-radius: 99px; background: #e4efed; margin-top: 10px; }.resume-card > div:nth-of-type(2) { width: 85%; }.resume-card > div.short { width: 58%; }.resume-card > b { display: inline-flex; margin-top: 26px; border-radius: 999px; background: var(--green-soft); color: #4d7a32; padding: 7px 9px; font-size: 7px; }.career-badge { position: absolute; left: 5px; bottom: 36px; background: var(--green); width: 91px; height: 91px; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 17px; font-weight: 850; box-shadow: 0 14px 30px rgba(0,0,0,.18); transform: rotate(-7deg); }.career-badge span { font-size: 8px; line-height: 1.25; }

.faq-section { background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%); padding: 96px 0; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 64px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading h2 { font-size: clamp(32px, 4vw, 45px); line-height: 1.1; letter-spacing: -.035em; margin: 14px 0 16px; color: #0f172a; font-weight: 800; }
.faq-heading p { color: #64748b; font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.faq-heading .text-link { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 99px; background: linear-gradient(135deg, #0ea5e9, #2563eb); color: #ffffff !important; font-weight: 800; font-size: 13.5px; text-decoration: none !important; box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35); transition: all 0.2s ease; }
.faq-heading .text-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14, 165, 233, 0.45); }
.faq-list { display: grid; gap: 14px; border-top: 0; }
.faq-list article { border: 1px solid #e2e8f0; border-radius: 16px; background: #ffffff; padding: 20px 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); transition: all 0.22s ease; }
.faq-list article:hover { border-color: rgba(14, 165, 233, 0.4); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(14, 165, 233, 0.1); }
.faq-list article.open, .faq-list article details[open] { border-color: #0ea5e9; box-shadow: 0 10px 28px rgba(14, 165, 233, 0.12); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary { list-style: none; margin: 0; padding: 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 16.5px; font-weight: 800; color: #0f172a; cursor: pointer; user-select: none; }
.faq-list summary i { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; background: rgba(14, 165, 233, 0.1); border: 1px solid rgba(14, 165, 233, 0.25); color: #0284c7; display: grid; place-items: center; font-style: normal; font-size: 18px; font-weight: 800; transition: all 0.2s ease; }
.faq-list details[open] summary i { background: #0ea5e9; color: #ffffff; border-color: #0ea5e9; box-shadow: 0 4px 12px rgba(14, 165, 233, 0.35); }
.faq-list article p { color: #475569; font-size: 14.5px; line-height: 1.65; margin: 14px 0 4px; }

.enquiry-section {
  background: linear-gradient(135deg, #052622 0%, #083b35 50%, #031c19 100%);
  color: white;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.enquiry-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 189, 50, 0.18), transparent 70%);
  left: -200px;
  bottom: -250px;
  pointer-events: none;
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 68px;
  align-items: center;
  position: relative;
}
.section-kicker.light {
  background: rgba(112, 189, 50, 0.15);
  color: #a4f0c4;
  border-color: rgba(112, 189, 50, 0.3);
}
.enquiry-copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-family: var(--font-heading);
  color: #ffffff;
}
.enquiry-copy > p {
  color: #b3d1cb;
  line-height: 1.68;
  font-size: 16px;
}
.enquiry-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.enquiry-contact a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.22s ease;
  backdrop-filter: blur(8px);
}
.enquiry-contact a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(125, 224, 211, 0.4);
  transform: translateY(-2px);
}
.enquiry-contact span {
  font-size: 11px;
  color: #9ebdb7;
}
.enquiry-contact strong {
  font-size: 13.5px;
  margin-top: 4px;
  color: #7de0d3;
  font-family: var(--font-heading);
}

.form-card {
  background: #ffffff;
  color: var(--ink);
  border-radius: 26px;
  padding: 34px 32px;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #70bd32);
}
.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf4f2;
}
.form-heading small {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
}
.form-heading h3 {
  font-size: 23px;
  margin: 6px 0 0;
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
  color: #0d3833;
}
.form-heading > span {
  background: #e6f5f2;
  color: var(--teal);
  border: 1px solid #cce8e2;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}
.form-card form > label, .form-row label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #234f4a;
  margin-top: 16px;
}
.form-card input, .form-card select {
  width: 100%;
  min-height: 50px;
  border: 1.5px solid #cfdfdc;
  border-radius: 12px;
  background: #f8faf9;
  padding: 0 14px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  outline: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-card input:focus, .form-card select:focus {
  border-color: var(--teal);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.14);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-card .consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  line-height: 1.5;
  color: #4f6662;
  font-size: 12.5px;
  margin-top: 18px;
}
.form-card .consent input {
  flex: 0 0 17px;
  width: 17px;
  min-height: 17px;
  margin-top: 2px;
  accent-color: var(--teal);
  cursor: pointer;
}
.form-submit {
  width: 100%;
  border: 0;
  min-height: 52px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f766e 0%, #0b5c56 100%);
  color: white;
  font-size: 15px;
  font-weight: 750;
  font-family: var(--font-heading);
  box-shadow: 0 10px 26px rgba(15, 118, 110, 0.3);
  transition: all 0.22s ease;
}
.form-submit:hover {
  background: linear-gradient(135deg, #11877e 0%, #0d6c65 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 118, 110, 0.38);
}
.privacy-note {
  text-align: center;
  color: #718783;
  font-size: 11px;
  margin: 12px 0 0;
}
.field-help { color: #718783; font-size: 11px; font-weight: 500; line-height: 1.45; }

.site-footer, footer {
  background: linear-gradient(180deg, #052622 0%, #031c19 100%);
  color: #dcebe8;
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 189, 50, 0.3), rgba(15, 118, 110, 0.4), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 52px;
  align-items: start;
}

.footer-logo-wrap {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.22s ease;
}
.footer-logo-wrap:hover {
  transform: translateY(-2px);
}
.footer-logo {
  display: block;
  width: 176px;
  height: auto;
}

.footer-brand > p {
  color: #a1c4be;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.65;
  margin: 18px 0 12px;
  font-weight: 450;
}
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7de0d3 !important;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-email:hover {
  color: #ffffff !important;
  transform: translateX(3px);
}

/* Headings in Footer */
.footer-top h3,
.official-social strong,
.official-gbp strong {
  margin: 0 0 16px;
  color: #7de0d3;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-top > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-top > div:not(:first-child) a {
  color: #adccc6;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-top > div:not(:first-child) a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Official Social Pill Badges */
.official-social, .official-gbp {
  margin-top: 22px;
}
.official-social-list, .official-gbp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.official-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d4ece8;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.official-gbp-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d4ece8;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.official-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.official-social-link:hover, .official-gbp-list a:hover {
  background: var(--teal);
  border-color: #14b8a6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.35);
}

/* Bottom Footer Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8bb2aa;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 56px;
  padding-top: 24px;
  font-size: 13px;
}
.footer-bottom span {
  font-weight: 500;
}
.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-bottom div a {
  color: #92b8b0;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-bottom div a:hover {
  color: #7de0d3;
  text-decoration: underline;
}

/* Sticky Branch Strip */
.branch-contact-strip {
  background: linear-gradient(90deg, #052622 0%, #0b453e 100%);
  color: #fff;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.branch-contact-strip .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.branch-contact-strip strong {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #7de0d3;
  letter-spacing: 0.02em;
}
.branch-contact-strip .shell > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.branch-contact-strip .shell > div span {
  font-weight: 700;
  font-size: 13px;
}
.branch-contact-strip a {
  background: #ffffff;
  color: var(--teal);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 11px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.branch-contact-strip a:hover {
  background: #7de0d3;
  color: #031c19;
}
.mobile-action-bar { display: none; }

@media (max-width: 1080px) {
  .main-nav { gap: 16px; }.main-nav a { font-size: 12px; }.phone-link { display: none; }
  .hero-grid { gap: 30px; }.floating-one { left: -10px; }.floating-two { right: -10px; }
  .goal-tabs button { padding: 8px 14px; font-size: 12.5px; }.course-grid { grid-template-columns: repeat(3, 1fr); }.catalogue-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }.why-grid { gap: 55px; }.career-card { padding: 50px; gap: 35px; }.enquiry-grid { gap: 48px; }.footer-top { gap: 35px; }
}
@media (max-width: 860px) {
  .announcement-place { display: none; }.announcement a { position: static; margin-left: auto; }
  .nav-row { height: 70px; }.main-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; padding: 20px; background: white; border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; }.main-nav.is-open { display: flex; }
  .menu-button { display: block; }.button-small { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 58px; }.hero-copy { text-align: left; }.hero-visual { min-height: 500px; }
  .proof-row { grid-template-columns: 1fr 1fr; gap: 10px; }.proof-row > div { border: 1px solid #e2ebe8; padding: 10px 14px; }
  .recommendation-panel { grid-template-columns: 1fr; }.local-action-card > div { margin-top: 16px; }
  .course-grid { grid-template-columns: 1fr 1fr; }.course-intro { align-items: flex-start; flex-direction: column; gap: 14px; }.course-intro > p { width: 100%; }.catalogue-heading { grid-template-columns: 1fr; }.catalogue-results { grid-template-columns: 1fr 1fr; }
  .process-grid, .why-grid, .faq-grid, .enquiry-grid { grid-template-columns: 1fr; gap: 48px; }.faq-heading { position: static; }.why-visual { order: 2; max-width: 590px; margin: auto; width: 100%; }.why-copy { order: 1; }.career-card { grid-template-columns: 1fr; }.career-visual { display: none; }.student-heading { align-items: flex-start; flex-direction: column; gap: 15px; }.review-grid { grid-template-columns: 1fr; }.review-grid article > p { min-height: auto; }.footer-top { grid-template-columns: 1.5fr 1fr 1fr; }.footer-top > div:last-child { grid-column: 2; }
}
@media (max-width: 560px) {
  .shell { width: min(100% - 24px, 1340px); }
  .announcement { font-size: 10px; }.announcement a { font-size: 10px; }
  .brand-logo { width: 150px; }.footer-logo { width: 176px; }
  .hero-grid { min-height: auto; padding: 45px 0 40px; }.hero h1 { font-size: 43px; }.hero-lead { font-size: 15.5px; line-height: 1.6; }
  .hero-actions { flex-direction: column; align-items: stretch; }.button-large { width: 100%; }.branch-choice { align-items: flex-start; flex-wrap: wrap; }.branch-options { order: 3; width: 100%; }.branch-options button { flex: 1; justify-content: center; }.branch-note { margin-left: auto; }.intent-summary { align-items: flex-start; flex-wrap: wrap; }.intent-summary a { width: 100%; padding-left: 44px; }
  .hero-visual { min-height: 435px; }.learning-card { padding: 18px; transform: none; }.learning-top h2 { font-size: 18px; }.floating-card { display: none; }.plan-footer { grid-template-columns: 1fr; }.plan-footer > div:first-child { display: none; }
  .proof-row { grid-template-columns: 1fr 1fr; }.proof-row > div { gap: 8px; }.proof-icon { width: 30px; height: 30px; }.proof-row strong { font-size: 11px; }.proof-row small { display: none; }
  .goal-section { padding: 62px 0 54px; }.section-heading-row { align-items: flex-start; flex-direction: column; }.goal-tabs button { min-height: 44px; width: 100%; justify-content: space-between; }.recommendation-panel { padding: 18px; }.recommendation-grid { grid-template-columns: 1fr; }.local-action-card > div { grid-template-columns: 1fr 1fr 1fr; }
  .course-intro { margin-top: 45px; padding-top: 42px; }.course-grid { grid-template-columns: 1fr; }.course-card > p { min-height: auto; }.catalogue-section { margin-top: 42px; padding: 18px 14px; border-radius: 19px; }.catalogue-results { grid-template-columns: 1fr; }.course-help { align-items: flex-start; flex-wrap: wrap; }.course-help .button { width: 100%; }.process-section, .why-section, .branch-section, .student-section, .career-section, .faq-section, .enquiry-section { padding: 68px 0; }.process-list { grid-template-columns: 1fr; }.process-list li { min-height: auto; }.why-list { grid-template-columns: 1fr; }.why-visual { padding: 16px; }.dashboard-score strong { font-size: 16px; }.branch-grid { grid-template-columns: 1fr; }.branch-body > p { min-height: auto; }.career-card { width: calc(100% - 28px); padding: 35px 25px; }.career-points { display: grid; grid-template-columns: 1fr 1fr; }.student-heading h2 { font-size: 34px; }.enquiry-contact { grid-template-columns: 1fr; }.form-card { padding: 21px 17px; }.form-heading > span { display: none; }.form-row { grid-template-columns: 1fr; }.footer-top { grid-template-columns: 1fr 1fr; gap: 38px 25px; }.footer-brand { grid-column: 1 / -1; }.footer-top > div:last-child { grid-column: auto; }.footer-bottom { margin-bottom: 62px; }.mobile-action-bar { position: fixed; display: grid; grid-template-columns: .75fr 1fr 1.2fr; bottom: 0; left: 0; right: 0; z-index: 100; background: white; border-top: 1px solid var(--line); padding: 7px 8px max(7px, env(safe-area-inset-bottom)); box-shadow: 0 -8px 30px rgba(16,63,57,.12); }.mobile-action-bar a { min-height: 44px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2px; font-size: 8px; font-weight: 750; color: var(--ink); }.mobile-action-bar a span { font-size: 13px; color: var(--teal); }.mobile-action-bar .primary { border-radius: 9px; background: var(--teal); color: white; flex-direction: row; gap: 7px; font-size: 10px; }.mobile-action-bar .primary span { color: white; }
}

/* Laravel dynamic-home additions */
.faq-list details { width: 100%; }
.faq-list summary { align-items: center; cursor: pointer; display: flex; font-size: 16px; font-weight: 760; justify-content: space-between; list-style: none; padding: 20px 0; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details > p { color: var(--muted); font-size: 14px; margin: 0; padding: 0 0 20px; }
/* Legacy catalogue overrides removed for modern card footer */
.form-error { background: #fff0f0; border-radius: 8px; color: #9b2424; margin-bottom: 12px; padding: 10px; }
.branch-contact-strip { background: #0c2744; color: #fff; padding: 12px 0; }
.branch-contact-strip .shell { align-items: center; display: flex; gap: 20px; justify-content: center; }
.branch-contact-strip .shell > div { align-items: center; display: flex; gap: 8px; }
.branch-contact-strip a { background: #fff; border-radius: 999px; color: #0c5560; font-size: 12px; font-weight: 800; padding: 5px 9px; text-decoration: none; }
@media (max-width: 700px) { .branch-contact-strip { display: none; } .catalogue-card > div:last-child { justify-items: start; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }

/* Readability-first typography refresh */
h1, h2, h3, h4, h5, h6,
.button,
.main-nav a {
  font-family: "Poppins", "Inter", "Segoe UI", Arial, sans-serif;
}
h1, h2, h3, h4 { font-weight: 600; }
h5, h6 { font-weight: 600; }

.announcement { font-size: 14px; }
.main-nav a { font-size: 15px; font-weight: 600; }
.phone-link small { font-size: 11px; }
.phone-link strong { font-size: 14px; }
.button-small { font-size: 14px; }
.button-large { min-height: 56px; padding-inline: 24px; font-size: 15px; }

.eyebrow { font-size: 13px; }
.eyebrow span { font-size: 10px; }
.hero h1 {
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -.038em;
  font-weight: 700;
}
.hero-lead { font-size: 19px; line-height: 1.68; }
.hero-support { font-size: 20px; }
.branch-label { font-size: 12px; }
.branch-options button { min-height: 40px; font-size: 14px; }
.branch-note { font-size: 12px; }
.intent-mark { font-size: 10px; }
.intent-summary small { font-size: 10px; }
.intent-summary strong { font-size: 13px; }
.intent-summary a { font-size: 12px; }
.micro-proof p { font-size: 13px; }

.tiny-label { font-size: 11px; }
.learning-top h2 { font-size: 24px; }
.plan-status { font-size: 12px; }
.route-item > span { font-size: 11px; }
.route-item small { font-size: 10px; }
.route-item strong { font-size: 13px; }
.code-head { font-size: 10px; }
.code-panel pre { font-size: 11.5px; }
.plan-footer small { font-size: 10px; }
.plan-footer strong { font-size: 12px; }
.floating-card small { font-size: 10px; }
.floating-card strong { font-size: 12px; }

.proof-row strong { font-size: 14px; }
.proof-row small { font-size: 12px; }
.section-kicker { font-size: 12px; letter-spacing: .14em; }
.section-heading-row h2 { line-height: 1.18; letter-spacing: -.025em; }
.section-heading-row p { font-size: 16px; }
.section-heading-row > a { font-size: 15px; }
.goal-tabs button { min-height: 82px; font-size: 14px; }
.goal-tabs button > span { font-size: 11px; }

.recommendation-label { font-size: 11px; }
.recommendation-main > h3 { font-size: 28px; }
.recommendation-main > p { font-size: 14px; line-height: 1.65; }
.recommendation-card h4 { font-size: 15px; }
.recommendation-card small { font-size: 11px; }
.recommendation-actions a { min-height: 38px; font-size: 12px; }
.local-action-card > span { font-size: 10px; }
.local-action-card h3 { font-size: 24px; }
.local-action-card > p { font-size: 13px; line-height: 1.65; }
.local-action-card > div a { min-height: 38px; font-size: 11.5px; }
.local-action-card > small { font-size: 10px; }

.course-intro > div span { font-size: 11px; }
.course-intro h2 { line-height: 1.2; letter-spacing: -.025em; }
.course-intro > p { font-size: 15px; }
.course-topline small { font-size: 10px; }
.course-card h3 { font-size: 21px; line-height: 1.3; }
.course-card > p { font-size: 14px; line-height: 1.65; }
.skill-tags span { font-size: 10px; padding: 6px 9px; }
.course-links span { font-size: 11px; }
.course-links b { font-size: 12.5px; }

.catalogue-heading > div > span { font-size: 11px; }
.catalogue-heading h2 { line-height: 1.2; letter-spacing: -.025em; }
.catalogue-heading p { font-size: 14px; line-height: 1.65; }
.course-search input { font-size: 14px; }
.catalogue-filters button { min-height: 40px; font-size: 12px; }
.catalogue-filters button span { min-width: 22px; height: 22px; font-size: 10px; }
/* Catalogue typography managed in main catalogue-card rules */
.catalogue-empty strong { font-size: 16px; }
.catalogue-empty p, .catalogue-empty a { font-size: 13px; }
.show-all-courses { min-height: 48px; font-size: 13px; }
.course-help strong { font-size: 15px; }
.course-help p { font-size: 13px; }
.course-help .button { font-size: 14px; }

.process-copy h2,
.why-copy h2,
.center-heading h2,
.student-heading h2,
.career-copy h2,
.faq-heading h2,
.enquiry-copy h2 { letter-spacing: -.028em; }
.process-copy > p { font-size: 16px; }
.text-link { font-size: 14px; }
.process-list > li > span { font-size: 11px; }
.process-list h3 { font-size: 17px; }
.process-list p { font-size: 14px; line-height: 1.65; }
.dashboard-head span, .dashboard-head b { font-size: 10px; }
.dashboard-score small { font-size: 11px; }
.dashboard-bars span, .dashboard-bars span b { font-size: 11px; }
.dashboard-task span { font-size: 9.5px; }
.dashboard-task strong { font-size: 14px; }
.dashboard-task small { font-size: 11px; }
.why-lead { font-size: 16px; }
.why-list strong { font-size: 14px; }
.why-list small { font-size: 12px; }

.center-heading p { font-size: 16px; }
.branch-map b { font-size: 11px; }
.branch-title small { font-size: 10px; }
.branch-title > span { font-size: 11px; }
.branch-body > p { font-size: 14px; line-height: 1.68; }
.branch-phone { font-size: 15px; }
.branch-facts span { font-size: 12px; }
.branch-actions .button { font-size: 14px; }
.choose-centre { font-size: 12px; }

.student-heading-aside p { font-size: 14px; }
.student-heading-aside a { font-size: 13px; }
.review-top strong { font-size: 13px; }
.review-top small { font-size: 10.5px; }
.review-grid article > p { font-size: 14px; line-height: 1.72; }
.review-grid article > b { font-size: 10.5px; }
.career-copy > p { font-size: 15px; }
.career-points span { font-size: 11px; }
.career-copy .disclaimer { font-size: 10.5px; }
.resume-card span { font-size: 9px; }
.resume-card > b { font-size: 9px; }
.career-badge span { font-size: 10px; }

.faq-heading p { font-size: 14px; }
.faq-list button { font-size: 16px; }
.faq-list article > p { font-size: 14px; }
.enquiry-copy > p { font-size: 16px; }
.enquiry-contact span { font-size: 11px; }
.enquiry-contact strong { font-size: 13px; }
.form-heading small { font-size: 10px; }
.form-heading h3 { font-size: 24px; }
.form-heading > span { font-size: 11px; }
.form-card form > label, .form-row label { font-size: 12px; }
.form-card input, .form-card select { min-height: 50px; font-size: 15px; }
.privacy-note { font-size: 10.5px; }
.form-success p { font-size: 14px; }
.form-success button { font-size: 13px; }

.footer-brand > p { font-size: 14px; }
.footer-email { font-size: 14px; }
.footer-top h3 { font-size: 13.5px; }
.footer-top > div:not(:first-child) a { font-size: 14px; }
.footer-bottom { font-size: 13px; }

@media (max-width: 1080px) {
  .main-nav a { font-size: 14px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero-orb { display: none; }
  .announcement, .announcement a { font-size: 11.5px; }
  .hero h1 { font-size: clamp(38px, 11vw, 46px); line-height: 1.1; }
  .hero-support { font-size: 17px; margin-top: -2px; }
  .hero-lead { font-size: 17px; line-height: 1.65; }
  .learning-top h2 { font-size: 20px; }
  .proof-row strong { font-size: 12.5px; }
  .section-heading-row h2,
  .course-intro h2,
  .catalogue-heading h2 { font-size: 31px; }
  .mobile-action-bar a { font-size: 10.5px; }
  .mobile-action-bar .primary { font-size: 12px; }
}
