:root{
  --bg:#f6f8fc;
  --surface:#ffffff;
  --ink:#111827;
  --muted:#667085;
  --navy:#101828;
  --deep:#071a3a;
  --primary:#2563eb;
  --primary-2:#7c3aed;
  --accent:#f59e0b;
  --mint:#10b981;
  --sky:#38bdf8;
  --ring:rgba(37,99,235,.18);
  --border:rgba(17,24,39,.10);
  --shadow:0 20px 70px rgba(16,24,40,.12);
  --radius:26px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Cairo", "Inter", system-ui, sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.8;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1160px, calc(100% - 40px));margin-inline:auto}
.section{padding:96px 0}
.skip-link{
  position:absolute;right:16px;top:-80px;z-index:9999;
  background:var(--navy);color:white;padding:10px 14px;border-radius:12px;
}
.skip-link:focus{top:16px}

.site-header{
  position:fixed;inset:0 0 auto 0;z-index:1000;
  background:rgba(246,248,252,.74);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(17,24,39,.08);
}
.site-header .nav.container{width:min(1480px, calc(100% - 40px))}
.nav{height:78px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.brand{display:inline-flex;align-items:center;gap:12px;min-width:max-content}
.brand-mark{
  width:46px;height:46px;display:grid;place-items:center;
  border-radius:14px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.18),rgba(255,255,255,0) 42%),
    linear-gradient(135deg,var(--primary),var(--primary-2));
  color:white;
  font-family:Inter,Arial,sans-serif;
  font-weight:900;
  font-size:16px;
  letter-spacing:.04em;
  box-shadow:0 14px 28px rgba(37,99,235,.25);
  position:relative;
  overflow:hidden;
}
.brand-logo{
  background:white;
  padding:3px;
}
.brand-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  position:relative;
  z-index:1;
}
.brand-mark::after{
  content:"";
  position:absolute;
  inset:8px;
  border:1px solid rgba(255,255,255,.32);
  border-radius:10px;
  pointer-events:none;
}
.brand strong{display:block;line-height:1.1;font-weight:900;letter-spacing:-.02em}
.brand small{display:block;color:var(--muted);font-size:12px;line-height:1.2}
.nav-menu{display:flex;align-items:center;justify-content:flex-start;gap:10px;color:#263245;font-weight:700;font-size:14px;line-height:1.25}
.nav-menu a{transition:.2s ease;white-space:nowrap;text-align:center}
.nav-menu a:hover{color:var(--primary);transform:translateY(-1px)}
.gateway-home-link{
  color:#fff!important;
  background:linear-gradient(135deg,#f59e0b,#f97316);
  border:1px solid rgba(255,255,255,.18);
  padding:9px 13px;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(245,158,11,.24);
}
.nav-cta{
  color:white!important;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  padding:10px 14px;border-radius:999px;
  box-shadow:0 14px 28px rgba(37,99,235,.18)
}
.lang-toggle{
  border:1px solid rgba(37,99,235,.18);
  background:white;
  color:var(--primary);
  border-radius:999px;
  padding:8px 12px;
  font:inherit;
  font-family:Inter,Arial,sans-serif;
  font-weight:900;
  cursor:pointer;
  flex:0 0 auto;
}
.home-page .lang-toggle{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18);
  color:white;
}
.lang-en{
  direction:ltr;
}
.lang-en .nav-menu,
.lang-en .hero-actions,
.lang-en .footer-contact p,
.lang-en .contact-card,
.lang-en .course-footer,
.lang-en .saved-course-actions{
  direction:ltr;
}
.auth-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 8px 6px 12px;
  border:1px solid rgba(37,99,235,.16);
  border-radius:999px;
  background:white;
  color:var(--navy);
}
.auth-chip strong{
  max-width:120px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:13px;
}
.auth-chip small{
  color:var(--primary);
  font-weight:900;
  font-size:11px;
}
.auth-chip button{
  border:0;
  border-radius:999px;
  background:#eef4ff;
  color:var(--primary);
  padding:5px 9px;
  cursor:pointer;
  font:inherit;
  font-size:12px;
  font-weight:900;
}
.auth-register-link{
  display:inline-flex!important;
  align-items:center;
  margin:0!important;
  border-radius:999px;
  background:var(--primary);
  color:white!important;
  padding:5px 10px;
  font-size:12px;
  font-weight:900;
}
.home-page .auth-chip{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18);
  color:white;
}
.home-page .auth-chip button{
  background:rgba(255,255,255,.12);
  color:white;
}
.nav-toggle{display:none;background:transparent;border:0;padding:8px;cursor:pointer}
.nav-toggle span{display:block;width:26px;height:3px;background:var(--navy);border-radius:999px;margin:5px 0}

