:root{
  --bg-0:#040512;
  --bg-1:#06082a;
  --card:rgba(255,255,255,.06);
  --card-2:rgba(255,255,255,.09);
  --stroke:rgba(255,255,255,.12);
  --stroke-2:rgba(255,255,255,.18);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --muted-2:rgba(234,240,255,.56);
  --cyan:#38e8ff;
  --blue:#4a6cff;
  --purple:#b24cff;
  --shadow:0 14px 70px rgba(0,0,0,.55);
  --shadow-2:0 18px 90px rgba(0,0,0,.65);
  --radius:18px;
  --radius-sm:14px;
  --container:1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,"Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:radial-gradient(1100px 800px at 20% -10%, rgba(56,232,255,.18), transparent 60%),
             radial-gradient(900px 700px at 90% 0%, rgba(178,76,255,.18), transparent 55%),
             radial-gradient(1100px 900px at 50% 120%, rgba(74,108,255,.14), transparent 55%),
             linear-gradient(180deg, var(--bg-0), var(--bg-1));
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit;color:inherit}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.skip-link{
  position:absolute;
  left:12px;top:12px;
  padding:10px 12px;
  background:rgba(0,0,0,.55);
  border:1px solid var(--stroke);
  border-radius:12px;
  backdrop-filter:blur(10px);
  transform:translateY(-140%);
  transition:transform .2s ease;
  z-index:9999;
}
.skip-link:focus{transform:translateY(0)}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin-inline:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:
    radial-gradient(700px 280px at 16% 20%, rgba(56,232,255,.14), transparent 62%),
    radial-gradient(700px 280px at 82% 15%, rgba(178,76,255,.12), transparent 62%),
    linear-gradient(180deg, rgba(5,7,20,.92), rgba(5,7,20,.68));
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(14px);
}
.site-header.is-scrolled{
  background:
    radial-gradient(700px 280px at 16% 20%, rgba(56,232,255,.10), transparent 62%),
    radial-gradient(700px 280px at 82% 15%, rgba(178,76,255,.10), transparent 62%),
    linear-gradient(180deg, rgba(5,7,20,.96), rgba(5,7,20,.82));
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(135deg, rgba(255,255,255,.08), rgba(0,0,0,.10));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06), 0 14px 40px rgba(0,0,0,.40);
}
.brand-logo{
  height:56px;
  width:auto;
  filter:drop-shadow(0 12px 26px rgba(0,0,0,.60)) drop-shadow(0 12px 30px rgba(56,232,255,.18)) brightness(1.18) contrast(1.10);
}
.site-header.is-scrolled .brand{
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(0,0,0,.12));
  border-color:rgba(56,232,255,.18);
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.nav-link{
  position:relative;
  padding:8px 10px;
  font-size:14px;
  letter-spacing:.2px;
  color:var(--muted);
  transition:color .2s ease;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:12px;right:12px;bottom:4px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(56,232,255,.75), rgba(178,76,255,.75), transparent);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .25s ease;
  opacity:.95;
}
.nav-link:hover{color:var(--text)}
.nav-link:hover::after{transform:scaleX(1)}

.header-cta{display:flex;align-items:center;gap:10px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  will-change:transform;
}
.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(56,232,255,.35);
  box-shadow:0 12px 30px rgba(0,0,0,.45), 0 0 0 1px rgba(56,232,255,.12);
}
.btn:active{transform:translateY(0)}

.btn-primary{
  border-color:rgba(56,232,255,.32);
  background:linear-gradient(135deg, rgba(56,232,255,.18), rgba(178,76,255,.14));
  box-shadow:0 18px 55px rgba(56,232,255,.10), 0 18px 55px rgba(178,76,255,.10);
}
.btn-primary:hover{
  border-color:rgba(56,232,255,.55);
  box-shadow:0 22px 70px rgba(56,232,255,.14), 0 22px 70px rgba(178,76,255,.14);
}
.btn-ghost{
  background:rgba(255,255,255,.03);
}
.btn-sm{padding:9px 12px;font-size:13px}

.icon-btn{
  width:42px;height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.icon-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(56,232,255,.35);
  box-shadow:0 14px 30px rgba(0,0,0,.45);
}
.icon-btn-lines{
  width:18px;height:12px;
  display:block;
  position:relative;
}
.icon-btn-lines::before,.icon-btn-lines::after{
  content:"";
  position:absolute;left:0;right:0;
  height:2px;
  border-radius:99px;
  background:linear-gradient(90deg, var(--cyan), var(--purple));
  box-shadow:0 0 18px rgba(56,232,255,.35);
}
.icon-btn-lines::before{top:0}
.icon-btn-lines::after{bottom:0}

.mobile-menu-btn{display:none}
.mobile-menu{
  border-top:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg, rgba(5,7,20,.94), rgba(5,7,20,.76));
  backdrop-filter:blur(14px);
}
.mobile-menu-inner{
  padding:18px 0 22px;
  display:grid;
  gap:10px;
}
.mobile-link{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:var(--muted);
}
.mobile-link:hover{color:var(--text);border-color:rgba(56,232,255,.25)}
.mobile-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px}

.hero{
  position:relative;
  min-height:92vh;
  padding:24px 0 52px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.hero-bg{
  position:absolute;
  inset:-120px -140px -160px -140px;
  background:
    radial-gradient(900px 650px at 15% 18%, rgba(56,232,255,.22), transparent 62%),
    radial-gradient(950px 650px at 90% 20%, rgba(178,76,255,.22), transparent 60%),
    radial-gradient(800px 600px at 50% 86%, rgba(74,108,255,.16), transparent 62%),
    url("../images/banner_2.png");
  background-size:auto,auto,auto,cover;
  background-position:center;
  opacity:.9;
  filter:saturate(1.1) contrast(1.08);
  transform:translateZ(0);
}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(4,5,18,.65), rgba(4,5,18,.92) 45%, rgba(4,5,18,1)),
    radial-gradient(900px 650px at 55% 0%, rgba(56,232,255,.12), transparent 55%),
    radial-gradient(800px 650px at 40% 30%, rgba(178,76,255,.10), transparent 50%);
}
.hero-inner{position:relative}

.hero-slider{position:relative}
.hero-slides{
  position:relative;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  box-shadow:var(--shadow-2);
  overflow:hidden;
  min-height:540px;
}
.hero-slide{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:30px;
  align-items:center;
  padding:40px 38px;
  opacity:0;
  pointer-events:none;
  transform:scale(1);
  transition:opacity .55s ease;
}
.hero-slide.is-active{
  opacity:1;
  pointer-events:auto;
  z-index:1;
}

