/* ===== source: styles.css ===== */
:root {
  --navy: #1A2E5A;
  --navy-deep: #102142;
  --teal: #11829D;
  --teal-dark: #0B6C83;
  --teal-light: #EAF7FA;
  --ink: #101828;
  --muted: #475467;
  --subtle: #667085;
  --border: #E4E7EC;
  --soft: #F7F9FC;
  --white: #FFFFFF;
  --success: #16835D;
  --warning: #B7791F;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 28px rgba(16,24,40,.07);
  --shadow-md: 0 18px 60px rgba(26,46,90,.12);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Arial, sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }
.skip-link { position: fixed; top: 8px; left: 8px; transform: translateY(-180%); z-index: 9999; background: var(--navy); color: white; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.utility-bar { background: var(--navy); color: rgba(255,255,255,.86); font-size: 12.5px; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.utility-locations, .utility-contact { display: flex; align-items: center; gap: 12px; }
.utility-locations span + span::before { content: "·"; margin-right: 12px; opacity: .5; }
.utility-contact a:hover { color: white; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(228,231,236,.85); }
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 24px; }
.brand { flex: 0 0 auto; display:flex; align-items:center; height:72px; }
.brand img { display:block; width:auto; height:68px; max-width:92px; object-fit:contain; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { border: 0; background: none; color: #27364B; font-weight: 600; font-size: 14px; padding: 14px 10px; border-radius: 9px; white-space: nowrap; }
.nav-link:hover, .nav-link:focus-visible { color: var(--teal); background: var(--soft); outline: none; }
.nav-link span { font-size: 13px; margin-left: 3px; opacity: .7; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: 8px; }

.mega-menu { position: absolute; top: calc(100% + 12px); left: 0; width: 560px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; padding: 24px; border: 1px solid var(--border); border-radius: 18px; background: white; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease; }
.nav-with-menu:hover .mega-menu, .nav-with-menu:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu a { display: block; padding: 8px 10px; border-radius: 8px; color: #29384d; }
.mega-menu a:hover { background: var(--soft); color: var(--teal); }
.mega-menu a strong { display: block; font-size: 14px; }
.mega-menu a small { display: block; margin-top: 1px; color: var(--subtle); font-size: 11.5px; }
.menu-label { font-size: 11px; letter-spacing: .11em; font-weight: 800; color: var(--teal); text-transform: uppercase; margin: 0 0 8px 10px; }
.menu-grid-links { display: grid; grid-template-columns: 1fr 1fr; }
.menu-cta { margin-top: 10px; font-weight: 700; color: var(--teal) !important; }
.compact-menu { width: 300px; display: block; padding: 16px; }
.compact-menu a { font-size: 13px; font-weight: 600; }
.right-menu { left: auto; right: 0; }

.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: 0 20px; border-radius: 10px; border: 1px solid transparent; font-weight: 700; font-size: 14px; transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: white; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-secondary { background: var(--teal); color: white; border-color: var(--teal); }
.btn-secondary:hover { background: var(--teal-dark); }
.btn-outline { background: white; color: var(--navy); border-color: #C9D1DF; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-small { min-height: 42px; padding: 0 15px; font-size: 13px; }
.btn-large { min-height: 54px; padding: 0 24px; }
.btn-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 700; font-size: 14px; }
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translateX(3px); }

.mobile-menu-btn { display: none; width: 46px; height: 46px; border: 1px solid var(--border); background: white; border-radius: 10px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.mobile-menu-btn span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-menu { border-top: 1px solid var(--border); background: white; }
.mobile-menu-inner { padding: 12px 0 24px; display: grid; }
.mobile-menu-inner > a { padding: 13px 0; font-weight: 700; border-bottom: 1px solid #EEF1F5; }
.mobile-menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }

.hero { position: relative; overflow: hidden; padding: 86px 0 78px; background: linear-gradient(180deg, #FBFDFE 0%, #F8FAFD 72%, #FFFFFF 100%); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(26,46,90,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(26,46,90,.035) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, black, transparent 86%); pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; }
.hero-orb-one { width: 420px; height: 420px; right: -160px; top: -120px; background: radial-gradient(circle at 30% 30%, rgba(17,130,157,.18), rgba(17,130,157,0)); }
.hero-orb-two { width: 340px; height: 340px; left: -160px; bottom: -160px; background: radial-gradient(circle at 60% 40%, rgba(26,46,90,.12), rgba(26,46,90,0)); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .83fr; align-items: center; gap: 84px; }
.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: .14em; margin-bottom: 18px; }
.eyebrow span { width: 30px; height: 2px; background: var(--teal); border-radius: 2px; }
.eyebrow.centered { justify-content: center; }
.eyebrow.light { color: #9FE1EF; }
.eyebrow.light span { background: #9FE1EF; }
.hero h1 { font-family: Manrope, Inter, sans-serif; font-size: clamp(44px, 4.6vw, 66px); line-height: 1.03; letter-spacing: -.045em; margin: 0; max-width: 760px; color: var(--navy); }
.hero-lead { max-width: 660px; color: var(--muted); font-size: 18px; line-height: 1.75; margin: 26px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-proof { display: flex; align-items: stretch; gap: 0; margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--border); max-width: 650px; }
.hero-proof > div { flex: 1; padding: 0 24px; border-left: 1px solid var(--border); }
.hero-proof > div:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong { display: block; color: var(--navy); font-size: 14px; }
.hero-proof span { display: block; color: var(--subtle); font-size: 12px; margin-top: 2px; }
.hero-panel { position: relative; background: white; border: 1px solid #DCE3EC; border-radius: 22px; padding: 26px; box-shadow: var(--shadow-md); }
.hero-panel::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 3px; background: linear-gradient(90deg, var(--navy), var(--teal)); border-radius: 0 0 8px 8px; }
.hero-panel-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.panel-kicker { color: var(--teal); font-weight: 800; letter-spacing: .11em; font-size: 10px; }
.hero-panel h2 { font-family: Manrope, Inter, sans-serif; margin: 4px 0 0; font-size: 25px; letter-spacing: -.02em; }
.panel-badge { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--navy); color: white; font-family: Manrope; font-weight: 800; }
.eligibility-form, .contact-form { display: grid; gap: 13px; }
label { color: #344054; font-size: 12.5px; font-weight: 700; }
input, select, textarea { width: 100%; margin-top: 6px; border: 1px solid #D0D5DD; background: white; color: var(--ink); border-radius: 10px; min-height: 50px; padding: 0 13px; outline: none; transition: border-color .18s, box-shadow .18s; }
textarea { padding-top: 12px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(17,130,157,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { margin: 0; color: var(--subtle); font-size: 10.5px; line-height: 1.5; text-align: center; }
.form-success { border: 1px solid #B7E3D3; background: #EFFAF5; color: #126B4A; border-radius: 10px; padding: 11px 12px; font-size: 12px; font-weight: 700; }

.trust-strip { border-top: 1px solid #EEF1F5; border-bottom: 1px solid #EEF1F5; background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 116px; display: flex; align-items: center; gap: 14px; padding: 24px; border-right: 1px solid #EEF1F5; }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; padding-right: 0; }
.trust-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--teal-light); color: var(--teal); display: grid; place-items: center; font-weight: 800; flex: 0 0 auto; }
.trust-item strong { display: block; color: var(--navy); font-size: 13px; }
.trust-item span { display: block; color: var(--subtle); font-size: 11px; line-height: 1.45; margin-top: 2px; }

.section { padding: 100px 0; }
.section-soft { background: var(--soft); }
.section-heading { margin-bottom: 38px; }
.section-heading h2, .why-copy h2, .updates-grid h2, .final-cta h2 { font-family: Manrope, Inter, sans-serif; font-size: clamp(32px, 3.1vw, 42px); line-height: 1.12; letter-spacing: -.035em; margin: 0; color: var(--navy); }
.section-heading p { margin: 10px 0 0; color: var(--muted); font-size: 16px; max-width: 660px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 56px; }
.split-heading > div { flex: 1 1 auto; }
.split-heading > p { flex: 0 1 470px; margin-bottom: 3px; }
.center-heading { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.center-heading p { margin-left: auto; margin-right: auto; }
.compact-heading { margin-bottom: 30px; }

.destination-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.destination-card { position: relative; min-height: 350px; overflow: hidden; border-radius: 20px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 10px 30px rgba(16,24,40,.08); }
.destination-art { position: absolute; top: 14px; right: 14px; font-family: Manrope; font-size: 92px; line-height: 1; font-weight: 800; color: rgba(255,255,255,.1); letter-spacing: -.08em; }
.destination-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,19,41,.92), rgba(7,19,41,.06) 78%); }
.destination-korea { background: radial-gradient(circle at 70% 12%, rgba(52,208,237,.55), transparent 38%), linear-gradient(145deg, #1a2e5a, #0a5d73); }
.destination-japan { background: radial-gradient(circle at 20% 18%, rgba(255,255,255,.22), transparent 34%), linear-gradient(145deg, #4A244C, #1a2e5a); }
.destination-uk { background: radial-gradient(circle at 78% 12%, rgba(69,180,205,.35), transparent 35%), linear-gradient(145deg, #273d72, #172239); }
.destination-china { background: radial-gradient(circle at 20% 20%, rgba(255,210,114,.26), transparent 33%), linear-gradient(145deg, #62364A, #1a2e5a); }
.destination-content { position: relative; z-index: 2; margin-top: auto; padding: 26px; color: white; }
.destination-content span { font-size: 9.5px; letter-spacing: .12em; font-weight: 800; color: #AEE7F3; }
.destination-content h3 { font-family: Manrope; font-size: 27px; margin: 7px 0 2px; letter-spacing: -.02em; }
.destination-content p { margin: 0 0 16px; color: rgba(255,255,255,.75); font-size: 12.5px; }
.destination-content a { font-size: 13px; font-weight: 700; }
.destination-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.destination-pills a { padding: 9px 14px; border: 1px solid var(--border); border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--navy); background: white; }
.destination-pills a:hover { border-color: var(--teal); color: var(--teal); }

.discovery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.discovery-card { border: 1px solid var(--border); background: white; border-radius: 18px; padding: 28px; min-height: 275px; display: flex; flex-direction: column; box-shadow: 0 6px 20px rgba(16,24,40,.035); }
.discovery-card.featured { border-color: rgba(17,130,157,.35); background: linear-gradient(180deg, #FFFFFF, #F3FBFC); }
.discovery-icon { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--navy); color: white; font-family: Manrope; font-weight: 800; margin-bottom: 24px; }
.discovery-card.featured .discovery-icon { background: var(--teal); }
.discovery-card h3 { font-family: Manrope; font-size: 22px; margin: 0; color: var(--navy); }
.discovery-card p { color: var(--muted); font-size: 14px; margin: 10px 0 26px; }
.discovery-card .text-link { margin-top: auto; }

.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.why-visual { position: relative; min-height: 540px; border-radius: 24px; background: linear-gradient(145deg, #F3F7FA, #EAF6F8); overflow: hidden; border: 1px solid #E2EAF0; }
.why-visual::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(26,46,90,.12); border-radius: 50%; left: -160px; top: 70px; }
.visual-card { position: absolute; left: 44px; width: 300px; padding: 18px 20px; background: rgba(255,255,255,.92); border: 1px solid rgba(228,231,236,.9); border-radius: 15px; box-shadow: var(--shadow-sm); }
.visual-card span { display: block; color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.visual-card strong { display: block; margin-top: 4px; color: var(--navy); font-family: Manrope; font-size: 17px; }
.visual-main { top: 80px; }
.visual-middle { top: 194px; left: 92px; }
.visual-bottom { top: 308px; left: 52px; }
.visual-circle { position: absolute; right: 42px; bottom: 42px; width: 128px; height: 128px; border-radius: 50%; background: var(--navy); color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.visual-circle b { font-family: Manrope; font-size: 34px; line-height: 1; }
.visual-circle small { font-size: 10px; opacity: .75; margin-top: 5px; }
.why-copy > p { color: var(--muted); font-size: 16px; margin: 20px 0 28px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; margin-bottom: 30px; }
.feature-list > div { display: grid; grid-template-columns: 36px 1fr; column-gap: 10px; }
.feature-list span { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; background: var(--teal-light); color: var(--teal); font-size: 10px; font-weight: 800; grid-row: 1 / span 2; }
.feature-list strong { color: var(--navy); font-size: 13px; }
.feature-list p { margin: 2px 0 0; color: var(--subtle); font-size: 11px; line-height: 1.5; }

.recognition-section { background: var(--navy); color: white; }
.recognition-section .section-heading h2 { color: white; }
.recognition-section .section-heading p { color: rgba(255,255,255,.7); }
.credential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.credential-grid article { min-height: 150px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; padding: 20px; background: rgba(255,255,255,.045); display: grid; grid-template-columns: 42px 1fr; column-gap: 14px; align-items: start; }
.credential-mark { width: 42px; height: 42px; border-radius: 10px; background: rgba(125,223,240,.14); color: #AEE7F3; display: grid; place-items: center; font-family: Manrope; font-weight: 800; font-size: 12px; grid-row: 1 / span 3; }
.credential-grid strong { font-size: 13px; color: white; }
.credential-grid span { font-size: 11px; color: rgba(255,255,255,.62); margin-top: 2px; }
.credential-grid a { margin-top: 9px; font-size: 11px; color: #AEE7F3; font-weight: 700; }

.university-tabs { display: flex; gap: 8px; margin-bottom: 22px; overflow-x: auto; scrollbar-width: none; }
.university-tabs::-webkit-scrollbar { display: none; }
.university-tabs button { white-space: nowrap; min-height: 38px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--border); background: white; color: var(--muted); font-size: 12px; font-weight: 700; }
.university-tabs button.active { background: var(--navy); border-color: var(--navy); color: white; }
.university-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.university-card { border: 1px solid var(--border); border-radius: 17px; padding: 22px; background: white; transition: transform .18s, border-color .18s; }
.university-card:hover { transform: translateY(-2px); border-color: rgba(17,130,157,.45); }
.uni-logo { width: 64px; height: 64px; border-radius: 14px; background: #F0F4F9; color: var(--navy); display: grid; place-items: center; font-family: Manrope; font-weight: 800; font-size: 16px; margin-bottom: 18px; }
.status-badge { display: inline-block; font-size: 9px; font-weight: 800; letter-spacing: .06em; color: var(--teal); background: var(--teal-light); padding: 5px 7px; border-radius: 999px; }
.university-card h3 { font-family: Manrope; font-size: 19px; margin: 9px 0 3px; color: var(--navy); }
.university-card > p { margin: 0 0 18px; color: var(--subtle); font-size: 12px; }
.uni-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #EEF1F5; border-bottom: 1px solid #EEF1F5; padding: 11px 0; margin-bottom: 14px; }
.uni-meta span { color: var(--subtle); font-size: 10px; }
.uni-meta strong { color: var(--ink); font-size: 11px; }
.university-card a { color: var(--teal); font-size: 12px; font-weight: 700; }
.prototype-note { color: var(--subtle); font-size: 11px; margin: 16px 0 0; }

.intake-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.intake-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.intake-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.country-chip { color: var(--navy); font-size: 11px; font-weight: 800; }
.state { padding: 5px 8px; border-radius: 999px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.state.open { background: #EDF9F3; color: var(--success); }
.state.upcoming { background: #FFF7E8; color: var(--warning); }
.intake-card h3 { font-family: Manrope; color: var(--navy); font-size: 25px; margin: 20px 0 4px; }
.intake-card > p { color: var(--muted); font-size: 13px; min-height: 42px; }
.intake-footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; border-top: 1px solid #EEF1F5; margin-top: 18px; padding-top: 14px; }
.intake-footer span { color: var(--subtle); font-size: 9.5px; }
.intake-footer a { color: var(--teal); font-size: 11px; font-weight: 700; }

.journey-section { padding-top: 92px; padding-bottom: 92px; }
.journey-grid { list-style: none; padding: 0; margin: 42px 0 0; display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; position: relative; }
.journey-grid::before { content: ""; position: absolute; top: 30px; left: 6%; right: 6%; height: 1px; background: #DDE3EB; z-index: 0; }
.journey-grid li { position: relative; z-index: 1; text-align: center; }
.journey-grid span { width: 60px; height: 60px; margin: 0 auto 13px; border-radius: 50%; display: grid; place-items: center; background: white; border: 1px solid #D8E0E9; color: var(--teal); font-family: Manrope; font-weight: 800; font-size: 11px; }
.journey-grid strong { display: block; color: var(--navy); font-size: 11px; }
.journey-grid small { display: block; color: var(--subtle); font-size: 9px; margin-top: 2px; }

.stories-section { background: linear-gradient(135deg, #132952, #1A2E5A 55%, #12516B); color: white; }
.light-heading h2 { color: white; }
.light-heading p { color: rgba(255,255,255,.7); }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.story-card { border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); border-radius: 17px; padding: 24px; }
.story-avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(149,229,242,.15); color: #BCECF4; font-family: Manrope; font-weight: 800; }
.story-card blockquote { margin: 22px 0; color: rgba(255,255,255,.86); font-size: 14px; line-height: 1.75; }
.story-card strong { display: block; font-size: 12px; }
.story-card span { color: rgba(255,255,255,.55); font-size: 10px; }

.updates-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 66px; }
.updates-grid h2 { margin-bottom: 24px; }
.event-list { display: grid; gap: 12px; margin-bottom: 24px; }
.event-list article { display: grid; grid-template-columns: 62px 1fr; gap: 16px; padding: 18px; border: 1px solid var(--border); border-radius: 14px; }
.event-date { width: 62px; height: 62px; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--navy); color: white; }
.event-date strong { font-family: Manrope; font-size: 22px; line-height: 1; }
.event-date span { font-size: 8px; letter-spacing: .12em; margin-top: 4px; }
.event-type { color: var(--teal); font-size: 8.5px; font-weight: 800; letter-spacing: .08em; }
.event-list h3 { font-family: Manrope; color: var(--navy); margin: 2px 0 3px; font-size: 15px; }
.event-list p { margin: 0; color: var(--subtle); font-size: 10.5px; }
.insights-panel { border-radius: 20px; padding: 30px; background: var(--soft); }
.insight-item { display: block; padding: 18px 0; border-top: 1px solid #DFE5EC; }
.insight-item:first-of-type { border-top: 0; }
.insight-item span { display: block; color: var(--teal); font-size: 8.5px; font-weight: 800; letter-spacing: .1em; }
.insight-item strong { display: block; color: var(--navy); font-family: Manrope; font-size: 16px; line-height: 1.45; margin: 4px 0 8px; }
.insight-item small { color: var(--subtle); font-size: 10px; }

.branch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.branch-card { background: white; border: 1px solid var(--border); border-radius: 17px; padding: 22px; }
.branch-type { color: var(--teal); font-size: 8.5px; font-weight: 800; letter-spacing: .11em; }
.branch-card h3 { font-family: Manrope; color: var(--navy); font-size: 24px; margin: 8px 0 8px; }
.branch-card > p { color: var(--muted); font-size: 12px; min-height: 58px; }
.branch-contact { display: flex; flex-direction: column; padding: 14px 0; border-top: 1px solid #EEF1F5; border-bottom: 1px solid #EEF1F5; gap: 4px; }
.branch-contact a { color: var(--navy); font-size: 11px; font-weight: 700; }
.branch-actions { display: grid; gap: 5px; margin-top: 14px; }
.branch-actions a { color: var(--teal); font-size: 10.5px; font-weight: 700; }

.final-cta { background: var(--navy); color: white; }
.final-cta-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.final-cta h2 { color: white; font-size: clamp(38px, 4vw, 52px); }
.final-cta > .container > div > p, .final-cta-grid > div > p { color: rgba(255,255,255,.7); max-width: 570px; font-size: 16px; }
.final-contact-links { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 22px; }
.final-contact-links a { color: #B8EAF3; font-size: 12px; font-weight: 700; }
.contact-form { background: white; color: var(--ink); border-radius: 20px; padding: 25px; }
.consent { display: flex; gap: 9px; align-items: flex-start; font-weight: 500; font-size: 10.5px; color: var(--subtle); }
.consent input { width: 16px; min-height: 16px; margin: 2px 0 0; flex: 0 0 auto; }

.footer { background: #0D1D3A; color: rgba(255,255,255,.72); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.35fr; gap: 38px; padding-bottom: 52px; }
.footer-brand img { width: 155px; background: white; border-radius: 10px; padding: 8px 10px; margin-bottom: 14px; }
.footer-tagline { color: white !important; font-family: Manrope; font-weight: 800; margin: 0 0 8px !important; }
.footer p { font-size: 11px; line-height: 1.7; margin: 0 0 12px; }
.footer h3 { color: white; font-family: Manrope; font-size: 13px; margin: 0 0 14px; }
.footer-grid > div:not(.footer-brand) a { display: block; color: rgba(255,255,255,.65); font-size: 10.5px; padding: 3px 0; }
.footer-grid a:hover { color: white !important; }
.footer-social { display: flex; gap: 8px; margin-top: 15px; }
.footer-social a { width: 32px; height: 32px; border-radius: 8px; display: grid !important; place-items: center; background: rgba(255,255,255,.08); font-size: 10px !important; color: white !important; }
.footer-branch-link { margin-top: 10px; color: #AEE7F3 !important; font-weight: 700; }
.footer-trust { border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); padding: 14px 0; color: rgba(255,255,255,.62); font-size: 9.5px; letter-spacing: .02em; text-align: center; }
.footer-bottom { padding: 18px 0 24px; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 9.5px; color: rgba(255,255,255,.45); }
.footer-bottom-inner div { display: flex; gap: 14px; }

.mobile-action-bar { display: none; }

@media (max-width: 1180px) {
  .container { width: min(var(--container), calc(100% - 44px)); }
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .mobile-menu-btn { display: flex; }
  .hero-grid { gap: 46px; grid-template-columns: 1fr .8fr; }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: repeat(4, 1fr); gap: 26px 8px; }
  .journey-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .utility-bar { display: none; }
  .header-inner { min-height: 72px; }
  .brand { height:58px; }
  .brand img { width:auto; height:54px; max-width:74px; }
  .header-actions { display: none; }
  .hero { padding: 62px 0 54px; }
  .hero-grid, .why-grid, .updates-grid, .final-cta-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { text-align: left; }
  .hero h1 { font-size: clamp(38px, 8vw, 52px); }
  .hero-lead { font-size: 16px; }
  .hero-proof { max-width: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid #EEF1F5; }
  .section { padding: 72px 0; }
  .split-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .split-heading > p { flex-basis: auto; }
  .discovery-grid, .credential-grid, .university-grid, .intake-grid, .story-grid { grid-template-columns: 1fr 1fr; }
  .why-visual { min-height: 460px; order: 2; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .branch-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .mobile-action-bar { position: fixed; z-index: 1100; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(255,255,255,.98); border-top: 1px solid var(--border); box-shadow: 0 -8px 30px rgba(16,24,40,.09); }
  .mobile-action-bar a { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--navy); font-size: 10px; font-weight: 800; }
  .mobile-action-bar a:nth-child(2) { color: var(--teal); border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
  .footer { padding-bottom: 58px; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 36px); }
  .hero { padding-top: 48px; }
  .eyebrow { font-size: 9.5px; margin-bottom: 13px; }
  .eyebrow span { width: 24px; }
  .hero h1 { font-size: 38px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn-large { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-proof > div { padding: 0 10px; }
  .hero-proof strong { font-size: 11px; }
  .hero-proof span { font-size: 9px; }
  .hero-panel { padding: 20px; border-radius: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 13px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child, .trust-item:last-child { min-height: 94px; padding: 18px 0; border-right: 0; border-top: 1px solid #EEF1F5; }
  .trust-item:first-child { border-top: 0; }
  .section { padding: 60px 0; }
  .section-heading h2, .why-copy h2, .updates-grid h2 { font-size: 29px; }
  .section-heading p { font-size: 14px; }
  .destination-grid, .discovery-grid, .credential-grid, .university-grid, .intake-grid, .story-grid, .branch-grid { grid-template-columns: 1fr; }
  .destination-card { min-height: 310px; }
  .feature-list { grid-template-columns: 1fr; }
  .why-grid { gap: 34px; }
  .why-visual { min-height: 410px; }
  .visual-card { left: 20px; width: calc(100% - 74px); }
  .visual-middle { left: 40px; }
  .visual-bottom { left: 24px; }
  .visual-circle { width: 100px; height: 100px; right: 20px; bottom: 20px; }
  .journey-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 8px; }
  .updates-grid { gap: 44px; }
  .insights-panel { padding: 22px; }
  .final-cta-grid { gap: 32px; }
  .final-cta h2 { font-size: 36px; }
  .contact-form { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { align-items: flex-start; flex-direction: column; }
  .footer-bottom-inner div { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

.flag-emoji{font-size:18px;line-height:1;display:inline-flex;align-items:center;justify-content:center}.hero-panel-media{background:linear-gradient(135deg,#173767,#1687a0)}


/* v1.1 visual asset system */
.country-flag-img{width:24px;height:17px;border-radius:3px;object-fit:cover;display:inline-block;vertical-align:middle;box-shadow:0 0 0 1px rgba(16,24,40,.10);flex:0 0 auto}.hero-chip .country-flag-img,.country-logo-chip .country-flag-img,.flag-pill .country-flag-img,.destination-flag .country-flag-img,.status-badge .country-flag-img,.hero-flag .country-flag-img,.flag-badge .country-flag-img,.flag-choice .country-flag-img,.badge-line .country-flag-img{width:24px;height:17px;border-radius:3px}.kb-icon-img{width:24px;height:24px;display:block;object-fit:contain}.trust-icon .kb-icon-img{width:22px;height:22px}.discovery-icon .kb-icon-img{width:24px;height:24px}.discovery-icon{background:#eef8fa!important}.discovery-card.featured .discovery-icon{background:#e7f6f9!important}.service-icon-v11{width:48px!important;height:48px!important;border-radius:14px!important;display:grid!important;place-items:center!important;background:#eef8fa!important;margin-bottom:18px!important}.service-icon-v11 .kb-icon-img{width:25px;height:25px}.path-icon-v11{display:grid!important;place-items:center!important}.path-icon-v11 .kb-icon-img{width:25px;height:25px}.credential-icon-v11{display:grid!important;place-items:center!important}.credential-icon-v11 .kb-icon-img{width:26px;height:26px}.icon-title{display:flex;align-items:center;gap:9px}.icon-title .kb-icon-img{width:21px;height:21px}.contact-icon-line{display:flex!important;align-items:center;gap:8px}.contact-icon-line .kb-icon-img{width:18px;height:18px}.contact-list-v11 a{position:relative;padding-left:0}.visual-asset-note{font-size:11px;color:#667085;margin-top:12px}.destination-flag{gap:8px!important}.country-logo-chip{gap:9px!important}.flag-pill{gap:8px!important}.flag-choice{gap:10px!important}.hero-flag{gap:9px!important}.flag-badge{display:flex;align-items:center;gap:8px}.status-badge{gap:7px!important}


/* v1.2 — Study in Nepal public integration */
.nav-nepal-link{color:var(--teal)!important;font-weight:800!important;}
.nepal-inbound-section{padding:0 0 96px;}
.nepal-inbound-panel{position:relative;overflow:hidden;display:grid;grid-template-columns:1.05fr .95fr;align-items:stretch;border:1px solid #dce9ee;border-radius:24px;background:linear-gradient(135deg,#f7fbfc 0%,#eef8fa 48%,#f3f6fb 100%);box-shadow:0 18px 54px rgba(16,24,40,.07);}
.nepal-inbound-copy{padding:42px 44px;display:flex;flex-direction:column;justify-content:center;}
.nepal-inbound-kicker{display:inline-flex;align-items:center;gap:10px;font-size:11px;letter-spacing:.1em;text-transform:uppercase;font-weight:800;color:var(--teal);}
.nepal-inbound-kicker img{width:28px;height:22px;object-fit:contain;}
.nepal-inbound-copy h2{font-family:Manrope,sans-serif;color:var(--navy);font-size:36px;line-height:1.15;letter-spacing:-.035em;margin:14px 0 12px;}
.nepal-inbound-copy p{color:var(--muted);max-width:620px;margin:0 0 24px;}
.nepal-inbound-actions{display:flex;gap:12px;flex-wrap:wrap;}
.nepal-inbound-media{min-height:330px;position:relative;background:#dfecef;}
.nepal-inbound-media img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.nepal-inbound-media:after{content:'INTERNATIONAL STUDENTS';position:absolute;right:18px;bottom:18px;padding:9px 12px;border-radius:999px;background:rgba(16,33,66,.78);color:#fff;font-size:10px;font-weight:800;letter-spacing:.08em;backdrop-filter:blur(8px);}
.country-logo-chip.nepal-chip{border-color:rgba(17,130,157,.28);background:#f0fbfc;color:var(--teal-dark);}
@media(max-width:900px){.nepal-inbound-panel{grid-template-columns:1fr}.nepal-inbound-media{min-height:260px}.nepal-inbound-copy{padding:32px}.nepal-inbound-copy h2{font-size:30px}}
@media(max-width:640px){.nepal-inbound-section{padding-bottom:60px}.nepal-inbound-copy{padding:26px 22px}.nepal-inbound-copy h2{font-size:27px}.nepal-inbound-media{min-height:220px}}

/* v1.3 final live refinements */
.hp-field{position:absolute!important;left:-10000px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important;opacity:0!important}
.uni-logo.official{background:#fff;border:1px solid #e6eaf0;overflow:hidden;display:grid;place-items:center}
.uni-logo.official img{width:82%;height:82%;object-fit:contain;display:block}
.uni-logo.official.anyang{background-image:url("https://www.anyang.ac.kr/_res/anyang/main/img/img_ui.png");background-size:520px 260px;background-position:-70px -22px;background-repeat:no-repeat}
.detail-official-logo{width:92px;height:92px;border-radius:20px;border:1px solid #e4e7ec;background:#fff;display:grid;place-items:center;margin-bottom:18px;overflow:hidden;box-shadow:0 8px 24px rgba(16,24,40,.06)}
.detail-official-logo img{width:80%;height:80%;object-fit:contain}
.detail-official-logo.anyang{background-image:url("https://www.anyang.ac.kr/_res/anyang/main/img/img_ui.png");background-size:600px 300px;background-position:-80px -26px;background-repeat:no-repeat}
.empty-live{max-width:760px;margin:0 auto;text-align:center;border:1px solid #e4e7ec;border-radius:22px;padding:48px 34px;background:#fff;box-shadow:0 12px 34px rgba(16,24,40,.05)}
.empty-live>img{width:52px;height:52px;margin-bottom:16px}.empty-live h2{font-family:Manrope,sans-serif;color:#1A2E5A;margin:0 0 10px}.empty-live p{color:#475467;max-width:620px;margin:0 auto 22px}.empty-actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}
.mobile-menu-btn{font-size:0;background:transparent;border:0;width:44px;height:44px;background-image:url('assets/icons/menu.svg');background-size:24px;background-repeat:no-repeat;background-position:center}
@media(max-width:767px){.detail-official-logo{width:76px;height:76px}.uni-logo.official.anyang{background-size:430px 215px;background-position:-58px -18px}}
.form-error{background:#fff1f0!important;color:#b42318!important;border:1px solid #fecdca!important}
button:disabled{opacity:.7;cursor:not-allowed}


/* ===== source: v15.css ===== */

/* KB Education Signature UI v1.5
   Shared visual system: compact, premium, responsive, motion-light. */
:root{
  --kb-navy:#1A2E5A; --kb-navy-2:#102142; --kb-navy-3:#0B1730;
  --kb-teal:#11829D; --kb-teal-2:#0B6C83; --kb-cyan:#35A9C0;
  --kb-ink:#101828; --kb-text:#344054; --kb-muted:#667085;
  --kb-line:#E4E7EC; --kb-soft:#F6F8FB; --kb-soft-teal:#EDF8FA; --kb-white:#fff;
  --kb-success:#16835D; --kb-warn:#B7791F;
  --kb-r-sm:12px; --kb-r:18px; --kb-r-lg:28px;
  --kb-shadow-sm:0 8px 24px rgba(16,24,40,.06);
  --kb-shadow:0 18px 48px rgba(16,24,40,.10);
  --kb-shadow-lg:0 28px 80px rgba(16,24,40,.14);
  --kb-container:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:110px}
body{margin:0;font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;color:var(--kb-ink);background:#fff;line-height:1.65;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
h1,h2,h3,h4{font-family:Manrope,Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;letter-spacing:-.035em;color:var(--kb-navy);text-wrap:balance}
a{text-decoration:none}
img{max-width:100%;height:auto}
.container{width:min(var(--kb-container),calc(100% - 48px));margin-inline:auto}

/* utility + header */
.utility-bar{background:var(--kb-navy-3)!important;color:rgba(255,255,255,.88)!important;font-size:12px!important}
.utility-inner{min-height:32px!important;height:auto!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:18px!important}
.utility-inner a{color:#fff!important;opacity:.96}
.utility-inner a:hover{opacity:1;text-decoration:underline;text-underline-offset:3px}
.site-header{position:sticky!important;top:0!important;z-index:1000!important;background:rgba(255,255,255,.94)!important;border-bottom:1px solid rgba(228,231,236,.82)!important;backdrop-filter:blur(18px)!important;transition:box-shadow .25s ease,background .25s ease}
.site-header.is-scrolled{box-shadow:0 10px 30px rgba(16,24,40,.08);background:rgba(255,255,255,.985)!important}
.header-inner{min-height:74px!important;height:auto!important;display:flex!important;align-items:center!important;gap:20px!important}
.brand{display:flex;align-items:center;flex:0 0 auto}
.brand img{width:auto!important;height:60px!important;max-width:84px!important;object-fit:contain!important}
.desktop-nav,.nav{display:flex!important;align-items:center!important;gap:2px!important;margin-left:auto!important}
.nav>a,.nav-link{font-size:13px!important;font-weight:750!important;color:#25364E!important;padding:11px 9px!important;border-radius:10px!important;line-height:1!important;white-space:nowrap}
.nav>a:hover,.nav-link:hover,.nav-link:focus-visible{background:#F4F7FA!important;color:var(--kb-teal)!important}
.header-actions{display:flex!important;align-items:center!important;gap:8px!important;margin-left:4px!important}
.btn{border-radius:12px!important;font-weight:800!important;letter-spacing:-.01em;transition:transform .18s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease!important}
.btn:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(16,24,40,.08)}
.btn-primary{background:var(--kb-navy)!important;border-color:var(--kb-navy)!important;color:#fff!important}
.btn-primary:hover{background:var(--kb-navy-2)!important}
.btn-secondary{background:var(--kb-teal)!important;border-color:var(--kb-teal)!important;color:#fff!important}
.btn-outline{background:#fff!important;border-color:#D0D5DD!important;color:var(--kb-navy)!important}
.btn-outline:hover{border-color:var(--kb-teal)!important;color:var(--kb-teal)!important}
.btn-small{min-height:42px!important;padding:0 14px!important;font-size:12.5px!important}
.mobile-menu-btn{display:none!important}
.mega-menu{border-radius:20px!important;border:1px solid var(--kb-line)!important;box-shadow:var(--kb-shadow-lg)!important}
.mobile-menu,.mobile-drawer{box-shadow:0 16px 30px rgba(16,24,40,.08)}
.admin-bar .site-header{top:32px!important}

/* type + sections */
.section{padding:78px 0!important}
.section-soft{background:var(--kb-soft)!important}
.section-heading{max-width:720px!important;margin-bottom:30px!important}
.section-heading.center{text-align:center;margin-left:auto!important;margin-right:auto!important}
.section-heading h2,.split-heading h2{font-size:clamp(30px,3.5vw,44px)!important;line-height:1.12!important;margin:10px 0 10px!important}
.section-heading p,.split-heading p{font-size:15px!important;color:var(--kb-muted)!important}
.eyebrow{display:inline-flex!important;align-items:center!important;gap:9px!important;font-size:10.5px!important;letter-spacing:.14em!important;font-weight:900!important;color:var(--kb-teal)!important;text-transform:uppercase!important}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--kb-teal);border-radius:3px}
.section-navy{background:linear-gradient(135deg,var(--kb-navy-3),var(--kb-navy))!important;color:#fff}
.section-navy h2,.section-navy h3{color:#fff!important}

/* New home hero */
.kb-hero{position:relative;overflow:hidden;padding:62px 0 56px;background:
 radial-gradient(circle at 84% 22%,rgba(17,130,157,.12),transparent 28%),
 linear-gradient(180deg,#FBFDFE 0%,#F7FAFC 100%)}
.kb-hero::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(26,46,90,.028) 1px,transparent 1px),linear-gradient(90deg,rgba(26,46,90,.028) 1px,transparent 1px);background-size:48px 48px;mask-image:linear-gradient(to bottom,#000,transparent 90%);pointer-events:none}
.kb-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);gap:54px;align-items:center}
.kb-hero-copy h1{font-size:clamp(42px,5.1vw,64px);line-height:1.03;margin:14px 0 18px;max-width:780px}
.kb-hero-copy h1 span{color:var(--kb-teal)}
.kb-hero-copy>p{font-size:17px;line-height:1.7;color:var(--kb-text);max-width:660px;margin:0}
.kb-hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:26px}
.kb-hero-actions .btn{min-height:50px;padding-inline:20px}
.kb-microproof{display:flex;gap:16px;flex-wrap:wrap;margin-top:24px;color:var(--kb-muted);font-size:12px;font-weight:700}
.kb-microproof span{display:flex;align-items:center;gap:7px}
.kb-microproof i{width:7px;height:7px;border-radius:99px;background:var(--kb-teal);box-shadow:0 0 0 5px rgba(17,130,157,.09)}
.kb-hero-visual{position:relative;min-height:520px}
.kb-hero-photo{position:absolute;inset:0 16px 0 0;border-radius:30px;overflow:hidden;box-shadow:var(--kb-shadow-lg);background:var(--kb-navy)}
.kb-hero-photo img{width:100%;height:100%;object-fit:cover}
.kb-hero-photo::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(10,24,49,.5))}
.kb-float-card{position:absolute;z-index:3;background:rgba(255,255,255,.96);border:1px solid rgba(228,231,236,.9);box-shadow:var(--kb-shadow);backdrop-filter:blur(12px);border-radius:16px;padding:14px 16px}
.kb-float-card strong{display:block;font-size:15px;color:var(--kb-navy);line-height:1.2}
.kb-float-card small{display:block;margin-top:4px;color:var(--kb-muted);font-size:11.5px}
.kb-float-card.a{left:-26px;top:54px;min-width:190px}
.kb-float-card.b{right:-4px;bottom:42px;min-width:210px}
.kb-float-icon{width:34px;height:34px;border-radius:10px;background:var(--kb-soft-teal);display:grid;place-items:center;margin-bottom:9px;color:var(--kb-teal);font-weight:900}
.kb-hero-badge{position:absolute;left:28px;bottom:26px;z-index:2;color:#fff;font-weight:800;font-size:12px;display:flex;gap:8px;align-items:center}
.kb-hero-badge::before{content:"";width:8px;height:8px;border-radius:99px;background:#57D3B3;box-shadow:0 0 0 5px rgba(87,211,179,.16)}

/* Trust strip */
.kb-trustbar{position:relative;z-index:5;margin-top:-1px;background:#fff;border-top:1px solid var(--kb-line);border-bottom:1px solid var(--kb-line)}
.kb-trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.kb-trust-item{padding:18px 20px;display:flex;gap:12px;align-items:center;border-right:1px solid var(--kb-line)}
.kb-trust-item:last-child{border-right:0}
.kb-trust-item b{font-size:13px;color:var(--kb-navy)}
.kb-trust-item span{display:block;font-size:11.5px;color:var(--kb-muted);margin-top:2px}
.kb-trust-dot{width:36px;height:36px;border-radius:11px;background:var(--kb-soft-teal);display:grid;place-items:center;color:var(--kb-teal);font-weight:900;flex:0 0 auto}

/* Destination cards */
.kb-destination-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.kb-destination-card{position:relative;min-height:226px;padding:20px;border:1px solid var(--kb-line);border-radius:20px;overflow:hidden;background:#fff;box-shadow:var(--kb-shadow-sm);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.kb-destination-card:hover{transform:translateY(-4px);box-shadow:var(--kb-shadow);border-color:#D5E7EB}
.kb-destination-card::after{content:"";position:absolute;width:130px;height:130px;border-radius:99px;right:-48px;bottom:-48px;background:radial-gradient(circle,rgba(17,130,157,.14),transparent 68%)}
.kb-destination-top{display:flex;align-items:center;justify-content:space-between}
.kb-destination-flag{width:42px;height:42px;border-radius:12px;background:var(--kb-soft);padding:9px;border:1px solid var(--kb-line)}
.kb-destination-card h3{font-size:21px;margin:30px 0 6px}
.kb-destination-card p{font-size:12.5px;color:var(--kb-muted);margin:0 0 17px}
.kb-destination-card a{font-size:12.5px;font-weight:850;color:var(--kb-teal)}
.kb-country-code{font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:#98A2B3;font-weight:900}

/* Fit + services */
.kb-fit-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:24px;align-items:stretch}
.kb-fit-copy{border-radius:24px;padding:34px;background:linear-gradient(145deg,var(--kb-navy-3),var(--kb-navy));color:#fff;position:relative;overflow:hidden}
.kb-fit-copy h2{color:#fff;font-size:clamp(30px,3.2vw,42px);margin:12px 0}
.kb-fit-copy p{color:rgba(255,255,255,.76);font-size:14px}
.kb-fit-copy ul{list-style:none;padding:0;margin:24px 0 0;display:grid;gap:13px}
.kb-fit-copy li{display:flex;gap:10px;align-items:flex-start;font-size:13px;color:rgba(255,255,255,.88)}
.kb-fit-copy li::before{content:"✓";width:22px;height:22px;border-radius:99px;background:rgba(255,255,255,.12);display:grid;place-items:center;flex:0 0 auto;color:#8DE1D1}
.kb-fit-form{border:1px solid var(--kb-line);border-radius:24px;background:#fff;padding:28px;box-shadow:var(--kb-shadow-sm)}
.kb-fit-form h3{font-size:24px;margin:0 0 6px}.kb-fit-form>p{font-size:12.5px;color:var(--kb-muted);margin:0 0 18px}
.kb-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.kb-fit-form label{display:grid;gap:6px;font-size:11.5px;font-weight:800;color:#344054}
.kb-fit-form input,.kb-fit-form select,.kb-fit-form textarea{width:100%;min-height:46px;border:1px solid #D0D5DD;border-radius:11px;background:#fff;padding:0 12px;color:var(--kb-ink);outline:0;transition:border-color .18s,box-shadow .18s}
.kb-fit-form textarea{padding-top:11px;min-height:90px}
.kb-fit-form input:focus,.kb-fit-form select:focus,.kb-fit-form textarea:focus{border-color:var(--kb-teal);box-shadow:0 0 0 4px rgba(17,130,157,.09)}
.kb-span-2{grid-column:1/-1}
.form-note{font-size:10.5px!important;color:var(--kb-muted)!important}
.form-success{margin-top:12px;border-radius:10px;padding:10px 12px;background:#EDF9F3;color:#0B6B4A;font-size:12px}
.form-error{background:#FFF0F0!important;color:#9F1D1D!important}
.hp-field{position:absolute!important;left:-9999px!important;opacity:0!important}

.kb-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.kb-process-card{border:1px solid var(--kb-line);border-radius:18px;padding:22px;background:#fff;position:relative}
.kb-process-num{font-size:10px;font-weight:900;color:var(--kb-teal);letter-spacing:.12em}
.kb-process-card h3{font-size:18px;margin:14px 0 6px}
.kb-process-card p{font-size:12.5px;color:var(--kb-muted);margin:0}

/* Universities */
.kb-university-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.kb-university-card{display:flex;gap:15px;align-items:center;border:1px solid var(--kb-line);border-radius:18px;background:#fff;padding:18px;transition:.2s}
.kb-university-card:hover{box-shadow:var(--kb-shadow-sm);transform:translateY(-2px)}
.kb-university-mark{width:54px;height:54px;border-radius:14px;background:linear-gradient(145deg,var(--kb-navy),var(--kb-teal));color:#fff;display:grid;place-items:center;font-weight:900;letter-spacing:-.05em;flex:0 0 auto}
.kb-university-card h3{font-size:16px;margin:0 0 3px}.kb-university-card p{font-size:11.5px;color:var(--kb-muted);margin:0}
.kb-university-card small{display:block;margin-top:6px;font-size:10px;color:var(--kb-teal);font-weight:800}

/* Founder + team */
.kb-founder-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:38px;align-items:center}
.kb-founder-visual{min-height:430px;border-radius:26px;position:relative;overflow:hidden;background:linear-gradient(145deg,var(--kb-navy),var(--kb-teal));display:grid;place-items:center;box-shadow:var(--kb-shadow)}
.kb-founder-visual img{width:100%;height:100%;object-fit:cover}
.kb-founder-placeholder{display:grid;place-items:center;text-align:center;color:#fff}
.kb-founder-placeholder .avatar{width:170px;height:170px;border-radius:50%;background:rgba(255,255,255,.16);display:grid;place-items:center;font-size:56px;font-weight:900;border:1px solid rgba(255,255,255,.24)}
.kb-founder-placeholder small{margin-top:16px;opacity:.8}
.kb-founder-copy h2{font-size:clamp(30px,3.4vw,44px);margin:10px 0 14px}.kb-founder-copy p{font-size:14.5px;color:var(--kb-text)}
.kb-signature{margin-top:20px;padding-top:18px;border-top:1px solid var(--kb-line);display:flex;justify-content:space-between;gap:16px;align-items:center}.kb-signature strong{font-size:14px}.kb-signature span{font-size:11.5px;color:var(--kb-muted)}

.kb-team-preview{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.kb-person-card{border-radius:20px;overflow:hidden;background:#fff;border:1px solid var(--kb-line);box-shadow:var(--kb-shadow-sm);transition:.2s}
.kb-person-card:hover{transform:translateY(-3px);box-shadow:var(--kb-shadow)}
.kb-person-photo{aspect-ratio:4/4.7;background:var(--kb-soft);overflow:hidden}
.kb-person-photo img{width:100%;height:100%;object-fit:cover}
.kb-person-body{padding:16px}.kb-person-body h3{font-size:16px;margin:0 0 3px}.kb-person-body p{font-size:11.5px;color:var(--kb-muted);margin:0}.kb-person-body span{display:inline-block;margin-top:9px;font-size:9.5px;font-weight:900;letter-spacing:.08em;color:var(--kb-teal);text-transform:uppercase}

/* Testimonials placeholder */
.kb-review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.kb-review-card{border:1px solid var(--kb-line);border-radius:20px;padding:22px;background:#fff}
.kb-review-tag{font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.12em;color:var(--kb-warn);background:#FFF7E8;border-radius:999px;padding:6px 8px;display:inline-block}
.kb-review-card blockquote{margin:16px 0;color:var(--kb-text);font-size:14px;line-height:1.7}
.kb-review-person{display:flex;gap:10px;align-items:center}.kb-review-avatar{width:38px;height:38px;border-radius:50%;background:linear-gradient(145deg,var(--kb-navy),var(--kb-teal));display:grid;place-items:center;color:#fff;font-size:11px;font-weight:900}
.kb-review-person b{font-size:12px;color:var(--kb-navy)}.kb-review-person span{display:block;font-size:10.5px;color:var(--kb-muted)}
.kb-placeholder-note{margin-top:14px;font-size:10.5px;color:var(--kb-muted);text-align:center}

/* Branches */
.kb-branch-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.kb-branch-card{border:1px solid var(--kb-line);border-radius:18px;background:#fff;padding:20px}
.kb-branch-card .kb-branch-type{font-size:9.5px;letter-spacing:.12em;text-transform:uppercase;font-weight:900;color:var(--kb-teal)}
.kb-branch-card h3{font-size:18px;margin:10px 0 5px}.kb-branch-card p{font-size:11.5px;color:var(--kb-muted);margin:0 0 13px}.kb-branch-card a{font-size:11.5px;font-weight:800;color:var(--kb-teal)}

/* Final CTA */
.kb-final-cta{padding:62px 0;background:linear-gradient(135deg,var(--kb-navy-3),var(--kb-navy) 58%,var(--kb-teal-2));color:#fff;position:relative;overflow:hidden}
.kb-final-cta .container{display:flex;align-items:center;justify-content:space-between;gap:30px}
.kb-final-cta h2{color:#fff;font-size:clamp(30px,3.5vw,44px);margin:0 0 8px}.kb-final-cta p{margin:0;color:rgba(255,255,255,.76);max-width:650px}
.kb-final-cta .btn-outline{background:#fff!important}

/* footer */
.footer{background:#09172F!important;color:rgba(255,255,255,.72)!important;padding-top:56px!important}
.footer-grid{display:grid!important;grid-template-columns:1.3fr repeat(4,1fr)!important;gap:32px!important;padding-bottom:42px!important}
.footer h3{color:#fff!important;font-size:12px!important;text-transform:uppercase!important;letter-spacing:.1em!important;margin:0 0 15px!important}
.footer a{display:block;color:rgba(255,255,255,.72)!important;font-size:12px!important;margin:8px 0!important}
.footer a:hover{color:#fff!important}
.footer p{font-size:12px!important;line-height:1.65!important}
.footer-brand img{height:64px!important;width:auto!important;filter:none!important;margin-bottom:14px!important;background:#fff;border-radius:12px;padding:6px}
.footer-brand>strong{display:block;color:#fff;font-size:14px;margin-bottom:7px}
.footer-social{display:flex!important;gap:8px!important;flex-wrap:wrap!important;margin-top:14px!important}
.footer-social a{width:34px;height:34px;border-radius:10px;background:rgba(255,255,255,.08);display:grid!important;place-items:center;margin:0!important;color:#fff!important;font-size:10px!important;font-weight:900}
.kb-contact-ids{display:grid!important;gap:4px!important;margin-top:12px!important;font-size:11px!important;color:rgba(255,255,255,.75)!important}
.footer-trust{border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08);padding:12px 0;color:rgba(255,255,255,.58);font-size:10.5px;text-align:center}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08)!important;background:transparent!important}
.footer-bottom-flex{min-height:58px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:20px!important;font-size:10.5px!important;color:rgba(255,255,255,.56)!important}

/* Internal page refinements */
.simple-hero,.page-hero{padding:58px 0!important;background:linear-gradient(145deg,#F9FCFD,#EEF7F9)!important}
.simple-hero h1,.page-hero h1{font-size:clamp(38px,4.6vw,56px)!important;line-height:1.05!important}
.page-hero-grid{gap:40px!important}
.hero-media{border-radius:24px!important;box-shadow:var(--kb-shadow)!important}
.info-card,.path-card,.fact-card,.service-card,.intake-card,.credential-card-v2,.branch-card-v2,.contact-box,.uni-card,.university-card,.link-card,.notice,.req-card{border-radius:18px!important;box-shadow:none!important;border-color:var(--kb-line)!important}
.info-card:hover,.path-card:hover,.service-card:hover,.credential-card-v2:hover,.branch-card-v2:hover,.university-card:hover{box-shadow:var(--kb-shadow-sm)!important;transform:translateY(-2px);transition:.2s}
.team-grid{gap:16px!important}.team-card{border-radius:20px!important;overflow:hidden!important;border:1px solid var(--kb-line)!important;background:#fff!important}
.team-avatar{background:var(--kb-soft)!important;overflow:hidden!important}.team-avatar img{width:100%;height:100%;object-fit:cover}
.legal-copy{max-width:860px;margin:auto}
.mobile-action{box-shadow:0 -8px 24px rgba(16,24,40,.08)!important}

/* Motion */
[data-reveal]{opacity:0;transform:translateY(16px);transition:opacity .55s ease,transform .55s cubic-bezier(.2,.7,.2,1)}
[data-reveal].is-visible{opacity:1;transform:none}
[data-reveal-delay="1"]{transition-delay:.08s}[data-reveal-delay="2"]{transition-delay:.16s}[data-reveal-delay="3"]{transition-delay:.24s}
.kb-float-card{animation:kbFloat 5s ease-in-out infinite}.kb-float-card.b{animation-delay:1.2s}
@keyframes kbFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important}.kb-float-card{animation:none!important}[data-reveal]{opacity:1!important;transform:none!important;transition:none!important}}

/* Tablet */
@media(max-width:1100px){
 .desktop-nav,.nav{display:none!important}.mobile-menu-btn{display:flex!important;margin-left:auto!important}
 .header-actions{margin-left:auto!important}
 .kb-hero-grid{grid-template-columns:1fr 420px;gap:34px}.kb-hero-copy h1{font-size:50px}
 .kb-destination-grid{grid-template-columns:repeat(3,1fr)}
 .kb-university-grid{grid-template-columns:repeat(2,1fr)}
 .kb-process-grid{grid-template-columns:repeat(2,1fr)}
 .kb-team-preview{grid-template-columns:repeat(3,1fr)}
 .kb-branch-grid{grid-template-columns:repeat(2,1fr)}
 .footer-grid{grid-template-columns:1.2fr repeat(2,1fr)!important}
 .footer-grid>div:nth-child(4),.footer-grid>div:nth-child(5){margin-top:8px}
}
@media(max-width:900px){
 .container{width:min(100% - 36px,var(--kb-container))}
 .utility-locations{display:none!important}.utility-inner{justify-content:center!important}
 .header-actions .btn-outline{display:none!important}
 .kb-hero{padding:44px 0}.kb-hero-grid{grid-template-columns:1fr}.kb-hero-copy{text-align:center}.kb-hero-copy>p{margin-inline:auto}.kb-hero-actions,.kb-microproof{justify-content:center}
 .kb-hero-visual{min-height:430px;max-width:660px;width:100%;margin:0 auto}.kb-float-card.a{left:-6px}.kb-float-card.b{right:-6px}
 .kb-trust-grid{grid-template-columns:repeat(2,1fr)}.kb-trust-item:nth-child(2){border-right:0}.kb-trust-item:nth-child(-n+2){border-bottom:1px solid var(--kb-line)}
 .kb-fit-grid,.kb-founder-grid{grid-template-columns:1fr}.kb-founder-visual{min-height:380px}
 .kb-review-grid{grid-template-columns:1fr 1fr}.kb-team-preview{grid-template-columns:repeat(2,1fr)}
 .page-hero-grid{grid-template-columns:1fr!important}
 .facts-grid,.destination-grid,.card-grid-4{grid-template-columns:repeat(2,1fr)!important}
}
@media(max-width:640px){
 html{scroll-padding-top:90px}.container{width:calc(100% - 28px)}
 .utility-bar{display:none!important}.header-inner{min-height:66px!important}.brand img{height:52px!important}
 .header-actions{display:none!important}.mobile-menu-btn{width:42px!important;height:42px!important;border-radius:11px!important}
 .mobile-menu-inner,.mobile-drawer .container{padding-block:10px 18px!important}
 .section{padding:58px 0!important}.section-heading{margin-bottom:24px!important}
 .kb-hero{padding:36px 0 34px}.kb-hero-copy h1{font-size:39px}.kb-hero-copy>p{font-size:15px}.kb-hero-actions{display:grid;grid-template-columns:1fr 1fr}.kb-hero-actions .btn{padding-inline:12px}
 .kb-microproof{gap:10px;font-size:10.5px}
 .kb-hero-visual{min-height:360px;margin-top:6px}.kb-hero-photo{right:0;border-radius:22px}.kb-float-card{padding:11px 12px}.kb-float-card.a{left:8px;top:18px;min-width:158px}.kb-float-card.b{right:8px;bottom:18px;min-width:170px}.kb-float-card strong{font-size:12px}.kb-float-card small{font-size:9.5px}
 .kb-trust-grid{grid-template-columns:1fr 1fr}.kb-trust-item{padding:14px 12px;gap:9px}.kb-trust-dot{width:30px;height:30px}.kb-trust-item b{font-size:11px}.kb-trust-item span{font-size:9.5px}
 .kb-destination-grid{grid-template-columns:1fr 1fr;gap:10px}.kb-destination-card{min-height:195px;padding:16px}.kb-destination-card h3{font-size:17px;margin-top:24px}.kb-destination-card p{font-size:10.5px}.kb-destination-flag{width:36px;height:36px}
 .kb-fit-copy,.kb-fit-form{padding:22px;border-radius:20px}.kb-form-grid{grid-template-columns:1fr}.kb-span-2{grid-column:auto}
 .kb-process-grid,.kb-university-grid,.kb-review-grid,.kb-team-preview,.kb-branch-grid{grid-template-columns:1fr}
 .kb-person-card{display:grid;grid-template-columns:120px 1fr}.kb-person-photo{aspect-ratio:auto;min-height:145px}
 .kb-final-cta .container{display:block;text-align:center}.kb-final-cta .kb-hero-actions{margin-top:22px}
 .footer{padding-top:42px!important}.footer-grid{grid-template-columns:1fr 1fr!important;gap:24px 18px!important}.footer-grid>.footer-brand{grid-column:1/-1}.footer-bottom-flex{display:grid!important;justify-items:center!important;text-align:center!important;padding:14px 0}
 .facts-grid,.destination-grid,.card-grid-4,.card-grid-3,.intake-grid{grid-template-columns:1fr!important}
 .simple-hero,.page-hero{padding:42px 0!important}
}


/* v1.5.1 Media Standard — exact aspect ratios, consistent crops and lazy video shells */
:root{--kb-media-radius:22px}
.kb-person-photo,.team-avatar{aspect-ratio:4/5!important}
.kb-person-photo img,.team-avatar img{width:100%!important;height:100%!important;object-fit:cover!important;object-position:50% 18%!important}
.team-card{padding:0!important;min-width:0!important}
.team-avatar{width:100%!important;height:auto!important;border-radius:0!important;display:block!important}
.team-card>div:last-child{padding:16px 17px 18px!important}
.kb-founder-visual{aspect-ratio:4/5!important;min-height:0!important}
.kb-founder-visual img{object-position:50% 18%!important}
.hero-media{height:auto!important;aspect-ratio:16/9!important}
.branch-photo-large{height:auto!important;aspect-ratio:8/5!important}
.branch-photo-large img{object-position:50% 50%!important}
.article-card img,.image-card img{aspect-ratio:16/9!important;height:auto!important;object-fit:cover!important}
.uni-logo.official{aspect-ratio:1/1!important}

.kb-media-grid{display:grid;grid-template-columns:.88fr 1.12fr;gap:44px;align-items:center}
.kb-media-copy h2{font-size:clamp(31px,3.5vw,46px);margin:10px 0 14px}
.kb-media-copy p{color:var(--kb-text);font-size:14.5px;max-width:600px}
.kb-media-points{display:grid;gap:10px;margin-top:22px}.kb-media-point{display:flex;gap:10px;align-items:flex-start;color:var(--kb-muted);font-size:12px}.kb-media-point i{width:24px;height:24px;border-radius:8px;flex:0 0 auto;background:var(--kb-teal-soft);display:grid;place-items:center;color:var(--kb-teal);font-style:normal;font-weight:900}
.kb-video-shell{position:relative;aspect-ratio:16/9;border-radius:var(--kb-media-radius);overflow:hidden;background:#0b1d3a;box-shadow:var(--kb-shadow);isolation:isolate}
.kb-video-shell>img{width:100%;height:100%;object-fit:cover;display:block}
.kb-video-shell::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,19,41,.05),rgba(7,19,41,.52));z-index:1;pointer-events:none}
.kb-video-play{position:absolute;left:24px;bottom:22px;z-index:2;border:0;background:rgba(255,255,255,.95);color:var(--kb-navy);border-radius:16px;padding:12px 16px 12px 12px;display:grid;grid-template-columns:44px auto;grid-template-rows:auto auto;column-gap:11px;text-align:left;align-items:center;box-shadow:0 12px 30px rgba(7,19,41,.22);cursor:pointer;transition:transform .18s ease,box-shadow .18s ease}
.kb-video-play:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(7,19,41,.28)}
.kb-video-play>span{grid-row:1/3;width:44px;height:44px;border-radius:50%;background:var(--kb-teal);color:#fff;display:grid;place-items:center;font-size:14px;padding-left:2px}.kb-video-play b{font-size:12.5px}.kb-video-play small{font-size:10px;color:var(--kb-muted)}
.kb-video-shell iframe,.kb-video-shell video{position:absolute;inset:0;width:100%;height:100%;border:0;z-index:4;background:#000}
.kb-video-corner{position:absolute;right:16px;top:16px;z-index:2;padding:7px 9px;border-radius:999px;background:rgba(7,19,41,.72);color:#fff;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.kb-video-shell.is-empty .kb-video-play{cursor:default}.kb-video-shell.is-empty .kb-video-play small::after{content:" · ready for your video"}

@media(max-width:900px){.kb-media-grid{grid-template-columns:1fr;gap:26px}.kb-founder-visual{max-width:520px}.team-grid{grid-template-columns:repeat(2,1fr)!important}}
@media(max-width:620px){.team-grid{grid-template-columns:1fr!important}.kb-team-preview{grid-template-columns:repeat(2,1fr)!important}.kb-video-play{left:14px;bottom:14px;right:14px}.kb-video-shell{border-radius:18px}}
@media(max-width:430px){.kb-team-preview{grid-template-columns:1fr!important}}


/* =========================================================
   KB Education v1.5.2 — Unified Navigation, Trust & Motion
   ========================================================= */
.site-header{position:sticky!important;top:0!important;transform:none!important;visibility:visible!important;opacity:1!important;will-change:auto!important}
.nav-home-link{display:inline-flex!important;align-items:center!important;gap:5px!important}.nav-home-link img,.mobile-home-link img{width:15px;height:15px;opacity:.78}.mobile-home-link{display:flex!important;align-items:center;gap:8px}
.footer-social a{display:grid!important;place-items:center!important}.footer-social a img{width:16px!important;height:16px!important;object-fit:contain!important;filter:none!important}
.kb-page-trail{background:#fff;border-bottom:1px solid var(--kb-line);position:relative;z-index:10}.kb-page-trail-inner{min-height:48px;display:flex;align-items:center;gap:16px}.kb-history-back{display:inline-flex;align-items:center;gap:5px;border:1px solid var(--kb-line);background:#fff;color:var(--kb-navy);border-radius:10px;padding:7px 10px;font:inherit;font-size:12px;font-weight:800;cursor:pointer;transition:.2s}.kb-history-back:hover{border-color:rgba(26,153,144,.45);color:var(--kb-teal);transform:translateX(-2px)}.kb-history-back img{width:15px;height:15px}.kb-breadcrumbs{display:flex;align-items:center;gap:7px;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:12px}.kb-breadcrumbs a{color:var(--kb-muted);font-weight:700}.kb-breadcrumbs a:hover{color:var(--kb-teal)}.kb-breadcrumbs span[aria-current]{color:var(--kb-navy);font-weight:850;overflow:hidden;text-overflow:ellipsis}
.kb-page-nav{padding:32px 0 16px;background:#fff}.kb-page-nav-inner{display:grid;grid-template-columns:1fr 1fr;gap:14px}.kb-page-nav-link{display:flex;align-items:center;justify-content:space-between;gap:16px;border:1px solid var(--kb-line);border-radius:18px;padding:18px 20px;background:linear-gradient(180deg,#fff,#FBFCFD);box-shadow:0 8px 24px rgba(16,24,40,.045);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}.kb-page-nav-link:hover{transform:translateY(-3px);border-color:rgba(26,153,144,.35);box-shadow:0 16px 34px rgba(16,24,40,.08)}.kb-page-nav-link img{width:22px;height:22px;color:var(--kb-teal);flex:0 0 auto}.kb-page-nav-link span{display:grid;gap:2px}.kb-page-nav-link small{text-transform:uppercase;letter-spacing:.1em;font-size:9px;color:var(--kb-muted);font-weight:900}.kb-page-nav-link strong{font-size:14px;color:var(--kb-navy)}.kb-page-nav-link.is-next{text-align:right}.kb-page-nav-spacer{display:block}
.kb-destination-top{justify-content:flex-start!important}.kb-country-code{display:none!important}
.kb-trust-showcase{background:linear-gradient(180deg,#F7FBFB,#fff);position:relative;overflow:hidden}.kb-trust-showcase:before{content:"";position:absolute;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(26,153,144,.10),transparent 68%);right:-130px;top:-160px;pointer-events:none}.kb-trust-doc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.kb-trust-doc{display:flex;gap:14px;align-items:flex-start;border:1px solid var(--kb-line);background:rgba(255,255,255,.88);border-radius:20px;padding:20px;box-shadow:0 10px 30px rgba(16,24,40,.05);transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}.kb-trust-doc:hover{transform:translateY(-5px);border-color:rgba(26,153,144,.32);box-shadow:0 18px 38px rgba(16,24,40,.085)}.kb-trust-doc>img{width:42px;height:42px;padding:9px;border-radius:12px;background:var(--kb-soft);color:var(--kb-teal);flex:0 0 auto}.kb-trust-doc span{display:block;color:var(--kb-teal);font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.09em;margin-bottom:6px}.kb-trust-doc h3{font-size:15px;margin:0 0 6px}.kb-trust-doc p{font-size:11px;line-height:1.55;margin:0;color:var(--kb-muted)}.kb-trust-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px}
.kb-credential-showcase{background:#fff}.kb-credential-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.kb-credential-card{position:relative;border:1px solid var(--kb-line);border-radius:22px;padding:24px;background:linear-gradient(180deg,#fff,#FBFCFD);box-shadow:0 10px 32px rgba(16,24,40,.05);overflow:hidden}.kb-credential-card:after{content:"";position:absolute;inset:auto -70px -90px auto;width:160px;height:160px;border-radius:50%;background:radial-gradient(circle,rgba(26,153,144,.11),transparent 70%);pointer-events:none}.kb-credential-icon{width:48px;height:48px;border-radius:14px;display:grid;place-items:center;background:var(--kb-soft);margin-bottom:18px}.kb-credential-icon img{width:25px;height:25px}.kb-credential-status{display:inline-flex;border-radius:999px;background:#ECFDF3;color:#067647;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;padding:6px 8px;margin-bottom:10px}.kb-credential-card h3{font-size:18px;margin:0 0 7px}.kb-credential-card p{font-size:11.5px;line-height:1.65;color:var(--kb-muted)}.kb-credential-meta{font-weight:800!important;color:var(--kb-navy)!important}.kb-credential-note{display:block;font-size:10.5px;color:var(--kb-muted);font-weight:700}.kb-text-link{display:inline-flex;margin-top:8px;color:var(--kb-teal);font-size:11px;font-weight:900}.kb-credential-thumb{margin-top:14px;border-radius:12px;overflow:hidden}.kb-credential-thumb img{width:100%;aspect-ratio:4/3;object-fit:cover}.kb-document-note{margin-top:20px;border:1px solid var(--kb-line);border-radius:18px;padding:16px 18px;background:#F8FAFC;display:flex;gap:12px;align-items:flex-start}.kb-document-note img{width:25px;height:25px}.kb-document-note p{margin:0;font-size:11.5px;line-height:1.65;color:var(--kb-muted)}
/* Popup */
.kb-popup[hidden]{display:none!important}.kb-popup{position:fixed;inset:0;z-index:99999;display:grid;place-items:center;padding:20px}.kb-popup-backdrop{position:absolute;inset:0;background:rgba(7,19,41,.58);backdrop-filter:blur(8px);animation:kbFade .2s ease both}.kb-popup-panel{position:relative;z-index:1;width:min(760px,94vw);max-height:min(84vh,720px);overflow:auto;background:#fff;border-radius:26px;box-shadow:0 30px 90px rgba(4,13,31,.35);display:grid;grid-template-columns:minmax(0,42%) 1fr;animation:kbPopupIn .35s cubic-bezier(.2,.8,.2,1) both}.kb-popup-panel:not(:has(.kb-popup-media)){grid-template-columns:1fr;width:min(560px,94vw)}.kb-popup-media{min-height:340px;background:#EAF5F4}.kb-popup-media img{width:100%;height:100%;object-fit:cover}.kb-popup-copy{padding:38px}.kb-popup-kicker{display:block;color:var(--kb-teal);font-size:10px;text-transform:uppercase;letter-spacing:.11em;font-weight:900;margin-bottom:10px}.kb-popup-copy h2{font-size:32px;margin:0 0 12px}.kb-popup-copy p{font-size:13px;line-height:1.7;color:var(--kb-muted);margin:0 0 22px}.kb-popup-close{position:absolute;right:14px;top:14px;z-index:3;width:36px;height:36px;border-radius:50%;border:1px solid var(--kb-line);background:rgba(255,255,255,.94);font-size:22px;line-height:1;cursor:pointer;color:var(--kb-navy)}
/* Motion polish */
body{animation:kbPageEnter .32s ease both}.site-header .mega-menu{transform-origin:top center}.nav-with-menu.kb-open .mega-menu{animation:kbMenuIn .18s ease both}.btn,.info-card,.path-card,.kb-cms-card,.team-card,.branch-card,.university-card{transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}.btn:hover{transform:translateY(-2px)}.info-card:hover,.path-card:hover,.kb-cms-card:hover,.team-card:hover,.branch-card:hover,.university-card:hover{transform:translateY(-4px)}
[data-reveal]{opacity:0;transform:translateY(18px) scale(.995);transition:opacity .55s ease,transform .55s cubic-bezier(.2,.75,.25,1)}[data-reveal].is-visible{opacity:1;transform:none}
@keyframes kbPageEnter{from{opacity:.01}to{opacity:1}}@keyframes kbFade{from{opacity:0}to{opacity:1}}@keyframes kbPopupIn{from{opacity:0;transform:translateY(20px) scale(.975)}to{opacity:1;transform:none}}@keyframes kbMenuIn{from{opacity:0;transform:translateY(-5px) scale(.99)}to{opacity:1;transform:none}}
@media(max-width:1100px){.kb-trust-doc-grid,.kb-credential-grid{grid-template-columns:1fr 1fr}.nav-home-link{display:none!important}}
@media(max-width:700px){.kb-page-trail-inner{min-height:44px;gap:9px}.kb-history-back{padding:6px 8px}.kb-breadcrumbs{font-size:10.5px}.kb-page-nav-inner{grid-template-columns:1fr}.kb-page-nav-spacer{display:none}.kb-page-nav-link{padding:15px 16px}.kb-trust-doc-grid,.kb-credential-grid{grid-template-columns:1fr}.kb-trust-doc{padding:17px}.kb-popup-panel{grid-template-columns:1fr}.kb-popup-media{min-height:190px;max-height:220px}.kb-popup-copy{padding:28px 22px}.kb-popup-copy h2{font-size:25px}.kb-trust-actions .btn{width:100%;justify-content:center}}
@media(prefers-reduced-motion:reduce){*,*:before,*:after{animation-duration:.001ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.001ms!important}[data-reveal]{opacity:1!important;transform:none!important}}

.desktop-nav a.is-current{color:var(--kb-teal)!important;background:#F1FAF9!important}.kb-popup-open{overflow:hidden!important}


/* ============================================================
   v1.5.3 CRITICAL SHELL / NAV / FOOTER HOTFIX
   The same header/footer shell must render identically on every page.
   ============================================================ */
.utility-inner{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:24px!important}
.utility-locations,.utility-contact{display:flex!important;align-items:center!important;gap:10px!important;white-space:nowrap!important}
.utility-locations span+span::before{content:"·";margin-right:10px;color:rgba(255,255,255,.48)}
.desktop-nav{display:flex!important;align-items:center!important;gap:4px!important;margin-left:auto!important;min-width:0!important}
.nav-item{position:relative!important;display:flex!important;align-items:center!important}
.nav-link{display:inline-flex!important;align-items:center!important;gap:4px!important;white-space:nowrap!important;border:0!important;background:transparent!important;color:var(--kb-navy)!important;font:inherit!important;font-size:12.5px!important;font-weight:800!important;padding:10px 9px!important;border-radius:10px!important;cursor:pointer!important}
.nav-link:hover,.nav-link:focus-visible{color:var(--kb-teal)!important;background:#F1FAF9!important;outline:none!important}
.desktop-nav .mega-menu{position:absolute!important;top:calc(100% + 10px)!important;left:0!important;z-index:500!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important;transform:translateY(8px) scale(.99)!important;transition:opacity .16s ease,visibility .16s ease,transform .16s ease!important;background:#fff!important}
.desktop-nav .nav-with-menu:hover>.mega-menu,.desktop-nav .nav-with-menu:focus-within>.mega-menu,.desktop-nav .nav-with-menu.kb-open>.mega-menu{opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:none!important}
.desktop-nav .mega-destinations{width:560px!important;display:grid!important;grid-template-columns:1.15fr .85fr!important;gap:24px!important;padding:22px!important}
.desktop-nav .compact-menu{width:300px!important;display:block!important;padding:14px!important}
.desktop-nav .right-menu{left:auto!important;right:0!important}
.desktop-nav .mega-menu a{display:block!important;padding:8px 10px!important;border-radius:8px!important;color:#29384d!important;font-size:12.5px!important;line-height:1.45!important;margin:0!important}
.desktop-nav .mega-menu a:hover{background:var(--kb-soft)!important;color:var(--kb-teal)!important}
.desktop-nav .mega-menu a strong{display:block!important;font-size:13.5px!important}.desktop-nav .mega-menu a small{display:block!important;margin-top:2px!important;color:var(--kb-muted)!important;font-size:10.5px!important;font-weight:600!important}
.menu-grid-links{display:grid!important;grid-template-columns:1fr 1fr!important;gap:2px!important}.menu-label{margin:0 0 8px 10px!important;font-size:10px!important;text-transform:uppercase!important;letter-spacing:.1em!important;font-weight:900!important;color:var(--kb-teal)!important}
.header-actions{display:flex!important;align-items:center!important;gap:8px!important;margin-left:8px!important;flex:0 0 auto!important}
.footer-bottom-flex>span:last-child{display:inline-flex!important;align-items:center!important;gap:8px!important;flex-wrap:wrap!important;justify-content:flex-end!important}
.footer-bottom-flex>span:last-child>a{display:inline!important;margin:0!important;color:rgba(255,255,255,.68)!important;font-size:10.5px!important}
.footer-bottom-flex>span:last-child>a:hover{color:#fff!important}
.footer-social a{background:rgba(255,255,255,.10)!important;border:1px solid rgba(255,255,255,.08)!important;transition:background .18s ease,transform .18s ease,border-color .18s ease!important}
.footer-social a:hover{background:rgba(17,130,157,.30)!important;border-color:rgba(125,223,240,.28)!important;transform:translateY(-2px)!important}
.footer-social a img{width:17px!important;height:17px!important;filter:brightness(0) invert(1)!important;opacity:.92!important}
.form-success.form-error{border:1px solid #FDA29B!important;background:#FEF3F2!important;color:#B42318!important;border-radius:12px!important;padding:12px 14px!important;margin-top:12px!important;font-size:12px!important;font-weight:700!important}
@media(max-width:1180px){.desktop-nav{gap:1px!important}.nav-link{font-size:11.5px!important;padding-inline:7px!important}.header-actions .btn{padding-inline:11px!important}}
@media(max-width:1023px){.desktop-nav{display:none!important}.header-actions{margin-left:auto!important}.mobile-menu-btn{display:flex!important}}
@media(max-width:700px){.utility-locations,.utility-contact{white-space:normal!important}.footer-bottom-flex>span:last-child{justify-content:center!important}}


/* ===== v1.5.4 final content/media refinements ===== */

/* Top branch strip: each office is a real internal link. */
.utility-locations .utility-branch-link{
  color:inherit!important;text-decoration:none!important;display:inline-flex!important;align-items:center!important;
  font-weight:700!important;opacity:.94;transition:opacity .18s ease,color .18s ease;
}
.utility-locations .utility-branch-link:hover{color:#bdeef6!important;opacity:1}
.utility-locations .utility-branch-link+.utility-branch-link::before{
  content:"·";margin-right:10px;color:rgba(255,255,255,.48)
}

/* Footer social presence: only confirmed URLs render; messaging IDs remain styled contact chips. */
.footer-social{align-items:center!important}
.footer-social:empty{display:none!important}
.footer-social a{
  width:38px!important;height:38px!important;border-radius:12px!important;
  background:rgba(255,255,255,.10)!important;border:1px solid rgba(255,255,255,.12)!important;
}
.footer-social a img{width:18px!important;height:18px!important;filter:brightness(0) invert(1)!important}
.kb-contact-ids{display:flex!important;flex-wrap:wrap!important;gap:8px!important;margin-top:12px!important}
.kb-id-chip{
  display:inline-flex!important;align-items:center!important;gap:8px!important;padding:8px 10px!important;
  border-radius:12px!important;background:rgba(255,255,255,.075)!important;border:1px solid rgba(255,255,255,.09)!important;
  color:#fff!important
}
.kb-id-chip>img{width:20px!important;height:20px!important;object-fit:contain!important;filter:brightness(0) invert(1)!important;opacity:.95}
.kb-id-chip>span{display:grid!important;line-height:1.15!important}
.kb-id-chip strong{font-size:9px!important;letter-spacing:.06em!important;text-transform:uppercase!important;color:rgba(255,255,255,.68)!important}
.kb-id-chip em{font-style:normal!important;font-size:11px!important;color:#fff!important;margin-top:2px!important}

/* Founder & CEO full message page. */
.kb-founder-page{padding-top:68px!important}
.kb-founder-page-grid{display:grid;grid-template-columns:minmax(300px,.82fr) minmax(0,1.35fr);gap:54px;align-items:start}
.kb-founder-photo-card{position:sticky;top:108px;border:1px solid var(--kb-border);border-radius:28px;overflow:hidden;background:#fff;box-shadow:var(--kb-shadow)}
.kb-founder-photo{aspect-ratio:4/5;background:var(--kb-soft);overflow:hidden}
.kb-founder-photo img{width:100%;height:100%;object-fit:cover;object-position:50% 24%;display:block}
.kb-founder-caption{padding:22px 24px 24px}
.kb-founder-caption>span{font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.1em;color:var(--kb-teal)}
.kb-founder-caption h2{font-size:28px;margin:5px 0 2px}
.kb-founder-caption p{margin:0;color:var(--kb-muted);font-size:13px}
.kb-founder-caption small{display:block;margin-top:12px;color:var(--kb-navy);font-weight:800}
.kb-founder-letter{max-width:820px}
.kb-founder-letter h1{font-size:clamp(34px,4vw,54px);line-height:1.05;margin:12px 0 25px;letter-spacing:-.035em;color:var(--kb-navy)}
.kb-founder-letter p{font-size:16px;line-height:1.85;color:var(--kb-text);margin:0 0 19px}
.kb-founder-letter p strong{color:var(--kb-navy)}
.kb-founder-signoff{margin-top:34px;padding:22px 0 0;border-top:1px solid var(--kb-border);display:grid;gap:3px}
.kb-founder-signoff strong{font-size:22px;color:var(--kb-navy)}
.kb-founder-signoff span{font-size:13px;color:var(--kb-muted)}
.kb-founder-signoff em{font-style:normal;margin-top:9px;color:var(--kb-teal);font-weight:900}

/* Team roster: strict 4:5 media and consistent information blocks. */
.team-card{padding:0!important;overflow:hidden!important;display:flex!important;flex-direction:column!important;min-width:0}
.team-card-body{padding:18px 18px 20px;display:flex;flex-direction:column;flex:1}
.team-card-body h3{margin:0 0 6px!important}
.team-card-body strong{font-size:11.5px!important;line-height:1.45!important;color:var(--kb-teal)!important}
.team-card-body p{font-size:10.5px!important;line-height:1.4!important;color:var(--kb-muted)!important;min-height:0!important;margin:9px 0 5px!important}
.team-card-body span{font-size:9.5px!important;color:var(--kb-subtle)!important}
.team-section-title{margin-top:48px!important}
.team-section-title:first-child{margin-top:0!important}
.kb-cms-fallback-photo{width:100%;aspect-ratio:4/5;object-fit:cover;object-position:50% 18%;display:block;border-radius:16px 16px 0 0}

/* Branch map actions. */
.kb-map-link{display:inline-flex!important;align-items:center!important;gap:7px!important;margin-top:12px!important;color:var(--kb-teal)!important;font-weight:850!important}
.kb-branch-map-cta{padding:0 0 26px;background:#fff}
.kb-map-banner{display:flex;justify-content:space-between;gap:24px;align-items:center;padding:24px 26px;border:1px solid var(--kb-border);border-radius:20px;background:linear-gradient(135deg,#f8fcfd,#eef8fa)}
.kb-map-banner h2{margin:5px 0 5px;font-size:24px}.kb-map-banner p{margin:0;color:var(--kb-muted);font-size:13px}
.kb-map-banner .btn{white-space:nowrap}.kb-map-banner .btn img{width:16px;height:16px;filter:brightness(0) invert(1)}
.kb-contact-map-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.kb-contact-map-card{display:flex;align-items:center;gap:12px;padding:16px;border:1px solid var(--kb-border);border-radius:16px;background:#fff;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.kb-contact-map-card:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(21,56,91,.09);border-color:#bcdde5}
.kb-contact-map-card img{width:28px;height:28px;padding:6px;border-radius:9px;background:var(--kb-teal-light)}
.kb-contact-map-card span{display:grid}.kb-contact-map-card strong{font-size:12px;color:var(--kb-navy)}.kb-contact-map-card small{font-size:9.5px;color:var(--kb-muted);margin-top:3px}

/* Cleaner header after removing the redundant Home menu item. */
.desktop-nav{gap:16px!important}

/* Respect mobile hierarchy. */
@media(max-width:1000px){
  .kb-founder-page-grid{grid-template-columns:1fr;gap:32px}
  .kb-founder-photo-card{position:static;max-width:520px}
  .kb-contact-map-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:700px){
  .kb-founder-page{padding-top:45px!important}
  .kb-founder-letter p{font-size:15px;line-height:1.75}
  .kb-map-banner{align-items:flex-start;flex-direction:column;padding:20px}
  .kb-contact-map-grid{grid-template-columns:1fr}
  .kb-contact-ids{display:grid!important}
}


/* ===== source: v155.css ===== */
/* KB Education v1.5.5 — Final Unified Design System
   Loaded after the legacy/base layers to guarantee consistent rendering across every page. */
:root{
  --kb-border:#E4E7EC;
  --kb-subtle:#98A2B3;
  --kb-teal-light:#EAF7F9;
  --kb-focus:0 0 0 4px rgba(17,130,157,.13);
  --kb-ease:cubic-bezier(.2,.75,.25,1);
}
html{scroll-behavior:smooth;scroll-padding-top:118px}
body{overflow-x:hidden}
body,input,select,textarea,button{font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif}
button,input,select,textarea{font:inherit}
[hidden]{display:none!important}
.screen-reader-text{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}

/* ----- Header / utility: one shared shell ----- */
.utility-bar{position:relative;z-index:1002}
.utility-inner{padding-block:7px!important}
.utility-locations{display:flex!important;align-items:center!important;gap:0!important;flex-wrap:wrap!important}
.utility-locations .utility-branch-link{padding:2px 0!important}
.utility-contact{display:flex!important;align-items:center!important;gap:8px!important;flex-wrap:wrap!important;justify-content:flex-end!important}
.site-header{position:sticky!important;top:0!important;z-index:1001!important}
.header-inner{width:min(1220px,calc(100% - 42px))!important;min-height:76px!important}
.desktop-nav{gap:2px!important;min-width:0!important}
.desktop-nav>.nav-link,.desktop-nav>.nav-item>.nav-link{font-size:12px!important;padding:11px 8px!important}
.nav-with-menu{position:relative!important}
.desktop-nav .mega-menu{margin:0!important}
.desktop-nav .mega-destinations{width:min(600px,calc(100vw - 60px))!important}
.header-actions{gap:7px!important}
.header-actions .btn{white-space:nowrap!important}
.brand img{height:62px!important;max-width:88px!important}

/* ----- Shared page rhythm ----- */
main{min-height:50vh}
.section{padding:76px 0!important}
.simple-hero,.page-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,#F8FBFD 0%,#EEF8FA 100%)!important}
.simple-hero::after,.page-hero::after{content:"";position:absolute;right:-120px;top:-170px;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(17,130,157,.12),transparent 70%);pointer-events:none}
.simple-hero>.container,.page-hero>.container{position:relative;z-index:1}
.kb-page-trail{background:#fff;border-bottom:1px solid var(--kb-border)}
.kb-page-trail-inner{min-height:52px;display:flex;align-items:center;gap:16px}
.kb-history-back{display:inline-flex;align-items:center;gap:6px;border:1px solid var(--kb-border);background:#fff;color:var(--kb-navy);border-radius:10px;padding:8px 11px;font-weight:800;font-size:11px;cursor:pointer;transition:transform .18s var(--kb-ease),border-color .18s ease,color .18s ease}
.kb-history-back:hover{transform:translateX(-2px);border-color:#B7DCE4;color:var(--kb-teal)}
.kb-history-back img{width:14px;height:14px}
.kb-breadcrumbs{display:flex;align-items:center;gap:7px;flex-wrap:wrap;font-size:11px;color:var(--kb-muted)}
.kb-breadcrumbs a{font-weight:700;color:#53637A}.kb-breadcrumbs a:hover{color:var(--kb-teal)}

/* ----- Forms: enforced across homepage, contact and country pages ----- */
.kb-fit-grid{display:grid!important;grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr)!important;gap:28px!important;align-items:stretch!important}
.kb-fit-copy{min-width:0!important;padding:34px!important;border-radius:26px!important;background:linear-gradient(145deg,#0F2144,#203E73)!important;color:#fff!important;box-shadow:0 18px 50px rgba(16,33,66,.14)!important}
.kb-fit-copy h2{color:#fff!important;font-size:clamp(32px,3.2vw,44px)!important;line-height:1.18!important;margin:18px 0!important}
.kb-fit-copy p{color:rgba(255,255,255,.78)!important;font-size:14px!important;line-height:1.75!important}
.kb-fit-copy ul{list-style:none!important;margin:22px 0 0!important;padding:0!important;display:grid!important;gap:11px!important}
.kb-fit-copy li{position:relative!important;padding-left:30px!important;color:rgba(255,255,255,.88)!important;font-size:12.5px!important}
.kb-fit-copy li::before{content:"✓";position:absolute;left:0;top:-1px;width:20px;height:20px;border-radius:50%;display:grid;place-items:center;background:rgba(105,214,206,.15);color:#8DE1D1;font-weight:900}
.kb-fit-form{display:block!important;min-width:0!important;margin:0!important;border:1px solid var(--kb-border)!important;border-radius:26px!important;background:#fff!important;padding:30px!important;box-shadow:0 16px 46px rgba(16,24,40,.07)!important}
.kb-fit-form h3{display:block!important;font-size:25px!important;line-height:1.2!important;margin:0 0 7px!important;color:var(--kb-navy)!important}
.kb-fit-form>p{display:block!important;margin:0 0 20px!important;color:var(--kb-muted)!important;font-size:13px!important;line-height:1.6!important}
.kb-form-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:14px!important;width:100%!important}
.kb-fit-form label,.simple-form label,.contact-page-form label{display:grid!important;grid-template-columns:minmax(0,1fr)!important;gap:7px!important;min-width:0!important;color:#344054!important;font-size:11.5px!important;font-weight:800!important;line-height:1.35!important}
.kb-fit-form input,.kb-fit-form select,.kb-fit-form textarea,.simple-form input,.simple-form select,.simple-form textarea,.contact-page-form input,.contact-page-form select,.contact-page-form textarea{
  display:block!important;width:100%!important;max-width:100%!important;min-width:0!important;min-height:48px!important;margin:0!important;padding:0 13px!important;border:1px solid #D0D5DD!important;border-radius:12px!important;background:#fff!important;color:#101828!important;font-size:13px!important;font-weight:500!important;line-height:1.35!important;box-shadow:none!important;appearance:auto!important
}
.kb-fit-form textarea,.simple-form textarea,.contact-page-form textarea{min-height:108px!important;padding:12px 13px!important;resize:vertical!important}
.kb-fit-form input:focus,.kb-fit-form select:focus,.kb-fit-form textarea:focus,.simple-form input:focus,.simple-form select:focus,.simple-form textarea:focus,.contact-page-form input:focus,.contact-page-form select:focus,.contact-page-form textarea:focus{outline:none!important;border-color:var(--kb-teal)!important;box-shadow:var(--kb-focus)!important}
.kb-span-2{grid-column:1/-1!important}
.kb-fit-form button[type="submit"],.simple-form button[type="submit"],.contact-page-form button[type="submit"]{min-height:50px!important;cursor:pointer!important}
.kb-fit-form button[disabled],.simple-form button[disabled],.contact-page-form button[disabled]{opacity:.65;cursor:wait!important;transform:none!important}
.form-note{margin:13px 0 0!important;color:var(--kb-muted)!important;font-size:10.5px!important;line-height:1.5!important}
.form-success{margin-top:14px!important;padding:12px 14px!important;border-radius:12px!important;border:1px solid #A9E4D0!important;background:#F0FBF7!important;color:#176B4C!important;font-size:12px!important;font-weight:700!important;line-height:1.5!important}
.form-success.form-error{border-color:#FDA29B!important;background:#FEF3F2!important;color:#B42318!important}
.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}

/* ----- Founder & CEO ----- */
.kb-founder-page{padding:68px 0 78px!important}
.kb-founder-page-grid{display:grid!important;grid-template-columns:minmax(320px,.78fr) minmax(0,1.28fr)!important;gap:58px!important;align-items:start!important}
.kb-founder-photo-card{position:sticky!important;top:114px!important;overflow:hidden!important;border:1px solid var(--kb-border)!important;border-radius:28px!important;background:#fff!important;box-shadow:0 24px 60px rgba(16,24,40,.11)!important}
.kb-founder-photo{aspect-ratio:4/5!important;overflow:hidden!important;background:#EAF3F7!important}
.kb-founder-photo img{display:block!important;width:100%!important;height:100%!important;object-fit:cover!important;object-position:50% 24%!important}
.kb-founder-caption{padding:22px 24px 24px!important}
.kb-founder-caption h2{margin:6px 0 2px!important;font-size:28px!important}
.kb-founder-letter{max-width:800px!important;min-width:0!important}
.kb-founder-letter h1{font-size:clamp(36px,4vw,54px)!important;line-height:1.08!important;margin:14px 0 26px!important;color:var(--kb-navy)!important}
.kb-founder-letter p{font-size:15.5px!important;line-height:1.88!important;color:#3D4A5D!important;margin:0 0 19px!important;text-align:left!important}
.kb-founder-signoff{margin-top:32px!important;padding-top:22px!important;border-top:1px solid var(--kb-border)!important}

/* ----- Team: exact hierarchy readability ----- */
.team-section-title{display:flex!important;align-items:end!important;justify-content:space-between!important;gap:20px!important;margin:50px 0 18px!important;padding-top:8px!important}
.team-section-title h2{margin:6px 0 0!important;font-size:28px!important}
.team-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:18px!important}
.team-card{min-width:0!important;border:1px solid var(--kb-border)!important;border-radius:20px!important;background:#fff!important;overflow:hidden!important;box-shadow:0 8px 24px rgba(16,24,40,.045)!important;transition:transform .24s var(--kb-ease),box-shadow .24s var(--kb-ease),border-color .24s ease!important}
.team-card:hover{transform:translateY(-5px)!important;box-shadow:0 18px 42px rgba(16,24,40,.10)!important;border-color:#C7E3E9!important}
.team-avatar{display:block!important;width:100%!important;height:auto!important;aspect-ratio:4/5!important;border-radius:0!important;overflow:hidden!important;background:linear-gradient(145deg,#163A6B,#11829D)!important}
.team-avatar img{display:block!important;width:100%!important;height:100%!important;object-fit:cover!important;object-position:50% 18%!important}
.team-card-body{padding:17px 17px 19px!important}
.team-card-body h3{font-size:18px!important;line-height:1.25!important;margin:0 0 6px!important}
.team-card-body strong{display:block!important;color:var(--kb-teal)!important;font-size:11px!important;line-height:1.5!important}
.team-card-body .team-branch{display:block!important;margin-top:10px!important;color:var(--kb-muted)!important;font-size:10px!important;font-weight:700!important}
.team-card-body>p,.team-card-body>span:not(.team-branch){display:none!important}
.filter-chips{gap:9px!important;margin-bottom:28px!important}
.filter-chips button{cursor:pointer!important;transition:transform .18s var(--kb-ease),background .18s ease,color .18s ease,border-color .18s ease!important}
.filter-chips button:hover{transform:translateY(-1px);border-color:#B7DCE4;color:var(--kb-teal)}

/* ----- Country / university / service cards ----- */
.kb-destination-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:16px!important}
.kb-destination-card,.info-card,.service-card,.path-card,.uni-card,.kb-university-card,.kb-branch-card,.kb-contact-map-card,.kb-credential-card{transition:transform .24s var(--kb-ease),box-shadow .24s var(--kb-ease),border-color .24s ease!important}
.kb-destination-card:hover,.info-card:hover,.service-card:hover,.path-card:hover,.uni-card:hover,.kb-university-card:hover,.kb-branch-card:hover,.kb-contact-map-card:hover,.kb-credential-card:hover{transform:translateY(-4px)!important;box-shadow:0 16px 40px rgba(16,24,40,.09)!important;border-color:#C8E5EA!important}
.kb-destination-top{display:flex!important;align-items:center!important;justify-content:flex-start!important}
.kb-destination-flag{width:44px!important;height:44px!important;border-radius:50%!important;object-fit:cover!important;border:1px solid rgba(16,24,40,.06)!important;box-shadow:0 6px 18px rgba(16,24,40,.08)!important}

/* ----- Video ----- */
.kb-video-shell{position:relative!important;overflow:hidden!important;border-radius:24px!important;background:#0B1730!important;box-shadow:0 20px 54px rgba(16,24,40,.13)!important}
.kb-video-shell>img{display:block!important;width:100%!important;aspect-ratio:16/9!important;object-fit:cover!important;opacity:.92!important;transition:transform .7s var(--kb-ease),opacity .35s ease!important}
.kb-video-shell:hover>img{transform:scale(1.025);opacity:.98!important}
.kb-video-play{transition:transform .2s var(--kb-ease),box-shadow .2s ease!important}
.kb-video-play:hover{transform:translateY(-2px)!important;box-shadow:0 14px 34px rgba(0,0,0,.22)!important}
.kb-video-play>span{animation:kbPlayPulse 2.4s ease-in-out infinite}
.kb-video-shell iframe,.kb-video-shell video{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;border:0!important;z-index:10!important;background:#000!important}
@keyframes kbPlayPulse{0%,100%{box-shadow:0 0 0 0 rgba(255,255,255,.26)}50%{box-shadow:0 0 0 10px rgba(255,255,255,0)}}

/* ----- Trust / credentials ----- */
.kb-trust-doc-grid,.kb-credential-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:16px!important}
.kb-credential-card{position:relative!important;overflow:hidden!important;background:#fff!important;border:1px solid var(--kb-border)!important;border-radius:20px!important;padding:21px!important}
.kb-credential-icon img{width:28px!important;height:28px!important}
.kb-credential-status{display:inline-flex!important;margin:12px 0 6px!important;padding:5px 8px!important;border-radius:999px!important;background:#EAF8F4!important;color:#15765A!important;font-size:9px!important;font-weight:900!important;text-transform:uppercase!important;letter-spacing:.06em!important}

/* ----- Social / contact ----- */
.footer-social{display:flex!important;align-items:center!important;gap:9px!important;flex-wrap:wrap!important;margin-top:16px!important}
.footer-social a{display:grid!important;place-items:center!important;width:38px!important;height:38px!important;border-radius:12px!important;background:rgba(255,255,255,.10)!important;border:1px solid rgba(255,255,255,.12)!important;transition:transform .2s var(--kb-ease),background .2s ease,border-color .2s ease!important}
.footer-social a:hover{transform:translateY(-3px) scale(1.03)!important;background:rgba(17,130,157,.34)!important;border-color:rgba(141,225,209,.42)!important}
.footer-social a img{display:block!important;width:18px!important;height:18px!important;object-fit:contain!important;filter:brightness(0) invert(1)!important}
.kb-contact-ids{display:flex!important;flex-wrap:wrap!important;gap:8px!important;margin-top:11px!important}
.kb-id-chip{display:inline-flex!important;align-items:center!important;gap:8px!important;padding:8px 10px!important;border:1px solid rgba(255,255,255,.10)!important;border-radius:12px!important;background:rgba(255,255,255,.07)!important}
.kb-id-chip>img{width:19px!important;height:19px!important;filter:brightness(0) invert(1)!important}
.kb-social-contact-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.kb-social-contact-card{display:flex;align-items:center;gap:12px;padding:17px;border:1px solid var(--kb-border);border-radius:16px;background:#fff}
.kb-social-contact-card img{width:28px;height:28px;padding:5px;border-radius:9px;background:var(--kb-teal-light)}
.kb-social-contact-card strong{display:block;color:var(--kb-navy);font-size:12px}.kb-social-contact-card span{display:block;color:var(--kb-muted);font-size:10.5px;margin-top:2px}

/* ----- Branch maps ----- */
.kb-contact-map-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:14px!important}
.kb-map-banner{border:1px solid var(--kb-border)!important}
.kb-map-banner .btn img{width:17px!important;height:17px!important}

/* ----- Footer ----- */
.footer-grid{grid-template-columns:1.25fr repeat(4,minmax(0,1fr))!important;gap:34px!important}
.footer-bottom-flex{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:18px!important;flex-wrap:wrap!important}
.footer-bottom-flex>span:last-child{display:flex!important;align-items:center!important;gap:8px!important;flex-wrap:wrap!important}
.footer-bottom-flex>span:last-child a{display:inline!important;margin:0!important}

/* ----- Motion language ----- */
[data-reveal]{opacity:0;transform:translateY(18px);transition:opacity .62s var(--kb-ease),transform .62s var(--kb-ease)}
[data-reveal].is-visible{opacity:1;transform:none}
[data-reveal][data-kb-reveal="left"]{transform:translateX(-24px)}
[data-reveal][data-kb-reveal="right"]{transform:translateX(24px)}
[data-reveal][data-kb-reveal="scale"]{transform:scale(.975)}
[data-reveal][data-kb-reveal="left"].is-visible,[data-reveal][data-kb-reveal="right"].is-visible,[data-reveal][data-kb-reveal="scale"].is-visible{transform:none}
.kb-hero-copy{animation:kbHeroIn .72s var(--kb-ease) both}
.kb-hero-visual{animation:kbHeroVisual .85s .08s var(--kb-ease) both}
.kb-float-card{animation:kbFloat 5.2s ease-in-out infinite}
.kb-float-card.b{animation-delay:.8s}
@keyframes kbHeroIn{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
@keyframes kbHeroVisual{from{opacity:0;transform:translateY(18px) scale(.985)}to{opacity:1;transform:none}}
@keyframes kbFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
.kb-counter[data-kb-count]{font-variant-numeric:tabular-nums}
.kb-map-pin-motion img,.kb-contact-map-card img{transition:transform .2s var(--kb-ease)}
.kb-contact-map-card:hover img{transform:translateY(-2px) scale(1.05)}

/* popup */
.kb-popup[hidden]{display:none!important}.kb-popup:not([hidden]) .kb-popup-panel{animation:kbPopupIn .32s var(--kb-ease) both}.kb-popup:not([hidden]) .kb-popup-backdrop{animation:kbFadeIn .22s ease both}
@keyframes kbPopupIn{from{opacity:0;transform:translateY(18px) scale(.98)}to{opacity:1;transform:none}}@keyframes kbFadeIn{from{opacity:0}to{opacity:1}}

/* ----- Responsive ----- */
@media(max-width:1180px){
  .desktop-nav>.nav-link,.desktop-nav>.nav-item>.nav-link{font-size:11.2px!important;padding-inline:6px!important}
  .header-inner{width:min(1180px,calc(100% - 30px))!important;gap:12px!important}
  .team-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}
  .kb-destination-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}
  .kb-trust-doc-grid,.kb-credential-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:1023px){
  .utility-inner{align-items:flex-start!important}
  .desktop-nav{display:none!important}
  .mobile-menu-btn{display:flex!important}
  .header-actions{margin-left:auto!important}
  .kb-fit-grid,.kb-founder-page-grid{grid-template-columns:1fr!important}
  .kb-founder-photo-card{position:static!important;max-width:520px!important}
  .team-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .kb-destination-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .kb-contact-map-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .footer-brand{grid-column:1/-1}
}
@media(max-width:700px){
  .container{width:min(100% - 30px,var(--kb-container))!important}
  .utility-inner{display:grid!important;grid-template-columns:1fr!important;gap:6px!important;padding-block:7px!important}
  .utility-contact{justify-content:flex-start!important;font-size:10px!important}
  .utility-locations{font-size:10px!important}
  .utility-locations .utility-branch-link+.utility-branch-link::before{margin:0 7px!important}
  .header-inner{width:calc(100% - 28px)!important;min-height:68px!important}
  .brand img{height:54px!important;max-width:78px!important}
  .header-actions .btn-outline{display:none!important}
  .header-actions .btn-primary{min-height:38px!important;font-size:10.5px!important;padding-inline:11px!important}
  .section{padding:54px 0!important}
  .kb-page-trail-inner{align-items:flex-start!important;flex-direction:column!important;padding-block:10px!important;gap:8px!important}
  .kb-fit-copy,.kb-fit-form{padding:22px!important;border-radius:20px!important}
  .kb-form-grid{grid-template-columns:1fr!important;gap:12px!important}.kb-span-2{grid-column:auto!important}
  .kb-founder-page{padding:46px 0 56px!important}.kb-founder-page-grid{gap:30px!important}.kb-founder-letter p{font-size:14.5px!important;line-height:1.78!important}
  .team-grid,.kb-destination-grid,.kb-contact-map-grid,.kb-trust-doc-grid,.kb-credential-grid,.kb-social-contact-grid{grid-template-columns:1fr!important}
  .team-section-title{margin-top:38px!important}.team-card{max-width:430px!important}
  .footer-grid{grid-template-columns:1fr!important}.footer-brand{grid-column:auto}
  .footer-bottom-flex{justify-content:center!important;text-align:center!important}.footer-bottom-flex>span:last-child{justify-content:center!important}
  .kb-float-card{animation:none!important}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
  [data-reveal]{opacity:1!important;transform:none!important}
}
/* Empty optional video slots stay out of the public layout until a URL is configured in CMS. */
.kb-media-grid.kb-video-empty{grid-template-columns:1fr!important}
.kb-media-grid.kb-video-empty .kb-video-shell.is-empty{display:none!important}
.kb-media-grid.kb-video-empty .kb-media-copy{max-width:780px}


/* ===== source: v156.css ===== */
/* KB Education v1.5.6 — fix-only production correction layer */
:root{--kb-form-border:#cfd8e3;--kb-form-bg:#fff;--kb-form-label:#344054;--kb-form-placeholder:#98a2b3}

/* Hard isolate public enquiry controls from plugin/theme form resets. */
.kb-enquiry-form,.kb-enquiry-form *{box-sizing:border-box}
.kb-enquiry-form{position:relative!important;display:block!important;width:100%!important;min-width:0!important;overflow:visible!important}
.kb-enquiry-form .kb-form-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:14px!important;align-items:start!important;width:100%!important}
.kb-enquiry-form label{display:flex!important;flex-direction:column!important;gap:7px!important;min-width:0!important;margin:0!important;color:var(--kb-form-label)!important;font-size:12px!important;font-weight:800!important;line-height:1.35!important;text-transform:none!important;letter-spacing:0!important}
.kb-enquiry-form .kb-field-label{display:block!important;margin:0!important;padding:0!important;color:inherit!important;font:inherit!important}
.kb-enquiry-form input:not(.hp-field),.kb-enquiry-form select,.kb-enquiry-form textarea{display:block!important;position:relative!important;width:100%!important;max-width:100%!important;min-width:0!important;height:48px!important;margin:0!important;padding:0 13px!important;border:1px solid var(--kb-form-border)!important;border-radius:12px!important;background:var(--kb-form-bg)!important;color:#101828!important;font:500 14px/1.3 Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif!important;box-shadow:none!important;opacity:1!important;visibility:visible!important;transform:none!important;appearance:auto!important;-webkit-appearance:auto!important}
.kb-enquiry-form select{padding-right:34px!important;cursor:pointer!important}
.kb-enquiry-form textarea{height:auto!important;min-height:108px!important;padding:12px 13px!important;resize:vertical!important;overflow:auto!important}
.kb-enquiry-form input::placeholder,.kb-enquiry-form textarea::placeholder{color:var(--kb-form-placeholder)!important;opacity:1!important}
.kb-enquiry-form input:focus,.kb-enquiry-form select:focus,.kb-enquiry-form textarea:focus{outline:0!important;border-color:#11829d!important;box-shadow:0 0 0 4px rgba(17,130,157,.12)!important}
.kb-enquiry-form .kb-span-2{grid-column:1/-1!important}
.kb-enquiry-form button[type="submit"]{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:100%!important;min-height:50px!important;margin:2px 0 0!important;cursor:pointer!important}
.kb-enquiry-form[aria-busy="true"] button[type="submit"]{opacity:.72!important;cursor:wait!important}
.kb-enquiry-form .form-note{display:block!important;margin:13px 0 0!important;color:#667085!important;font-size:11px!important;line-height:1.55!important}
.kb-enquiry-form .form-success{display:block!important;margin-top:14px!important;padding:12px 14px!important;border:1px solid #a9e4d0!important;border-radius:12px!important;background:#f0fbf7!important;color:#176b4c!important;font-size:12px!important;font-weight:750!important;line-height:1.5!important}
.kb-enquiry-form .form-success[hidden]{display:none!important}
.kb-enquiry-form .form-success.form-error{border-color:#fda29b!important;background:#fef3f2!important;color:#b42318!important}
.kb-enquiry-form .hp-field{position:absolute!important;left:-10000px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important;opacity:0!important;pointer-events:none!important}

/* Keep public contact details separated even when plugins alter anchor display. */
.utility-contact{display:flex!important;align-items:center!important;gap:8px!important;flex-wrap:wrap!important}
.footer-grid>div:last-child>a{display:block!important;margin-top:7px!important}
.footer-grid>div:last-child>p{margin-bottom:8px!important}

@media(max-width:700px){
  .kb-enquiry-form .kb-form-grid{grid-template-columns:1fr!important;gap:12px!important}
  .kb-enquiry-form .kb-span-2{grid-column:auto!important}
  .kb-enquiry-form input:not(.hp-field),.kb-enquiry-form select{height:50px!important;font-size:16px!important}
  .kb-enquiry-form textarea{font-size:16px!important}
}
@media(prefers-reduced-motion:reduce){.kb-enquiry-form *{scroll-behavior:auto!important}}


/* ===== source: v157.css ===== */
/* KB Education v1.5.7 — live issue fixes only */

/* Social icons are always visible; unlinked platforms remain non-clickable until a verified URL is entered. */
.footer-social{display:flex!important;align-items:center!important;gap:9px!important;flex-wrap:wrap!important;margin-top:16px!important}
.footer-social .kb-social-link{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:38px!important;height:38px!important;border-radius:11px!important;border:1px solid rgba(255,255,255,.20)!important;background:rgba(255,255,255,.08)!important;transition:transform .2s ease,background .2s ease,border-color .2s ease!important}
.footer-social .kb-social-link img{display:block!important;width:19px!important;height:19px!important;object-fit:contain!important;filter:none!important}
.footer-social a.kb-social-link:hover{transform:translateY(-3px)!important;background:rgba(255,255,255,.15)!important;border-color:rgba(255,255,255,.35)!important}
.footer-social .kb-social-link.is-unlinked{opacity:.72!important;cursor:default!important}
.screen-reader-text{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}

/* Homepage eligibility modal */
.kb-eligibility-modal[hidden]{display:none!important}
.kb-eligibility-modal{position:fixed!important;inset:0!important;z-index:99999!important;display:grid!important;place-items:center!important;padding:24px!important}
.kb-eligibility-modal-backdrop{position:absolute!important;inset:0!important;background:rgba(9,21,43,.72)!important;backdrop-filter:blur(5px)!important}
.kb-eligibility-modal-panel{position:relative!important;z-index:1!important;width:min(860px,100%)!important;max-height:min(92vh,920px)!important;overflow:auto!important;border-radius:24px!important;background:#fff!important;box-shadow:0 30px 90px rgba(9,21,43,.35)!important;padding:28px!important}
.kb-eligibility-modal-head{display:flex!important;align-items:flex-start!important;justify-content:space-between!important;gap:20px!important;margin-bottom:18px!important}
.kb-eligibility-modal-head .eyebrow{margin-bottom:6px!important}
.kb-eligibility-modal-head h2{margin:0!important;color:#1A2E5A!important;font-size:30px!important;line-height:1.15!important}
.kb-eligibility-modal-head p{margin:8px 0 0!important;color:#667085!important;font-size:13px!important}
.kb-eligibility-modal-close{display:grid!important;place-items:center!important;flex:0 0 auto!important;width:42px!important;height:42px!important;border-radius:50%!important;border:1px solid #E4E7EC!important;background:#fff!important;color:#1A2E5A!important;font-size:25px!important;line-height:1!important;cursor:pointer!important}
.kb-eligibility-modal .kb-enquiry-form{padding:0!important;border:0!important;background:transparent!important;box-shadow:none!important}
.kb-eligibility-modal .kb-enquiry-form>h3,.kb-eligibility-modal .kb-enquiry-form>p:not(.form-note){display:none!important}
body.kb-modal-open{overflow:hidden!important}

/* Success records */
.kb-success-intro{max-width:820px;margin:0 auto 26px;text-align:center}
.kb-success-filters{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin:0 0 26px}
.kb-success-filters button{border:1px solid #D7DEE8;background:#fff;color:#475467;border-radius:999px;padding:9px 14px;font-size:11px;font-weight:800;cursor:pointer}
.kb-success-filters button.active{background:#1A2E5A;color:#fff;border-color:#1A2E5A}
.kb-success-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.kb-success-card{min-width:0;border:1px solid #E4E7EC;border-radius:18px;background:#fff;padding:20px;box-shadow:0 8px 24px rgba(16,24,40,.045);transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.kb-success-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(16,24,40,.09);border-color:#C7E3E9}
.kb-success-card[hidden]{display:none!important}
.kb-success-card-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px}
.kb-success-country{display:inline-flex;align-items:center;gap:7px;color:#11829D;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.04em}
.kb-success-status{display:inline-flex;padding:6px 9px;border-radius:999px;background:#EDF9F3;color:#16835D;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.05em}
.kb-success-card h3{margin:0 0 7px;color:#1A2E5A;font-size:19px;line-height:1.25}
.kb-success-result{margin:0;color:#475467;font-size:12px;line-height:1.55}
.kb-success-meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:13px}
.kb-success-meta span{display:inline-flex;padding:6px 8px;border-radius:9px;background:#F7F9FC;color:#475467;font-size:10px;font-weight:750}
.kb-success-note{margin-top:22px;text-align:center;color:#667085;font-size:11px;line-height:1.6}

/* Team layout: protect the exact card format on the locked structured page. */
.kb-team-hero+.section .team-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:18px!important}
.kb-team-hero+.section .team-card{display:flex!important;flex-direction:column!important;padding:0!important;overflow:hidden!important}
.kb-team-hero+.section .team-avatar{display:block!important;width:100%!important;aspect-ratio:4/5!important;height:auto!important}
.kb-team-hero+.section .team-card-body{display:block!important;padding:17px 17px 19px!important}
.kb-team-hero+.section .team-card-body h3{display:block!important;margin:0 0 6px!important}
.kb-team-hero+.section .team-card-body strong,.kb-team-hero+.section .team-card-body .team-branch{display:block!important}

@media(max-width:1023px){
  .kb-success-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .kb-team-hero+.section .team-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:700px){
  .kb-eligibility-modal{padding:10px!important;align-items:end!important}
  .kb-eligibility-modal-panel{width:100%!important;max-height:94vh!important;border-radius:22px 22px 10px 10px!important;padding:20px 16px 18px!important}
  .kb-eligibility-modal-head h2{font-size:24px!important}
  .kb-success-grid{grid-template-columns:1fr}
  .kb-team-hero+.section .team-grid{grid-template-columns:1fr!important}
}
@media(prefers-reduced-motion:reduce){.kb-eligibility-modal *,.kb-success-card,.footer-social .kb-social-link{transition:none!important;animation:none!important}}
.kb-booking-layout{display:grid;grid-template-columns:minmax(240px,.72fr) minmax(0,1.5fr);gap:28px;align-items:start}.kb-booking-note{position:sticky;top:110px}.kb-booking-note ul{margin:18px 0 0;padding-left:22px}.kb-booking-note li{margin:0 0 12px}.kb-booking-form{background:#fff;border:1px solid rgba(26,46,90,.14);border-radius:22px;padding:clamp(22px,4vw,38px);box-shadow:0 18px 50px rgba(26,46,90,.09)}.form-success.is-error{background:#fff1f0!important;color:#9f1d18!important;border-color:#f3b6b2!important}@media(max-width:820px){.kb-booking-layout{grid-template-columns:1fr}.kb-booking-note{position:static}}


/* ===== source: v158.css ===== */
/* KB Education v1.5.7 — live issue fixes only */

/* Social icons are always visible; unlinked platforms remain non-clickable until a verified URL is entered. */
.footer-social{display:flex!important;align-items:center!important;gap:9px!important;flex-wrap:wrap!important;margin-top:16px!important}
.footer-social .kb-social-link{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:38px!important;height:38px!important;border-radius:11px!important;border:1px solid rgba(255,255,255,.20)!important;background:rgba(255,255,255,.08)!important;transition:transform .2s ease,background .2s ease,border-color .2s ease!important}
.footer-social .kb-social-link img{display:block!important;width:19px!important;height:19px!important;object-fit:contain!important;filter:none!important}
.footer-social a.kb-social-link:hover{transform:translateY(-3px)!important;background:rgba(255,255,255,.15)!important;border-color:rgba(255,255,255,.35)!important}
.footer-social .kb-social-link.is-unlinked{opacity:.72!important;cursor:default!important}
.screen-reader-text{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}

/* Homepage eligibility modal */
.kb-eligibility-modal[hidden]{display:none!important}
.kb-eligibility-modal{position:fixed!important;inset:0!important;z-index:99999!important;display:grid!important;place-items:center!important;padding:24px!important}
.kb-eligibility-modal-backdrop{position:absolute!important;inset:0!important;background:rgba(9,21,43,.72)!important;backdrop-filter:blur(5px)!important}
.kb-eligibility-modal-panel{position:relative!important;z-index:1!important;width:min(860px,100%)!important;max-height:min(92vh,920px)!important;overflow:auto!important;border-radius:24px!important;background:#fff!important;box-shadow:0 30px 90px rgba(9,21,43,.35)!important;padding:28px!important}
.kb-eligibility-modal-head{display:flex!important;align-items:flex-start!important;justify-content:space-between!important;gap:20px!important;margin-bottom:18px!important}
.kb-eligibility-modal-head .eyebrow{margin-bottom:6px!important}
.kb-eligibility-modal-head h2{margin:0!important;color:#1A2E5A!important;font-size:30px!important;line-height:1.15!important}
.kb-eligibility-modal-head p{margin:8px 0 0!important;color:#667085!important;font-size:13px!important}
.kb-eligibility-modal-close{display:grid!important;place-items:center!important;flex:0 0 auto!important;width:42px!important;height:42px!important;border-radius:50%!important;border:1px solid #E4E7EC!important;background:#fff!important;color:#1A2E5A!important;font-size:25px!important;line-height:1!important;cursor:pointer!important}
.kb-eligibility-modal .kb-enquiry-form{padding:0!important;border:0!important;background:transparent!important;box-shadow:none!important}
.kb-eligibility-modal .kb-enquiry-form>h3,.kb-eligibility-modal .kb-enquiry-form>p:not(.form-note){display:none!important}
body.kb-modal-open{overflow:hidden!important}

/* Success records */
.kb-success-intro{max-width:820px;margin:0 auto 26px;text-align:center}
.kb-success-filters{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin:0 0 26px}
.kb-success-filters button{border:1px solid #D7DEE8;background:#fff;color:#475467;border-radius:999px;padding:9px 14px;font-size:11px;font-weight:800;cursor:pointer}
.kb-success-filters button.active{background:#1A2E5A;color:#fff;border-color:#1A2E5A}
.kb-success-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.kb-success-card{min-width:0;border:1px solid #E4E7EC;border-radius:18px;background:#fff;padding:20px;box-shadow:0 8px 24px rgba(16,24,40,.045);transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.kb-success-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(16,24,40,.09);border-color:#C7E3E9}
.kb-success-card[hidden]{display:none!important}
.kb-success-card-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px}
.kb-success-country{display:inline-flex;align-items:center;gap:7px;color:#11829D;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.04em}
.kb-success-status{display:inline-flex;padding:6px 9px;border-radius:999px;background:#EDF9F3;color:#16835D;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.05em}
.kb-success-card h3{margin:0 0 7px;color:#1A2E5A;font-size:19px;line-height:1.25}
.kb-success-result{margin:0;color:#475467;font-size:12px;line-height:1.55}
.kb-success-meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:13px}
.kb-success-meta span{display:inline-flex;padding:6px 8px;border-radius:9px;background:#F7F9FC;color:#475467;font-size:10px;font-weight:750}
.kb-success-note{margin-top:22px;text-align:center;color:#667085;font-size:11px;line-height:1.6}

/* Team layout: protect the exact card format on the locked structured page. */
.kb-team-hero+.section .team-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:18px!important}
.kb-team-hero+.section .team-card{display:flex!important;flex-direction:column!important;padding:0!important;overflow:hidden!important}
.kb-team-hero+.section .team-avatar{display:block!important;width:100%!important;aspect-ratio:4/5!important;height:auto!important}
.kb-team-hero+.section .team-card-body{display:block!important;padding:17px 17px 19px!important}
.kb-team-hero+.section .team-card-body h3{display:block!important;margin:0 0 6px!important}
.kb-team-hero+.section .team-card-body strong,.kb-team-hero+.section .team-card-body .team-branch{display:block!important}

@media(max-width:1023px){
  .kb-success-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .kb-team-hero+.section .team-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:700px){
  .kb-eligibility-modal{padding:10px!important;align-items:end!important}
  .kb-eligibility-modal-panel{width:100%!important;max-height:94vh!important;border-radius:22px 22px 10px 10px!important;padding:20px 16px 18px!important}
  .kb-eligibility-modal-head h2{font-size:24px!important}
  .kb-success-grid{grid-template-columns:1fr}
  .kb-team-hero+.section .team-grid{grid-template-columns:1fr!important}
}
@media(prefers-reduced-motion:reduce){.kb-eligibility-modal *,.kb-success-card,.footer-social .kb-social-link{transition:none!important;animation:none!important}}
.kb-booking-layout{display:grid;grid-template-columns:minmax(240px,.72fr) minmax(0,1.5fr);gap:28px;align-items:start}.kb-booking-note{position:sticky;top:110px}.kb-booking-note ul{margin:18px 0 0;padding-left:22px}.kb-booking-note li{margin:0 0 12px}.kb-booking-form{background:#fff;border:1px solid rgba(26,46,90,.14);border-radius:22px;padding:clamp(22px,4vw,38px);box-shadow:0 18px 50px rgba(26,46,90,.09)}.form-success.is-error{background:#fff1f0!important;color:#9f1d18!important;border-color:#f3b6b2!important}@media(max-width:820px){.kb-booking-layout{grid-template-columns:1fr}.kb-booking-note{position:static}}

/* v1.5.18 appointment UX and mobile performance */
.kb-slot-grid{grid-column:1/-1;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:4px}.kb-slot-btn{min-height:48px;border:1px solid #d7e0ec;border-radius:12px;background:#f7f9fc;color:#1a2e5a;font:800 12px/1.2 Manrope,Arial,sans-serif;cursor:pointer;transition:transform .16s ease,background .16s ease,color .16s ease}.kb-slot-btn:hover{transform:translateY(-1px);border-color:#11829d}.kb-slot-btn.is-selected{background:#1a2e5a;color:#fff;border-color:#1a2e5a;box-shadow:0 8px 20px rgba(26,46,90,.18)}.kb-booking-summary{grid-column:1/-1;padding:14px 16px;border:1px solid #cfe6ec;border-radius:14px;background:#f1fafb;color:#1a2e5a;font-size:12px}.kb-booking-summary strong{display:block;margin-bottom:3px}.kb-booking-summary span{color:#52627a}
@media(max-width:820px){.utility-bar{display:none!important}.kb-hero{padding-top:42px!important}.kb-hero-grid{grid-template-columns:1fr!important;gap:28px!important}.kb-hero-copy h1{font-size:clamp(35px,10vw,44px)!important;line-height:1.04!important}.kb-hero-copy p{font-size:15px!important}.kb-hero-actions{display:grid!important;grid-template-columns:1fr!important}.kb-hero-actions .btn{width:100%!important;min-height:48px!important}.kb-booking-layout{gap:18px}.kb-booking-note{order:2}.kb-booking-form{order:1;padding:22px 16px}.kb-slot-grid{grid-template-columns:repeat(2,minmax(0,1fr))}[data-reveal]{opacity:1!important;transform:none!important}.js-reveal [data-reveal]:not(.is-visible){opacity:0!important;transform:translateY(14px)!important}.js-reveal [data-reveal].is-visible{opacity:1!important;transform:none!important;transition:opacity .45s ease,transform .45s ease}}
@media(max-width:430px){.container{width:min(100% - 28px,1180px)!important}.kb-hero-copy h1{font-size:36px!important}.btn{white-space:normal!important;text-align:center!important}}
@media(prefers-reduced-motion:reduce){[data-reveal],.js-reveal [data-reveal]{opacity:1!important;transform:none!important;transition:none!important}.kb-slot-btn{transition:none!important}}


/* ===== source: v159.css ===== */
/* KB Education v1.5.19 — global layout, typography and component QA */
.skip-link{position:fixed!important;top:8px!important;left:8px!important;z-index:99999!important;transform:translateY(-180%)!important}.skip-link:focus{transform:translateY(0)!important}
body{font-size:16px!important;line-height:1.65!important;overflow-x:hidden}.container{width:min(1240px,calc(100% - 64px))!important;margin-inline:auto!important}.section{padding-block:clamp(68px,7vw,92px)!important}.section-heading{max-width:780px!important;margin:0 0 36px!important}.section-heading.center{margin-inline:auto!important;text-align:center!important}.section-heading.center p{margin-inline:auto!important}.section-heading h2{font-size:clamp(34px,3.5vw,46px)!important;line-height:1.12!important}.section-heading p{font-size:16px!important;line-height:1.7!important}
.btn{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;min-height:48px!important;padding:0 20px!important;border:1px solid transparent!important;border-radius:11px!important;font:800 14px/1.2 Inter,Arial,sans-serif!important;text-align:center!important;white-space:nowrap!important;text-decoration:none!important}.btn-primary{background:#1A2E5A!important;border-color:#1A2E5A!important;color:#fff!important}.btn-secondary{background:#11829D!important;border-color:#11829D!important;color:#fff!important}.btn-outline{background:#fff!important;border-color:#CBD5E1!important;color:#1A2E5A!important}.btn-small{min-height:44px!important;padding-inline:17px!important;font-size:13px!important}.header-actions{display:flex!important;align-items:center!important;gap:10px!important;flex:0 0 auto!important}.kb-hero-actions,.hero-actions,.kb-trust-actions,.cta-actions{display:flex!important;align-items:center!important;gap:12px!important;flex-wrap:wrap!important}.kb-trust-actions{justify-content:flex-start!important;margin-top:26px!important}.kb-stories-teaser .kb-trust-actions{justify-content:center!important}
.kb-hero-grid{grid-template-columns:minmax(0,1fr) minmax(390px,.86fr)!important;gap:clamp(34px,4vw,56px)!important}.kb-hero-copy h1{font-size:clamp(44px,4.55vw,60px)!important;line-height:1.04!important}.kb-hero-copy>p{font-size:16px!important;max-width:650px!important}.kb-hero-copy .kb-hero-actions{margin-top:28px!important}.kb-founder-grid{grid-template-columns:minmax(360px,.88fr) minmax(0,1.12fr)!important;gap:clamp(38px,5vw,68px)!important;align-items:center!important}.kb-founder-visual{aspect-ratio:4/5!important;min-height:0!important;max-height:650px!important}.kb-founder-copy h2{font-size:clamp(36px,3.7vw,52px)!important;line-height:1.12!important}.kb-founder-copy p{text-align:left!important;font-size:16px!important;line-height:1.75!important}.kb-signature>div{display:flex!important;flex-direction:column!important;gap:3px!important;min-width:0!important}.kb-signature strong,.kb-signature span{display:block!important}.kb-signature strong{font-size:15px!important;color:#1A2E5A!important}.kb-signature span{font-size:12px!important;color:#667085!important}.kb-stories-teaser .section-heading{margin-bottom:0!important}.kb-stories-teaser .kb-trust-actions{margin-top:28px!important}.kb-final-cta .kb-hero-actions{justify-content:flex-end!important;min-width:310px!important}
.card-grid-3{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:20px!important}.card-grid-4{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:20px!important}.info-card,.service-card,.path-card,.cost-card,.intake-card,.uni-card{display:block!important;background:#fff!important;border:1px solid #E4E7EC!important;border-radius:18px!important;padding:24px!important;box-shadow:0 8px 28px rgba(16,24,40,.05)!important}.info-card h3{margin:10px 0 8px!important;font-size:20px!important;line-height:1.3!important}.info-card p{margin:0!important;font-size:14px!important;line-height:1.65!important;color:#475467!important}.simple-hero h1,.page-hero h1{font-size:clamp(42px,4.6vw,58px)!important;line-height:1.06!important}.simple-hero p,.page-hero p{font-size:17px!important;line-height:1.7!important}
.footer{padding-top:0!important}.footer>.container.footer-grid{padding-top:60px!important}.footer-grid{grid-template-columns:minmax(220px,1.35fr) repeat(3,minmax(140px,1fr)) minmax(210px,1.2fr)!important;gap:clamp(24px,3vw,42px)!important}.footer-brand>img{width:90px!important;height:auto!important;filter:none!important;background:#fff!important;border-radius:12px!important;padding:8px!important}.footer-social{display:flex!important;align-items:center!important;gap:10px!important;flex-wrap:wrap!important;margin-top:18px!important}.footer-social .kb-social-link{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:42px!important;height:42px!important;margin:0!important;border:1px solid rgba(255,255,255,.22)!important;border-radius:12px!important;background:rgba(255,255,255,.09)!important}.footer-social .kb-social-link img{display:block!important;width:21px!important;height:21px!important;filter:brightness(0) invert(1)!important;opacity:1!important}.footer-social .kb-social-link.is-unlinked{opacity:.55!important}.kb-contact-ids{display:flex!important;flex-wrap:wrap!important;gap:8px!important;margin-top:14px!important}.kb-final-cta .container{align-items:center!important}
@media(max-width:1180px){.header-inner{gap:14px!important}.desktop-nav{gap:0!important}.nav-link{padding-inline:7px!important;font-size:13px!important}.header-actions .btn-outline{display:none!important}.footer-grid{grid-template-columns:1.25fr repeat(2,1fr)!important}.footer-brand{grid-row:span 2!important}}
@media(max-width:900px){.kb-hero-grid,.kb-founder-grid{grid-template-columns:1fr!important}.kb-founder-visual{width:min(100%,520px)!important;margin-inline:auto!important}.card-grid-4,.card-grid-3{grid-template-columns:repeat(2,minmax(0,1fr))!important}.kb-final-cta .container{display:block!important;text-align:center!important}.kb-final-cta .kb-hero-actions{justify-content:center!important;min-width:0!important;margin-top:24px!important}}
@media(max-width:700px){.container{width:min(100% - 32px,1240px)!important}.section{padding-block:58px!important}.section-heading{margin-bottom:26px!important}.section-heading h2{font-size:31px!important}.section-heading p{font-size:15px!important}.header-actions{display:none!important}.kb-hero-copy{text-align:center!important}.kb-hero-copy h1{font-size:clamp(35px,10.3vw,43px)!important}.kb-hero-copy>p{margin-inline:auto!important}.kb-hero-actions,.hero-actions,.kb-trust-actions,.cta-actions{display:grid!important;grid-template-columns:1fr!important;width:100%!important}.kb-hero-actions .btn,.hero-actions .btn,.kb-trust-actions .btn,.cta-actions .btn{width:100%!important;white-space:normal!important}.kb-founder-copy{text-align:left!important}.kb-founder-copy h2{font-size:32px!important}.kb-signature{align-items:flex-start!important;flex-direction:column!important}.card-grid-3,.card-grid-4{grid-template-columns:1fr!important}.info-card,.service-card,.path-card,.cost-card,.intake-card,.uni-card{padding:20px!important}.footer>.container.footer-grid{padding-top:48px!important}.footer-grid{grid-template-columns:1fr 1fr!important}.footer-brand{grid-column:1/-1!important;grid-row:auto!important}.footer-social .kb-social-link{width:44px!important;height:44px!important}}

/* v1.5.21 compact booking: one short page, no wizard or extra clicks. */
.kb-compact-booking-page{background:#f6f8fc}.kb-compact-booking-hero{padding:52px 0 44px;text-align:center;background:linear-gradient(135deg,#eef8fb,#f7f9fd 55%,#eef1f8);border-bottom:1px solid #e2e8f0}.kb-compact-booking-hero .container{max-width:760px}.kb-compact-booking-hero h1{margin:9px 0 10px;color:#1a2e5a;font-size:clamp(38px,4.4vw,54px);line-height:1.06}.kb-compact-booking-hero p{margin:0;color:#52627a;font-size:15px}.kb-compact-trust{display:flex;justify-content:center;gap:9px;flex-wrap:wrap;margin-top:18px}.kb-compact-trust span{padding:7px 11px;border:1px solid #d5e6eb;border-radius:999px;background:#fff;color:#344054;font-size:11px;font-weight:750}.kb-compact-booking-section{padding:34px 0 68px}.kb-compact-booking-section>.container{max-width:980px}.kb-compact-booking-form{padding:30px!important;border-radius:20px!important}.kb-compact-form-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:23px;padding-bottom:18px;border-bottom:1px solid #edf0f5}.kb-compact-form-head span{color:#11829d;font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.09em}.kb-compact-form-head h2{margin:4px 0 0;color:#1a2e5a;font-size:27px}.kb-compact-form-head small{color:#7b8798;font-size:10px}.kb-compact-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:16px!important}.kb-compact-booking-form input,.kb-compact-booking-form select{min-height:48px!important;border-radius:10px!important;background:#fbfcfe!important}.kb-compact-time-select{position:absolute!important;left:-9999px!important}.kb-compact-booking-form .kb-slot-grid{grid-column:1/-1!important;grid-template-columns:repeat(6,minmax(0,1fr))!important;margin-top:0!important}.kb-compact-booking-form .kb-booking-summary{grid-column:1/-1!important;margin:0!important;padding:12px 15px!important}.kb-compact-submit{min-height:51px!important;margin-top:2px!important;font-size:14px!important}.kb-compact-booking-form .form-note{margin:13px 0 0!important;text-align:center!important;font-size:11px!important}
@media(max-width:820px){.kb-compact-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.kb-compact-booking-form .kb-slot-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important}}
@media(max-width:600px){.kb-compact-booking-hero{padding:36px 0 31px}.kb-compact-booking-hero h1{font-size:36px}.kb-compact-booking-hero p{font-size:13px}.kb-compact-trust{gap:6px}.kb-compact-trust span{padding:6px 8px;font-size:9px}.kb-compact-booking-section{padding:22px 0 48px}.kb-compact-booking-form{padding:20px 15px!important}.kb-compact-form-head{display:block;margin-bottom:20px}.kb-compact-form-head h2{font-size:23px}.kb-compact-form-head small{display:block;margin-top:6px}.kb-compact-grid{grid-template-columns:1fr!important;gap:13px!important}.kb-compact-booking-form .kb-span-2,.kb-compact-booking-form .kb-slot-grid,.kb-compact-booking-form .kb-booking-summary{grid-column:1!important}.kb-compact-booking-form .kb-slot-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}.kb-compact-booking-form .kb-slot-btn{min-height:44px!important;font-size:11px!important}}
@media(max-width:430px){.container{width:calc(100% - 28px)!important}.footer-grid{grid-template-columns:1fr!important}.footer-brand{grid-column:auto!important}}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}


/* ==========================================================================\n   KB Education v1.6.0 — Finest responsive polish\n   Consolidated visual layer: readability, brand depth, accessibility, QA.\n   ========================================================================== */
:root{
  --kb-navy:#1A2E5A;--kb-navy-deep:#102142;--kb-teal:#11829D;--kb-teal-dark:#0B6C83;
  --kb-teal-wash:#EEF9FB;--kb-navy-wash:#F3F6FB;--kb-surface:#FFFFFF;--kb-soft:#F7F9FC;
  --kb-ink:#172033;--kb-muted:#52627A;--kb-border:#DCE4EE;
  --kb-shadow:0 12px 34px rgba(26,46,90,.075);--kb-shadow-hover:0 18px 46px rgba(26,46,90,.115);
  --kb-radius:18px;--kb-radius-lg:26px;
}
html{scroll-padding-top:118px}
body{font-size:17px;color:var(--kb-ink);background:#fff;text-rendering:optimizeLegibility}
main p,main li{font-size:clamp(16px,1.05vw,17px);line-height:1.68}
main small{line-height:1.5}
.section-heading p,.simple-hero p,.page-hero p,.kb-hero-copy>p,.kb-founder-copy>p{font-size:clamp(16.5px,1.15vw,18px);line-height:1.68}
h1,h2,h3,h4{text-wrap:balance}
.section-heading h2{line-height:1.12}
.container{width:min(1240px,calc(100% - 56px))}

/* Header & navigation */
.site-header{z-index:1600!important;box-shadow:0 1px 0 rgba(26,46,90,.035);isolation:isolate}
.site-header.is-scrolled{box-shadow:0 10px 28px rgba(16,33,66,.08)}
.nav-link{font-size:14.5px}
.desktop-nav a.is-current,.desktop-nav .nav-link.is-current{color:var(--kb-teal);background:var(--kb-teal-wash)}
.mobile-menu{box-shadow:0 18px 28px rgba(16,33,66,.10)}
.mobile-menu-inner>a{font-size:16px}
.mobile-menu-inner>a.is-current{color:var(--kb-teal)}
.mobile-menu-btn{position:relative;z-index:3;touch-action:manipulation;pointer-events:auto}
.mobile-menu-btn span{transition:transform .18s ease,opacity .18s ease}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2){opacity:0}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
body.kb-menu-open{overflow:hidden}

/* Premium but restrained brand backgrounds */
.kb-hero,.hero,.simple-hero,.page-hero,.detail-hero{position:relative;isolation:isolate;overflow:hidden}
.kb-hero::before,.simple-hero::before,.page-hero::before,.detail-hero::before{
  content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;
  background-image:radial-gradient(circle at 88% 16%,rgba(17,130,157,.10),transparent 29%),
                   linear-gradient(rgba(26,46,90,.026) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(26,46,90,.026) 1px,transparent 1px);
  background-size:auto,48px 48px,48px 48px;
  mask-image:linear-gradient(to bottom,#000 0%,rgba(0,0,0,.7) 65%,transparent 100%)}
.section-soft{background:linear-gradient(180deg,#F8FAFD 0%,#F4F8FB 100%)}
.kb-final-cta,.final-cta{position:relative;overflow:hidden}
.kb-final-cta::after,.final-cta::after{content:"";position:absolute;width:360px;height:360px;border-radius:50%;right:-180px;top:-190px;background:rgba(17,130,157,.14);pointer-events:none}

/* Cards */
.info-card,.path-card,.kb-process-card,.kb-university-card,.university-card,.kb-branch-card,.branch-card,
.kb-success-card,.verified-card,.kb-trust-doc,.intake-card,.cost-card,.kb-person-card,.event-list article{
  border-color:var(--kb-border)!important;box-shadow:0 7px 24px rgba(26,46,90,.045);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
@media (hover:hover){
  .info-card:hover,.path-card:hover,.kb-process-card:hover,.kb-university-card:hover,.university-card:hover,
  .kb-branch-card:hover,.branch-card:hover,.verified-card:hover,.kb-trust-doc:hover,.intake-card:hover,.cost-card:hover,.kb-person-card:hover{
    transform:translateY(-3px);box-shadow:var(--kb-shadow-hover);border-color:rgba(17,130,157,.35)!important}}

/* Buttons and links */
.btn{font-size:15px;min-height:48px;border-radius:11px}
.btn-small{font-size:14px;min-height:43px}
.text-link{font-size:14.5px}
.btn:focus-visible,a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:3px solid rgba(17,130,157,.28)!important;outline-offset:3px}

/* Forms */
.kb-field-label,label{font-size:14.5px}
input,select,textarea{font-size:16px;min-height:52px;border-color:#CBD6E4}
textarea{min-height:118px}
.form-note{font-size:12.5px!important;line-height:1.55}
.form-success{font-size:14px!important}
.kb-fit-form{box-shadow:0 12px 38px rgba(26,46,90,.07)}
.kb-form-grid{gap:17px}
.kb-booking-success-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.kb-booking-success-actions .btn{min-height:42px;font-size:13.5px}

/* Eligibility modal */
#kb-eligibility-modal{z-index:5000!important}
.kb-eligibility-modal-panel{max-height:min(88dvh,900px);overflow:auto;-webkit-overflow-scrolling:touch}
body.kb-modal-open{overflow:hidden}
body.kb-modal-open .mobile-action,body.kb-modal-open .mobile-action-bar{visibility:hidden;pointer-events:none}

/* Directory/search tools and shortlist */
.kb-directory-tools{display:flex;align-items:center;gap:12px;margin:0 0 24px;padding:12px;border:1px solid var(--kb-border);border-radius:15px;background:#fff;box-shadow:0 6px 20px rgba(26,46,90,.04)}
.kb-directory-tools input{margin:0;min-width:0;flex:1}
.kb-directory-tools .kb-saved-count{white-space:nowrap;font-size:13px;font-weight:800;color:var(--kb-navy);padding:0 10px}
.kb-shortlist-btn{margin-top:12px}
.kb-shortlist-btn[aria-pressed="true"]{background:var(--kb-teal-wash);border-color:var(--kb-teal);color:var(--kb-teal-dark)}
.kb-empty-filter{grid-column:1/-1;padding:24px;text-align:center;border:1px dashed var(--kb-border);border-radius:16px;color:var(--kb-muted);background:var(--kb-soft)}

/* Booking page now uses the unified header/footer */
body.kb-compact-booking-page .kb-compact-booking-hero{padding-top:clamp(46px,6vw,78px);background:linear-gradient(145deg,#F8FBFD,#ECF8FA)}
body.kb-compact-booking-page .kb-compact-booking-form{max-width:980px;margin-inline:auto}
body.kb-compact-booking-page .kb-compact-form-head h2{font-size:clamp(25px,3vw,34px)}
body.kb-compact-booking-page .footer{margin-top:0}

/* Footer */
.footer a,.footer p{font-size:13.5px;line-height:1.6}
.footer h3{font-size:14px}
.footer-bottom{font-size:12.5px}
.footer-trust{font-size:13px;line-height:1.55}

/* Responsive */
@media(max-width:1100px){
  .container{width:min(100% - 40px,1240px)}
  .mobile-menu-btn{display:flex!important}
  .site-header{pointer-events:auto!important}
  .mobile-menu-btn{pointer-events:auto!important}
  .header-actions{display:none!important}
  .desktop-nav{display:none!important}
  .mobile-menu:not([hidden]){display:block!important}
}
@media(max-width:767px){
  html{scroll-padding-top:90px}
  body{font-size:16.5px;padding-bottom:calc(66px + env(safe-area-inset-bottom))}
  .container{width:calc(100% - 32px)}
  .utility-bar{display:none!important}
  .header-inner{min-height:76px!important;height:auto!important}
  .brand{height:64px!important}.brand img{height:58px!important;max-width:86px!important;width:auto!important}
  main p,main li{font-size:16px;line-height:1.64}
  .section{padding-top:64px!important;padding-bottom:64px!important}
  .simple-hero,.page-hero{padding-top:54px!important;padding-bottom:58px!important}
  .simple-hero h1,.page-hero h1,.detail-hero h1{font-size:clamp(34px,10vw,46px)!important;line-height:1.07!important}
  .section-heading h2{font-size:clamp(29px,8.2vw,37px)!important}
  .btn{font-size:15px;min-height:50px}
  .mobile-menu-inner>a{font-size:17px;padding:14px 0}
  .mobile-menu-actions{grid-template-columns:1fr}
  .kb-field-label,label{font-size:15px}
  input,select,textarea{font-size:16px!important;min-height:54px}
  .kb-directory-tools{align-items:stretch;flex-direction:column}.kb-directory-tools .kb-saved-count{padding:0 2px}
  #kb-eligibility-modal:not([hidden]){position:fixed!important;inset:0!important;display:flex!important;align-items:flex-start!important;justify-content:center!important;padding:max(10px,env(safe-area-inset-top)) 10px max(10px,env(safe-area-inset-bottom))!important;overflow-y:auto!important}
  #kb-eligibility-modal .kb-eligibility-modal-panel{width:100%!important;max-height:calc(100dvh - 20px - env(safe-area-inset-top) - env(safe-area-inset-bottom))!important;margin:0!important}
  .mobile-action,.mobile-action-bar{padding-bottom:env(safe-area-inset-bottom);min-height:calc(58px + env(safe-area-inset-bottom));z-index:1550!important}
  .footer{padding-bottom:calc(58px + env(safe-area-inset-bottom))}
  .footer a,.footer p{font-size:14px}
  .footer-bottom{font-size:12.5px}
}
@media(max-width:390px){.container{width:calc(100% - 26px)}.btn{padding-left:15px;padding-right:15px}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}

/* =========================================================
   KB Education v1.6 RC2 — Footer social clarity polish
   Recognisable social icons + clean messaging username badges.
   ========================================================= */
.footer-social{
  display:flex!important;align-items:center!important;gap:10px!important;
  flex-wrap:wrap!important;margin-top:18px!important
}
.footer-social .kb-social-link{
  width:42px!important;height:42px!important;display:inline-flex!important;
  align-items:center!important;justify-content:center!important;margin:0!important;
  border-radius:50%!important;background:#fff!important;
  border:1px solid rgba(255,255,255,.9)!important;
  color:#11829D!important;box-shadow:0 6px 18px rgba(0,0,0,.13)!important;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease!important
}
.footer-social .kb-social-link .kb-social-svg{
  width:21px!important;height:21px!important;display:block!important;overflow:visible!important
}
.footer-social a.kb-social-link:hover{
  transform:translateY(-3px)!important;background:#EAF7FA!important;color:#1A2E5A!important;
  box-shadow:0 9px 22px rgba(0,0,0,.18)!important
}
.footer-social .kb-social-link.is-unlinked{opacity:.72!important;cursor:default!important}
.footer-social .kb-social-link.is-unlinked:hover{transform:none!important}

.kb-contact-ids{
  display:flex!important;flex-wrap:wrap!important;gap:9px!important;margin-top:16px!important
}
.kb-contact-ids .kb-id-chip{
  display:inline-flex!important;align-items:center!important;gap:9px!important;
  min-height:48px!important;padding:6px 12px 6px 7px!important;
  border:1px solid rgba(255,255,255,.16)!important;border-radius:14px!important;
  background:rgba(255,255,255,.065)!important;box-shadow:none!important
}
.kb-contact-ids .kb-id-icon{
  width:34px!important;height:34px!important;border-radius:50%!important;background:#fff!important;
  display:inline-flex!important;align-items:center!important;justify-content:center!important;
  flex:0 0 34px!important;color:#11829D!important
}
.kb-contact-ids .kb-id-icon .kb-social-svg{width:20px!important;height:20px!important;display:block!important}
.kb-contact-ids .kb-id-copy{display:flex!important;flex-direction:column!important;gap:1px!important;line-height:1.12!important}
.kb-contact-ids .kb-id-copy strong{
  color:rgba(255,255,255,.72)!important;font-size:9.5px!important;line-height:1.1!important;
  text-transform:uppercase!important;letter-spacing:.07em!important;font-style:normal!important
}
.kb-contact-ids .kb-id-copy em{
  color:#fff!important;font-size:12px!important;font-weight:750!important;font-style:normal!important;
  line-height:1.25!important;letter-spacing:0!important
}
@media(max-width:767px){
  .footer-social .kb-social-link{width:44px!important;height:44px!important}
  .footer-social .kb-social-link .kb-social-svg{width:22px!important;height:22px!important}
  .kb-contact-ids{gap:8px!important}
  .kb-contact-ids .kb-id-chip{min-height:50px!important;padding-right:11px!important}
}



/* =========================================================
   KB Education v1.6 RC3 — Footer compact two-line cleanup
   Line 1: five social icons. Line 2: KakaoTalk + WeChat usernames.
   ========================================================= */
.footer-social{
  display:flex!important;align-items:center!important;gap:7px!important;
  flex-wrap:nowrap!important;margin-top:16px!important;white-space:nowrap!important
}
.footer-social .kb-social-link{
  width:36px!important;height:36px!important;min-width:36px!important;flex:0 0 36px!important;
  display:inline-flex!important;align-items:center!important;justify-content:center!important;
  margin:0!important;border-radius:50%!important;background:#fff!important;
  border:1px solid rgba(255,255,255,.92)!important;color:#11829D!important;
  box-shadow:0 4px 12px rgba(0,0,0,.12)!important
}
.footer-social .kb-social-link .kb-social-svg{width:18px!important;height:18px!important;display:block!important}
.footer-social a.kb-social-link:hover{transform:translateY(-2px)!important;background:#EAF7FA!important;color:#1A2E5A!important}
.footer-social .kb-social-link.is-unlinked{opacity:.82!important}

.kb-contact-ids{
  display:flex!important;align-items:center!important;gap:7px!important;flex-wrap:nowrap!important;
  margin-top:11px!important;white-space:nowrap!important
}
.kb-contact-ids .kb-id-chip{
  display:inline-flex!important;align-items:center!important;gap:6px!important;min-height:38px!important;
  padding:4px 8px 4px 5px!important;border:1px solid rgba(255,255,255,.15)!important;
  border-radius:11px!important;background:rgba(255,255,255,.065)!important;min-width:0!important
}
.kb-contact-ids .kb-id-icon{
  width:28px!important;height:28px!important;flex:0 0 28px!important;border-radius:50%!important;
  background:#fff!important;color:#11829D!important;display:inline-flex!important;
  align-items:center!important;justify-content:center!important
}
.kb-contact-ids .kb-id-icon .kb-social-svg{width:16px!important;height:16px!important;display:block!important}
.kb-contact-ids .kb-id-copy{display:block!important;min-width:0!important;line-height:1!important}
.kb-contact-ids .kb-id-copy strong{display:none!important}
.kb-contact-ids .kb-id-copy em{
  display:block!important;color:#fff!important;font-size:10.8px!important;font-weight:750!important;
  font-style:normal!important;line-height:1.15!important;letter-spacing:0!important
}
@media(max-width:767px){
  .footer-social{gap:8px!important}
  .footer-social .kb-social-link{width:38px!important;height:38px!important;min-width:38px!important;flex-basis:38px!important}
  .footer-social .kb-social-link .kb-social-svg{width:19px!important;height:19px!important}
  .kb-contact-ids{gap:8px!important}
  .kb-contact-ids .kb-id-chip{min-height:40px!important;padding-right:9px!important}
  .kb-contact-ids .kb-id-copy em{font-size:11.5px!important}
}
@media(max-width:390px){
  .footer-social{gap:6px!important}
  .footer-social .kb-social-link{width:36px!important;height:36px!important;min-width:36px!important;flex-basis:36px!important}
  .kb-contact-ids{gap:6px!important}
  .kb-contact-ids .kb-id-chip{padding-right:7px!important}
  .kb-contact-ids .kb-id-copy em{font-size:10.5px!important}
}

/* RC14 — Homepage Official Quick Links */
.kb-official-quick-links{background:linear-gradient(180deg,#f7fbfc 0%,#fff 100%)}.kb-quick-head{align-items:end}.kb-quick-head>div{max-width:720px}.kb-quick-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:11px}.kb-quick-link-card{position:relative;display:flex;min-height:116px;flex-direction:column;justify-content:flex-end;padding:15px 34px 15px 15px;text-decoration:none;color:#172f5c;border:1px solid rgba(17,46,91,.12);background:#fff;border-radius:16px;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.kb-quick-link-card:hover{transform:translateY(-2px);border-color:rgba(0,131,155,.38);box-shadow:0 13px 30px rgba(20,50,91,.08)}.kb-quick-link-card .kb-link-country{margin-bottom:auto;font-size:.7rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:#00879d}.kb-quick-link-card strong{font-size:.92rem;line-height:1.3}.kb-quick-link-card .kb-external-arrow{position:absolute;right:13px;top:12px;color:#00879d}
@media(max-width:1100px){.kb-quick-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media(max-width:700px){.kb-quick-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.kb-quick-head{align-items:flex-start}.kb-quick-link-card{min-height:108px}}@media(max-width:420px){.kb-quick-link-card{padding:13px 30px 13px 13px}.kb-quick-link-card strong{font-size:.84rem}}

/* =========================================================
   KB Education v1.6 RC18 — Mobile-First Final QA Polish
   Final coordinated responsive layer. Keeps RC17 functionality intact.
   ========================================================= */
:root{--kb-mobile-gutter:16px;--kb-touch:48px;--kb-mobile-radius:18px}
html{scroll-padding-top:104px;-webkit-text-size-adjust:100%}
body{overflow-x:hidden}
a,button,input,select,textarea,summary{-webkit-tap-highlight-color:rgba(17,130,157,.12)}
button,a,.btn,summary{touch-action:manipulation}
img,svg,video,iframe{max-width:100%}
[id]{scroll-margin-top:112px}
.btn,.mobile-menu-btn,.kb-eligibility-modal-close,.kb-popup-close{min-width:44px;min-height:44px}
input,select,textarea{font-size:16px}

/* Small-screen header/navigation: premium, simple and thumb-friendly. */
@media(max-width:900px){
  .site-header{backdrop-filter:saturate(150%) blur(16px);-webkit-backdrop-filter:saturate(150%) blur(16px)}
  .header-inner{min-height:70px!important;gap:10px!important}
  .mobile-menu-btn{width:48px!important;height:48px!important;border:1px solid rgba(26,46,90,.10)!important;border-radius:14px!important;background-color:#fff!important;box-shadow:0 7px 18px rgba(16,24,40,.07)!important}
  .mobile-menu:not([hidden]){max-height:calc(100dvh - 70px - env(safe-area-inset-top));overflow-y:auto;-webkit-overflow-scrolling:touch;background:rgba(255,255,255,.985)!important;border-top:1px solid rgba(26,46,90,.08)!important}
  .mobile-menu-inner{padding:10px var(--kb-mobile-gutter) calc(22px + env(safe-area-inset-bottom))!important}
  .mobile-menu-inner>a{display:flex!important;align-items:center!important;min-height:50px!important;padding:12px 4px!important;border-bottom:1px solid rgba(26,46,90,.07)!important;font-size:16px!important;font-weight:760!important;line-height:1.25!important}
  .mobile-menu-actions{gap:10px!important;padding-top:16px!important}
  .mobile-menu-actions .btn{min-height:50px!important}
}

/* Mobile typography and rhythm: easier for students and parents to scan. */
@media(max-width:700px){
  .container{width:min(100% - 32px,1240px)!important}
  .section{padding-block:52px!important}
  .section-heading{margin-bottom:24px!important}
  .section-heading h2,.simple-hero h1,.page-hero h1{letter-spacing:-.025em!important;text-wrap:balance}
  .section-heading h2{font-size:clamp(29px,8.5vw,35px)!important;line-height:1.13!important}
  .section-heading p,.simple-hero p,.page-hero p{font-size:15.5px!important;line-height:1.68!important}
  p,li{overflow-wrap:anywhere}
  .eyebrow{font-size:11px!important;letter-spacing:.11em!important}
}
@media(max-width:430px){
  .container{width:calc(100% - 28px)!important}
  .section{padding-block:46px!important}
  .section-heading h2{font-size:30px!important}
}

/* Homepage hero: strong first screen without consuming the whole phone. */
@media(max-width:700px){
  .kb-hero{padding:30px 0 38px!important;background:radial-gradient(circle at 92% 7%,rgba(17,130,157,.13),transparent 36%),linear-gradient(180deg,#f8fbff 0%,#fff 100%)!important}
  .kb-hero-grid{gap:24px!important}
  .kb-hero-copy{text-align:left!important}
  .kb-hero-copy h1{margin:10px 0 14px!important;font-size:clamp(36px,10.6vw,46px)!important;line-height:1.01!important;letter-spacing:-.045em!important;text-wrap:balance}
  .kb-hero-copy>p{margin:0!important;font-size:15.5px!important;line-height:1.62!important}
  .kb-hero-actions{grid-template-columns:1fr 1fr!important;gap:9px!important;margin-top:20px!important}
  .kb-hero-actions .btn{min-height:52px!important;padding:8px 11px!important;font-size:13px!important;border-radius:13px!important}
  .kb-hero-visual{min-height:300px!important;margin-top:0!important}
  .kb-hero-photo{border-radius:24px!important;box-shadow:0 18px 48px rgba(16,24,40,.16)!important}
  .kb-float-card{max-width:72%!important;border-radius:14px!important;box-shadow:0 10px 26px rgba(16,24,40,.14)!important}
  .kb-float-card.a{left:10px!important;top:12px!important}.kb-float-card.b{right:10px!important;bottom:12px!important}
  .kb-hero-badge{left:18px!important;bottom:18px!important;font-size:11px!important}
}
@media(max-width:390px){
  .kb-hero-copy h1{font-size:35px!important}
  .kb-hero-actions{grid-template-columns:1fr!important}
  .kb-hero-visual{min-height:270px!important}
}

/* Destination cards: retain flags, increase legibility, remove cramped 2-column phone cards. */
@media(max-width:520px){
  .kb-destination-grid{grid-template-columns:1fr!important;gap:11px!important}
  .kb-destination-card{min-height:0!important;padding:17px 18px 18px!important;border-radius:18px!important;box-shadow:0 8px 26px rgba(16,24,40,.055)!important}
  .kb-destination-top{align-items:center!important}
  .kb-destination-flag{width:42px!important;height:42px!important;flex:0 0 42px!important}
  .kb-destination-card h3{margin:17px 0 5px!important;font-size:19px!important;line-height:1.2!important}
  .kb-destination-card p{margin-bottom:12px!important;font-size:13px!important;line-height:1.55!important}
  .kb-destination-card a{display:inline-flex!important;align-items:center!important;min-height:42px!important;font-size:13px!important}
}

/* All cards and grids: polished hierarchy and safe text wrapping. */
@media(max-width:700px){
  .info-card,.service-card,.path-card,.cost-card,.intake-card,.uni-card,.kb-university-card,.kb-branch-card,.kb-contact-map-card,.kb-credential-card,.article-card,.event-card,.kb-cms-card{border-radius:var(--kb-mobile-radius)!important;overflow:hidden;overflow-wrap:anywhere}
  .card-grid-3,.card-grid-4,.article-grid,.event-grid,.hub-grid,.branch-grid,.uni-grid{gap:12px!important}
  .article-card img{height:auto!important;aspect-ratio:16/9!important;object-fit:cover!important}
}

/* Forms: 16px inputs prevent iOS zoom; larger controls reduce form abandonment. */
@media(max-width:700px){
  .kb-form-grid,.form-grid{grid-template-columns:1fr!important;gap:13px!important}
  .kb-span-2{grid-column:auto!important}
  form input,form select,form textarea{width:100%!important;min-height:50px!important;border-radius:12px!important;padding:12px 13px!important;font-size:16px!important;line-height:1.35!important}
  form textarea{min-height:112px!important}
  form label,.kb-field-label{font-size:13px!important;line-height:1.35!important}
  form .btn[type="submit"]{width:100%!important;min-height:52px!important;border-radius:13px!important}
  .form-note{font-size:12px!important;line-height:1.55!important}
}

/* Eligibility modal = bottom-sheet on phones, with safe-area and clear close target. */
@media(max-width:700px){
  #kb-eligibility-modal:not([hidden]){padding:max(8px,env(safe-area-inset-top)) 8px max(8px,env(safe-area-inset-bottom))!important;background:transparent!important}
  #kb-eligibility-modal .kb-eligibility-modal-backdrop{background:rgba(8,19,39,.72)!important;backdrop-filter:blur(7px)!important;-webkit-backdrop-filter:blur(7px)!important}
  #kb-eligibility-modal .kb-eligibility-modal-panel{max-height:calc(100dvh - max(16px,env(safe-area-inset-top) + env(safe-area-inset-bottom)))!important;padding:18px 15px calc(18px + env(safe-area-inset-bottom))!important;border-radius:22px 22px 14px 14px!important;box-shadow:0 24px 80px rgba(8,19,39,.34)!important;overscroll-behavior:contain}
  .kb-eligibility-modal-head{position:sticky!important;top:-18px!important;z-index:4!important;margin:0 -15px 14px!important;padding:18px 15px 12px!important;background:rgba(255,255,255,.97)!important;border-bottom:1px solid rgba(26,46,90,.08)!important;backdrop-filter:blur(12px)!important}
  .kb-eligibility-modal-head h2{font-size:23px!important;line-height:1.15!important}
  .kb-eligibility-modal-head p{font-size:12.5px!important;line-height:1.5!important}
  .kb-eligibility-modal-close{width:48px!important;height:48px!important;flex-basis:48px!important}
}

/* Announcement popup: never blocks the full mobile viewport. */
@media(max-width:700px){
  #kb-announcement-popup:not([hidden]),.kb-popup:not([hidden]){padding:12px!important;align-items:flex-end!important}
  .kb-popup-card,.kb-popup-panel{width:100%!important;max-width:520px!important;max-height:min(78dvh,650px)!important;overflow:auto!important;border-radius:20px!important;margin:0 auto calc(64px + env(safe-area-inset-bottom))!important}
  .kb-popup-close{width:48px!important;height:48px!important}
}

/* Fixed mobile actions: visible but not intrusive. */
@media(max-width:767px){
  .mobile-action-bar,.mobile-action{min-height:calc(60px + env(safe-area-inset-bottom))!important;padding-bottom:env(safe-area-inset-bottom)!important;background:rgba(255,255,255,.975)!important;backdrop-filter:blur(14px)!important;-webkit-backdrop-filter:blur(14px)!important;border-top:1px solid rgba(26,46,90,.10)!important;box-shadow:0 -10px 32px rgba(16,24,40,.11)!important}
  .mobile-action-bar a,.mobile-action a{min-height:60px!important;padding:8px 5px!important;font-size:11px!important;line-height:1.15!important;text-align:center!important}
  .footer{padding-bottom:calc(76px + env(safe-area-inset-bottom))!important}
}

/* Footer on narrow phones: one clear column; social chips can wrap cleanly. */
@media(max-width:520px){
  .footer-grid{grid-template-columns:1fr!important;gap:28px!important}
  .footer-brand{grid-column:auto!important}
  .footer-grid>div{min-width:0!important}
  .footer-grid a{display:flex!important;align-items:center!important;min-height:38px!important;overflow-wrap:anywhere}
  .footer-social{flex-wrap:wrap!important;white-space:normal!important}
  .kb-contact-ids{flex-wrap:wrap!important;white-space:normal!important}
  .kb-contact-ids .kb-id-chip{max-width:100%!important}
}

/* Internal page hero + reading layouts: less empty space on a phone. */
@media(max-width:700px){
  .simple-hero,.page-hero,.detail-hero{padding-block:36px!important}
  .simple-hero h1,.page-hero h1,.detail-hero h1{font-size:clamp(33px,9.8vw,43px)!important;line-height:1.07!important}
  .kb-page-nav-inner{gap:8px!important;overflow-x:auto!important;scrollbar-width:none!important;-webkit-overflow-scrolling:touch}.kb-page-nav-inner::-webkit-scrollbar{display:none}
  .kb-page-nav-link{flex:0 0 auto!important;min-height:44px!important}
}

/* Guides/resources: readable, not oversized. */
@media(max-width:700px){
  .kb-guide-hero{padding:36px 0 30px!important}
  .kb-guide-hero h1{font-size:clamp(33px,9.6vw,43px)!important;line-height:1.07!important;letter-spacing:-.035em!important}
  .kb-guide-deck{margin-top:15px!important;font-size:16px!important;line-height:1.62!important}
  .kb-guide-section{padding:28px 0 calc(72px + env(safe-area-inset-bottom))!important}
  .kb-guide-article{font-size:16px!important;line-height:1.75!important}
  .kb-guide-article h2{margin-top:38px!important;font-size:27px!important}
  .kb-guide-actions{padding:21px!important;border-radius:18px!important}
  .kb-guide-actions>div:last-child{display:grid!important;grid-template-columns:1fr!important;width:100%!important}
  .kb-guide-actions .btn{width:100%!important}
  .kb-resource-tools{padding:15px!important;border-radius:16px!important}
}

/* Quick links: one column on the narrowest phones to avoid tiny official-site cards. */
@media(max-width:420px){
  .kb-quick-grid{grid-template-columns:1fr!important}
  .kb-quick-link-card{min-height:88px!important;padding:13px 38px 13px 14px!important}
  .kb-quick-link-card strong{font-size:.92rem!important}
}

/* Motion stays premium but safe for accessibility/performance. */
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto!important}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
}


/* =========================================================
   KB Education v1.6 RC18.1 — Screenshot-Based Mobile Correction
   Targets the exact mobile issues seen in device preview:
   compact header, no text bleed, calmer hero, swipe trust cards,
   compact horizontal destination cards, floating-top separation.
   Functional backend/CMS/booking/eligibility behavior unchanged.
   ========================================================= */
@media(max-width:700px){
  html{scroll-padding-top:82px!important}
  [id]{scroll-margin-top:86px!important}
  .site-header{
    background:rgba(255,255,255,.998)!important;
    backdrop-filter:none!important;
    -webkit-backdrop-filter:none!important;
    box-shadow:0 1px 0 rgba(26,46,90,.08)!important
  }
  .header-inner{min-height:64px!important;height:64px!important}
  .brand{height:54px!important;display:flex!important;align-items:center!important}
  .brand img{height:49px!important;max-width:70px!important;width:auto!important}
  .mobile-menu-btn{
    width:44px!important;height:44px!important;min-width:44px!important;min-height:44px!important;
    border-radius:13px!important;box-shadow:0 5px 14px rgba(16,24,40,.06)!important
  }

  /* Make the proof strip feel like a native swipe row instead of a wrapping text block. */
  .kb-microproof{
    display:flex!important;flex-wrap:nowrap!important;justify-content:flex-start!important;
    gap:8px!important;margin-top:17px!important;overflow-x:auto!important;
    padding:1px 2px 5px!important;scroll-snap-type:x proximity!important;
    scrollbar-width:none!important;-webkit-overflow-scrolling:touch
  }
  .kb-microproof::-webkit-scrollbar{display:none}
  .kb-microproof span{
    flex:0 0 auto!important;min-height:34px!important;padding:7px 10px!important;
    border:1px solid rgba(17,130,157,.12)!important;border-radius:999px!important;
    background:#fff!important;box-shadow:0 4px 14px rgba(16,24,40,.035)!important;
    font-size:10.5px!important;white-space:nowrap!important;scroll-snap-align:start
  }

  /* Keep the hero visual strong but remove overlay competition on a phone. */
  .kb-hero-visual{min-height:252px!important}
  .kb-float-card.a{
    left:10px!important;top:10px!important;right:auto!important;bottom:auto!important;
    width:auto!important;max-width:72%!important;min-width:0!important;
    padding:10px 11px!important;border-radius:13px!important
  }
  .kb-float-card.a .kb-float-icon{width:31px!important;height:31px!important;margin-bottom:7px!important}
  .kb-float-card.a strong{font-size:11.5px!important;line-height:1.25!important}
  .kb-float-card.a small{font-size:9.5px!important;line-height:1.35!important}
  .kb-float-card.b{display:none!important}
  .kb-hero-badge{
    left:14px!important;right:14px!important;bottom:13px!important;
    max-width:calc(100% - 28px)!important;overflow:hidden!important;text-overflow:ellipsis!important;
    white-space:nowrap!important;font-size:10px!important
  }

  /* Mobile-native trust carousel instead of cramped 2-column tiles. */
  .kb-trustbar{overflow:hidden!important}
  .kb-trustbar .container{width:100%!important;max-width:none!important}
  .kb-trust-grid{
    display:flex!important;grid-template-columns:none!important;gap:10px!important;
    overflow-x:auto!important;padding:12px 14px 14px!important;scroll-snap-type:x mandatory!important;
    scrollbar-width:none!important;-webkit-overflow-scrolling:touch
  }
  .kb-trust-grid::-webkit-scrollbar{display:none}
  .kb-trust-item{
    flex:0 0 min(82vw,330px)!important;min-width:0!important;min-height:78px!important;
    padding:13px 14px!important;border:1px solid rgba(26,46,90,.09)!important;
    border-radius:16px!important;background:#fff!important;box-shadow:0 6px 20px rgba(16,24,40,.045)!important;
    scroll-snap-align:start!important
  }
  .kb-trust-item:nth-child(n){border-right:1px solid rgba(26,46,90,.09)!important;border-bottom:1px solid rgba(26,46,90,.09)!important}
  .kb-trust-dot{flex:0 0 34px!important;width:34px!important;height:34px!important}
  .kb-trust-item b{font-size:12.5px!important}
  .kb-trust-item span{font-size:10.5px!important;line-height:1.45!important}

  /* Screenshot fix: compact destination cards into scan-friendly horizontal rows. */
  .kb-destination-grid{grid-template-columns:1fr!important;gap:10px!important}
  .kb-destination-card{
    display:grid!important;
    grid-template-columns:46px minmax(0,1fr)!important;
    grid-template-areas:"flag title" "flag desc" "flag link"!important;
    column-gap:13px!important;row-gap:3px!important;
    min-height:0!important;padding:15px 16px!important;border-radius:17px!important;
    align-items:start!important
  }
  .kb-destination-top{grid-area:flag!important;align-self:start!important;margin:0!important}
  .kb-destination-flag{
    width:40px!important;height:40px!important;min-width:40px!important;flex-basis:40px!important;
    padding:8px!important;border-radius:50%!important
  }
  .kb-destination-card h3{
    grid-area:title!important;margin:1px 0 2px!important;font-size:18px!important;line-height:1.2!important
  }
  .kb-destination-card p{
    grid-area:desc!important;margin:0!important;font-size:12.25px!important;line-height:1.48!important
  }
  .kb-destination-card a{
    grid-area:link!important;min-height:34px!important;margin-top:4px!important;
    padding:5px 0!important;font-size:12.5px!important;line-height:1.3!important
  }

  /* Keep fixed CTAs compact; reserve space above them for any Back-to-top control. */
  .mobile-action-bar,.mobile-action{min-height:58px!important}
  .mobile-action-bar a,.mobile-action a{min-height:58px!important}
  .footer{padding-bottom:calc(72px + env(safe-area-inset-bottom))!important}

  /* Known/common WP back-to-top plugins + our heuristic class. */
  .kb-mobile-top-control,
  .scroll-to-top,.back-to-top,#back-to-top,#scroll-top,
  .wpfront-scroll-top-container,#wpfront-scroll-top-container,
  .ast-scroll-top,.generate-back-to-top,.to-top,.scrollup{
    right:14px!important;
    bottom:calc(72px + env(safe-area-inset-bottom))!important;
    width:44px!important;height:44px!important;min-width:44px!important;min-height:44px!important;
    border-radius:50%!important;
    z-index:1540!important
  }
}
@media(max-width:390px){
  .header-inner{min-height:62px!important;height:62px!important}
  .brand img{height:47px!important;max-width:68px!important}
  .kb-hero-visual{min-height:232px!important}
  .kb-trust-item{flex-basis:86vw!important}
  .kb-destination-card{grid-template-columns:42px minmax(0,1fr)!important;padding:14px!important;column-gap:11px!important}
  .kb-destination-flag{width:38px!important;height:38px!important;min-width:38px!important;flex-basis:38px!important}
}

/* =========================================================
   KB Education v1.6 RC18.2 — Screenshot-Verified Mobile Guard
   Fixes narrow-viewport hero clipping and menu overlay defects.
   ========================================================= */
@media(max-width:700px){
  html,body{width:100%!important;max-width:100%!important;overflow-x:clip!important}
  body{position:relative!important}
  main,main>section,.kb-hero,.kb-hero>.container,.kb-hero-grid,.kb-hero-copy,.kb-hero-actions{min-width:0!important;max-width:100%!important}

  /* Use margin gutters rather than calculated widths: safer inside WP Customizer/device preview iframes. */
  .container{width:auto!important;max-width:none!important;margin-left:14px!important;margin-right:14px!important}
  .header-inner{width:auto!important;max-width:none!important;margin-left:14px!important;margin-right:14px!important}
  .kb-trustbar .container{width:100%!important;max-width:none!important;margin-left:0!important;margin-right:0!important}

  /* Hero must never create a wider intrinsic grid/button track than the phone viewport. */
  .kb-hero-grid{display:grid!important;grid-template-columns:minmax(0,1fr)!important;width:100%!important}
  .kb-hero-copy{width:100%!important;overflow:visible!important;text-align:left!important}
  .kb-hero-copy h1{
    display:block!important;width:100%!important;max-width:100%!important;min-width:0!important;
    margin:10px 0 14px!important;font-size:clamp(34px,9.25vw,39px)!important;line-height:1.055!important;
    letter-spacing:-.037em!important;white-space:normal!important;word-break:normal!important;
    overflow-wrap:normal!important;text-wrap:pretty!important
  }
  .kb-hero-copy>p{display:block!important;width:100%!important;max-width:100%!important;min-width:0!important;white-space:normal!important;overflow-wrap:break-word!important}
  .kb-hero-actions{
    display:grid!important;grid-template-columns:minmax(0,1fr)!important;
    width:100%!important;max-width:100%!important;min-width:0!important;gap:9px!important
  }
  .kb-hero-actions .btn{
    box-sizing:border-box!important;width:100%!important;max-width:100%!important;min-width:0!important;
    margin:0!important;padding:10px 14px!important;white-space:normal!important;overflow-wrap:anywhere!important
  }
  .kb-hero-visual,.kb-hero-photo{width:100%!important;max-width:100%!important;min-width:0!important}

  /* One icon system only. The previous SVG background + span bars produced a crossed/double X. */
  .mobile-menu-btn{
    background-image:none!important;background:#fff!important;display:flex!important;flex-direction:column!important;
    align-items:center!important;justify-content:center!important;gap:5px!important;padding:0!important
  }
  .mobile-menu-btn span{
    display:block!important;width:22px!important;height:2px!important;min-height:2px!important;
    margin:0!important;padding:0!important;border:0!important;border-radius:99px!important;
    background:#0B5578!important;opacity:1;transform:none;transform-origin:center!important
  }
  .mobile-menu-btn[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)!important}
  .mobile-menu-btn[aria-expanded="true"] span:nth-child(2){opacity:0!important;transform:scaleX(.2)!important}
  .mobile-menu-btn[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)!important}

  /* Keep navigation visually clean while open. */
  body.kb-menu-open .mobile-action-bar,body.kb-menu-open .mobile-action{visibility:hidden!important;pointer-events:none!important}
  body.kb-menu-open .kb-mobile-top-control,
  body.kb-menu-open .scroll-to-top,body.kb-menu-open .back-to-top,
  body.kb-menu-open #back-to-top,body.kb-menu-open #scroll-top,
  body.kb-menu-open .wpfront-scroll-top-container,body.kb-menu-open #wpfront-scroll-top-container,
  body.kb-menu-open .ast-scroll-top,body.kb-menu-open .generate-back-to-top,
  body.kb-menu-open .to-top,body.kb-menu-open .scrollup{display:none!important}
  .mobile-menu:not([hidden]){max-height:calc(100dvh - 64px - env(safe-area-inset-top))!important;overscroll-behavior:contain!important}
}
@media(max-width:430px){
  .container,.header-inner{margin-left:13px!important;margin-right:13px!important}
  .kb-hero-copy h1{font-size:clamp(33px,9vw,37px)!important}
}

/* =========================================================
   KB Education v1.6 RC18.3 — Mobile Menu & Scroll Polish
   Screenshot-verified final mobile shell refinement.
   ========================================================= */
@media(max-width:700px){
  .site-header,.site-header.is-scrolled{
    background:#fff!important;
    backdrop-filter:none!important;
    -webkit-backdrop-filter:none!important;
    box-shadow:0 6px 20px rgba(16,24,40,.07)!important;
  }
  body.kb-menu-open{
    overflow:hidden!important;
    overscroll-behavior:none!important;
    touch-action:none!important;
  }
  body.kb-menu-open .site-header{height:100dvh!important;overflow:hidden!important;background:#fff!important}
  body.kb-menu-open .header-inner{background:#fff!important}
  body.kb-menu-open .mobile-menu:not([hidden]){
    display:block!important;
    height:calc(100dvh - 64px - env(safe-area-inset-top))!important;
    max-height:none!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    -webkit-overflow-scrolling:touch!important;
    overscroll-behavior:contain!important;
    scrollbar-gutter:auto!important;
    background:#fff!important;
  }
  body.kb-menu-open .mobile-menu-inner{
    min-height:100%!important;
    padding-top:8px!important;
    padding-bottom:calc(24px + env(safe-area-inset-bottom))!important;
  }
  body.kb-menu-open .mobile-menu-inner>a{
    min-height:48px!important;
    padding:11px 4px!important;
    font-size:15.5px!important;
  }
  body.kb-menu-open .mobile-menu-actions{padding-top:14px!important;padding-bottom:10px!important}
  .kb-mobile-top-control,
  .scroll-to-top,.back-to-top,#back-to-top,#scroll-top,
  .wpfront-scroll-top-container,#wpfront-scroll-top-container,
  .ast-scroll-top,.generate-back-to-top,.to-top,.scrollup{
    display:none!important;
  }
  .mobile-action,.mobile-action-bar{
    background:#fff!important;
    backdrop-filter:none!important;
    -webkit-backdrop-filter:none!important;
  }
}


/* RC18.15 — approved country-card identity only. Desktop flag + country name share one top row. */
@media(min-width:701px){
  .kb-destination-card{
    display:grid!important;
    grid-template-columns:56px minmax(0,1fr)!important;
    grid-template-areas:"flag title" "desc desc" "link link"!important;
    column-gap:14px!important;row-gap:10px!important;align-content:start!important
  }
  .kb-destination-top{grid-area:flag!important;align-self:center!important;margin:0!important}
  .kb-destination-card h3{grid-area:title!important;align-self:center!important;margin:0!important;line-height:1.2!important}
  .kb-destination-card p{grid-area:desc!important;margin:4px 0 0!important}
  .kb-destination-card a{grid-area:link!important;margin-top:2px!important}
  .kb-destination-flag{width:54px!important;height:38px!important;min-width:54px!important;padding:4px!important;border-radius:8px!important;object-fit:contain!important;background:#fff!important}
}


/* RC18.17 — mobile navigation grouping only. Desktop remains untouched. */
@media (max-width:700px){
  .mobile-menu-inner>.kb-mobile-group{display:block!important;margin:0!important;border:0!important;border-bottom:1px solid rgba(26,46,90,.07)!important;background:transparent!important}
  .mobile-menu-inner>.kb-mobile-group>summary{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:14px!important;min-height:50px!important;padding:12px 4px!important;list-style:none!important;cursor:pointer!important;color:var(--navy)!important;font-size:16px!important;font-weight:760!important;line-height:1.25!important;-webkit-tap-highlight-color:transparent}
  .mobile-menu-inner>.kb-mobile-group>summary::-webkit-details-marker{display:none!important}
  .mobile-menu-inner>.kb-mobile-group>summary::after{content:"+";display:grid;place-items:center;width:26px;height:26px;flex:0 0 26px;border-radius:8px;background:rgba(17,130,157,.08);color:var(--teal);font-size:20px;font-weight:700;line-height:1}
  .mobile-menu-inner>.kb-mobile-group[open]>summary::after{content:"−"}
  .mobile-menu-inner>.kb-mobile-group[open]>summary{color:var(--teal)!important}
  .kb-mobile-submenu{display:grid!important;gap:0!important;margin:0 0 10px 5px!important;padding:2px 0 4px 13px!important;border-left:2px solid rgba(17,130,157,.18)!important}
  .kb-mobile-submenu>a{display:flex!important;align-items:center!important;min-height:42px!important;padding:9px 8px!important;border:0!important;border-bottom:1px solid rgba(26,46,90,.045)!important;color:#40516d!important;font-size:14px!important;font-weight:650!important;line-height:1.3!important}
  .kb-mobile-submenu>a:last-child{border-bottom:0!important}
  .kb-mobile-submenu>a:active,.kb-mobile-submenu>a:focus-visible{color:var(--teal)!important}
}


/* =========================================================
   KB Education v1.6 RC18.18 — Targeted Mobile/Tablet UX Safeguards
   Scope only: grouped drawer styling through the existing hamburger breakpoint,
   compact phone Team swipe rails, and no desktop-header redesign.
   ========================================================= */
@media(max-width:1100px){
  /* RC18.17 grouping must remain styled anywhere the hamburger is active, not only <=700px. */
  .mobile-menu-inner>.kb-mobile-group{display:block!important;margin:0!important;border:0!important;border-bottom:1px solid rgba(26,46,90,.07)!important;background:transparent!important}
  .mobile-menu-inner>.kb-mobile-group>summary{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:14px!important;min-height:50px!important;padding:12px 4px!important;list-style:none!important;cursor:pointer!important;color:var(--navy)!important;font-size:16px!important;font-weight:760!important;line-height:1.25!important;-webkit-tap-highlight-color:transparent}
  .mobile-menu-inner>.kb-mobile-group>summary::-webkit-details-marker{display:none!important}
  .mobile-menu-inner>.kb-mobile-group>summary::after{content:"+";display:grid;place-items:center;width:26px;height:26px;flex:0 0 26px;border-radius:8px;background:rgba(17,130,157,.08);color:var(--teal);font-size:20px;font-weight:700;line-height:1}
  .mobile-menu-inner>.kb-mobile-group[open]>summary::after{content:"−"}
  .mobile-menu-inner>.kb-mobile-group[open]>summary{color:var(--teal)!important}
  .kb-mobile-submenu{display:grid!important;gap:0!important;margin:0 0 10px 5px!important;padding:2px 0 4px 13px!important;border-left:2px solid rgba(17,130,157,.18)!important}
  .kb-mobile-submenu>a{display:flex!important;align-items:center!important;min-height:42px!important;padding:9px 8px!important;border:0!important;border-bottom:1px solid rgba(26,46,90,.045)!important;color:#40516d!important;font-size:14px!important;font-weight:650!important;line-height:1.3!important}
  .kb-mobile-submenu>a:last-child{border-bottom:0!important}
  .kb-mobile-submenu>a:active,.kb-mobile-submenu>a:focus-visible{color:var(--teal)!important}

  /* One scrollbar while the drawer is open at tablet/small-laptop widths too. */
  body.kb-menu-open{overflow:hidden!important;overscroll-behavior:none!important}
  body.kb-menu-open .site-header{height:100dvh!important;overflow:hidden!important;background:#fff!important}
  body.kb-menu-open .header-inner{background:#fff!important}
  body.kb-menu-open .mobile-menu:not([hidden]){display:block!important;height:calc(100dvh - 70px - env(safe-area-inset-top))!important;max-height:none!important;overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch!important;overscroll-behavior:contain!important;background:#fff!important}
  body.kb-menu-open .mobile-menu-inner{min-height:100%!important;padding-bottom:calc(24px + env(safe-area-inset-bottom))!important}
}

@media(max-width:700px){
  /* Team: compact side-by-side cards in horizontal rails instead of a long portrait stack. */
  .kb-team-hero .filter-chips{flex-wrap:nowrap!important;overflow-x:auto!important;overscroll-behavior-x:contain!important;scrollbar-width:none!important;padding-bottom:4px!important;margin-right:-14px!important;padding-right:14px!important}
  .kb-team-hero .filter-chips::-webkit-scrollbar{display:none!important}
  .kb-team-hero .filter-chips button{flex:0 0 auto!important;min-height:42px!important}
  .kb-team-hero+.section .team-section-title{margin-top:30px!important;margin-bottom:12px!important}
  .kb-team-hero+.section .team-grid{display:flex!important;grid-template-columns:none!important;gap:12px!important;overflow-x:auto!important;overflow-y:hidden!important;scroll-snap-type:x mandatory!important;scroll-padding-left:0!important;overscroll-behavior-x:contain!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important;padding:2px 14px 12px 0!important;margin-right:-14px!important}
  .kb-team-hero+.section .team-grid::-webkit-scrollbar{display:none!important}
  .kb-team-hero+.section .team-card{display:grid!important;grid-template-columns:42% minmax(0,1fr)!important;flex:0 0 min(86vw,390px)!important;max-width:none!important;min-height:218px!important;scroll-snap-align:start!important;scroll-snap-stop:normal!important;border-radius:18px!important}
  .kb-team-hero+.section .team-card[hidden]{display:none!important}
  .kb-team-hero+.section .team-avatar{width:100%!important;height:100%!important;min-height:218px!important;aspect-ratio:auto!important;border-radius:0!important}
  .kb-team-hero+.section .team-avatar img{width:100%!important;height:100%!important;object-fit:cover!important;object-position:50% 18%!important}
  .kb-team-hero+.section .team-card-body{display:flex!important;flex-direction:column!important;justify-content:center!important;padding:16px 14px!important;min-width:0!important}
  .kb-team-hero+.section .team-card-body h3{font-size:18px!important;line-height:1.2!important;margin:0 0 7px!important}
  .kb-team-hero+.section .team-card-body strong{font-size:11.5px!important;line-height:1.5!important}
  .kb-team-hero+.section .team-card-body .team-branch{margin-top:10px!important;font-size:9.5px!important;text-transform:uppercase!important;letter-spacing:.06em!important;color:var(--teal)!important}
}
@media(max-width:390px){
  .kb-team-hero+.section .team-card{grid-template-columns:40% minmax(0,1fr)!important;flex-basis:88vw!important;min-height:205px!important}
  .kb-team-hero+.section .team-avatar{min-height:205px!important}
  .kb-team-hero+.section .team-card-body{padding:14px 12px!important}
  .kb-team-hero+.section .team-card-body h3{font-size:17px!important}
  .kb-team-hero+.section .team-card-body strong{font-size:10.8px!important}
}

/* =========================================================
   KB Education v1.6 RC18.19 — Homepage Team Swipe + Reliable Mobile Menu
   Scope: homepage team preview and mobile menu interaction only.
   ========================================================= */
@media(max-width:1100px){
  /* Opening the drawer at any scroll depth must pin it to the current viewport. */
  html.kb-menu-open{overflow:hidden!important;overscroll-behavior:none!important}
  body.kb-menu-open .site-header{
    position:fixed!important;top:0!important;left:0!important;right:0!important;
    width:100%!important;height:100dvh!important;z-index:9999!important;
    overflow:hidden!important;background:#fff!important;transform:none!important;
  }
  body.kb-menu-open .header-inner{position:relative!important;z-index:2!important;background:#fff!important}
  body.kb-menu-open .mobile-menu:not([hidden]){
    position:relative!important;z-index:1!important;display:block!important;
    height:calc(100dvh - 76px - env(safe-area-inset-top))!important;max-height:none!important;
    overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch!important;
    overscroll-behavior:contain!important;background:#fff!important;
  }
  .mobile-menu-btn{position:relative!important;z-index:10000!important;pointer-events:auto!important;touch-action:manipulation!important}
}

@media(max-width:700px){
  /* Homepage team preview: one compact person card at a time, left-right swipe. */
  .kb-team-preview{
    display:flex!important;grid-template-columns:none!important;flex-wrap:nowrap!important;
    gap:12px!important;overflow-x:auto!important;overflow-y:hidden!important;
    scroll-snap-type:x mandatory!important;scroll-padding-left:0!important;
    overscroll-behavior-x:contain!important;-webkit-overflow-scrolling:touch!important;
    scrollbar-width:none!important;padding:2px 18px 10px 0!important;margin-right:-18px!important;
  }
  .kb-team-preview::-webkit-scrollbar{display:none!important}
  .kb-team-preview>.kb-person-card{
    display:grid!important;grid-template-columns:44% minmax(0,1fr)!important;
    flex:0 0 calc(100% - 20px)!important;width:calc(100% - 20px)!important;max-width:none!important;
    min-height:214px!important;scroll-snap-align:start!important;scroll-snap-stop:always!important;
    border-radius:18px!important;overflow:hidden!important;
  }
  .kb-team-preview>.kb-person-card[hidden]{display:none!important}
  .kb-team-preview .kb-person-photo{
    width:100%!important;height:100%!important;min-height:214px!important;aspect-ratio:auto!important;
    border-radius:0!important;overflow:hidden!important;
  }
  .kb-team-preview .kb-person-photo img{
    width:100%!important;height:100%!important;object-fit:cover!important;object-position:50% 18%!important;
  }
  .kb-team-preview .kb-person-body{
    display:flex!important;flex-direction:column!important;justify-content:center!important;
    min-width:0!important;padding:16px 14px!important;overflow:hidden!important;
  }
  .kb-team-preview .kb-person-body h3{font-size:19px!important;line-height:1.22!important;margin:0 0 8px!important;overflow-wrap:anywhere!important}
  .kb-team-preview .kb-person-body p{font-size:12.5px!important;line-height:1.5!important;margin:0!important;color:var(--kb-muted)!important;overflow-wrap:anywhere!important}
  .kb-team-preview .kb-person-body span{margin-top:12px!important;font-size:9.5px!important}
}
@media(max-width:390px){
  .kb-team-preview>.kb-person-card{grid-template-columns:42% minmax(0,1fr)!important;flex-basis:calc(100% - 14px)!important;width:calc(100% - 14px)!important;min-height:202px!important}
  .kb-team-preview .kb-person-photo{min-height:202px!important}
  .kb-team-preview .kb-person-body{padding:14px 12px!important}
  .kb-team-preview .kb-person-body h3{font-size:18px!important}
  .kb-team-preview .kb-person-body p{font-size:12px!important}
}