.home-page{
  background:#ffffff;
}
.home-page .site-header{
  background:rgba(7,17,31,.78);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.home-page .brand strong,
.home-page .nav-menu{color:white}
.home-page .brand small{color:rgba(255,255,255,.58)}
.home-page .nav-toggle span{background:white}
.home-page .nav-menu a:hover{color:#F59E0B}
.home-page .nav-cta{
  background:#315BFF;
  box-shadow:0 14px 34px rgba(49,91,255,.28);
}

.hero{
  min-height:100svh;display:grid;align-items:center;position:relative;overflow:hidden;
  padding-top:150px;
}
.modern-hero{min-height:100vh}
.home-landing{
  padding-bottom:0;
  background:linear-gradient(135deg, #07111F 0%, #0B1B35 55%, #102A5C 100%);
}
.hero-bg{
  position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(circle at 18% 20%, rgba(49,91,255,.24), transparent 28%),
    radial-gradient(circle at 64% 42%, rgba(245,158,11,.16), transparent 22%),
    linear-gradient(135deg, #07111F 0%, #0B1B35 55%, #102A5C 100%);
}
.hero-bg:after{
  content:"";position:absolute;inset:0;
  background:
    repeating-radial-gradient(circle at 28% 8%,rgba(255,255,255,.08) 0 1px,transparent 1px 12px),
    linear-gradient(135deg,rgba(255,255,255,.05),transparent 38%);
  mask:linear-gradient(#000,transparent 66%);
}
.hero-orb{
  position:absolute;
  border-radius:999px;
  filter:blur(.2px);
  pointer-events:none;
  z-index:0;
}
.hero-orb-one{
  width:36px;
  height:36px;
  background:#F59E0B;
  top:25%;
  right:34%;
  box-shadow:0 0 0 12px rgba(245,158,11,.08);
}
.hero-orb-two{
  width:14px;
  height:14px;
  background:#315BFF;
  top:11%;
  left:35%;
  box-shadow:0 0 0 10px rgba(49,91,255,.11);
}
.hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:54px;align-items:center;position:relative;z-index:1}
.eyebrow,.section-kicker{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--primary);font-weight:900;font-size:14px;letter-spacing:.04em;
}
.eyebrow:before,.section-kicker:before{
  content:"";width:9px;height:9px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 7px rgba(245,158,11,.14)
}
.hero h1,.section-heading h2,.band-grid h2,.admissions h2,.apply-card h2{
  margin:14px 0 18px;line-height:1.15;letter-spacing:-.04em;color:var(--navy);
}
.home-landing .eyebrow{color:#B8C0CC}
.home-landing .hero h1,
.home-landing h1{color:#FFFFFF}
.home-landing .hero-copy p,
.home-landing .hero-copy > p{color:#B8C0CC}
.hero h1{font-size:clamp(44px,6.5vw,82px);max-width:870px}
.hero p{font-size:20px;color:#475467;max-width:720px;line-height:2}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin:34px 0}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border:1px solid transparent;border-radius:999px;padding:14px 24px;
  font-weight:900;cursor:pointer;transition:.25s ease;font-family:inherit;font-size:16px
}
.btn:hover{transform:translateY(-2px)}
.btn.primary{background:#315BFF;color:#FFFFFF;box-shadow:0 16px 36px rgba(49,91,255,.28)}
.btn.ghost{background:white;border-color:var(--border);color:var(--navy)}
.btn.danger{
  background:#fff1f2;
  border-color:rgba(220,38,38,.18);
  color:#dc2626;
}
.btn.danger:hover{
  background:#fee2e2;
  box-shadow:0 14px 30px rgba(220,38,38,.12);
}
.home-landing .btn.ghost{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.18);color:#FFFFFF}
.full{width:100%}

.hero-numbers{
  display:grid;
  grid-template-columns:repeat(3,max-content);
  gap:34px;
  margin-top:12px;
  color:#FFFFFF;
}
.hero-numbers strong{
  display:block;
  font-family:Inter,Arial,sans-serif;
  font-size:30px;
  line-height:1.1;
}
.hero-numbers span{
  display:block;
  color:#B8C0CC;
  font-size:13px;
  font-weight:800;
}

.campus-showcase{
  position:relative;
  min-height:610px;
  display:grid;
  align-items:end;
}
.campus-frame{
  position:relative;
  height:580px;
  border-radius:999px 999px 22px 22px;
  overflow:hidden;
  background:#0B1B35;
  box-shadow:0 36px 80px rgba(0,0,0,.36);
}
.campus-frame:before{
  content:"";
  position:absolute;
  inset:-12px;
  border:24px solid rgba(248,250,252,.08);
  border-radius:inherit;
  pointer-events:none;
  z-index:2;
}
.campus-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.02);
}
.campus-badge{
  position:absolute;
  right:18px;
  bottom:28px;
  display:flex;
  align-items:center;
  gap:12px;
  background:#F8FAFC;
  border:1px solid rgba(248,250,252,.82);
  border-radius:22px;
  padding:12px 16px;
  box-shadow:0 22px 46px rgba(0,0,0,.2);
}
.campus-badge img{width:46px;height:46px;object-fit:contain}
.campus-badge strong{display:block;color:#111827;font-weight:900;line-height:1.1}
.campus-badge span{display:block;color:#667085;font-size:12px;font-weight:800}

.hero-card{position:relative}
.glass-card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.85);
  backdrop-filter:blur(20px);
  border-radius:38px;
  padding:34px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.glass-card:before{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(135deg,rgba(37,99,235,.12),transparent 34%),
    radial-gradient(circle at 82% 16%,rgba(245,158,11,.22),transparent 25%);
  pointer-events:none
}
.card-top,.mini-stats{position:relative}
.card-top{display:flex;align-items:center;gap:10px;font-weight:900;color:var(--navy)}
.pulse{width:12px;height:12px;border-radius:50%;background:var(--mint);box-shadow:0 0 0 8px rgba(16,185,129,.14)}
.glass-card h2{position:relative;font-size:44px;line-height:1.1;margin:24px 0 14px;color:var(--navy)}
.glass-card p{position:relative;color:var(--muted);font-size:17px}
.home-logo-orbit{
  position:relative;
  width:172px;
  height:172px;
  margin:0 auto 22px;
  display:grid;
  place-items:center;
  border-radius:42px;
  background:
    linear-gradient(white,white) padding-box,
    linear-gradient(135deg,var(--primary),var(--mint)) border-box;
  border:1px solid transparent;
  box-shadow:0 24px 58px rgba(37,99,235,.18);
  z-index:2;
}
.home-logo-orbit img{width:136px;height:136px;object-fit:contain}
.mini-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:28px}
.mini-stats div{background:rgba(255,255,255,.72);border:1px solid var(--border);border-radius:20px;padding:16px;text-align:center}
.mini-stats strong{display:block;color:var(--primary);font-size:18px}
.mini-stats span{font-size:12px;color:var(--muted);font-weight:800}
.intro-band{padding:56px 0}
.band-grid{
  display:grid;grid-template-columns:.8fr 1fr;gap:32px;align-items:center;
  background:white;border:1px solid rgba(17,24,39,.08);box-shadow:0 20px 70px rgba(17,24,39,.08);
  border-radius:var(--radius);padding:42px
}
.band-grid h2{font-size:clamp(28px,3vw,42px)}
.band-grid p{font-size:18px;color:var(--muted)}

.split{display:grid;grid-template-columns:.78fr 1.22fr;gap:44px;align-items:start}
.section-heading h2,.admissions h2,.apply-card h2{font-size:clamp(30px,4vw,52px)}
.section-heading p,.admissions p,.apply-card p{color:var(--muted);font-size:18px}
.center{text-align:center;max-width:820px;margin-inline:auto}
.feature-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.feature-card{
  background:white;
  border:1px solid var(--border);border-radius:var(--radius);
  padding:26px;box-shadow:0 12px 44px rgba(16,24,40,.06);transition:.25s ease
}
.feature-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.icon{
  width:50px;height:50px;display:grid;place-items:center;border-radius:18px;
  background:linear-gradient(135deg,#3157ff,#ff8a1f);
  color:white;font-size:23px;margin-bottom:16px
}
.feature-card h3{margin:0 0 8px;font-size:22px;color:var(--navy)}
.feature-card p{margin:0;color:var(--muted)}

.dark-section{
  background:
    radial-gradient(circle at 14% 20%,rgba(37,99,235,.24),transparent 30%),
    radial-gradient(circle at 86% 16%,rgba(245,158,11,.18),transparent 28%),
    linear-gradient(135deg,var(--deep),#07111f);
  color:white;position:relative;overflow:hidden
}
.dark-section .section-heading h2,.dark-section .section-heading p{color:white}
.dark-section .section-heading p{opacity:.76}
.section-kicker.light{color:#a5d8ff}
.program-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:38px}
.program-cards article{
  background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius);padding:28px;backdrop-filter:blur(14px)
}
.program-cards span{color:var(--accent);font-weight:900}
.program-cards h3{font-size:24px;margin:12px 0 8px}
.program-cards p{color:rgba(255,255,255,.72);margin:0}

.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:34px}
.gallery-grid figure{
  margin:0;
  background:
    linear-gradient(white,white) padding-box,
    linear-gradient(135deg,rgba(49,91,255,.20),rgba(245,158,11,.20)) border-box;
  border:1px solid transparent;
  border-radius:28px;
  padding:12px;
  box-shadow:0 18px 48px rgba(16,24,40,.09);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}
.gallery-grid figure:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 70px rgba(16,24,40,.14);
}
.facility-photo{
  position:relative;
  aspect-ratio:16/11;
  border-radius:22px;
  overflow:hidden;
  background:#eef4ff;
}
.facility-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .45s ease;
}
.gallery-grid figure:hover .facility-photo img{transform:scale(1.045)}
.facility-photo:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(7,17,31,0) 45%,rgba(7,17,31,.54) 100%);
  pointer-events:none;
}
.facility-photo span{
  position:absolute;
  right:14px;
  bottom:14px;
  z-index:1;
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(248,250,252,.92);
  color:#102A5C;
  font-family:Inter,Arial,sans-serif;
  font-size:12px;
  font-weight:900;
  box-shadow:0 12px 28px rgba(7,17,31,.20);
}
.gallery-grid figcaption{
  display:grid;
  gap:4px;
  padding:16px 8px 8px;
  color:var(--navy);
}
.gallery-grid figcaption strong{font-size:20px}
.gallery-grid figcaption small{
  color:var(--muted);
  font-size:14px;
  font-weight:800;
  line-height:1.8;
}

.parent-reviews-section{
  background:#eef3f9;
}
.parent-reviews-carousel{
  position:relative;
  margin-top:46px;
  padding:0 58px 46px;
}
.parent-reviews-viewport{
  overflow:hidden;
  direction:ltr;
}
.parent-reviews-track{
  display:flex;
  gap:24px;
  transition:transform .35s ease;
  will-change:transform;
}
.parent-review-card{
  direction:rtl;
  flex:0 0 calc((100% - 48px) / 3);
  overflow:hidden;
  margin:0;
  min-height:300px;
  padding:28px;
  border:1px solid rgba(16,24,40,.08);
  border-radius:10px;
  background:#fff;
  box-shadow:0 14px 34px rgba(16,24,40,.06);
}
.review-quote{
  display:block;
  margin-bottom:18px;
  color:#afe7fb;
  font-family:Georgia,serif;
  font-size:76px;
  font-weight:900;
  line-height:.45;
}
.parent-review-card img{
  display:block;
  width:100%;
  max-height:260px;
  height:260px;
  border-radius:8px;
  object-fit:contain;
  object-position:top center;
}
.parent-review-arrow{
  position:absolute;
  top:43%;
  z-index:2;
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border:1px solid rgba(16,24,40,.10);
  border-radius:50%;
  background:#fff;
  color:#102033;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(16,24,40,.14);
  transition:.2s ease;
}
.parent-review-arrow:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(16,24,40,.18);
}
.parent-review-prev{left:0}
.parent-review-next{right:0}
.parent-review-dots{
  position:absolute;
  right:0;
  left:0;
  bottom:0;
  display:flex;
  justify-content:center;
  gap:8px;
}
.parent-review-dots button{
  width:12px;
  height:12px;
  border:0;
  border-radius:50%;
  background:#dbe3ed;
  cursor:pointer;
  transition:.2s ease;
}
.parent-review-dots button.active{
  background:#18aee2;
  transform:scale(1.15);
}