.hero-left{position:relative;z-index:1}
.eyebrow{
  margin:0 0 12px;
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(234,240,255,.70);
}
.hero-title{
  margin:0 0 14px;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-.02em;
  background:linear-gradient(90deg, rgba(234,240,255,1), rgba(56,232,255,.95) 36%, rgba(178,76,255,.92));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 0 30px rgba(56,232,255,.10);
}
.hero-subtitle{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
  max-width:56ch;
}
.hero-actions{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.hero-pills{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  color:rgba(234,240,255,.78);
  font-size:13px;
  letter-spacing:.2px;
}
.chip-dot{
  width:10px;height:10px;border-radius:99px;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.90), rgba(56,232,255,.86));
  box-shadow:0 0 18px rgba(56,232,255,.30);
}
.chip-dot-2{
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.90), rgba(178,76,255,.86));
  box-shadow:0 0 18px rgba(178,76,255,.30);
}
.chip-dot-3{
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.90), rgba(74,108,255,.86));
  box-shadow:0 0 18px rgba(74,108,255,.26);
}
.hero-metrics{
  margin-top:18px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.metric{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px 14px;
  min-width:230px;
}
.metric-top{display:flex;align-items:center;gap:10px;margin-bottom:6px}
.metric-dot{
  width:10px;height:10px;border-radius:99px;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(56,232,255,.85));
  box-shadow:0 0 18px rgba(56,232,255,.35);
}
.metric-dot-2{
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(178,76,255,.85));
  box-shadow:0 0 18px rgba(178,76,255,.35);
}
.metric-kicker{font-size:13px;color:rgba(234,240,255,.70)}
.metric-value{font-size:14px;color:rgba(234,240,255,.92)}

.hero-right{position:relative;z-index:0}
.hero-image-wrap{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  transform:translateZ(0);
}
.hero-image{
  width:100%;
  height:520px;
  object-fit:cover;
  opacity:.98;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.02);
}
.hero-glow{
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(closest-side at 20% 30%, rgba(56,232,255,.22), transparent 60%),
    radial-gradient(closest-side at 80% 20%, rgba(178,76,255,.18), transparent 60%),
    radial-gradient(closest-side at 60% 95%, rgba(74,108,255,.14), transparent 60%);
  mix-blend-mode:screen;
  pointer-events:none;
}
.hero-glow-2{
  background:
    radial-gradient(closest-side at 30% 25%, rgba(178,76,255,.22), transparent 60%),
    radial-gradient(closest-side at 82% 30%, rgba(56,232,255,.18), transparent 60%),
    radial-gradient(closest-side at 60% 95%, rgba(74,108,255,.14), transparent 60%);
}

.hero-controls{
  position:absolute;
  left:22px;right:22px;bottom:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  pointer-events:none;
}
.slider-btn{
  pointer-events:auto;
  width:44px;height:44px;
  border-radius:14px;
  font-size:22px;
}
.dots{
  pointer-events:auto;
  display:flex;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  backdrop-filter:blur(10px);
}
.dot{
  width:9px;height:9px;
  border-radius:99px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  padding:0;
  cursor:pointer;
}
.dot.is-active{
  border-color:rgba(56,232,255,.55);
  background:linear-gradient(90deg, rgba(56,232,255,.85), rgba(178,76,255,.75));
  box-shadow:0 0 18px rgba(56,232,255,.22);
}

.acc-row{
  position:relative;
  margin-top:18px;
  display:grid;
  grid-template-columns:360px 1fr;
  gap:14px;
  align-items:stretch;
}
.acc-card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  padding:16px 16px;
  box-shadow:var(--shadow);
}
.acc-title{font-weight:650;letter-spacing:-.01em}
.acc-sub{margin-top:6px;color:var(--muted);font-size:13px;line-height:1.5}

.acc-logos{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  padding:14px 14px;
  display:flex;
  gap:12px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.acc-logos::-webkit-scrollbar{height:8px}
.acc-logos::-webkit-scrollbar-thumb{background:rgba(255,255,255,.10);border-radius:999px}
.acc-logo-tile{
  scroll-snap-align:start;
  flex:0 0 auto;
  width:140px;
  height:56px;
  border-radius:14px;
  background:rgba(255,255,255,.95);
  color:rgba(4,5,18,.88);
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.75);
  box-shadow:0 12px 35px rgba(0,0,0,.35);
  position:relative;
  overflow:hidden;
}
.acc-logo-tile::after{
  content:"";
  position:absolute;
  inset:-40%;
  background:radial-gradient(closest-side at 30% 40%, rgba(56,232,255,.20), transparent 62%),
             radial-gradient(closest-side at 70% 45%, rgba(178,76,255,.16), transparent 62%);
  mix-blend-mode:screen;
  opacity:.35;
}
.acc-logo-tile img{
  width:96px;height:30px;
  object-fit:contain;
  filter:contrast(1.05) saturate(1.05);
  position:relative;
  z-index:1;
}
.acc-logo-text{
  font-weight:800;
  letter-spacing:.02em;
  text-transform:uppercase;
  font-size:12px;
}

.marquee{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  overflow:hidden;
  position:relative;
  box-shadow:var(--shadow);
}
.marquee::before,.marquee::after{
  content:"";
  position:absolute;
  top:0;bottom:0;
  width:90px;
  z-index:2;
  pointer-events:none;
}
.marquee::before{left:0;background:linear-gradient(90deg, rgba(4,5,18,1), transparent)}
.marquee::after{right:0;background:linear-gradient(270deg, rgba(4,5,18,1), transparent)}
.marquee-track{
  display:flex;
  gap:12px;
  padding:14px 18px;
  width:max-content;
  animation:marquee 28s linear infinite;
}
.marquee-item{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  color:rgba(234,240,255,.78);
  font-size:13px;
  letter-spacing:.25px;
  text-transform:none;
  white-space:nowrap;
}
.acc-marquee:hover .marquee-track{animation-play-state:paused}
.marquee-logo-pill{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:132px;
  height:52px;
  padding:10px 14px;
  background:rgba(255,255,255,.96);
  border-color:rgba(255,255,255,.75);
  box-shadow:0 14px 40px rgba(0,0,0,.40);
}
.marquee-logo-pill img{
  width:96px;
  height:30px;
  object-fit:contain;
  filter:contrast(1.05) saturate(1.05);
  opacity:.98;
}
.marquee-logo{
  padding:8px 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:112px;
}
.marquee-logo img{
  width:92px;
  height:28px;
  object-fit:contain;
  filter:brightness(1.05) contrast(1.05) drop-shadow(0 10px 20px rgba(56,232,255,.10));
  opacity:.92;
}
@keyframes marquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

