/* ==========================================================================
   Career Sathi — NMIMS Online MBA Landing Page
   Design tokens (container width, section spacing, card/button geometry,
   shadow physics, typography scale) ported directly from the original
   Next.js project's globals.css, with the site's live orange/navy/purple
   brand palette applied on top.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-page: #fefefe;
  --bg-navy: #0a1628;
  --bg-navy-light: #0f2140;

  --accent-orange: #FA6746;
  --accent-orange-deep: #e8552f;
  --accent-purple: #7C6FEE;
  --accent-purple-deep: #6355d6;
  --accent-purple-bg: #EFEDFD;

  --color-action: #0e0e0e;
  --color-action-hover: #111122;
  --color-action-light: #e8eaf6;

  --text-heading: #0e0e0e;
  --text-body: #555555;
  --text-muted: #999999;

  --border: #e5e5e0;
  --error: #e74c3c;
  --wa: #25D366;
  --wa-h: #1db954;

  --font: 'Urbanist', sans-serif;
  --max-w: 1200px;
  --nav-h: 64px;

  --card-radius: 16px;
  --btn-radius: 999px;

  --section-padding: clamp(40px, 6vw, 76px);
  --section-padding-legal: clamp(56px, 9vw, 100px);
  --container-padding: clamp(16px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg-page);
  color: var(--text-heading);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--container-padding); width: 100%; }
@media (max-width: 640px) { .container { padding: 0 1rem; } }

/* ── Fluid typography (matches original clamp formulas) ──────────────── */
h1 { font-size: clamp(36px, 4.5vw + 0.5rem, 56px); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3vw + 0.5rem, 42px); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
h3 { font-size: clamp(18px, 2vw + 0.25rem, 24px); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
p { font-size: clamp(15px, 1vw + 0.25rem, 17px); line-height: 1.7; }

/* ── Ambient background (same as original) ────────────────────────────── */
body::before {
  content: ""; position: fixed; inset: -20%; z-index: -1; pointer-events: none; opacity: 0.09;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255,180,100,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(255,200,150,0.6) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 50% 80%, rgba(180,200,255,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 70%, rgba(255,220,200,0.6) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 60%, rgba(200,180,255,0.4) 0%, transparent 55%);
  animation: ambientDrift 30s ease-in-out infinite; will-change: transform;
}
@keyframes ambientDrift { 0%{transform:translate(0,0) scale(1);} 25%{transform:translate(3%,-2%) scale(1.02);} 50%{transform:translate(-2%,3%) scale(1.01);} 75%{transform:translate(2%,1%) scale(1.03);} 100%{transform:translate(0,0) scale(1);} }
@media (prefers-reduced-motion: reduce) { body::before { animation: none; } }

/* ── Scroll reveal — pure CSS, always-visible-by-default (no JS risk) ── */
.reveal { animation: revealFadeUp .55s cubic-bezier(.16,1,.3,1) both; }
@keyframes revealFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } }
.reveal-d1 { animation-delay: .06s; } .reveal-d2 { animation-delay: .12s; } .reveal-d3 { animation-delay: .18s; } .reveal-d4 { animation-delay: .24s; }

/* Automatic stagger fade for every grid's children — consistent across
   every section, no per-card HTML class needed. */
.grid > * { animation: revealFadeUp .5s cubic-bezier(.16,1,.3,1) both; }
.grid > *:nth-child(1) { animation-delay: 0s; }
.grid > *:nth-child(2) { animation-delay: .06s; }
.grid > *:nth-child(3) { animation-delay: .12s; }
.grid > *:nth-child(4) { animation-delay: .18s; }
.grid > *:nth-child(n+5) { animation-delay: .22s; }
@media (prefers-reduced-motion: reduce) { .grid > * { animation: none; } }