.admissions-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:42px;align-items:center}
.steps{display:grid;gap:16px}
.step{
  display:flex;gap:16px;align-items:flex-start;background:white;border:1px solid var(--border);
  border-radius:24px;padding:22px;box-shadow:0 16px 44px rgba(16,24,40,.06)
}
.step span{
  min-width:46px;height:46px;display:grid;place-items:center;border-radius:16px;
  background:linear-gradient(135deg,var(--accent),#fb7185);color:white;font-weight:900
}
.step h3{margin:0 0 4px;color:var(--navy)}
.step p{margin:0;color:var(--muted)}

.apply-section{padding-top:30px}
.apply-card{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:38px;align-items:start;
  background:
    radial-gradient(circle at 20% 0%,rgba(56,189,248,.18),transparent 32%),
    linear-gradient(135deg,#ffffff,#f8fbff);
  border:1px solid var(--border);border-radius:38px;padding:42px;box-shadow:var(--shadow)
}
.contact-form{display:grid;gap:14px}
.contact-form label{font-weight:900;color:var(--navy)}
input,select,textarea{
  width:100%;margin-top:6px;padding:14px 16px;border-radius:16px;border:1px solid var(--border);
  background:white;color:var(--navy);font:inherit;outline:none;transition:.2s ease
}
input:focus,select:focus,textarea:focus{border-color:var(--primary);box-shadow:0 0 0 5px var(--ring)}
.phone-input::placeholder{
  direction:rtl;
  text-align:right;
  unicode-bidi:plaintext;
}
.lang-en .phone-input::placeholder{
  direction:ltr;
  text-align:left;
}
.form-note{margin:0;color:var(--mint);font-weight:900;min-height:28px}

.contact-section{padding-top:40px}
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:40px;align-items:center}
.contact-cards{display:grid;gap:16px}
.contact-card{
  display:flex;align-items:center;gap:18px;background:white;border:1px solid var(--border);
  border-radius:24px;padding:22px;box-shadow:0 14px 42px rgba(16,24,40,.06);
  transition:.25s ease
}
.contact-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.contact-card span{
  width:54px;height:54px;display:grid;place-items:center;border-radius:18px;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));color:white;font-size:24px
}
.contact-card strong{display:block;color:var(--navy);font-size:18px}
.contact-card small{color:var(--muted);font-weight:800}

