@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #1C2B6E;
  --navy-dark: #111827;
  --navy-mid: #243550;
  --red: #C0281C;
  --gold: #E8C87A;
  --white: #FFFFFF;
  --off-white: #F7F7F5;
  --grey-light: #E4E4DF;
  --grey-mid: #999;
  --grey-dark: #444;
  --serif: 'DM Serif Display', serif;
  --sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--navy); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 48px;
}
.nav-logo { display: flex; flex-direction: column; }
.nav-logo .l1 { font-family: var(--serif); font-size: 20px; color: var(--navy); letter-spacing: -0.3px; }
.nav-logo .l2 { font-size: 8px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-top: 1px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--grey-dark); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { background: var(--red); color: var(--white); border: none; padding: 10px 22px; font-size: 13px; font-weight: 600; font-family: var(--sans); cursor: pointer; transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.9; }
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* HERO */
.hero {
  display: grid; grid-template-columns: 52% 48%;
  min-height: 580px; margin-top: 57px;
}
.hero-left { background: var(--navy); padding: 68px 52px 52px; display: flex; flex-direction: column; justify-content: space-between; }
.hero-tag { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.hero-tag::before { content: ''; width: 20px; height: 1px; background: var(--red); display: inline-block; flex-shrink: 0; }
.hero-h1 { font-family: var(--serif); font-size: 52px; line-height: 1.03; color: var(--white); letter-spacing: -1.5px; margin-bottom: 24px; }
.hero-h1 em { font-style: italic; color: var(--gold); display: block; }
.hero-sub { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 380px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-red { background: var(--red); color: var(--white); border: none; padding: 13px 26px; font-size: 13px; font-weight: 600; font-family: var(--sans); cursor: pointer; display: inline-block; transition: opacity 0.2s; }
.btn-red:hover { opacity: 0.9; }
.btn-ghost-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); padding: 13px 26px; font-size: 13px; font-family: var(--sans); cursor: pointer; display: inline-block; transition: border-color 0.2s; }
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.5); }
.btn-navy { background: var(--navy); color: var(--white); border: none; padding: 13px 26px; font-size: 13px; font-weight: 600; font-family: var(--sans); cursor: pointer; display: inline-block; }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1px solid var(--navy); padding: 13px 26px; font-size: 13px; font-family: var(--sans); cursor: pointer; display: inline-block; }
.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 44px; }
.hstat { flex: 1; padding: 20px 0; }
.hstat + .hstat { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 24px; }
.hstat .hn { font-family: var(--serif); font-size: 32px; color: var(--white); line-height: 1; }
.hstat .hl { font-size: 10px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.hero-right { display: grid; grid-template-rows: 1fr auto; background: var(--navy-mid); }
.hero-main-img { background: #1e2f45; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; min-height: 380px; overflow: hidden; position: relative; }
.hero-main-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.08); }
.hero-thumb { background: var(--navy-mid); min-height: 120px; overflow: hidden; position: relative; }
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ph-placeholder { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; width: 100%; height: 100%; min-height: inherit; }
.ph-placeholder span { font-size: 9px; color: rgba(255,255,255,0.2); letter-spacing: 1px; text-transform: uppercase; }