.section{padding:72px 0}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}
.section-head.center{
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.section-head.center .section-subtitle{max-width:70ch}
.section-title{
  margin:0;
  font-size:34px;
  letter-spacing:-.02em;
  background:linear-gradient(90deg, rgba(234,240,255,1), rgba(56,232,255,.92), rgba(178,76,255,.90));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.section-subtitle{
  margin:0;
  color:var(--muted);
  max-width:60ch;
  line-height:1.6;
}

.grid{display:grid;gap:16px}
.cards-5{grid-template-columns:repeat(5, minmax(0, 1fr))}

.card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}
.service-card{
  padding:18px 16px 16px;
  min-height:210px;
  position:relative;
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.service-card::before{
  content:"";
  position:absolute;
  inset:-60px -60px auto -60px;
  height:160px;
  background:radial-gradient(closest-side at 30% 35%, rgba(56,232,255,.18), transparent 70%),
             radial-gradient(closest-side at 70% 35%, rgba(178,76,255,.14), transparent 72%);
  filter:blur(2px);
}
.service-card:hover{
  transform:translateY(-2px);
  border-color:rgba(56,232,255,.28);
  box-shadow:0 22px 70px rgba(0,0,0,.62), 0 0 0 1px rgba(56,232,255,.10);
}
.card-icon{
  width:42px;height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06), 0 0 24px rgba(56,232,255,.08);
  margin-bottom:12px;
}
.card-title{margin:0 0 8px;font-size:16px;letter-spacing:-.01em}
.card-text{margin:0;color:var(--muted);font-size:14px;line-height:1.55}
.card-link{
  display:inline-flex;
  margin-top:12px;
  color:rgba(56,232,255,.88);
  font-size:13px;
  letter-spacing:.2px;
}
.card-link:hover{color:rgba(178,76,255,.92)}

.stats-strip{
  padding:18px 0;
  background:transparent;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.stats-bar{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
  padding:14px 14px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(90deg, rgba(56,232,255,.12), rgba(178,76,255,.10));
  box-shadow:var(--shadow);
}
.stats-inner{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
}
.stat{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  padding:14px 14px;
}
.stat-icon{
  width:42px;height:42px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 0 26px rgba(56,232,255,.10);
  margin-bottom:10px;
}
.stat-value{font-size:22px;font-weight:720;letter-spacing:-.02em}
.stat-label{margin-top:4px;color:var(--muted);font-size:13px}

.courses-grid{grid-template-columns:repeat(5, minmax(0, 1fr))}
.course-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.course-card:hover{
  transform:translateY(-2px);
  border-color:rgba(178,76,255,.26);
  box-shadow:0 22px 70px rgba(0,0,0,.62), 0 0 0 1px rgba(178,76,255,.10);
}
.course-media{
  position:relative;
  height:150px;
}
.course-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.02) contrast(1.05);
  transform:scale(1.02);
}
.course-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(4,5,18,.12), rgba(4,5,18,.92)),
    radial-gradient(500px 220px at 30% 0%, rgba(56,232,255,.16), transparent 55%),
    radial-gradient(500px 220px at 90% 10%, rgba(178,76,255,.14), transparent 55%);
}
.course-body{
  padding:14px 14px 16px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.course-body .card-title{
  min-height:44px;
  line-height:1.25;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.course-body .card-text{
  min-height:66px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.course-meta{margin:12px 0 12px;display:flex;gap:8px;flex-wrap:wrap;min-height:34px}
.course-body .btn{margin-top:auto}
.pill{
  font-size:12px;
  color:rgba(234,240,255,.78);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  padding:6px 9px;
  border-radius:999px;
}

.journey{padding-top:64px}

.process{
  position:relative;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  box-shadow:var(--shadow-2);
  padding:20px 18px 18px;
}
.process-line{
  position:absolute;
  left:70px;right:70px;top:48px;
  height:2px;
  background:linear-gradient(90deg, rgba(56,232,255,.62), rgba(178,76,255,.55));
  opacity:.55;
  display:none;
}
.process-steps{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}
.process-step{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding:16px 14px;
  position:relative;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.process-step::before{
  content:"";
  position:absolute;
  inset:auto -60px -60px -60px;
  height:180px;
  background:radial-gradient(closest-side at 35% 40%, rgba(56,232,255,.14), transparent 72%),
             radial-gradient(closest-side at 70% 40%, rgba(178,76,255,.12), transparent 72%);
}
.process-icon{
  width:48px;height:48px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 0 30px rgba(56,232,255,.10);
  margin-bottom:12px;
  position:relative;
  z-index:1;
}
.process-title{font-weight:760;letter-spacing:-.01em;position:relative;z-index:1}
.process-text{margin-top:8px;color:var(--muted);font-size:14px;line-height:1.55;position:relative;z-index:1}

.timeline{
  list-style:none;
  padding:0;
  margin:10px 0 0;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}
.timeline-step{
  padding:18px 16px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.timeline-step::before{
  content:"";
  position:absolute;
  inset:auto -60px -60px -60px;
  height:180px;
  background:radial-gradient(closest-side at 35% 40%, rgba(56,232,255,.14), transparent 72%),
             radial-gradient(closest-side at 70% 40%, rgba(178,76,255,.12), transparent 72%);
}
.step-badge{
  width:44px;height:44px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 0 30px rgba(56,232,255,.10);
  font-weight:750;
  margin-bottom:12px;
}
.step-title{margin:0 0 8px;font-size:16px}
.step-text{margin:0;color:var(--muted);font-size:14px;line-height:1.55}

.testimonial-slider{
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  box-shadow:var(--shadow-2);
  padding:18px 18px 16px;
  overflow:hidden;
}
.testimonial-track{
  position:relative;
  min-height:190px;
}
.testimonial-slider .testimonial-card{
  padding:18px 18px 16px;
  position:absolute;
  inset:0;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .45s ease, transform .45s ease;
}
.testimonial-slider .testimonial-card.is-active{
  opacity:1;
  transform:translateY(0);
  position:relative;
}
.testimonials-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
.testimonials-grid .testimonial-card{
  padding:18px 18px 16px;
}
.stars{
  color:rgba(56,232,255,.92);
  letter-spacing:.12em;
  margin-bottom:10px;
  text-shadow:0 0 24px rgba(56,232,255,.18);
  font-size:13px;
}
.avatar{
  width:40px;height:40px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(135deg, rgba(56,232,255,.16), rgba(178,76,255,.12));
  box-shadow:0 0 28px rgba(178,76,255,.08), 0 0 28px rgba(56,232,255,.08);
  font-weight:800;
  font-size:12px;
  color:rgba(234,240,255,.92);
}
.quote{
  font-size:16px;
  line-height:1.65;
  color:rgba(234,240,255,.86);
}
.who{
  margin-top:14px;
  display:flex;
  gap:10px;
  align-items:baseline;
}
.who-name{font-weight:700}
.who-role{color:var(--muted);font-size:13px}
.testimonial-controls{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.cta{padding-top:62px}
.cta-banner{
  position:relative;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(135deg, rgba(56,232,255,.09), rgba(178,76,255,.08));
  box-shadow:var(--shadow-2);
  overflow:hidden;
  padding:26px 24px;
}
.cta-glow{
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(closest-side at 25% 35%, rgba(56,232,255,.18), transparent 62%),
    radial-gradient(closest-side at 70% 30%, rgba(178,76,255,.16), transparent 62%);
  filter:blur(2px);
  pointer-events:none;
}
.cta-left{position:relative;z-index:1}
.cta-title{
  margin:0 0 10px;
  font-size:30px;
  letter-spacing:-.02em;
}
.cta-text{margin:0;color:var(--muted);line-height:1.6}
.cta-actions{margin-top:14px;display:flex;gap:12px;flex-wrap:wrap}
.cta-right{position:relative;z-index:1;display:flex;align-items:center;justify-content:flex-end}
.cta-image{
  width:min(360px, 100%);
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.16);
}
.cta-image img{width:100%;height:220px;object-fit:cover}

.contact-grid{grid-template-columns:1fr 1.3fr}
.contact-card{padding:18px 18px 16px}
.contact-lines{margin-top:10px;display:grid;gap:8px}
.contact-line{
  display:inline-flex;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.16);
  color:rgba(234,240,255,.86);
}
.contact-line:hover{border-color:rgba(56,232,255,.28)}
.muted{color:var(--muted)}
.award-row{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.award-row img{
  width:64px;height:44px;
  object-fit:contain;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.16);
  padding:6px;
}

.form-card{padding:18px 18px 16px}
.form-grid{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:12px}
.field{display:grid;gap:7px}
.field-wide{grid-column:1/-1}
.field-label{font-size:13px;color:var(--muted)}
.input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.14);
  padding:12px 12px;
  color:rgba(234,240,255,.92);
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.input option{
  background-color:#040512;
  color:#eaf0ff;
}
.input option:disabled{
  color:rgba(234,240,255,.65);
}
select.input:required:invalid{
  color:rgba(234,240,255,.78);
}
.input:focus{
  border-color:rgba(56,232,255,.42);
  box-shadow:0 0 0 3px rgba(56,232,255,.14);
  background:rgba(0,0,0,.18);
}
.textarea{resize:vertical;min-height:120px}
.form-actions{margin-top:12px;display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.form-note{color:var(--muted-2);font-size:12px;line-height:1.5;max-width:46ch}

.site-footer{
  border-top:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(4,5,18,.86), rgba(4,5,18,.98));
  padding:44px 0 22px;
}
.footer-inner{
  display:grid;
  grid-template-columns:1.1fr 1.9fr;
  gap:18px;
  align-items:start;
}
.footer-text{margin:10px 0 0;color:var(--muted);line-height:1.6}
.socials{margin-top:14px;display:flex;gap:10px}
.social{
  width:38px;height:38px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:rgba(234,240,255,.82);
}
.social:hover{border-color:rgba(178,76,255,.26)}
.footer-cols{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}
.footer-title{font-weight:700;margin-bottom:10px}
.footer-link{
  display:block;
  padding:8px 0;
  color:var(--muted);
}
.footer-link:hover{color:rgba(56,232,255,.90)}
.footer-muted{color:var(--muted-2)}
.footer-bottom{
  margin-top:22px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted-2);
  font-size:13px;
}

.page-hero{
  position:relative;
  padding:40px 0 18px;
  overflow:hidden;
}
.page-hero-bg{
  position:absolute;
  inset:-140px -140px -120px -140px;
  background:
    radial-gradient(900px 700px at 20% 30%, rgba(56,232,255,.18), transparent 62%),
    radial-gradient(900px 650px at 80% 30%, rgba(178,76,255,.16), transparent 62%),
    url("../images/banner_1.png");
  background-size:auto,auto,cover;
  background-position:center;
  opacity:.78;
  filter:saturate(1.08) contrast(1.06);
}
.page-hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(4,5,18,.76), rgba(4,5,18,.96));
}
.page-hero-inner{position:relative}
.page-hero-content{
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  box-shadow:var(--shadow-2);
  padding:22px 20px;
}
.breadcrumbs{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  color:rgba(234,240,255,.70);
  font-size:13px;
}
.crumb{color:rgba(234,240,255,.78)}
.crumb:hover{color:rgba(56,232,255,.90)}
.crumb.is-current{color:rgba(234,240,255,.92)}
.crumb-sep{opacity:.55}
.page-title{
  margin:10px 0 8px;
  font-size:34px;
  letter-spacing:-.02em;
  background:linear-gradient(90deg, rgba(234,240,255,1), rgba(56,232,255,.92), rgba(178,76,255,.90));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.page-subtitle{margin:0;color:var(--muted);line-height:1.6;max-width:70ch}

.courses-grid-3{grid-template-columns:repeat(3, minmax(0, 1fr))}
.cards-3{grid-template-columns:repeat(3, minmax(0, 1fr))}

.about-grid{grid-template-columns:1.25fr .75fr;gap:16px}
.about-card{padding:18px 18px 16px}
.about-points{margin-top:14px;display:grid;gap:10px}
.about-point{display:flex;align-items:center;gap:10px;color:rgba(234,240,255,.82)}
.about-dot{
  width:10px;height:10px;border-radius:99px;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.90), rgba(56,232,255,.86));
  box-shadow:0 0 18px rgba(56,232,255,.26);
}
.about-dot-2{
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.90), rgba(178,76,255,.86));
  box-shadow:0 0 18px rgba(178,76,255,.26);
}
.about-dot-3{
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.90), rgba(74,108,255,.86));
  box-shadow:0 0 18px rgba(74,108,255,.22);
}
.about-actions{margin-top:16px;display:flex;gap:12px;flex-wrap:wrap}
.about-media{position:relative;overflow:hidden}
.about-media img{width:100%;height:100%;min-height:320px;object-fit:cover;opacity:.92}
.about-media-glow{position:absolute;inset:-30%;background:radial-gradient(closest-side at 30% 30%, rgba(56,232,255,.16), transparent 62%),radial-gradient(closest-side at 70% 35%, rgba(178,76,255,.14), transparent 62%);mix-blend-mode:screen;pointer-events:none}