.courses-page{
  background:
    radial-gradient(circle at 15% 4%, rgba(56,189,248,.16), transparent 26%),
    radial-gradient(circle at 86% 0%, rgba(245,158,11,.13), transparent 24%),
    var(--bg);
}
.courses-hero{
  padding-top:152px;
  padding-bottom:58px;
  overflow:hidden;
}
.courses-hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.courses-hero-grid.single{
  grid-template-columns:1fr;
  max-width:920px;
}
.courses-hero h1{
  margin:14px 0 18px;
  color:var(--navy);
  line-height:1.12;
  letter-spacing:-.04em;
  font-size:clamp(38px,5.5vw,68px);
}
.courses-hero p{
  color:#475467;
  font-size:20px;
  max-width:760px;
}
.courses-plan{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.88);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}
.courses-plan strong{display:block;color:var(--navy);font-size:23px;margin-bottom:12px}
.courses-plan ul{margin:0;padding-inline-start:24px;color:var(--muted);font-weight:800}
.courses-toolbar-section{padding:0 0 24px}
.courses-toolbar{
  display:grid;
  grid-template-columns:1.4fr repeat(4, minmax(145px, 1fr)) auto auto;
  gap:12px;
  align-items:end;
  background:white;
  border:1px solid var(--border);
  border-radius:28px;
  padding:18px;
  box-shadow:0 18px 55px rgba(16,24,40,.08);
}
.courses-toolbar label{
  color:var(--navy);
  font-weight:900;
  font-size:14px;
}
.courses-toolbar input,
.courses-toolbar select{min-height:54px}
.courses-toolbar .btn{
  min-height:54px;
  white-space:nowrap;
  padding-inline:18px;
}
.courses-list-section{padding-top:42px}
.courses-meta{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:28px;
}
.courses-meta h2{
  margin:12px 0 0;
  color:var(--navy);
  font-size:clamp(30px,4vw,48px);
  line-height:1.15;
  letter-spacing:-.04em;
}
.courses-meta p{
  margin:0;
  color:var(--muted);
  font-weight:900;
}
.courses-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}
.course-card{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 44px rgba(16,24,40,.08);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.course-card:hover{
  transform:translateY(-8px);
  border-color:rgba(37,99,235,.22);
  box-shadow:0 26px 70px rgba(16,24,40,.14);
}
.course-image-wrap{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
  background:#e9eef8;
}
.course-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}
.course-card:hover .course-image-wrap img{transform:scale(1.05)}
.course-badge{
  position:absolute;
  top:14px;
  right:14px;
  color:white;
  border-radius:999px;
  padding:7px 12px;
  font-size:13px;
  font-weight:900;
  box-shadow:0 10px 22px rgba(16,24,40,.18);
}
.course-badge.new{background:var(--primary)}
.course-badge.recommended{background:var(--accent)}
.course-badge.live{background:var(--mint)}
.course-content{padding:20px}
.course-tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}
.course-tags span{
  background:#eef4ff;
  color:#244b9c;
  border:1px solid rgba(37,99,235,.10);
  border-radius:999px;
  padding:5px 10px;
  font-weight:900;
  font-size:12px;
}
.course-content h3{
  margin:0 0 8px;
  color:var(--navy);
  line-height:1.35;
  font-size:22px;
}
.course-content p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:15px;
}
.course-instructor{
  display:grid;
  gap:1px;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:13px 0;
  margin-bottom:14px;
}
.course-instructor span{font-weight:900;color:var(--navy)}
.course-instructor small{color:var(--muted);font-weight:800}
.course-rating{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-weight:800;
  margin-bottom:18px;
}
.stars{direction:ltr;letter-spacing:1px;color:#d0d5dd}
.stars span.active{color:#f59e0b}
.course-rating strong{color:var(--navy)}
.course-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.course-footer > strong{
  color:var(--primary);
  font-size:20px;
  white-space:nowrap;
}
.course-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.course-footer .btn{padding:10px 16px;font-size:14px}
.empty-state{
  text-align:center;
  background:white;
  border:1px dashed rgba(37,99,235,.24);
  border-radius:24px;
  padding:34px;
  color:var(--muted);
}
.empty-state h3{margin:0 0 8px;color:var(--navy);font-size:24px}
.empty-state p{margin:0}
.loading-note{
  margin-top:80px;
  color:var(--muted);
  font-weight:900;
  text-align:center;
}
.course-watch-section{padding-top:146px}
.course-details-head{
  max-width:920px;
  margin-bottom:26px;
}
.back-link{
  display:inline-flex;
  color:var(--primary);
  font-weight:900;
  margin-bottom:18px;
}
.course-details-head .course-badge{
  position:static;
  display:inline-flex;
  margin-inline-start:12px;
}
.course-details-head h1,
.admin-copy h1{
  margin:14px 0 16px;
  color:var(--navy);
  line-height:1.12;
  letter-spacing:-.04em;
  font-size:clamp(34px,5vw,60px);
}
.course-details-head p,
.admin-copy p{
  color:#475467;
  font-size:19px;
  max-width:780px;
}
.course-detail-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}
.course-detail-meta span{
  background:white;
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 13px;
  color:var(--navy);
  font-weight:900;
}
.course-watch-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.35fr) minmax(280px, .65fr);
  gap:24px;
  align-items:start;
}
.video-player-card,
.lessons-panel,
.course-admin-form,
.admin-note,
.saved-course-item{
  background:white;
  border:1px solid var(--border);
  box-shadow:0 18px 55px rgba(16,24,40,.08);
}
.video-player-card,
.lessons-panel{border-radius:26px;overflow:hidden}
.video-frame{
  aspect-ratio:16/9;
  background:#07111f;
}
.video-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.now-playing{
  display:grid;
  gap:4px;
  padding:18px 22px;
}
.now-playing span{
  color:var(--primary);
  font-size:13px;
  font-weight:900;
}
.now-playing strong{
  color:var(--navy);
  font-size:20px;
}
.lessons-panel{padding:22px}
.lessons-panel h2{margin:0 0 16px;color:var(--navy);font-size:24px}
.lessons-list{display:grid;gap:10px}
.lesson-item{
  width:100%;
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid var(--border);
  background:#f8fbff;
  color:var(--navy);
  border-radius:16px;
  padding:13px;
  text-align:start;
  font:inherit;
  cursor:pointer;
  transition:.2s ease;
}
.lesson-item:hover,
.lesson-item.active{
  border-color:rgba(37,99,235,.28);
  background:#eef4ff;
  transform:translateY(-1px);
}
.lesson-item span{
  min-width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:white;
  color:var(--primary);
  font-weight:900;
}
.lesson-item strong{line-height:1.4}
.admin-section{padding-top:146px;padding-bottom:44px}
.admin-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:30px;
  align-items:start;
}
.admin-note{
  border-radius:20px;
  padding:18px;
  color:var(--muted);
  font-weight:800;
  margin-top:24px;
}
.course-admin-form{
  display:grid;
  gap:14px;
  border-radius:28px;
  padding:26px;
}
.course-admin-form label{
  color:var(--navy);
  font-weight:900;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.saved-courses-section{padding-top:34px}
.saved-courses-list{display:grid;gap:14px}
.saved-course-item{
  display:grid;
  grid-template-columns:96px 1fr auto;
  gap:16px;
  align-items:center;
  border-radius:22px;
  padding:14px;
}
.saved-course-item img{
  width:96px;
  height:72px;
  object-fit:cover;
  border-radius:16px;
}
.saved-course-item h3{margin:0;color:var(--navy)}
.saved-course-item p{margin:4px 0 0;color:var(--muted);font-weight:800}
.saved-course-actions{display:flex;gap:8px;flex-wrap:wrap}
.news-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}
.news-card{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 44px rgba(16,24,40,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}
.news-card:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 70px rgba(16,24,40,.14);
}
.news-image{
  display:block;
  position:relative;
  aspect-ratio:16/10;
  background:#eef4ff;
  overflow:hidden;
}
.news-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .45s ease;
}
.news-card:hover .news-image img{transform:none}
.news-image span{
  position:absolute;
  top:14px;
  right:14px;
  background:var(--primary);
  color:white;
  border-radius:999px;
  padding:7px 12px;
  font-size:13px;
  font-weight:900;
}
.news-content{padding:20px}
.news-content small{
  color:var(--primary);
  font-weight:900;
}
.news-content h3{
  margin:8px 0;
  color:var(--navy);
  font-size:23px;
  line-height:1.35;
}
.news-content p{
  color:var(--muted);
  margin:0 0 18px;
}
.news-detail-card{
  background:white;
  border:1px solid var(--border);
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.news-detail-card > img{
  width:100%;
  max-height:620px;
  object-fit:contain;
  background:#eef4ff;
}
.news-detail-body{
  padding:34px;
}
.news-detail-body .course-badge{
  position:static;
  display:inline-flex;
  margin-bottom:14px;
}
.news-detail-body small{
  display:block;
  color:var(--primary);
  font-weight:900;
}
.news-detail-body h1{
  margin:10px 0 16px;
  color:var(--navy);
  font-size:clamp(34px,5vw,58px);
  line-height:1.15;
  letter-spacing:-.04em;
}
.news-summary{
  color:#475467;
  font-size:20px;
  font-weight:800;
}
.news-full-text{
  color:var(--ink);
  font-size:18px;
  line-height:2;
  margin-top:24px;
}
.photos-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}
.photo-card{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 44px rgba(16,24,40,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}
.photo-card:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 70px rgba(16,24,40,.14);
}
.photo-frame{
  display:block;
  position:relative;
  aspect-ratio:4/3;
  background:#eef4ff;
  overflow:hidden;
}
.photo-frame img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .45s ease;
}
.photo-card:hover .photo-frame img{transform:scale(1.025)}
.photo-frame span{
  position:absolute;
  top:14px;
  right:14px;
  background:var(--primary);
  color:white;
  border-radius:999px;
  padding:7px 12px;
  font-size:13px;
  font-weight:900;
}
.photo-content{padding:20px}
.photo-content small{
  color:var(--primary);
  font-weight:900;
}
.photo-content h3{
  margin:8px 0;
  color:var(--navy);
  font-size:22px;
}
.photo-content p{
  margin:0;
  color:var(--muted);
  font-weight:800;
}
.admission-hero{
  padding-top:152px;
  padding-bottom:58px;
}
.admission-hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:center;
}
.admission-hero h1{
  margin:14px 0 18px;
  color:var(--navy);
  line-height:1.12;
  letter-spacing:-.04em;
  font-size:clamp(38px,5.5vw,68px);
}
.admission-hero p{
  color:#475467;
  font-size:20px;
  max-width:780px;
}
.admission-summary-card,
.admission-card,
.fees-card,
.extra-fees,
.fees-alert,
.credentials-grid article{
  background:white;
  border:1px solid var(--border);
  box-shadow:0 18px 55px rgba(16,24,40,.08);
}
.admission-summary-card{
  display:grid;
  gap:12px;
  border-radius:28px;
  padding:28px;
}
.admission-summary-card strong{
  color:var(--navy);
  font-size:24px;
}
.admission-summary-card span{
  border-radius:16px;
  background:#eef4ff;
  color:#244b9c;
  padding:12px 14px;
  font-weight:900;
}
.credentials-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:34px;
}
.credentials-grid article{
  border-radius:24px;
  padding:24px;
}
.credentials-grid span{
  color:var(--accent);
  font-weight:900;
}
.credentials-grid h3{
  margin:10px 0 8px;
  color:var(--navy);
  font-size:22px;
}
.credentials-grid p{
  margin:0;
  color:var(--muted);
}
.admission-card{
  border-radius:30px;
  padding:34px;
}
.admission-card-head h2{
  margin:12px 0 20px;
  color:var(--navy);
  line-height:1.2;
  font-size:clamp(28px,4vw,46px);
}
.documents-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}
.documents-list li{
  position:relative;
  background:#f8fbff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px 46px 16px 16px;
  color:var(--navy);
  font-weight:900;
}
.documents-list li:before{
  content:"✓";
  position:absolute;
  right:16px;
  top:16px;
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:var(--mint);
  color:white;
  font-size:13px;
}
.fees-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  margin-top:34px;
}
.fees-card{
  border-radius:24px;
  padding:24px;
}
.fees-card h3{
  margin:0 0 16px;
  color:var(--navy);
  font-size:24px;
}
.fee-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-weight:900;
}
.fee-row strong{
  color:var(--primary);
  white-space:nowrap;
}
.extra-fees{
  margin-top:20px;
  border-radius:24px;
  padding:24px;
}
.extra-fees h3{
  margin:0 0 12px;
  color:var(--navy);
  font-size:24px;
}
.extra-fees ul{
  margin:0;
  padding-inline-start:24px;
  color:var(--muted);
  font-weight:900;
}
.fees-alert{
  margin-top:20px;
  border-radius:24px;
  padding:22px;
  background:linear-gradient(135deg,#fff7ed,#ffffff);
  border-color:rgba(245,158,11,.28);
}
.fees-alert strong{
  display:block;
  color:#b45309;
  font-size:22px;
  margin-bottom:6px;
}
.fees-alert p{
  margin:0;
  color:var(--navy);
  font-weight:900;
}
.admin-protected main,
.admin-protected footer{visibility:hidden}
.admin-protected.admin-ready main,
.admin-protected.admin-ready footer{visibility:visible}
.auth-protected main,
.auth-protected footer{visibility:hidden}
.auth-protected.auth-ready main,
.auth-protected.auth-ready footer{visibility:visible}
.auth-section{
  padding-top:146px;
}
.auth-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  align-items:start;
}
.auth-copy h1{
  margin:14px 0 16px;
  color:var(--navy);
  line-height:1.12;
  letter-spacing:-.04em;
  font-size:clamp(36px,5vw,62px);
}
.auth-copy p{
  color:#475467;
  font-size:19px;
  max-width:720px;
}
.auth-roles{
  display:grid;
  gap:12px;
  margin-top:26px;
}
.auth-roles article,
.auth-panel{
  background:white;
  border:1px solid var(--border);
  box-shadow:0 18px 55px rgba(16,24,40,.08);
}
.auth-roles article{
  border-radius:20px;
  padding:18px;
}
.auth-roles strong{
  display:block;
  color:var(--navy);
  font-size:20px;
}
.auth-roles span{
  display:block;
  color:var(--muted);
  font-weight:800;
}
.auth-panel{
  border-radius:30px;
  padding:26px;
}
.auth-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:18px;
}
.auth-tabs a{
  display:grid;
  place-items:center;
  min-height:46px;
  border-radius:999px;
  background:#eef4ff;
  color:var(--primary);
  font-weight:900;
}
.auth-box{
  padding:18px 0;
  border-top:1px solid var(--border);
}
.auth-box h2{
  margin:0 0 14px;
  color:var(--navy);
  font-size:26px;
}
.demo-accounts{
  display:grid;
  gap:6px;
  margin-top:18px;
  padding:16px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid var(--border);
  color:var(--muted);
  font-weight:800;
}
.demo-accounts strong{
  color:var(--navy);
}
.password-modal{
  position:fixed;
  inset:0;
  z-index:3000;
  display:grid;
  place-items:center;
  padding:20px;
  background:rgba(7,17,31,.62);
  backdrop-filter:blur(10px);
}
.password-modal[hidden]{display:none}
.password-dialog{
  width:min(420px,100%);
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:26px;
  box-shadow:0 26px 80px rgba(7,17,31,.30);
  position:relative;
}
.password-close{
  position:absolute;
  top:14px;
  left:14px;
  width:36px;
  height:36px;
  border:0;
  border-radius:999px;
  background:#eef4ff;
  color:var(--navy);
  cursor:pointer;
  font-size:24px;
  line-height:1;
}
.password-dialog h2{
  margin:0 0 8px;
  color:var(--navy);
  font-size:26px;
}
.password-dialog p{
  margin:0 0 18px;
  color:var(--muted);
  font-weight:800;
}
.password-dialog form{display:grid;gap:12px}
.password-error{
  min-height:24px;
  color:#dc2626;
  font-weight:900;
}
.ai-support{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:2500;
  font-family:inherit;
}
.ai-support-toggle{
  display:flex;
  align-items:center;
  gap:8px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:white;
  padding:12px 16px;
  box-shadow:0 18px 42px rgba(37,99,235,.28);
  cursor:pointer;
  font:inherit;
  font-weight:900;
}
.ai-support-toggle span{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  letter-spacing:.02em;
}
.ai-chat-panel{
  position:absolute;
  left:0;
  bottom:68px;
  width:min(360px, calc(100vw - 28px));
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:24px;
  background:white;
  box-shadow:0 28px 80px rgba(7,17,31,.24);
}
.ai-chat-panel header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 18px;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:white;
}
.ai-chat-panel header strong,
.ai-chat-panel header small{display:block}
.ai-chat-panel header small{opacity:.82}
.ai-chat-close{
  width:34px;
  height:34px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  color:white;
  cursor:pointer;
  font-size:24px;
  line-height:1;
}
.ai-chat-messages{
  display:grid;
  gap:10px;
  max-height:290px;
  overflow:auto;
  padding:16px;
  background:#f8fbff;
}
.ai-message{
  max-width:86%;
  padding:10px 13px;
  border-radius:16px;
  color:var(--navy);
  background:white;
  border:1px solid var(--border);
  line-height:1.7;
  font-weight:800;
  font-size:14px;
}
.ai-message.user{
  justify-self:end;
  background:#eef4ff;
  border-color:rgba(37,99,235,.18);
}
.ai-message.pending{
  color:var(--muted);
  font-style:italic;
}
.ai-quick-replies{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  padding:12px 14px 0;
}
.ai-quick-replies button{
  border:1px solid rgba(37,99,235,.16);
  border-radius:999px;
  background:#eef4ff;
  color:var(--primary);
  padding:7px 10px;
  cursor:pointer;
  font:inherit;
  font-size:13px;
  font-weight:900;
}
.ai-chat-form{
  display:flex;
  gap:8px;
  padding:14px;
}
.ai-chat-form input{
  margin:0;
  border-radius:999px;
}
.ai-chat-form button{
  border:0;
  border-radius:999px;
  background:var(--primary);
  color:white;
  padding:0 14px;
  font:inherit;
  font-weight:900;
  cursor:pointer;
}
.footer{background:#07111f;color:white;padding:62px 0 26px}
.footer-grid{display:grid;grid-template-columns:1.15fr .8fr 1fr;gap:30px}
.footer p,.footer a,.footer small{color:rgba(255,255,255,.72)}
.footer h3{margin:0 0 12px}
.footer a{display:block;margin:7px 0}
.footer-brand{margin-bottom:14px}
.footer-social{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.footer-social.compact{
  justify-content:center;
  margin-top:0;
}
.footer-social a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:white;
  font-weight:900;
  font-size:13px;
  transition:.22s ease;
}
.footer-social a span{
  width:28px;
  height:28px;
  display:inline-grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  color:white;
  font-family:Inter,Arial,sans-serif;
  font-weight:900;
  line-height:1;
}
.footer-social a:nth-child(1) span{background:#1877f2}
.footer-social a:nth-child(2) span{background:#ff0033}
.footer-social a:nth-child(3) span{background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af)}
.footer-social a:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.24);
  background:rgba(255,255,255,.11);
}
.footer-contact p{margin:8px 0;display:flex;align-items:flex-start;gap:9px}
.footer-contact strong{color:white}
.footer-contact-icon{
  width:26px;
  height:26px;
  min-width:26px;
  display:inline-grid;
  place-items:center;
  border-radius:9px;
  background:rgba(255,255,255,.1);
  color:#6ee7f9;
  font-size:14px;
  line-height:1;
}
.copyright{margin-top:38px;padding-top:22px;border-top:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.58);font-size:14px}
.back-to-top{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:850;
  width:54px;
  height:54px;
  border:0;
  border-radius:18px;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:white;
  font-family:inherit;
  font-weight:900;
  box-shadow:0 18px 38px rgba(37,99,235,.25);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:.22s ease;
}
.back-to-top.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.back-to-top:hover{transform:translateY(-3px)}