/* ── Eyebrow / section headers ─────────────────────────────────────── */
.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--accent-orange); padding: 6px 16px; border-radius: var(--btn-radius); line-height: 1.5; margin-bottom: 16px; }
.section-title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: var(--text-heading); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-title .hl { color: var(--accent-purple); }
.section-sub { font-size: clamp(15px, 1vw + 0.25rem, 17px); color: var(--text-body); line-height: 1.7; max-width: 620px; margin-bottom: 28px; }
.section-header { margin-bottom: 32px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

section { padding: var(--section-padding) 0; overflow: hidden; }
.section-alt { background: #fafafa; }

/* ── Buttons (exact geometry from original .btn system) ───────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .6875rem 1.625rem; font-size: .9375rem; font-weight: 700; line-height: 1;
  letter-spacing: .01em;
  border-radius: var(--btn-radius); border: 1.5px solid transparent; cursor: pointer;
  white-space: nowrap; text-decoration: none; user-select: none;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .15s ease, border-color .2s ease;
}
.btn:active { transform: scale(.97); }
.btn:focus-visible { outline: 2px solid var(--accent-purple); outline-offset: 2px; }
a, button { -webkit-tap-highlight-color: transparent; }
input:focus-visible, select:focus-visible, .tab-btn:focus-visible { outline: 2px solid var(--accent-purple); outline-offset: 2px; }
.btn-orange { background: var(--accent-orange); color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.18); box-shadow: 0 2px 12px rgba(250,103,70,.25); }
.btn-orange:hover { background: var(--accent-orange-deep); box-shadow: 0 4px 20px rgba(250,103,70,.4); transform: translateY(-1px); }
.btn-dark { background: var(--color-action); color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.18); box-shadow: 0 2px 12px rgba(0,0,0,.18); }
.btn-dark:hover { background: var(--color-action-hover); box-shadow: 0 4px 20px rgba(0,0,0,.3); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--color-action); border-color: var(--color-action); font-weight: 800; }
.btn-outline-dark:hover { background: var(--color-action-light); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); font-weight: 800; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--color-action); font-weight: 800; box-shadow: 0 2px 12px rgba(0,0,0,.12); }
.btn-white:hover { background: #f2f2f2; transform: translateY(-1px); }

/* ── Header ─────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; height: var(--nav-h); background: rgba(254,254,254,0.88); backdrop-filter: blur(12px) saturate(1.4); -webkit-backdrop-filter: blur(12px) saturate(1.4); box-shadow: 0 1px 8px rgba(0,0,0,0.05); }
.header-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--container-padding); height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-logo-link { flex-shrink: 0; display: flex; align-items: center; min-width: 0; }
.header-logo-img { height: 42px; width: auto; max-width: 15rem; object-fit: contain; }
.header-nav-desktop { display: flex; align-items: center; gap: 28px; }
.header-nav-link { font-size: 14px; font-weight: 500; color: #1a1a1a; text-decoration: none; white-space: nowrap; transition: color .15s ease; }
.header-nav-link:hover { color: var(--accent-orange); }
.header-cta { display: inline-flex; align-items: center; gap: 8px; padding: 0 20px; height: 38px; border-radius: var(--btn-radius); border: 1.5px solid var(--accent-orange); background: var(--accent-orange); color: #fff; font-size: 13.5px; font-weight: 600; white-space: nowrap; cursor: pointer; transition: background .15s ease, transform .15s ease; flex-shrink: 0; }
.header-cta:hover { background: var(--accent-orange-deep); transform: translateY(-1px); }
@media (max-width: 1024px) {
  .header-nav-desktop { display: none; }
  .header-logo-img { height: 34px; max-width: 48vw; }
  .header-cta { font-size: 11px; padding: 0 12px; height: 32px; gap: 5px; }
  .header-cta svg { width: 11px; height: 11px; }
}
@media (max-width: 400px) { .header-cta-text { display: none; } .header-cta { padding: 0 10px; width: 36px; justify-content: center; } }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero { padding-top: clamp(28px, 4vw, 44px); padding-bottom: clamp(28px, 4vw, 40px); }
.hero-top { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(280px,400px); gap: clamp(24px,3.5vw,48px); align-items: stretch; margin-bottom: 24px; }
.hero-h1 { font-size: clamp(30px, 3.6vw + 0.5rem, 48px); font-weight: 900; color: var(--text-heading); line-height: 1.1; letter-spacing: -0.03em; margin: 0; }
.hero-left-top .hero-desc { font-size: 15px; color: var(--text-body); line-height: 1.7; margin: 14px 0 10px; max-width: 540px; }
.hero-left-top .hero-disclosure { font-size: 12.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.hero-right-top { display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.hero-right-top .hero-cta-row { display: flex; gap: 12px; }
.hero-right-top .hero-cta-row .btn { flex: 1 1 0; }

.hero-bottom { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(280px,400px); gap: clamp(24px,3vw,32px); align-items: stretch; }
.hero-photo-card { position: relative; border-radius: var(--card-radius); overflow: hidden; background: linear-gradient(160deg,#fff5ef,#ffe4d6); min-height: 320px; box-shadow: 0 4px 24px rgba(0,0,0,.06); border: 1px solid var(--border); }
.hero-photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 0; opacity: 0; transition: opacity 1s cubic-bezier(.16,1,.3,1); }
.hero-photo-card img.active { opacity: 1; }
.hero-slider-dots { position: absolute; right: 16px; bottom: 16px; display: flex; gap: 6px; z-index: 2; }
.hero-slider-dots .dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.55); transition: all .3s ease; }
.hero-slider-dots .dot.active { background: #fff; width: 20px; border-radius: 4px; }
.hero-photo-tag { position: absolute; left: 18px; bottom: 18px; background: #fff; border-radius: var(--btn-radius); padding: 9px 18px; font-size: 13px; font-weight: 700; color: var(--text-heading); box-shadow: 0 6px 18px rgba(0,0,0,.14); display: flex; align-items: center; gap: 7px; z-index: 2; }

.hero-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--card-radius); padding: 28px; box-shadow: 0 12px 40px rgba(0,0,0,.09); display: flex; flex-direction: column; transition: box-shadow .25s ease; }
.hero-form-card .form-card-title { font-size: 19px; font-weight: 800; margin: 0 0 6px; letter-spacing: -0.01em; }
.hero-form-card .form-card-sub { font-size: 13px; color: black; margin: 0 0 20px; line-height: 1.5; }

.hero-avatars-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.avatar-stack { display: flex; flex-shrink: 0; }
.avatar-stack span { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-size: 10.5px; font-weight: 700; color: #fff; margin-left: -10px; box-shadow: 0 2px 6px rgba(0,0,0,.15); }
.avatar-stack span:first-child { margin-left: 0; }
.hero-stat-block { font-size: 13.5px; color: var(--text-body); display: flex; align-items: center; gap: 6px; }
.hero-stat-block strong { color: var(--text-heading); font-size: 15px; font-weight: 800; }
.hero-stat-sep { color: var(--border); font-size: 14px; }
.hero-avatars-inline { display: flex; align-items: center; gap: 12px; }

/* ── Form fields ───────────────────────────────────────────────────── */
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 11.5px; font-weight: 700; color: var(--accent-purple-deep); text-transform: uppercase; letter-spacing: .04em; }
.form-field label .req { color: var(--error); margin-left: 2px; text-transform: none; }
.form-field input, .form-field select {
  width: 100%; height: 48px; padding: 0 16px; border: 1px solid var(--border); border-radius: 12px;
  font-size: 14.5px; color: var(--text-heading); background: #fafaf8; outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s; font-family: var(--font); appearance: none;
}
.form-field input::placeholder { color: #a3a3aa; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; color: var(--text-heading); }
.form-field select:invalid { color: #a3a3aa; }
.form-field input:focus, .form-field select:focus { border-color: var(--accent-orange); background: #fff; box-shadow: 0 0 0 3px rgba(250,103,70,.1); }
.form-field.error input, .form-field.error select { border-color: var(--error); }
.field-error { font-size: 11px; color: var(--error); font-weight: 500; margin: 0; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--text-body); line-height: 1.55; margin-bottom: 6px; cursor: pointer; }
.consent-row input { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--color-action); cursor: pointer; }
.consent-row a { color: var(--color-action); text-decoration: underline; }
.submit-btn { width: 100%; height: 50px; background: var(--color-action); color: #fff; border: none; border-radius: var(--btn-radius); font-size: 15px; font-weight: 800; letter-spacing: .01em; text-shadow: 0 1px 2px rgba(0,0,0,.18); cursor: pointer; transition: all .2s; margin-top: 10px; box-shadow: 0 2px 12px rgba(0,0,0,.18); }
.submit-btn:hover { background: var(--color-action-hover); box-shadow: 0 4px 20px rgba(0,0,0,.3); transform: translateY(-1px); }
.submit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-disclaimer { font-size: 10.5px; color: #b0b0b6; text-align: center; line-height: 1.5; margin-top: 12px; }
.submit-error { padding: 12px 16px; background: rgba(231,76,60,.06); border: 1px solid rgba(231,76,60,.2); border-radius: 10px; font-size: 13px; color: #b91c1c; margin-bottom: 16px; display: none; }
.submit-error.show { display: block; }
.form-success { display: none; flex-direction: column; align-items: center; gap: 14px; padding: 20px 4px; text-align: center; }
.form-success.show { display: flex; }
.form-success .tick-circle { width: 54px; height: 54px; border-radius: 50%; background: #22c55e; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 25px; box-shadow: 0 6px 20px rgba(34,197,94,.3); }
.form-success h3 { font-size: 18px; font-weight: 700; margin: 0; }
.form-success p { font-size: 13.5px; color: var(--text-body); line-height: 1.6; max-width: 290px; margin: 0; }
.wa-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; background: var(--wa); color: #fff; border-radius: var(--btn-radius); font-size: 13.5px; font-weight: 600; box-shadow: 0 2px 12px rgba(37,211,102,.25); }
.wa-btn:hover { background: var(--wa-h); }

/* ── Entry popup form ──────────────────────────────────────────────────── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 30, .6);
  z-index: 1000;
  padding: 20px;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  opacity: 0;
  transition: opacity .25s ease;
}
.popup-overlay.show { display: flex; opacity: 1; }
.popup-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: auto;
  transform: translateY(18px) scale(.97);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.popup-overlay.show .popup-modal { transform: translateY(0) scale(1); opacity: 1; }
.popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--text-heading);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  z-index: 2;
  transition: transform .15s ease, background .15s ease;
}
.popup-close:hover { transform: scale(1.08); background: var(--accent-orange); color: #fff; }
.popup-form-card { max-height: 90vh; overflow-y: auto; margin: 0; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
body.popup-lock { overflow: hidden; }
@media (max-width: 480px) {
  .popup-modal { max-width: 100%; }
  .popup-form-card { padding: 22px; }
  .popup-close { top: -12px; right: 4px; }
}

/* ── Generic card system (matches original .card/.fc) ─────────────────── */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--card-radius); padding: 2rem;
  transition: box-shadow .25s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-6px); border-color: var(--color-action-light); }

.adv-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--card-radius); padding: 1.75rem;
  transition: box-shadow .25s ease, transform .2s ease, border-color .2s ease;
}
.adv-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.09); transform: translateY(-5px); border-color: var(--color-action-light); }
.adv-card.locked { opacity: .6; }
.adv-card.locked:hover { transform: none; box-shadow: none; }
.adv-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 16px; background: var(--color-action); color: #fff; }
.adv-icon.star { background: var(--accent-orange); }
.adv-icon.lock { background: #c4c4cc; }
.card h3, .adv-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.card p, .adv-card p { font-size: 13.5px; color: var(--text-body); line-height: 1.6; margin: 0; }

.adv-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.adv-tag { flex: 1 1 220px; background: #fafaf8; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; font-size: 13.5px; font-weight: 600; color: var(--text-heading); text-align: center; }
.adv-footer-link { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-body); }
.adv-footer-link a { color: var(--accent-purple-deep); font-weight: 600; }
.adv-footer-link a:hover { text-decoration: underline; }

.info-card {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--card-radius);
  padding: 1.75rem 1.75rem 1.5rem; transition: box-shadow .25s ease, transform .2s ease, border-color .2s ease;
}
.info-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.09); transform: translateY(-5px); border-color: var(--color-action-light); }
.info-card .bar { position: absolute; top: 0; left: 1.75rem; right: 1.75rem; height: 3px; border-radius: 0 0 4px 4px; }
.info-card-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-purple-bg); color: var(--accent-purple-deep); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 16px; }
.info-card h3 { font-size: 15.5px; font-weight: 700; margin: 0 0 8px; }
.info-card p { font-size: 13.5px; color: var(--text-body); line-height: 1.62; margin: 0; }
.info-card p a { color: var(--accent-purple-deep); text-decoration: underline; }