.value-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
.value-card{padding:18px 18px 16px}
.value-icon{
  width:42px;height:42px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 0 30px rgba(56,232,255,.10);
  margin-bottom:12px;
}

.resource-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
.resource-card{padding:18px 18px 16px}
.resource-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:12px}
.resource-date{color:var(--muted-2);font-size:12px}

.contact-page-grid{grid-template-columns:1fr}
.contact-cards{grid-template-columns:repeat(3, minmax(0, 1fr));gap:12px}
.contact-mini{padding:16px 16px 14px}
.mini-top{display:flex;align-items:center;gap:10px;color:rgba(234,240,255,.82);margin-bottom:10px}
.mini-icon{
  width:38px;height:38px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 0 30px rgba(56,232,255,.10);
}
.mini-title{font-weight:750}
.mini-value{color:rgba(234,240,255,.94);font-weight:720}
.mini-sub{margin-top:6px;color:var(--muted-2);font-size:12px}

.map-grid{grid-template-columns:1.35fr .65fr;gap:16px}
.map-card{padding:18px 18px 16px}
.map-top{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin-bottom:12px}
.map-sub{color:var(--muted-2);font-size:12px}
.map-placeholder{
  height:260px;
  border-radius:18px;
  border:1px dashed rgba(255,255,255,.20);
  background:linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.06));
}
.social-card{padding:18px 18px 16px}
.social-note{margin-top:14px;color:var(--muted-2);font-size:12px}