/* TRUST BAR */
.trust { background: var(--off-white); padding: 13px 48px; border-bottom: 1px solid var(--grey-light); display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-label { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #BBB; white-space: nowrap; }
.trust-sep { width: 1px; height: 12px; background: #DDD; flex-shrink: 0; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #666; white-space: nowrap; }
.trust-dot { width: 4px; height: 4px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* SECTIONS */
.section { padding: 80px 48px; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }
.section-darker { background: var(--navy-dark); }
.eyebrow { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--red); display: inline-block; flex-shrink: 0; }
.eyebrow-light { color: rgba(255,255,255,0.4); }
.eyebrow-light::before { background: rgba(255,255,255,0.3); }
.sec-h { font-family: var(--serif); font-size: 40px; color: var(--navy); letter-spacing: -1px; line-height: 1.06; margin-bottom: 14px; }
.sec-h-white { color: var(--white); }
.sec-sub { font-size: 15px; color: #777; line-height: 1.75; }
.sec-header-split { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 52px; }

/* MOSAIC */
.mosaic { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--grey-light); }
.mosaic-img { background: #E8EAF0; overflow: hidden; position: relative; min-height: 240px; }
.mosaic-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.mosaic-stat { background: var(--navy); padding: 36px 32px; display: flex; flex-direction: column; justify-content: flex-end; }
.mosaic-stat-dark { background: var(--navy-dark); }
.ms-n { font-family: var(--serif); font-size: 60px; color: var(--white); line-height: 1; letter-spacing: -2px; }
.ms-n span { color: var(--gold); }
.ms-l { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }
.mosaic-text { background: var(--off-white); padding: 36px 32px; }
.mt-title { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.mt-desc { font-size: 13px; color: #777; line-height: 1.7; }
.mosaic-red { background: var(--red); padding: 36px 32px; display: flex; flex-direction: column; justify-content: space-between; }
.mr-title { font-family: var(--serif); font-size: 20px; color: var(--white); line-height: 1.2; margin-bottom: 10px; }
.mr-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.mr-n { font-family: var(--serif); font-size: 48px; color: rgba(255,255,255,0.15); line-height: 1; margin-top: auto; text-align: right; }

/* COURSES */
.courses-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--grey-light); }
.course-feature { grid-column: 1; grid-row: 1/3; background: var(--navy); padding: 44px 40px; display: flex; flex-direction: column; justify-content: space-between; min-height: 320px; }
.cf-cat { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.cf-name { font-family: var(--serif); font-size: 26px; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
.cf-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 28px; }
.cf-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.cf-pill { border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.55); font-size: 11px; padding: 5px 12px; }
.cf-arr { margin-top: 32px; color: var(--gold); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.cc { background: var(--white); padding: 26px 28px; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; min-height: 148px; transition: background 0.2s; }
.cc:hover { background: var(--off-white); }
.cc-cat { font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.cc-name { font-family: var(--serif); font-size: 16px; color: var(--navy); line-height: 1.25; margin-bottom: 8px; }
.cc-bot { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: #AAA; }
.view-more { margin-top: 28px; background: none; border: none; border-bottom: 1px solid var(--navy); padding-bottom: 2px; font-size: 13px; font-weight: 600; color: var(--navy); cursor: pointer; font-family: var(--sans); display: inline-flex; align-items: center; gap: 6px; }

/* STATS BAND */
.stats-band { background: var(--navy); display: grid; grid-template-columns: repeat(4,1fr); }
.sb { padding: 52px 0; border-right: 1px solid rgba(255,255,255,0.08); text-align: center; }
.sb:last-child { border-right: none; }
.sbn { font-family: var(--serif); font-size: 56px; color: var(--white); line-height: 1; letter-spacing: -2px; }
.sbn span { color: var(--gold); }
.sbl { font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--grey-light); }
.step-card { background: var(--white); display: flex; flex-direction: column; }
.step-img { background: #E8EAF0; min-height: 200px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.step-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.step-body { padding: 28px; }
.step-n { font-family: var(--serif); font-size: 36px; color: var(--grey-light); line-height: 1; margin-bottom: 12px; }
.step-icon { color: var(--red); font-size: 20px; margin-bottom: 12px; }
.step-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.step-desc { font-size: 13px; color: #888; line-height: 1.65; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-img { background: #E8EAF0; min-height: 500px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.split-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split-content { padding: 72px 52px; display: flex; flex-direction: column; justify-content: center; }
.why-list { margin-top: 36px; border-top: 1px solid var(--grey-light); }
.wr { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--grey-light); align-items: flex-start; }
.wr-icon { width: 36px; height: 36px; background: var(--off-white); border: 1px solid var(--grey-light); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 15px; flex-shrink: 0; font-weight: bold; }
.wr-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.wr-desc { font-size: 13px; color: #888; line-height: 1.6; }

/* TESTIMONIALS */
.testi-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.testi-big { font-family: var(--serif); font-size: 80px; color: var(--grey-light); line-height: 0.8; margin-bottom: 12px; }
.testi-quote { font-family: var(--serif); font-size: 26px; color: var(--navy); line-height: 1.3; font-style: italic; }
.testi-attr { font-size: 12px; color: #AAA; margin-top: 16px; font-weight: 500; }
.testi-cards { display: flex; flex-direction: column; border-top: 1px solid var(--grey-light); }
.tc { padding: 24px 0; border-bottom: 1px solid var(--grey-light); }
.tc-q { font-family: var(--serif); font-size: 16px; color: var(--navy); line-height: 1.5; margin-bottom: 10px; font-style: italic; }
.tc-a { font-size: 12px; color: #AAA; }
.tc-a strong { color: #555; font-weight: 600; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-list { border-top: 1px solid var(--grey-light); }
.faq-item { border-bottom: 1px solid var(--grey-light); }
.faq-q { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; }
.faq-q-text { font-size: 14px; font-weight: 600; color: var(--navy); }
.faq-toggle { color: var(--red); font-size: 18px; flex-shrink: 0; font-weight: 300; transition: transform 0.2s; }
.faq-a { display: none; padding: 0 0 18px; font-size: 13px; color: #777; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* CTA STRIP */
.cta-strip { background: var(--navy); padding: 64px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cs-h { font-family: var(--serif); font-size: 36px; color: var(--white); line-height: 1.1; letter-spacing: -0.8px; }
.cs-sub { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 12px; }
.cs-bullets { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.cs-bullets li { font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
.cs-bullets li::before { content: '✓'; color: var(--gold); font-weight: bold; flex-shrink: 0; }
.cs-form { display: flex; flex-direction: column; gap: 10px; }
.cs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fi { width: 100%; padding: 12px 14px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); font-family: var(--sans); font-size: 13px; color: var(--white); outline: none; }
.fi::placeholder { color: rgba(255,255,255,0.3); }
.fsel { width: 100%; padding: 12px 14px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,0.6); outline: none; appearance: none; }
.fsel option { background: var(--navy); color: var(--white); }
.fsub { background: var(--red); color: var(--white); border: none; padding: 14px; font-size: 13px; font-weight: 600; font-family: var(--sans); cursor: pointer; width: 100%; letter-spacing: 0.3px; transition: opacity 0.2s; }
.fsub:hover { opacity: 0.9; }
.fnote { font-size: 11px; color: rgba(255,255,255,0.25); text-align: center; }

/* EMAIL STRIP */
.email-strip { background: var(--white); padding: 48px; display: flex; justify-content: space-between; align-items: center; gap: 40px; border-top: 1px solid var(--grey-light); flex-wrap: wrap; }
.es-h { font-family: var(--serif); font-size: 28px; color: var(--navy); letter-spacing: -0.5px; }
.es-p { font-size: 13px; color: #777; margin-top: 6px; line-height: 1.6; }
.es-form { display: flex; max-width: 380px; width: 100%; }
.es-input { flex: 1; padding: 12px 14px; border: 1px solid var(--grey-light); font-family: var(--sans); font-size: 13px; color: #333; outline: none; border-right: none; }
.es-btn { background: var(--navy); color: var(--white); border: none; padding: 12px 18px; font-size: 13px; font-weight: 600; font-family: var(--sans); cursor: pointer; white-space: nowrap; }

/* FOOTER */
.footer { background: #0D1321; padding: 52px 48px 28px; }
.fg { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.fb .fl1 { font-family: var(--serif); font-size: 19px; color: var(--white); display: block; }
.fb .fl2 { font-size: 8px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--red); display: block; margin-top: 2px; }
.fb p { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.75; margin-top: 14px; max-width: 220px; }
.fc h4 { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 14px; }
.fc ul { list-style: none; }
.fc li { margin-bottom: 9px; }
.fc a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.fc a:hover { color: rgba(255,255,255,0.7); }
.fbot { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.fbot span { font-size: 11px; color: rgba(255,255,255,0.2); }

/* PAGE HERO (inner pages) */
.page-hero { background: var(--navy); padding: 80px 48px 64px; margin-top: 57px; }
.page-hero-tag { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.page-hero-tag::before { content: ''; width: 18px; height: 1px; background: var(--red); display: inline-block; }
.page-hero h1 { font-family: var(--serif); font-size: 52px; color: var(--white); letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 20px; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 560px; }
.page-hero-stats { display: flex; gap: 48px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.phs .phn { font-family: var(--serif); font-size: 36px; color: var(--white); line-height: 1; }
.phs .phn span { color: var(--gold); }
.phs .phl { font-size: 10px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* TABLE */
.etc-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.etc-table th { background: var(--navy); color: var(--white); text-align: left; padding: 12px 16px; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.etc-table td { padding: 12px 16px; border-bottom: 1px solid var(--grey-light); color: #444; }
.etc-table tr:nth-child(even) td { background: var(--off-white); }
.etc-table tr:hover td { background: #EEF; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-list { margin-top: 32px; border-top: 1px solid var(--grey-light); }
.ci-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--grey-light); align-items: flex-start; }
.ci-icon { width: 36px; height: 36px; background: var(--off-white); border: 1px solid var(--grey-light); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 16px; flex-shrink: 0; }
.ci-label { font-size: 10px; color: #AAA; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.ci-val { font-size: 14px; color: var(--navy); font-weight: 500; line-height: 1.5; }
.form-wrap { background: var(--off-white); padding: 40px; }
.form-title { font-family: var(--serif); font-size: 24px; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: #AAA; margin-bottom: 28px; }
.form-dark { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fi-light { width: 100%; padding: 12px 14px; border: 1px solid var(--grey-light); font-family: var(--sans); font-size: 13px; color: #333; background: var(--white); outline: none; }
.fi-light::placeholder { color: #CCC; }
.fi-textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--grey-light); font-family: var(--sans); font-size: 13px; color: #333; background: var(--white); outline: none; height: 100px; resize: none; }
.fsel-light { width: 100%; padding: 12px 14px; border: 1px solid var(--grey-light); font-family: var(--sans); font-size: 13px; color: #555; background: var(--white); outline: none; appearance: none; }
.fsub-red { background: var(--red); color: var(--white); border: none; padding: 14px; font-size: 13px; font-weight: 600; font-family: var(--sans); cursor: pointer; width: 100%; }

/* MAP */
.map-embed { width: 100%; height: 300px; border: none; filter: grayscale(20%); }

/* PLACEMENT CARDS */
.placement-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--grey-light); margin-top: 52px; }
.placement-card { background: var(--white); padding: 28px 24px; }
.placement-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.placement-card p { font-size: 12px; color: #888; line-height: 1.6; }

/* GRAD VOICES */
.grad-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--grey-light); margin-top: 52px; }
.grad-card { background: var(--white); padding: 32px 28px; }
.grad-tag { font-size: 10px; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.grad-quote { font-family: var(--serif); font-size: 15px; color: var(--navy); font-style: italic; line-height: 1.6; margin-bottom: 16px; }
.grad-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.grad-detail { font-size: 11px; color: #AAA; margin-top: 2px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 40px 20px; }
  .hero-h1 { font-size: 36px; }
  .hero-right { min-height: 300px; }
  .hero-thumbs { display: none; }
  .trust { padding: 12px 20px; gap: 10px; }
  .section { padding: 52px 20px; }
  .mosaic { grid-template-columns: 1fr; }
  .courses-layout { grid-template-columns: 1fr; }
  .course-feature { grid-column: 1; grid-row: auto; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 280px; }
  .split-content { padding: 40px 20px; }
  .testi-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .cta-strip { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .placement-grid { grid-template-columns: repeat(2,1fr); }
  .grad-grid { grid-template-columns: 1fr; }
  .fg { grid-template-columns: 1fr 1fr; }
  .sec-h { font-size: 28px; }
  .page-hero { padding: 52px 20px; }
  .page-hero h1 { font-size: 36px; }
  .email-strip { padding: 40px 20px; flex-direction: column; }
  .sec-header-split { flex-direction: column; }
}

/* Image fixes */
.hero-main-img img,
.hero-thumb img,
.mosaic-img img,
.step-img img,
.split-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  position: absolute; 
  inset: 0;
  transform: none !important;
}
.mosaic-img { position: relative; }
.hero-main-img { position: relative; }
.step-img { position: relative; }
.split-img { position: relative; }

/* Nav logo with image */
.nav-logo-img { height: 36px; width: auto; display: block; }

/* Footer logo */
.footer-logo-img { height: 28px; width: auto; display: block; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: 0.7; }