.reveal{opacity:0;transform:translateY(22px);transition:opacity .65s ease, transform .65s ease}
.reveal.visible{opacity:1;transform:none}

@media (max-width: 1180px){
  .nav-toggle{display:block}
  .nav-menu{
    position:fixed;top:78px;right:20px;left:20px;display:grid;gap:0;
    background:white;border:1px solid var(--border);border-radius:24px;padding:14px;
    box-shadow:var(--shadow);transform:translateY(-16px);opacity:0;pointer-events:none;transition:.2s ease
  }
  .home-page .nav-menu{
    background:#10131a;
    border-color:rgba(255,255,255,.1);
    color:white;
  }
  .nav-menu.open{opacity:1;pointer-events:auto;transform:none}
  .nav-menu a{padding:12px 14px}
  .nav-cta{text-align:center}
  .hero-grid,.split,.band-grid,.admissions-grid,.apply-card,.contact-grid,.footer-grid,.courses-hero-grid,.course-watch-grid,.admin-grid,.admission-hero-grid,.auth-grid{grid-template-columns:1fr}
  .hero{padding-top:124px}
  .modern-hero{min-height:auto}
  .home-landing{padding-bottom:0}
  .campus-showcase{min-height:auto}
  .campus-frame{height:460px;border-radius:220px 220px 22px 22px}
  .hero-numbers{grid-template-columns:repeat(3,1fr);gap:14px}
  .program-cards,.gallery-grid{grid-template-columns:1fr}
  .parent-review-card{flex-basis:calc((100% - 24px) / 2)}
  .feature-grid{grid-template-columns:1fr}
  .credentials-grid,.fees-grid,.documents-list{grid-template-columns:1fr}
  .courses-toolbar{grid-template-columns:1fr 1fr}
  .courses-toolbar .search-field{grid-column:1/-1}
  .courses-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .news-grid,.photos-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .courses-meta{align-items:flex-start;flex-direction:column}
}

