/* =============================================================
   CSS VARIABLES — IILM Brand Colours
   Midnight Blue: R0 G38 B90  (#00265A)
   Maroon:        R128 G0 B22 (#800016)
============================================================= */
:root {
  --midnight:    #00265A;
  --maroon:      #800016;
  --maroon-dark: #600011;
  --cream:       #F7F5F0;
  --white:       #FFFFFF;
  --light-gray:  #EEF0F4;
  --text-dark:   #111827;
  --text-mid:    #4B5563;
  --text-light:  #6B7280;
  --gold:        #C8A96E;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow:      0 4px 24px rgba(0,38,90,0.10);
  --shadow-lg:   0 12px 48px rgba(0,38,90,0.16);
  --container:   1140px;
}

/* =============================================================
   RESET & BASE
============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* =============================================================
   LAYOUT UTILITIES
============================================================= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.label-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  background: rgba(128,0,22,0.08);
  border: 1px solid rgba(128,0,22,0.20);
  border-radius: 40px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--midnight);
  line-height: 1.18;
  margin-bottom: 16px;
}
h2.section-title span { color: var(--maroon); }

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.75;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  text-align: center;
}
.btn-primary:hover  { background: #9b001b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(128,0,22,0.28); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--midnight);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 4px;
  border: 2px solid var(--midnight);
  letter-spacing: 0.03em;
  transition: all 0.2s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  text-align: center;
}
.btn-outline:hover { background: var(--midnight); color: var(--white); }

/* Full-width button helper */
.btn-full { display: block; width: 100%; }

/* =============================================================
   ANNOUNCEMENT BAR
============================================================= */
.announcement-bar {
  background: var(--maroon);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.announcement-bar strong { font-weight: 700; }

/* =============================================================
   STICKY HEADER
============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--midnight);
  border-bottom: 3px solid var(--maroon);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 12px;
}
.logo-wrap img { height: 40px; width: auto; }
.header-cta .btn-primary {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

/* =============================================================
   HERO
============================================================= */
.hero {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 85% 50%, rgba(128,0,22,0.20) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
  padding: 64px 20px 72px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.07;
  margin-bottom: 10px;
}
.hero-title .q-word { color: var(--gold); }
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  font-style: italic;
  margin-bottom: 22px;
}
.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 28px;
  line-height: 1.78;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  white-space: nowrap;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-ctas .btn-primary  { font-size: 15px; padding: 15px 32px; }
.hero-ctas .btn-outline  { border-color: rgba(255,255,255,0.38); color: var(--white); font-size: 15px; padding: 14px 28px; }
.hero-ctas .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.70); }

/* Form card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  top: 0;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--midnight), var(--maroon));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 4px;
}
.form-card-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}
/* Meritto placeholder */
.meritto-placeholder {
  background: var(--light-gray);
  border: 2px dashed rgba(0,38,90,0.18);
  border-radius: var(--radius);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 14px;
  gap: 8px;
  color: var(--text-mid);
  font-size: 13px;
}
.meritto-placeholder strong { font-size: 14px; color: var(--midnight); display: block; }
.meritto-placeholder code {
  font-size: 11px;
  background: rgba(0,38,90,0.07);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--midnight);
  font-family: monospace;
  word-break: break-all;
}