/* ── About / trusted-nationwide ────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,380px); gap: clamp(28px,4vw,56px); align-items: start; }
.about-copy p.lede { font-size: 13.5px; color: var(--text-muted); margin: 0 0 20px; line-height: 1.6; }
.about-copy p.body-p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin: 0 0 14px; }
.about-highlights { background: #fafaf8; border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; margin: 18px 0 20px; }
.about-highlights .label { font-size: 10.5px; font-weight: 700; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.about-highlights .item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-heading); font-weight: 500; }
.about-highlights .item .tick { width: 19px; height: 19px; border-radius: 50%; background: var(--accent-purple); color: #fff; font-size: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

.about-poster-wrap { position: relative; }
.about-poster { border-radius: var(--card-radius); overflow: hidden; box-shadow: 0 16px 44px rgba(0,0,0,.16); aspect-ratio: 3/3.15; border: 1px solid var(--border); }
.about-poster img { width: 100%; height: 100%; object-fit: cover; }
.about-poster-badge { position: absolute; left: -16px; bottom: 28px; background: var(--color-action); color: #fff; border-radius: 14px; padding: 14px 18px; box-shadow: 0 10px 26px rgba(0,0,0,.3); }
.about-poster-badge .num { font-size: 22px; font-weight: 800; line-height: 1; }
.about-poster-badge .lbl { font-size: 9.5px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .05em; margin-top: 3px; }

.dark-cta-bar { background: linear-gradient(120deg, var(--bg-navy) 0%, #1a1440 100%); border-radius: 20px; padding: clamp(22px,3vw,30px) clamp(24px,4vw,34px); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.dark-cta-bar .eyebrow { background: rgba(124,111,238,.25); color: #c9c2ff; margin-bottom: 10px; }
.dark-cta-bar p { font-size: 14.5px; color: rgba(255,255,255,.85); margin: 0; line-height: 1.65; max-width: 640px; }
.dark-cta-bar p strong { color: #fff; }
.dark-cta-bar p .hl { color: var(--accent-purple); font-weight: 700; }
.dark-cta-bar .btn { flex-shrink: 0; }

/* ── Tabs ──────────────────────────────────────────────────────────── */
.tab-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.tab-btn { padding: 10px 22px; border-radius: var(--btn-radius); border: 1.5px solid var(--border); background: #fff; color: var(--text-body); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .2s; font-family: var(--font); }
.tab-btn.active { background: var(--color-action); color: #fff; border-color: var(--color-action); }
.tab-btn:not(.active):hover { border-color: var(--text-muted); color: var(--text-heading); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.course-card {
  border-radius: var(--card-radius); overflow: hidden; border: 1px solid var(--border); background: #fff;
  display: flex; flex-direction: column; height: 100%;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, border-color .25s ease;
}
.course-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); border-color: var(--color-action-light); }
.course-card .img-wrap { overflow: hidden; }
.course-card img { width: 100%; height: 156px; object-fit: cover; display: block; transition: transform .4s cubic-bezier(.16,1,.3,1); }
.course-card:hover img { transform: scale(1.06); }
.course-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.course-card h3 { font-size: 16px; margin: 0 0 4px; font-weight: 700; }
.course-card .sub { font-size: 12.5px; color: var(--text-muted); margin: 0 0 14px; }
.course-meta-group { flex: 1; }
.course-meta { font-size: 12.5px; color: var(--text-body); margin: 0 0 4px; }
.course-meta strong { color: var(--text-heading); }
.course-card .btn { width: 100%; height: 42px; font-size: 13px; margin-top: 16px; }

.spec-card { background: #fff; border: 1px solid var(--border); border-radius: var(--card-radius); padding: 22px; transition: box-shadow .25s ease, transform .2s ease, border-color .2s ease; }
.spec-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.08); transform: translateY(-4px); border-color: var(--color-action-light); }
.spec-card h3 { font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.spec-card p { font-size: 13px; color: var(--text-body); line-height: 1.6; margin: 0; }
.center-cta { text-align: center; margin-top: 24px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── How it works ───────────────────────────────────────────────────── */
.steps-row { display: flex; align-items: flex-start; justify-content: center; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; position: relative; }
.step-circle { width: 42px; height: 42px; border-radius: 50%; background: var(--color-action); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; margin-bottom: 12px; z-index: 1; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.step-item.pending .step-circle { background: #e5e5ea; color: #a3a3aa; box-shadow: none; }
.step-item::after { content: ""; position: absolute; top: 21px; left: 50%; width: 100%; height: 2px; background: var(--border); z-index: 0; }
.step-item:last-child::after { display: none; }
.step-item .title { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.step-item .desc { font-size: 12.5px; color: var(--text-muted); max-width: 150px; line-height: 1.5; }

.elig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 800px; margin: 0 auto; }
.elig-grid h4 { font-size: 15.5px; font-weight: 700; margin: 0 0 14px; }
.elig-grid ul { list-style: none; }
.elig-grid li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text-body); line-height: 1.65; margin-bottom: 11px; }
.elig-grid li .tick { color: var(--accent-purple); font-weight: 700; flex-shrink: 0; }

/* ── Stats ───────────────────────────────────────────────────────────── */
.stats-row { display: flex; gap: clamp(40px,8vw,88px); justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.stat-item { text-align: left; }
.stat-item .num { font-size: 36px; font-weight: 800; color: var(--text-heading); line-height: 1; letter-spacing: -0.02em; }
.stat-item .lbl { font-size: 13px; color: var(--text-muted); margin-top: 8px; max-width: 150px; line-height: 1.55; }

.campus-grid { grid-template-columns: repeat(3, 1fr); }
.campus-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.campus-card img { width: 100%; height: 100%; object-fit: cover; }
.campus-card .label { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px; background: linear-gradient(transparent, rgba(0,0,0,.82)); color: #fff; }
.campus-card .label .name { font-weight: 700; font-size: 14px; display: block; }
.campus-card .label .addr { font-size: 11px; color: rgba(255,255,255,.78); }

/* Dot indicators — hidden on grid layouts, only shown once the campus
   section becomes a swipeable slider on mobile (see 640px breakpoint). */
.campus-dots { display: none; justify-content: center; gap: 7px; margin-top: 18px; }
.campus-dots .dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: var(--border); cursor: pointer; transition: all .3s ease; }
.campus-dots .dot.active { background: var(--accent-purple-deep); width: 20px; border-radius: 4px; }

/* ── Brochure dark section ─────────────────────────────────────────── */
.brochure-section { background: var(--bg-navy); color: #fff; }
.brochure-section .section-header { text-align: center; }
.brochure-list { list-style: none; margin: 20px auto 26px; max-width: 540px; text-align: left; }
.brochure-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 10px; }
.brochure-list li .tick { color: var(--accent-orange); flex-shrink: 0; font-weight: 700; }
.brochure-section .center-cta { flex-direction: column; align-items: center; }
.brochure-caption { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 14px; }
.brochure-section .section-sub { color: rgba(255,255,255,.6); margin-left: auto; margin-right: auto; text-align: center; }

/* ── Gradient journey banner ────────────────────────────────────────── */
.journey-banner { background: linear-gradient(115deg, var(--bg-navy) 0%, #2a1650 55%, var(--accent-orange) 130%); border-radius: 24px; padding: clamp(36px,6vw,60px) clamp(24px,5vw,44px); text-align: center; color: #fff; box-shadow: 0 24px 60px rgba(10,22,40,.25); }
.journey-banner .eyebrow { background: rgba(255,255,255,.15); }
.journey-banner h2 { font-size: clamp(26px,3.4vw,36px); font-weight: 800; margin: 0 0 16px; color: #fff; letter-spacing: -0.02em; }
.journey-banner p { font-size: 15px; color: rgba(255,255,255,.85); max-width: 580px; margin: 0 auto 28px; line-height: 1.7; }
.journey-banner p .hl { color: #dccbff; font-weight: 700; }
.journey-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Testimonials ───────────────────────────────────────────────────── */
.testi-card { background: #fff; border-left: 3px solid var(--accent-orange); border-radius: 12px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.05); transition: transform .2s ease, box-shadow .2s ease; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.testi-card:nth-child(2) { border-left-color: var(--wa); }
.testi-card:nth-child(3) { border-left-color: var(--accent-purple); }
.testi-card .quote { font-size: 13.5px; color: var(--text-body); line-height: 1.68; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 700; }
.testi-author .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-orange); flex-shrink: 0; }
.testi-card:nth-child(2) .dot { background: var(--wa); }
.testi-card:nth-child(3) .dot { background: var(--accent-purple); }

/* ── FAQ accordion ──────────────────────────────────────────────────── */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 19px 4px; cursor: pointer; font-weight: 600; font-size: 14.5px; color: var(--text-heading); gap: 18px; transition: color .2s ease; }
.faq-q:hover { color: var(--accent-orange-deep); }
.faq-q .icon { transition: transform .25s ease; flex-shrink: 0; font-size: 18px; color: var(--accent-orange); font-weight: 400; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { font-size: 13.5px; color: var(--text-body); line-height: 1.72; padding: 0 4px 19px; }
.faq-item.open .faq-a { max-height: 420px; }
.faq-item.hidden-extra { display: none; }
.show-more-wrap { text-align: center; margin-top: 20px; }
.show-more-btn { background: none; border: none; color: var(--accent-purple-deep); font-size: 14px; font-weight: 700; cursor: pointer; font-family: var(--font); }
.show-more-btn:hover { text-decoration: underline; }

/* ── Long-form explained section ──────────────────────────────────────── */
.explained-intro { font-size: 15px; color: var(--text-body); line-height: 1.8; max-width: 800px; margin-bottom: 28px; }
.explained-intro strong { color: var(--text-heading); }
.explained-block { max-width: 800px; margin-bottom: 22px; }
.explained-block h3 { font-size: 17px; font-weight: 700; margin: 0 0 10px; }
.explained-block p { font-size: 14.5px; color: var(--text-body); line-height: 1.8; }
.explained-disclaimer { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; max-width: 800px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }

/* ── Cookie consent banner ─────────────────────────────────────────── */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300; background: #fff; border-radius: 16px; box-shadow: 0 16px 48px rgba(0,0,0,.18); padding: 18px 20px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; max-width: 780px; margin: 0 auto; transform: translateY(140%); transition: transform .4s cubic-bezier(.16,1,.3,1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .cb-icon { font-size: 20px; flex-shrink: 0; }
.cookie-banner p { font-size: 12.5px; color: var(--text-body); flex: 1 1 260px; line-height: 1.55; }
.cookie-banner p a { color: var(--accent-purple-deep); text-decoration: underline; }
.cookie-banner .cb-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; flex-wrap: wrap; }
.cookie-banner .cb-manage { background: none; border: none; font-size: 12.5px; color: var(--text-body); text-decoration: underline; cursor: pointer; font-family: var(--font); }
.cookie-banner .cb-accept { background: var(--color-action); color: #fff; border: none; border-radius: var(--btn-radius); padding: 10px 20px; font-size: 12.5px; font-weight: 700; cursor: pointer; font-family: var(--font); }
.cookie-banner .cb-accept:hover { background: var(--color-action-hover); }
.cookie-banner .cb-close { background: none; border: none; font-size: 17px; color: var(--text-muted); cursor: pointer; padding: 2px 4px; line-height: 1; }

/* ── Mobile sticky CTA ──────────────────────────────────────────────── */
.mobile-sticky-cta { display: none; }
@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: #fff; padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px)); box-shadow: 0 -6px 24px rgba(0,0,0,.14); transform: translateY(0); transition: transform .25s ease; }
  .mobile-sticky-cta.hide { transform: translateY(110%); }
  .mobile-sticky-cta button { width: 100%; height: 50px; border-radius: var(--btn-radius); border: none; background: var(--color-action); color: #fff; font-weight: 700; font-size: 15px; font-family: var(--font); cursor: pointer; box-shadow: 0 2px 12px rgba(0,0,0,.2); }
  body { padding-bottom: 78px; }
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: #0d0d10; color: rgba(255,255,255,.7); padding: 56px 0 28px; }
.footer-cols { display: flex; gap: 48px; padding-bottom: 40px; flex-wrap: wrap; justify-content: space-between; }
.footer-col-brand { flex: 1 1 300px; max-width: 22rem; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-row img { height: 32px; width: auto; }
.footer-col-brand p { font-size: 13px; color: #777; line-height: 1.6; max-width: 280px; }
.footer-links-wrap { display: flex; gap: 44px; flex: 0 1 16rem; }
.footer-links-wrap ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links-wrap a { font-size: 13.5px; color: rgba(255,255,255,.6); }
.footer-links-wrap a:hover { color: #fff; }
.footer-col-community { flex: 1 1 260px; max-width: 18rem; }
.footer-col-community p.title { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.footer-subscribe { display: flex; align-items: center; background: #fff; border-radius: var(--btn-radius); overflow: hidden; height: 46px; padding-left: 18px; max-width: 320px; }
.footer-subscribe input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-size: 13.5px; color: #0e0e0e; font-family: var(--font); }
.footer-subscribe button { height: 46px; padding: 0 20px; border-radius: var(--btn-radius); border: none; background: var(--color-action); color: #fff; font-size: 12.5px; font-weight: 700; cursor: pointer; flex-shrink: 0; }
.footer-subscribe button:hover { background: var(--color-action-hover); }
.footer-subscribe-msg { font-size: 11.5px; margin-top: 10px; min-height: 14px; }
.footer-subscribe-msg.ok { color: #4ade80; }
.footer-subscribe-msg.err { color: #f87171; }
.footer-disclosure { border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: 12.5px; color: #888; line-height: 1.7; }
.footer-disclosure strong { color: #aaa; font-weight: 600; }
.footer-bottom { padding: 18px 0 0; font-size: 12.5px; color: rgba(255,255,255,.5); }

/* ── Thank-you + legal pages ──────────────────────────────────────────── */
.legal-main, .ty-main { padding: var(--section-padding-legal) 0; }
.legal-main .container { max-width: 820px; }
.legal-main h1 { font-size: clamp(28px,4vw,38px); font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.legal-main .updated { font-size: 13px; color: var(--text-muted); margin-bottom: 36px; }
.legal-main h2 { font-size: 19px; font-weight: 700; margin: 34px 0 12px; }
.legal-main p, .legal-main li { font-size: 14.5px; color: var(--text-body); line-height: 1.75; }
.legal-main ul { padding-left: 22px; margin-bottom: 16px; }
.legal-main a { color: var(--accent-orange); text-decoration: underline; }

.ty-main { min-height: 64vh; display: flex; align-items: center; justify-content: center; padding-left: 20px; padding-right: 20px; }
.ty-card { max-width: 540px; width: 100%; text-align: center; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: clamp(32px,5vw,44px) clamp(24px,5vw,36px); box-shadow: 0 12px 40px rgba(0,0,0,.06); }
.ty-icon { width: 64px; height: 64px; border-radius: 50%; background: #E8F5E9; color: #2E7D32; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.ty-card h1 { font-size: 23px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.ty-card p { font-size: 15px; color: #444; margin-bottom: 24px; line-height: 1.65; }
.ty-programme { font-size: 13px; color: #888; margin-bottom: 24px; }
.ty-programme strong { color: var(--text-heading); }
.ty-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.ty-actions .btn-wa { padding: 12px 24px; font-size: 14px; font-weight: 600; color: #fff; background: var(--wa); border-radius: var(--btn-radius); box-shadow: 0 2px 12px rgba(37,211,102,.25); }
.ty-actions .btn-wa:hover { background: var(--wa-h); }
.ty-actions .btn-call { padding: 12px 24px; font-size: 14px; font-weight: 600; color: var(--color-action); background: #fff; border: 1.5px solid var(--color-action); border-radius: var(--btn-radius); }
.ty-actions .btn-call:hover { background: var(--color-action-light); }
.ty-back { font-size: 13.5px; color: var(--accent-purple-deep); font-weight: 600; }
.ty-back:hover { text-decoration: underline; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-top, .hero-bottom, .about-grid { grid-template-columns: 1fr; }
  .about-poster-wrap { order: -1; max-width: 420px; margin: 0 auto 24px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .elig-grid { grid-template-columns: 1fr; gap: 28px; }
  .dark-cta-bar { flex-direction: column; align-items: flex-start; text-align: left; }
  .dark-cta-bar .btn { width: 100%; justify-content: center; }
}

@media (max-width: 980px) {
  .hero-top, .hero-bottom, .about-grid { grid-template-columns: 1fr; }
  .about-poster-wrap { order: -1; max-width: 420px; margin: 0 auto 24px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .elig-grid { grid-template-columns: 1fr; gap: 28px; }
  .dark-cta-bar { flex-direction: column; align-items: flex-start; text-align: left; }
  .dark-cta-bar .btn { width: 100%; justify-content: center; }

  /* Form above slider on mobile/tablet */
  .hero-form-card { order: 1; }
  .hero-photo-card { order: 2; margin-top: 24px; }

  .campus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
  .hero-form-card { padding: 22px; }
  .footer-cols { flex-direction: column; gap: 32px; }
  .footer-col-brand, .footer-links-wrap, .footer-col-community { max-width: 100%; }
  .footer-links-wrap { gap: 32px; }
  section { padding: 48px 0; }
  .steps-row { max-width: 100%; }

  /* Campuses — swipeable horizontal slider instead of a stacked grid */
  .campus-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .campus-grid::-webkit-scrollbar { display: none; }
  .campus-grid .campus-card { flex: 0 0 78%; scroll-snap-align: center; aspect-ratio: 4/3.2; }
  .campus-dots { display: flex; }
  .stats-row { gap: 44px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 16px; }
}
@media (max-width: 380px) {
  .hero-h1 { font-size: 27px; }
  .btn { font-size: 14px; padding: .625rem 1.375rem; }
}