.faq-grid{gap:12px}
.faq-item{padding:0;overflow:hidden}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 16px;
  border:0;
  background:transparent;
  cursor:pointer;
  text-align:left;
  color:rgba(234,240,255,.92);
}
.faq-icon{
  width:36px;height:36px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 0 26px rgba(56,232,255,.10);
}
.faq-q[aria-expanded="true"] .faq-icon{transform:rotate(45deg)}
.faq-a{
  padding:0 16px 16px;
  color:var(--muted);
  line-height:1.65;
}

.policy-card{padding:18px 18px 16px}
.policy-h{margin:16px 0 8px;font-size:15px}
.policy-list{margin:0;padding-left:18px;color:var(--muted);line-height:1.65}
.policy-link{color:rgba(56,232,255,.88)}
.policy-link:hover{color:rgba(178,76,255,.92)}

.course-detail-grid{grid-template-columns:.95fr 1.05fr;gap:16px}
.course-detail-media{position:relative;overflow:hidden}
.course-detail-media img{width:100%;height:100%;min-height:340px;object-fit:cover;opacity:.92}
.course-detail-glow{position:absolute;inset:-30%;background:radial-gradient(closest-side at 30% 30%, rgba(56,232,255,.18), transparent 62%),radial-gradient(closest-side at 70% 35%, rgba(178,76,255,.14), transparent 62%);mix-blend-mode:screen;pointer-events:none}
.course-detail-card{padding:18px 18px 16px}
.detail-list{margin-top:14px;display:grid;gap:10px}
.detail-item{display:flex;align-items:center;gap:10px;color:rgba(234,240,255,.82)}
.detail-dot{
  width:10px;height:10px;border-radius:99px;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.90), rgba(56,232,255,.86));
  box-shadow:0 0 18px rgba(56,232,255,.26);
}
.detail-actions{margin-top:16px;display:flex;gap:12px;flex-wrap:wrap}
.detail-meta{margin-top:16px;display:flex;gap:12px;flex-wrap:wrap}
.detail-meta-item{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.16);
  border-radius:16px;
  padding:12px 14px;
  min-width:220px;
}
.detail-meta-top{display:flex;align-items:center;gap:10px;color:var(--muted);font-size:13px;margin-bottom:6px}
.meta-chip{
  width:10px;height:10px;border-radius:99px;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.88), rgba(56,232,255,.86));
  box-shadow:0 0 18px rgba(56,232,255,.24);
}
.meta-chip-2{
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.88), rgba(178,76,255,.86));
  box-shadow:0 0 18px rgba(178,76,255,.24);
}
.detail-meta-val{color:rgba(234,240,255,.88);font-size:14px}

.syllabus-grid{grid-template-columns:repeat(4, minmax(0, 1fr))}
.syllabus-card{padding:18px 18px 16px}
.syllabus-icon{
  width:40px;height:40px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 0 30px rgba(56,232,255,.10);
  margin-bottom:12px;
  font-weight:800;
}

[data-reveal]{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .55s ease, transform .55s ease;
}
.is-revealed{
  opacity:1;
  transform:translateY(0);
}

@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto !important}
  .marquee-track{animation:none}
  .hero-slide,.testimonial-card,[data-reveal]{transition:none}
}