@media (max-width: 560px){
  .container{width:min(100% - 26px,1160px)}
  .section{padding:68px 0}
  .parent-reviews-carousel{
    padding:0 0 44px;
  }
  .parent-review-card{
    flex-basis:100%;
    min-height:260px;
    padding:20px;
  }
  .parent-review-card img{
    height:auto;
    max-height:340px;
  }
  .parent-review-arrow{
    top:auto;
    bottom:-5px;
    width:40px;
    height:40px;
    font-size:28px;
  }
  .parent-review-prev{left:18px}
  .parent-review-next{right:18px}
  .hero h1{font-size:39px}
  .hero p{font-size:17px}
  .hero-numbers{grid-template-columns:1fr;gap:12px}
  .hero-numbers div{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:12px 14px;
  }
  .campus-frame{height:360px;border-radius:180px 180px 20px 20px}
  .campus-badge{right:12px;left:12px;bottom:16px;justify-content:center}
  .glass-card,.apply-card,.band-grid{padding:24px;border-radius:28px}
  .home-logo-orbit{width:132px;height:132px;border-radius:32px}
  .home-logo-orbit img{width:104px;height:104px}
  .mini-stats{grid-template-columns:1fr}
  .hero-actions .btn{width:100%}
  .courses-hero{padding-top:124px}
  .courses-hero p{font-size:17px}
  .courses-toolbar{grid-template-columns:1fr;padding:14px;border-radius:22px}
  .courses-toolbar .btn{width:100%}
  .courses-grid{grid-template-columns:1fr}
  .news-grid,.photos-grid{grid-template-columns:1fr}
  .course-footer{align-items:stretch;flex-direction:column}
  .form-row{grid-template-columns:1fr}
  .saved-course-item{grid-template-columns:1fr}
  .saved-course-item img{width:100%;height:170px}
  .saved-course-actions .btn{width:100%}
  .ai-support{left:14px;bottom:14px}
  .ai-support-toggle strong{display:none}
  .ai-chat-panel{bottom:62px}
  .back-to-top{right:16px;bottom:16px;width:48px;height:48px;border-radius:16px}
}