/* =============================================================
   MOBILE STICKY CTA — only visible on small screens
============================================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--midnight);
  border-top: 3px solid var(--maroon);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.mobile-cta-bar .btn-primary { width: 100%; font-size: 15px; padding: 14px; }

/* =============================================================
   STATS BAR
============================================================= */
.stats-bar {
  background: var(--cream);
  border-top: 1px solid rgba(0,38,90,0.08);
  border-bottom: 1px solid rgba(0,38,90,0.08);
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 32px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.stat-item { text-align: center; padding: 10px 16px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  color: var(--midnight);
  line-height: 1;
}
.stat-number span { color: var(--maroon); }
.stat-label {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 5px;
  font-weight: 500;
  max-width: 110px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* =============================================================
   VALUE PROPOSITION
============================================================= */
.value-section { background: var(--white); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.value-card {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--maroon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(0,38,90,0.14);
  transform: translateY(-3px);
}
.value-icon {
  width: 42px; height: 42px;
  background: rgba(0,38,90,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--midnight);
}
.value-card h3 {
  font-size: 15px; font-weight: 600; color: var(--midnight);
  margin-bottom: 7px; line-height: 1.35;
}
.value-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* =============================================================
   GOOGLE AI BENEFIT BANNER
============================================================= */
.google-banner {
  background: linear-gradient(135deg, var(--midnight) 0%, #003d8a 100%);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.google-banner::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(200,169,110,0.10);
  pointer-events: none;
}
.google-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(200,169,110,0.14);
  border: 1px solid rgba(200,169,110,0.28);
  border-radius: 40px;
  padding: 5px 15px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.google-title {
  font-family: var(--font-display);
  font-size: clamp(21px, 3.5vw, 33px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.google-title em { color: var(--gold); font-style: normal; }
.google-desc { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.78; }
.google-items { display: flex; flex-direction: column; gap: 16px; }
.google-item {
  display: flex; gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 18px;
  align-items: flex-start;
}
.google-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(200,169,110,0.14);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.google-item h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.google-item p  { font-size: 12px; color: rgba(255,255,255,0.62); line-height: 1.6; }
.google-value-note {
  margin-top: 16px;
  background: rgba(200,169,110,0.09);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

/* =============================================================
   WHAT YOU'LL MASTER
============================================================= */
.master-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.master-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(0,38,90,0.06);
}
.master-item span { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.master-item p { font-size: 14px; color: var(--text-dark); line-height: 1.6; }

/* =============================================================
   PROGRAM STRUCTURE
============================================================= */
.structure-section { background: var(--cream); }
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.phase-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
}
.phase-card:nth-child(1) { border-top-color: var(--midnight); }
.phase-card:nth-child(2) { border-top-color: var(--maroon); }
.phase-card:nth-child(3) { border-top-color: var(--gold); }
.phase-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: rgba(0,38,90,0.05);
  position: absolute;
  top: 6px; right: 14px;
  line-height: 1;
  pointer-events: none;
}
.phase-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--maroon); margin-bottom: 6px;
}
.phase-card h3 { font-size: 16px; font-weight: 700; color: var(--midnight); margin-bottom: 4px; }
.phase-weeks   { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.phase-credits { display: flex; gap: 12px; margin-bottom: 12px; }
.phase-credit-item {
  text-align: center;
  background: var(--light-gray);
  border-radius: 6px;
  padding: 7px 12px;
}
.phase-credit-item strong {
  display: block; font-size: 19px; font-weight: 800;
  color: var(--midnight); line-height: 1;
}
.phase-credit-item span { font-size: 10px; color: var(--text-light); }
.phase-card p  { font-size: 12px; color: var(--text-mid); line-height: 1.6; }

.credit-total-bar {
  background: var(--midnight);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.credit-total-bar .ctb-label { font-size: 14px; color: rgba(255,255,255,0.68); }
.credit-total-bar .ctb-value {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
}
.credit-total-bar .ctb-value span { color: var(--gold); }
.ctb-note { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* =============================================================
   SPECIALISATION TRACKS
============================================================= */
.tracks-section { background: var(--white); }
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.track-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.22s;
}
.track-card:hover {
  border-color: var(--midnight);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.track-icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.track-card:nth-child(1) .track-icon { background: rgba(0,38,90,0.08); }
.track-card:nth-child(2) .track-icon { background: rgba(128,0,22,0.08); }
.track-card:nth-child(3) .track-icon { background: rgba(0,100,60,0.08); }
.track-card:nth-child(4) .track-icon { background: rgba(180,100,0,0.08); }
.track-ideal {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--maroon);
}
.track-card h3 { font-size: 17px; font-weight: 700; color: var(--midnight); line-height: 1.3; }
.track-card p  { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
.track-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.track-tag {
  font-size: 11px; font-weight: 500;
  color: var(--midnight);
  background: rgba(0,38,90,0.07);
  border-radius: 20px; padding: 3px 9px;
}

/* =============================================================
   TIP CAPSTONE
============================================================= */
.tip-section { background: linear-gradient(160deg, #eef2f9 0%, var(--cream) 100%); }
.tip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tip-visual {
  background: var(--midnight);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.tip-visual::before {
  content: 'TIP';
  position: absolute;
  bottom: -20px; right: -8px;
  font-family: var(--font-display);
  font-size: 120px; font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1; pointer-events: none;
}
.tip-visual h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.tip-steps { list-style: none; display: flex; flex-direction: column; gap: 13px; position: relative; z-index: 1; }
.tip-step  { display: flex; gap: 12px; align-items: flex-start; }
.tip-step-num {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.tip-step p { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.55; padding-top: 4px; }
.tip-metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 22px; position: relative; z-index: 1;
}
.tip-metric {
  background: rgba(255,255,255,0.07);
  border-radius: 7px; padding: 12px; text-align: center;
}
.tip-metric strong { display: block; font-size: 20px; font-weight: 800; color: var(--gold); }
.tip-metric span   { font-size: 11px; color: rgba(255,255,255,0.62); }
.tip-content h2    { margin-bottom: 14px; }
.tip-content p     { font-size: 15px; color: var(--text-mid); line-height: 1.78; margin-bottom: 22px; }
.tip-bullets       { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.tip-bullet        { display: flex; gap: 11px; align-items: flex-start; }
.tip-bullet-dot    { width: 7px; height: 7px; border-radius: 50%; background: var(--maroon); flex-shrink: 0; margin-top: 8px; }
.tip-bullet p      { font-size: 14px; color: var(--text-dark); line-height: 1.6; }

/* =============================================================
   OUTCOMES
============================================================= */
.outcomes-section { background: var(--white); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.outcome-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(0,38,90,0.07);
  transition: all 0.22s;
}
.outcome-card:hover {
  background: var(--midnight);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.outcome-card:hover h3 { color: var(--gold); }
.outcome-card:hover p  { color: rgba(255,255,255,0.72); }
.outcome-emoji { font-size: 34px; margin-bottom: 14px; display: block; }
.outcome-card h3 {
  font-size: 16px; font-weight: 700; color: var(--midnight);
  margin-bottom: 9px; transition: color 0.22s; line-height: 1.3;
}
.outcome-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; transition: color 0.22s; }

/* =============================================================
   FACULTY SECTION  ← NEW
============================================================= */
.faculty-section { background: var(--cream); }
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.faculty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,38,90,0.08);
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.faculty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.faculty-photo-wrap {
  position: relative;
  background: var(--midnight);
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faculty-photo-wrap img {
  width:auto;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.faculty-card:hover .faculty-photo-wrap img { transform: scale(1.04); }
/* initials fallback */
.faculty-initials {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 3px solid rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.faculty-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--midnight), var(--maroon));
}
.faculty-body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.faculty-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 3px;
  line-height: 1.25;
}
.faculty-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.4;
}
.faculty-bio {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.68;
  flex: 1;
}
.faculty-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--midnight);
  background: rgba(0,38,90,0.07);
  border-radius: 20px;
  padding: 4px 11px;
}

/* =============================================================
   WHY IILM
============================================================= */
.why-section { background: var(--midnight); color: var(--white); }
.why-section h2 { color: var(--white); }
.why-section h2 span { color: var(--gold); }
.why-section .section-sub { color: rgba(255,255,255,0.62); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.why-item {
  display: flex; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 18px;
  align-items: flex-start;
}
.why-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.why-item p  { font-size: 12px; color: rgba(255,255,255,0.58); line-height: 1.6; }

/* =============================================================
   ELIGIBILITY / FEE / APPLY
============================================================= */
.apply-section { background: var(--white); }
.apply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.apply-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(0,38,90,0.07);
}
.apply-box h3 {
  font-size: 17px; font-weight: 700; color: var(--midnight);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid rgba(0,38,90,0.08);
}
.apply-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.apply-list li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 13px; color: var(--text-dark); line-height: 1.55;
}
.apply-list li::before { content: '✓'; color: var(--maroon); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.fee-box { background: var(--midnight); color: var(--white); }
.fee-box h3 { color: var(--white); border-color: rgba(255,255,255,0.10); }
.fee-amount {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900;
  color: var(--gold); line-height: 1;
  margin: 14px 0 5px;
}
.fee-note   { font-size: 12px; color: rgba(255,255,255,0.58); margin-bottom: 16px; line-height: 1.5; }
.fee-detail { font-size: 12px; color: rgba(255,255,255,0.72); margin-bottom: 7px; }

.process-steps { list-style: none; display: flex; flex-direction: column; }
.process-step {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,38,90,0.08);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--midnight); color: var(--white);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.fee-box .process-num { background: var(--maroon); }
.process-step p { font-size: 13px; color: var(--text-dark); line-height: 1.5; padding-top: 2px; }

/* =============================================================
   FAQ
============================================================= */
.faq-section { background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; }
details.faq-item { border-bottom: 1px solid rgba(0,38,90,0.10); }
details.faq-item summary {
  font-size: 15px; font-weight: 600; color: var(--midnight);
  padding: 18px 0;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between;
  align-items: center; gap: 14px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 22px; font-weight: 300;
  color: var(--maroon); flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
details[open].faq-item summary::after { transform: rotate(45deg); }
details.faq-item .faq-body {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.78; padding-bottom: 18px;
}

/* =============================================================
   FINAL CTA BAND
============================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700; color: var(--white);
  margin-bottom: 10px; position: relative;
}
.cta-band p {
  font-size: 16px; color: rgba(255,255,255,0.78);
  margin-bottom: 32px; position: relative;
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--maroon);
  font-size: 16px; padding: 16px 40px;
  position: relative;
}
.cta-band .btn-primary:hover { background: var(--cream); }

/* =============================================================
   FOOTER
============================================================= */
.site-footer {
  background: #080f1c;
  color: rgba(255,255,255,0.50);
  padding: 30px 20px;
  text-align: center;
  font-size: 12px;
  /* extra bottom space for mobile sticky bar */
  padding-bottom: 80px;
}
.site-footer a { color: rgba(255,255,255,0.36); text-decoration: underline; }
.site-footer a:hover { color: var(--white); }

/* =============================================================
   ANIMATIONS
============================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow      { animation: fadeUp 0.50s ease both; }
.hero-title        { animation: fadeUp 0.60s ease 0.08s both; }
.hero-subtitle     { animation: fadeUp 0.60s ease 0.14s both; }
.hero-desc         { animation: fadeUp 0.60s ease 0.18s both; }
.hero-pills        { animation: fadeUp 0.60s ease 0.23s both; }
.hero-ctas         { animation: fadeUp 0.60s ease 0.28s both; }
.hero-form-card    { animation: fadeUp 0.70s ease 0.16s both; }

/* =============================================================
   RESPONSIVE — TABLET  (≤ 960px)
============================================================= */
@media (max-width: 960px) {
  /* Hero stacks: form goes ABOVE content on mobile for conversion */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 16px 52px;
  }
  /* Re-order: form card first on mobile */
  .hero-content { order: 2; }
  .hero-form-card-wrap { order: 1; }

  .google-inner  { grid-template-columns: 1fr; gap: 32px; }
  .tip-inner     { grid-template-columns: 1fr; gap: 32px; }
  .apply-inner   { grid-template-columns: 1fr; gap: 20px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .why-grid      { grid-template-columns: 1fr; gap: 12px; }
  .tracks-grid   { grid-template-columns: 1fr; gap: 16px; }
  .faculty-grid  { grid-template-columns: 1fr 1fr; gap: 20px; }
  .phases        { grid-template-columns: 1fr; gap: 16px; }

  .section-pad   { padding: 60px 0; }

  /* Show mobile sticky CTA */
  .mobile-cta-bar { display: block; }
  /* Add bottom padding so content clears the sticky bar */
  body { padding-bottom: 70px; }
}

/* =============================================================
   RESPONSIVE — MOBILE  (≤ 640px)
============================================================= */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 48px 0; }

  /* Header */
  .logo-wrap img { height: 34px; }
  .header-cta .btn-primary { padding: 9px 16px; font-size: 13px; }

  /* Hero */
  .hero-inner { padding: 32px 16px 44px; gap: 28px; }
  .hero-title { font-size: clamp(28px, 8vw, 38px); }
  .hero-pills { gap: 6px; }
  .hero-pill  { font-size: 11px; padding: 5px 11px; }
  .hero-ctas  { flex-direction: column; gap: 10px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; text-align: center; font-size: 15px; padding: 15px; }
  .hero-form-card { padding: 22px 16px; }

  /* Announcement bar */
  .announcement-bar { font-size: 12px; padding: 8px 12px; }

  /* Stats */
  .stats-inner  { padding: 24px 16px; }
  .stat-item    { width: 50%; padding: 8px 8px; }
  .stat-number  { font-size: 28px; }
  .stat-label   { font-size: 11px; }

  /* Section headings */
  h2.section-title { font-size: clamp(22px, 6vw, 30px); }
  .section-sub  { font-size: 14px; margin-bottom: 28px; }

  /* Value cards — single column */
  .value-grid   { grid-template-columns: 1fr; gap: 12px; }
  .value-card   { padding: 20px 16px; }

  /* Google banner */
  .google-banner  { padding: 40px 0; }
  .google-item    { flex-direction: column; gap: 10px; }
  .google-item-icon { width: 36px; height: 36px; }

  /* Master grid */
  .master-grid  { grid-template-columns: 1fr; gap: 10px; }

  /* Phases */
  .phases { grid-template-columns: 1fr; }
  .credit-total-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 18px 16px;
  }

  /* Tracks */
  .tracks-grid  { grid-template-columns: 1fr; }
  .track-card   { padding: 22px 18px; }

  /* TIP */
  .tip-visual { padding: 28px 20px; }
  .tip-metrics { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Outcomes */
  .outcomes-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Faculty */
  .faculty-grid { grid-template-columns: 1fr; gap: 16px; }
  .faculty-photo-wrap { height: 180px; }

  /* Why IILM */
  .why-grid { grid-template-columns: 1fr; }

  /* Apply */
  .apply-inner  { grid-template-columns: 1fr; }
  .apply-box    { padding: 22px 18px; }

  /* FAQ */
  details.faq-item summary { font-size: 14px; padding: 16px 0; }

  /* CTA band */
  .cta-band { padding: 48px 0; }

  /* Footer */
  .site-footer { padding: 24px 16px 80px; }
}

/* =============================================================
   VERY SMALL (≤ 380px) — e.g. iPhone SE
============================================================= */
@media (max-width: 380px) {
  .hero-title { font-size: 26px; }
  .stat-item  { width: 50%; }
  .hero-pill  { font-size: 10px; padding: 4px 9px; }
}