@media (max-width: 1200px){
  .cards-5{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .courses-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .hero-title{font-size:42px}
  .process-steps{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .process-line{left:26px;right:26px}
  .testimonials-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .courses-grid-3{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .cards-3{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .resource-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .value-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .syllabus-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
}

@media (max-width: 980px){
  .nav{display:none}
  .btn.btn-ghost{display:none}
  .mobile-menu-btn{display:inline-flex}
  .hero-slides{min-height:760px}
  .hero-slide{
    grid-template-columns:1fr;
    padding:30px 20px;
    min-height:auto;
  }
  .hero-image{height:320px}
  .acc-row{grid-template-columns:1fr;gap:12px}
  .section-head{flex-direction:column;align-items:flex-start}
  .timeline{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .contact-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .stats-bar{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .testimonials-grid{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr}
  .map-grid{grid-template-columns:1fr}
  .contact-cards{grid-template-columns:1fr}
  .course-detail-grid{grid-template-columns:1fr}
}

@media (max-width: 640px){
  .container{width:min(var(--container), calc(100% - 28px))}
  .hero{min-height:auto}
  .hero-slides{min-height:820px}
  .hero-title{font-size:34px}
  .metric{min-width:unset;width:100%}
  .stats-inner{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .stats-bar{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .cards-5{grid-template-columns:1fr}
  .courses-grid{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .footer-cols{grid-template-columns:1fr}
  .process-steps{grid-template-columns:1fr}
  .process-line{display:none}
  .courses-grid-3{grid-template-columns:1fr}
  .cards-3{grid-template-columns:1fr}
  .resource-grid{grid-template-columns:1fr}
  .value-grid{grid-template-columns:1fr}
  .syllabus-grid{grid-template-columns:1fr}
  .brand-logo{height:46px}
}

body.theme-light{
  --bg-0:#f5f8ff;
  --bg-1:#ffffff;
  --card:rgba(255,255,255,.78);
  --card-2:rgba(255,255,255,.92);
  --stroke:rgba(11,27,43,.12);
  --stroke-2:rgba(11,27,43,.18);
  --text:#0b1b2b;
  --muted:rgba(11,27,43,.72);
  --muted-2:rgba(11,27,43,.56);
  --shadow:0 14px 55px rgba(11,27,43,.10);
  --shadow-2:0 18px 75px rgba(11,27,43,.14);
  background:
    radial-gradient(900px 620px at 18% -10%, rgba(56,232,255,.18), transparent 60%),
    radial-gradient(900px 620px at 90% 0%, rgba(178,76,255,.12), transparent 55%),
    radial-gradient(900px 700px at 50% 120%, rgba(74,108,255,.10), transparent 55%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
}

body.theme-light .site-header{
  background:rgba(255,255,255,.78);
  border-bottom:1px solid rgba(11,27,43,.08);
}
body.theme-light .site-header.is-scrolled{
  background:rgba(255,255,255,.90);
  border-bottom:1px solid rgba(11,27,43,.10);
}

body.theme-light .brand{
  border-color:rgba(11,27,43,.12);
  background:rgba(255,255,255,.70);
  box-shadow:0 14px 34px rgba(11,27,43,.10);
}
body.theme-light .brand-logo{filter:drop-shadow(0 12px 26px rgba(11,27,43,.14)) brightness(1.02) contrast(1.05)}

body.theme-light .nav{
  border-color:rgba(11,27,43,.12);
  background:rgba(255,255,255,.66);
}
body.theme-light .nav-link{color:rgba(11,27,43,.70)}
body.theme-light .nav-link:hover{color:rgba(11,27,43,.94)}

body.theme-light .mobile-menu{
  border-top:1px solid rgba(11,27,43,.08);
  background:rgba(255,255,255,.92);
}
body.theme-light .mobile-link{
  border-color:rgba(11,27,43,.12);
  background:rgba(255,255,255,.70);
  color:rgba(11,27,43,.72);
}
body.theme-light .mobile-link:hover{color:rgba(11,27,43,.94);border-color:rgba(74,108,255,.28)}

body.theme-light .btn{
  border-color:rgba(11,27,43,.14);
  background:rgba(255,255,255,.78);
  box-shadow:0 12px 30px rgba(11,27,43,.08);
}
body.theme-light .btn:hover{
  border-color:rgba(74,108,255,.40);
  box-shadow:0 16px 40px rgba(11,27,43,.12), 0 0 0 1px rgba(74,108,255,.10);
}
body.theme-light .btn-ghost{background:rgba(255,255,255,.62)}
body.theme-light .btn-primary{
  border-color:rgba(74,108,255,.30);
  background:linear-gradient(135deg, rgba(74,108,255,.14), rgba(178,76,255,.10));
}

body.theme-light .card{
  border-color:rgba(11,27,43,.12);
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow);
}

body.theme-light .hero-bg{
  opacity:1;
  filter:saturate(1.05) contrast(1.02);
}
body.theme-light .hero-bg::after{
  background:
    linear-gradient(180deg, rgba(245,248,255,.72), rgba(245,248,255,.92) 45%, rgba(255,255,255,1)),
    radial-gradient(900px 650px at 55% 0%, rgba(56,232,255,.10), transparent 55%),
    radial-gradient(800px 650px at 40% 30%, rgba(178,76,255,.08), transparent 50%);
}
body.theme-light .hero-slides{
  border-color:rgba(11,27,43,.10);
  background:rgba(255,255,255,.60);
}
body.theme-light .hero-title{
  background:linear-gradient(90deg, rgba(11,27,43,1), rgba(74,108,255,.96) 36%, rgba(178,76,255,.92));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:none;
}
body.theme-light .eyebrow{color:rgba(11,27,43,.66)}
body.theme-light .hero-subtitle{color:rgba(11,27,43,.72)}

body.theme-light .section-title,
body.theme-light .page-title{
  background:linear-gradient(90deg, rgba(11,27,43,1), rgba(74,108,255,.92), rgba(178,76,255,.88));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
body.theme-light .section-subtitle,
body.theme-light .page-subtitle{color:rgba(11,27,43,.72)}

body.theme-light .marquee::before{background:linear-gradient(90deg, rgba(245,248,255,1), transparent)}
body.theme-light .marquee::after{background:linear-gradient(270deg, rgba(245,248,255,1), transparent)}
body.theme-light .marquee-item{
  border-color:rgba(11,27,43,.12);
  background:rgba(255,255,255,.72);
  color:rgba(11,27,43,.72);
}

body.theme-light .stats-strip{border-top:1px solid rgba(11,27,43,.08);border-bottom:1px solid rgba(11,27,43,.08)}
body.theme-light .stats-bar{border-color:rgba(11,27,43,.10)}
body.theme-light .stat{border-color:rgba(11,27,43,.10);background:rgba(255,255,255,.70)}

body.theme-light .pill{border-color:rgba(11,27,43,.12);background:rgba(255,255,255,.70);color:rgba(11,27,43,.72)}

body.theme-light .input{
  border-color:rgba(11,27,43,.14);
  background:rgba(255,255,255,.78);
  color:rgba(11,27,43,.92);
}
body.theme-light .input option{background-color:#ffffff;color:#0b1b2b}
body.theme-light .input:focus{
  border-color:rgba(74,108,255,.44);
  box-shadow:0 0 0 3px rgba(74,108,255,.12);
  background:rgba(255,255,255,.92);
}

body.theme-light .site-footer{
  border-top:1px solid rgba(11,27,43,.10);
  background:linear-gradient(180deg, rgba(245,248,255,.96), rgba(255,255,255,1));
}
body.theme-light .footer-link{color:rgba(11,27,43,.72)}
body.theme-light .footer-muted{color:rgba(11,27,43,.58)}

.alert{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(11,27,43,.14);
  background:rgba(255,255,255,.86);
  color:rgba(11,27,43,.92);
  margin-bottom:12px;
  box-shadow:0 14px 40px rgba(11,27,43,.08);
}
.alert-success{
  border-color:rgba(40,167,69,.28);
  background:rgba(40,167,69,.08);
}
.alert-error{
  border-color:rgba(220,53,69,.28);
  background:rgba(220,53,69,.08);
}

.modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:22px 18px;
}
.modal[hidden]{display:none}
.modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(4,5,18,.55);
  z-index:1;
  cursor:pointer;
}
.modal-dialog{
  position:relative;
  width:min(560px, calc(100% - 24px));
  border-radius:24px;
  border:1px solid rgba(11,27,43,.14);
  background:rgba(255,255,255,.92);
  box-shadow:0 30px 90px rgba(0,0,0,.28);
  max-height:calc(100vh - 44px);
  overflow:hidden;
  z-index:2;
}
.modal-close{
  position:absolute;
  top:10px;
  right:10px;
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(11,27,43,.14);
  background:rgba(255,255,255,.85);
  font-size:22px;
  line-height:1;
  cursor:pointer;
  z-index:3;
}
.modal-media{
  background:rgba(255,255,255,1);
  overflow:auto;
  max-height:calc(100vh - 44px);
  padding-bottom:92px;
}
.modal-image{
  width:100%;
  height:auto;
  display:block;
  max-height:64vh;
  object-fit:contain;
  pointer-events:none;
}
.modal-actions{
  display:flex;
  gap:12px;
  padding:14px 14px 16px;
  justify-content:center;
  flex-wrap:wrap;
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:rgba(255,255,255,.96);
  border-top:1px solid rgba(11,27,43,.10);
  z-index:2;
}
.modal-form{
  position:absolute;
  left:0;
  right:0;
  bottom:76px;
  padding:14px 14px 16px;
  background:rgba(255,255,255,.98);
  border-top:1px solid rgba(11,27,43,.08);
  max-height:calc(100% - 120px);
  overflow:auto;
  z-index:3;
}
.modal-actions .btn{
  background:#7b2cff;
  border-color:#7b2cff;
  color:#ffffff;
  font-weight:800;
}
.modal-actions .btn:hover{
  background:#6a22e6;
  border-color:#6a22e6;
  box-shadow:0 16px 40px rgba(11,27,43,.14), 0 0 0 1px rgba(123,44,255,.12);
}

@media (max-width: 640px){
  .modal-actions{gap:10px}
  .modal-dialog{border-radius:20px}
}

body.theme-mw{
  --bg-0:#ffffff;
  --bg-1:#ffffff;
  --card:rgba(255,255,255,.96);
  --card-2:rgba(255,255,255,.98);
  --stroke:rgba(11,27,43,.12);
  --stroke-2:rgba(11,27,43,.18);
  --text:#0b1b2b;
  --muted:rgba(11,27,43,.72);
  --muted-2:rgba(11,27,43,.56);
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:#ffffff;
  color:#0b1b2b;
}
body.theme-mw a{color:inherit}

body.theme-mw .mini-top{color:rgba(11,27,43,.78)}
body.theme-mw .mini-sub{color:rgba(11,27,43,.60)}

body.theme-mw .site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(11,27,43,.08);
  backdrop-filter:blur(10px);
}
body.theme-mw .site-header.is-scrolled{
  background:rgba(255,255,255,.96);
  box-shadow:0 12px 30px rgba(11,27,43,.10);
}

body.theme-mw .brand{
  border:0;
  background:transparent;
  box-shadow:none;
  padding:6px 0;
}
body.theme-mw .brand-logo{
  height:44px;
  filter:none;
}

body.theme-mw .nav{
  border:0;
  background:transparent;
  box-shadow:none;
  padding:0;
  gap:22px;
}
body.theme-mw .nav-link{
  color:rgba(11,27,43,.78);
  font-weight:650;
  padding:8px 0;
}
body.theme-mw .nav-link::after{display:none}
body.theme-mw .nav-link:hover{color:#0b1b2b}

body.theme-mw .btn{
  border-radius:10px;
  padding:12px 16px;
  border:1px solid transparent;
  background:#7b2cff;
  color:#ffffff;
  font-weight:800;
  box-shadow:0 12px 26px rgba(123,44,255,.18);
}
body.theme-mw .btn:hover{
  transform:translateY(-1px);
  background:#6a22e6;
  border-color:#6a22e6;
}
body.theme-mw .btn-ghost{
  background:transparent;
  border-color:rgba(11,27,43,.16);
  color:#0b1b2b;
  box-shadow:none;
  font-weight:750;
}
body.theme-mw .btn-ghost:hover{
  background:rgba(11,27,43,.04);
  border-color:rgba(11,27,43,.22);
}
body.theme-mw .btn-sm{
  padding:10px 14px;
  font-size:14px;
}

body.theme-mw .icon-btn{
  border:1px solid rgba(11,27,43,.14);
  background:transparent;
  box-shadow:none;
}
body.theme-mw .icon-btn-lines::before,
body.theme-mw .icon-btn-lines::after{
  background:#7b2cff;
  box-shadow:none;
}

body.theme-mw .mobile-menu{
  background:rgba(255,255,255,.98);
  border-top:1px solid rgba(11,27,43,.08);
}
body.theme-mw .mobile-link{
  border:1px solid rgba(11,27,43,.10);
  background:rgba(11,27,43,.02);
  color:rgba(11,27,43,.78);
}
body.theme-mw .mobile-link:hover{
  border-color:rgba(123,44,255,.28);
  color:#0b1b2b;
}

body.theme-mw .hero{
  min-height:auto;
  padding:38px 0 28px;
}
body.theme-mw .hero-bg{
  inset:0;
  opacity:1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.96)),
    url("../images/main_banner.png");
  background-size:cover;
  background-position:center;
  filter:none;
}
body.theme-mw .hero-bg::after{display:none}
body.theme-mw .hero-slides{
  background:transparent;
  border:0;
  box-shadow:none;
  min-height:auto;
  overflow:visible;
}
body.theme-mw .hero-slide{
  position:relative;
  opacity:1;
  pointer-events:auto;
  display:grid;
  padding:0;
  transition:none;
}
body.theme-mw .hero-slide:not(.is-active){display:none}
body.theme-mw .hero-title{
  color:#0b1b2b;
  background:none;
  -webkit-background-clip:initial;
  background-clip:initial;
  font-size:44px;
  line-height:1.1;
  text-shadow:none;
}
body.theme-mw .eyebrow{
  color:rgba(11,27,43,.70);
  letter-spacing:.14em;
}
body.theme-mw .hero-subtitle{
  color:rgba(11,27,43,.72);
  font-size:17px;
}
body.theme-mw .hero-image-wrap{
  border-radius:18px;
  border:1px solid rgba(11,27,43,.10);
  box-shadow:0 18px 60px rgba(11,27,43,.12);
}
body.theme-mw .hero-image{
  height:460px;
  opacity:1;
  filter:none;
  transform:none;
}
body.theme-mw .hero-glow{display:none}
body.theme-mw .hero-controls{display:none}

body.theme-mw .acc-row{margin-top:18px}
body.theme-mw .acc-card{
  background:#ffffff;
  border:1px solid rgba(11,27,43,.10);
  box-shadow:0 16px 50px rgba(11,27,43,.08);
}
body.theme-mw .marquee{
  background:#ffffff;
  border:1px solid rgba(11,27,43,.10);
  box-shadow:0 16px 50px rgba(11,27,43,.08);
}
body.theme-mw .marquee::before,
body.theme-mw .marquee::after{display:none}
body.theme-mw .marquee-track{animation:marquee 34s linear infinite}

body.theme-mw .section{padding:64px 0}
body.theme-mw .section-title,
body.theme-mw .page-title{
  color:#0b1b2b;
  background:none;
  -webkit-background-clip:initial;
  background-clip:initial;
}
body.theme-mw .section-subtitle,
body.theme-mw .page-subtitle{
  color:rgba(11,27,43,.72);
}

body.theme-mw .card{
  border:1px solid rgba(11,27,43,.10);
  background:#ffffff;
  box-shadow:0 18px 60px rgba(11,27,43,.08);
  backdrop-filter:none;
}
body.theme-mw .service-card::before{display:none}
body.theme-mw .service-card:hover{
  transform:translateY(-2px);
  border-color:rgba(123,44,255,.22);
  box-shadow:0 22px 70px rgba(11,27,43,.10);
}
body.theme-mw .card-icon,
body.theme-mw .stat-icon,
body.theme-mw .process-icon,
body.theme-mw .avatar,
body.theme-mw .faq-icon,
body.theme-mw .value-icon,
body.theme-mw .mini-icon{
  background:rgba(123,44,255,.10);
  border:1px solid rgba(123,44,255,.18);
  box-shadow:none;
}

body.theme-mw .stats-strip{
  border-top:1px solid rgba(11,27,43,.08);
  border-bottom:1px solid rgba(11,27,43,.08);
}
body.theme-mw .stats-bar{
  background:rgba(123,44,255,.06);
  border:1px solid rgba(11,27,43,.10);
  box-shadow:none;
}
body.theme-mw .stat{
  background:#ffffff;
  border:1px solid rgba(11,27,43,.10);
}
body.theme-mw .stat-label{color:rgba(11,27,43,.70)}

body.theme-mw .course-overlay{display:none}
body.theme-mw .course-media{height:170px}
body.theme-mw .pill{
  background:rgba(11,27,43,.04);
  border:1px solid rgba(11,27,43,.10);
  color:rgba(11,27,43,.72);
}

body.theme-mw .process{
  background:#ffffff;
  border:1px solid rgba(11,27,43,.10);
  box-shadow:0 18px 60px rgba(11,27,43,.08);
}
body.theme-mw .process-step::before{display:none}
body.theme-mw .process-line{display:none}

body.theme-mw .cta-banner{
  background:#0b1b2b;
  border:0;
  box-shadow:0 22px 70px rgba(11,27,43,.16);
}
body.theme-mw .cta-title{color:#ffffff}
body.theme-mw .cta-text{color:rgba(255,255,255,.82)}
body.theme-mw .cta-actions .btn-ghost{
  border-color:rgba(255,255,255,.35);
  color:#ffffff;
}
body.theme-mw .cta-actions .btn-ghost:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.45);
}

body.theme-mw .contact-line{
  background:#ffffff;
  border:1px solid rgba(11,27,43,.10);
  color:rgba(11,27,43,.86);
}
body.theme-mw .award-row img{
  background:#ffffff;
  border:1px solid rgba(11,27,43,.10);
}

body.theme-mw .input{
  background:#ffffff;
  border:1px solid rgba(11,27,43,.14);
  color:#0b1b2b;
}
body.theme-mw .input:focus{
  border-color:rgba(123,44,255,.40);
  box-shadow:0 0 0 3px rgba(123,44,255,.12);
  background:#ffffff;
}

body.theme-mw .faq-q{color:#0b1b2b}
body.theme-mw .faq-a{color:rgba(11,27,43,.76)}

body.theme-mw .site-footer{
  background:#0b1b2b;
  border-top:0;
}
body.theme-mw .site-footer,
body.theme-mw .site-footer a{color:#ffffff}
body.theme-mw .footer-text{color:rgba(255,255,255,.78)}
body.theme-mw .footer-link{color:rgba(255,255,255,.78)}
body.theme-mw .footer-link:hover{color:#ffffff}
body.theme-mw .footer-muted{color:rgba(255,255,255,.65)}
body.theme-mw .footer-bottom{border-top:1px solid rgba(255,255,255,.16)}

body.theme-mw .modal-dialog{
  border:0;
  background:#ffffff;
  box-shadow:0 30px 90px rgba(11,27,43,.28);
}
body.theme-mw .modal-close{
  border:1px solid rgba(11,27,43,.14);
  background:#ffffff;
  color:#0b1b2b;
}
body.theme-mw .modal-form{
  padding:14px 14px 16px;
  border-top:1px solid rgba(11,27,43,.08);
}
body.theme-mw .modal-actions .btn{
  background:#7b2cff;
  border-color:#7b2cff;
  color:#ffffff;
  font-weight:800;
}
body.theme-mw .modal-actions .btn:hover{
  background:#6a22e6;
  border-color:#6a22e6;
}

@media (max-width: 980px){
  body.theme-mw .hero-image{height:320px}
}