/* Delta schools gateway */
.delta-gateway-page{
  background:#f6f8fc;
}
.gateway-header{
  background:rgba(255,255,255,.82);
}
.delta-gateway-page .site-header .brand small,
.delta-gateway-page .footer-brand small{
  color:#667085;
}
.delta-gateway-page .brand-logo{
  padding:0;
  background:#f8fbff;
}
.delta-gateway-page .brand-logo::after{
  display:none;
}
.gateway-hero{
  min-height:100svh;
  position:relative;
  display:grid;
  align-items:center;
  overflow:hidden;
  padding-top:150px;
}
.gateway-hero-media,
.gateway-hero-overlay{
  position:absolute;
  inset:0;
}
.gateway-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.04);
}
.gateway-hero-overlay{
  background:
    linear-gradient(90deg,rgba(7,17,31,.92),rgba(7,17,31,.72) 46%,rgba(7,17,31,.2)),
    linear-gradient(180deg,rgba(7,17,31,.2),rgba(7,17,31,.76));
}
.gateway-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  align-items:end;
}
.gateway-hero-copy{
  max-width:760px;
}
.gateway-hero-copy .eyebrow,
.gateway-hero-copy h1,
.gateway-hero-copy p{
  color:#fff;
}
.gateway-hero-copy h1{
  margin:14px 0 20px;
  font-size:clamp(42px,6vw,76px);
  line-height:1.16;
}
.gateway-hero-copy p{
  max-width:710px;
  color:#d8dee8;
  font-size:20px;
}
.gateway-summary{
  justify-self:end;
  width:min(100%,410px);
  padding:28px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:24px;
  background:rgba(255,255,255,.11);
  color:#fff;
  backdrop-filter:blur(18px);
  box-shadow:0 24px 70px rgba(0,0,0,.22);
}
.gateway-summary strong{
  display:block;
  font-family:Inter,Arial,sans-serif;
  font-size:32px;
  line-height:1.1;
}
.gateway-summary span{
  display:block;
  margin:8px 0 18px;
  color:#b8c0cc;
  font-family:Inter,Arial,sans-serif;
  font-weight:800;
}
.gateway-summary p{
  margin:0;
  color:#edf2f7;
}
.gateway-school-icons{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:22px;
}
.gateway-school-icons span,
.school-icon{
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid rgba(255,255,255,.28);
  box-shadow:0 16px 34px rgba(7,26,58,.18);
}
.gateway-school-icons span{
  width:62px;
  height:62px;
  border-radius:18px;
}
.gateway-school-icons img{
  width:52px;
  height:52px;
  object-fit:contain;
}
.gateway-about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:44px;
  align-items:start;
}
.gateway-points{
  display:grid;
  gap:16px;
}
.gateway-points article,
.school-card,
.gateway-vision-box{
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 18px 50px rgba(16,24,40,.08);
}
.gateway-points article{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:6px 16px;
  padding:22px;
  border-radius:20px;
}
.gateway-points span{
  grid-row:1 / span 2;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#eef4ff;
  color:#315bff;
  font-family:Inter,Arial,sans-serif;
  font-weight:900;
}
.gateway-points h3,
.gateway-points p{
  margin:0;
}
.gateway-schools{
  background:#eef4ff;
}
.school-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:36px;
}
.school-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  min-height:340px;
  padding:26px;
  border-radius:24px;
}
.school-card.featured{
  border-color:rgba(49,91,255,.34);
  box-shadow:0 24px 70px rgba(49,91,255,.14);
}
.school-icon{
  width:126px;
  height:126px;
  border-radius:32px;
  margin:0 auto 24px;
}
.school-icon img{
  width:108px;
  height:108px;
  object-fit:contain;
}
.school-number{
  font-family:Inter,Arial,sans-serif;
  font-weight:900;
  color:#315bff;
  font-size:28px;
}
.school-tag{
  padding:7px 12px;
  border-radius:999px;
  background:#f2f4f7;
  color:#475467;
  font-family:Inter,Arial,sans-serif;
  font-weight:800;
  font-size:13px;
}
.school-card h3{
  margin:0 0 12px;
  color:var(--navy);
  font-size:25px;
}
.school-card p{
  margin:0 0 24px;
  color:#475467;
}
.school-card .btn{
  margin-top:auto;
  width:100%;
}
.disabled-link{
  cursor:not-allowed;
  opacity:.72;
}
.gateway-vision-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
  padding:34px;
  border-radius:26px;
}
.gateway-vision-box h2{
  margin:12px 0 0;
  color:var(--navy);
  line-height:1.25;
}
.gateway-vision-box p{
  margin:0;
  color:#475467;
  font-size:18px;
}

@media (max-width:900px){
  .gateway-hero-grid,
  .gateway-about-grid,
  .gateway-vision-box{
    grid-template-columns:1fr;
  }
  .gateway-summary{
    justify-self:stretch;
  }
  .school-cards{
    grid-template-columns:1fr;
  }
}

@media (max-width:560px){
  .gateway-hero{
    min-height:auto;
    padding-top:132px;
  }
  .gateway-hero-copy h1{
    font-size:38px;
  }
  .gateway-hero-copy p{
    font-size:17px;
  }
  .gateway-summary,
  .gateway-vision-box,
  .school-card{
    border-radius:20px;
  }
}
