/* ============================================================
   COURSE PREMIUM UI  (scoped under .cx)
   Single-course page + course catalog. Frontend only.
   Dark mode follows the site's :root[data-theme="dark"].
   Theme: Dark Blue + White + Orange · Glassmorphism · 20px radius
   ============================================================ */

.cx {
  --cx-navy-900: #081634;
  --cx-navy-800: #0d2050;
  --cx-navy-700: #143a86;
  --cx-blue-600: #1e56d6;
  --cx-blue-500: #2f6be0;
  --cx-orange:   #ff7a1a;
  --cx-orange-2: #ffa04d;

  --cx-grad-blue:   linear-gradient(135deg, #143a86 0%, #1e56d6 60%, #2f6be0 100%);
  --cx-grad-orange: linear-gradient(135deg, #ff7a1a 0%, #ffa04d 100%);
  --cx-grad-mix:    linear-gradient(125deg, #081634 0%, #143a86 45%, #1e56d6 80%, #ff7a1a 145%);

  --cx-r:    20px;
  --cx-r-sm: 14px;
  --cx-r-lg: 28px;
  --cx-ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Default = blue (dark) theme with white text.
     Switches to light ONLY when the user picks light mode below. */
  --cx-ink: #eaf0ff;
  --cx-slate: #a6b1d4;
  --cx-faint: #7c86a8;
  --cx-bg: #060c1e;
  --cx-bg-2: #0a1226;
  --cx-surface: #0f1830;
  --cx-glass: rgba(20, 32, 62, 0.55);
  --cx-line: rgba(120, 160, 255, 0.16);
  --cx-line-2: rgba(120, 160, 255, 0.08);
  --cx-blue-100: #152049;
  --cx-shadow-sm: 0 4px 16px -8px rgba(0, 0, 0, 0.5);
  --cx-shadow: 0 18px 46px -18px rgba(0, 0, 0, 0.62);
  --cx-shadow-lg: 0 34px 66px -26px rgba(0, 0, 0, 0.72);

  color: var(--cx-ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(1100px 620px at 88% -6%, #0f2350 0%, transparent 58%),
    radial-gradient(900px 560px at -6% 10%, #2a1707 0%, transparent 55%),
    var(--cx-bg);
  overflow-x: clip;
  position: relative;
}

/* Light mode: only when the user explicitly toggles light */
:root[data-theme="light"] .cx {
  --cx-ink: #131d38;
  --cx-slate: #56618a;
  --cx-faint: #8a93b4;
  --cx-bg: #eef3fc;
  --cx-bg-2: #f6f9ff;
  --cx-surface: #ffffff;
  --cx-glass: rgba(255, 255, 255, 0.62);
  --cx-line: rgba(20, 58, 134, 0.12);
  --cx-line-2: rgba(20, 58, 134, 0.07);
  --cx-blue-100: #e9f0ff;
  --cx-shadow-sm: 0 4px 16px -8px rgba(13, 32, 80, 0.25);
  --cx-shadow: 0 16px 44px -18px rgba(13, 32, 80, 0.35);
  --cx-shadow-lg: 0 34px 66px -26px rgba(13, 32, 80, 0.5);
  background:
    radial-gradient(1100px 620px at 88% -6%, #dfeaff 0%, transparent 58%),
    radial-gradient(900px 560px at -6% 10%, #ffe8d4 0%, transparent 55%),
    var(--cx-bg);
}

/* ---------- Primitives ---------- */
.cx-wrap { max-width: 1200px; margin: 0 auto; padding: 0 22px; }
.cx section { padding: 74px 0; position: relative; }
.cx section.tight { padding: 52px 0; }
.cx-alt { background: var(--cx-bg-2); }
:root:not([data-theme="light"]) .cx-alt { background: #0a1226; }

.cx-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cx-blue-600);
  background: var(--cx-blue-100); border: 1px solid var(--cx-line);
  padding: 7px 15px; border-radius: 100px;
}
:root:not([data-theme="light"]) .cx-eyebrow { color: #9dbcff; }
.cx-eyebrow i { color: var(--cx-orange); }

.cx-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.cx-head h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 2.5rem); line-height: 1.12;
  letter-spacing: -0.02em; font-weight: 700; margin: 16px 0 12px; color: var(--cx-ink);
  text-wrap: balance;
}
.cx-head h2 .hl, .cx .hl {
  background: var(--cx-grad-orange); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.cx-head p { color: var(--cx-slate); font-size: 1.02rem; margin: 0; text-wrap: pretty; }

/* ---------- Buttons ---------- */
.cx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 0.98rem; padding: 14px 26px; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform 0.35s var(--cx-ease), box-shadow 0.35s var(--cx-ease), background 0.3s, color 0.3s;
  will-change: transform; line-height: 1;
}
.cx-btn i { transition: transform 0.35s var(--cx-ease); }
.cx-btn-primary { background: var(--cx-grad-orange); color: #fff;
  box-shadow: 0 12px 26px -10px rgba(255, 122, 26, 0.7); }
.cx-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -10px rgba(255, 122, 26, 0.85); }
.cx-btn-primary:hover i { transform: translateX(4px); }
.cx-btn-blue { background: var(--cx-grad-blue); color: #fff;
  box-shadow: 0 12px 26px -12px rgba(30, 86, 214, 0.7); }
.cx-btn-blue:hover { transform: translateY(-3px); }
.cx-btn-ghost { background: var(--cx-glass); color: var(--cx-ink);
  border-color: var(--cx-line); backdrop-filter: blur(10px); }
.cx-btn-ghost:hover { transform: translateY(-3px); border-color: var(--cx-blue-500); color: var(--cx-blue-600); }
:root:not([data-theme="light"]) .cx-btn-ghost:hover { color: #9dbcff; }
.cx-btn-wa { background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; }
.cx-btn-wa:hover { transform: translateY(-3px); }
.cx-btn-block { width: 100%; }

/* ---------- Floating blobs ---------- */
.cx-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; z-index: 0;
  pointer-events: none; animation: cxFloat 12s ease-in-out infinite; }
.cx-blob.b1 { width: 300px; height: 300px; background: #ff9a3d55; top: -40px; right: -30px; }
.cx-blob.b2 { width: 360px; height: 360px; background: #2f6be055; bottom: -70px; left: -50px; animation-delay: -4s; }
@keyframes cxFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-24px) scale(1.05); } }
@media (prefers-reduced-motion: reduce) { .cx-blob { animation: none; } }

/* ============================================================
   1 · HERO (split: info + admission card)
   ============================================================ */
.cx-hero { position: relative; overflow: hidden; padding: 0;
  background: var(--cx-grad-mix); color: #fff; isolation: isolate; }
.cx-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.28;
  background-image: radial-gradient(circle at 18% 24%, #ffffff 0 1px, transparent 1.6px); background-size: 26px 26px; }
.cx-hero .cx-wrap { position: relative; z-index: 2; padding-top: 44px; padding-bottom: 90px; }
.cx-hero-grid { display: grid; grid-template-columns: 1.25fr 0.85fr; gap: 40px; align-items: center; }
.cx-hero-info { align-self: start; }
.cx-breadcrumb { font-size: 0.82rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 16px; }
.cx-breadcrumb a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.cx-breadcrumb a:hover { color: #fff; }
.cx-hero-badge { display: inline-flex; align-items: center; gap: 9px; font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: #ffd9b8; background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22); padding: 8px 15px; border-radius: 100px; backdrop-filter: blur(8px); }
.cx-hero h1 { font-family: "Space Grotesk", "Inter", sans-serif; font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.06; letter-spacing: -0.03em; font-weight: 700; margin: 18px 0 0; max-width: 18ch; text-wrap: balance; }
.cx-hero > .cx-wrap p.cx-hero-desc { margin: 16px 0 0; max-width: 52ch; font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.82); line-height: 1.62; }
.cx-hero-facts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.cx-fact { display: inline-flex; align-items: center; gap: 9px; font-size: 0.86rem; font-weight: 500;
  color: #fff; background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 9px 15px; border-radius: 100px; backdrop-filter: blur(8px); }
.cx-fact i { color: var(--cx-orange-2); }
.cx-fact .stars { color: #ffcf4d; letter-spacing: 1px; }
.cx-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Admission card */
.cx-admit { position: relative; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--cx-r-lg); padding: 8px; backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.5); animation: cxCardFloat 6s ease-in-out infinite; }
@keyframes cxCardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .cx-admit { animation: none; } }
.cx-admit-media { border-radius: 22px; overflow: hidden; height: 168px; background: var(--cx-grad-blue);
  display: grid; place-items: center; position: relative; }
.cx-admit-media img { width: 100%; height: 100%; object-fit: cover; }
.cx-admit-media i { font-size: 3.4rem; color: rgba(255, 255, 255, 0.9); }
.cx-admit-media .cx-admit-tag { position: absolute; top: 14px; left: 14px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: #fff; background: var(--cx-grad-orange);
  padding: 6px 12px; border-radius: 100px; }
.cx-admit-body { padding: 22px 20px 20px; color: #fff; }
.cx-admit-row { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.18); }
.cx-admit-row:last-of-type { border-bottom: none; }
.cx-admit-row .k { display: inline-flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, 0.78); font-size: 0.9rem; }
.cx-admit-row .k i { color: var(--cx-orange-2); width: 18px; text-align: center; }
.cx-admit-row .v { font-weight: 700; font-size: 0.96rem; }
.cx-admit-row .v.free { color: #7dffb0; }
.cx-admit-fee { text-align: center; margin: 6px 0 4px; }
.cx-admit-fee .amt { font-family: "Space Grotesk", sans-serif; font-size: 2rem; font-weight: 700; }
.cx-admit-fee .emi { font-size: 0.8rem; color: rgba(255, 255, 255, 0.72); }
.cx-admit .cx-btn { margin-top: 14px; }
.cx-admit-note { text-align: center; font-size: 0.78rem; color: rgba(255, 255, 255, 0.7); margin: 12px 0 0; }

.cx-hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 1; line-height: 0; }
.cx-hero-wave svg { width: 100%; height: 66px; display: block; }
.cx-hero-wave path { fill: var(--cx-bg); }

/* ---------- Hero background decoration (circuit / glow / particles) ---------- */
.cx-hero-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.cx-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.cx-glow-1 { width: 520px; height: 520px; top: -160px; right: -80px;
  background: radial-gradient(circle, rgba(47,107,224,0.55), transparent 70%); }
.cx-glow-2 { width: 460px; height: 460px; bottom: -180px; left: -120px;
  background: radial-gradient(circle, rgba(20,58,134,0.5), transparent 70%); }
.cx-circuit { position: absolute; top: 0; height: 100%; width: 260px; opacity: 0.5; }
.cx-circuit-l { left: 0; } .cx-circuit-r { right: 0; }
.cx-nodes circle { filter: drop-shadow(0 0 4px rgba(150,190,255,0.9)); animation: cxNode 3.4s ease-in-out infinite; }
.cx-nodes circle:nth-child(2n) { animation-delay: 0.6s; }
.cx-nodes circle:nth-child(3n) { animation-delay: 1.3s; }
@keyframes cxNode { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }
.cx-particle { position: absolute; left: var(--x); top: var(--y); width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, rgba(160,200,255,0.95), rgba(160,200,255,0) 70%);
  transform: scale(var(--s)); animation: cxFloat var(--d) ease-in-out infinite; }
@keyframes cxFloat { 0%,100% { transform: translate(0,0) scale(var(--s)); opacity: 0.35; }
  50% { transform: translate(14px,-26px) scale(var(--s)); opacity: 0.9; } }
@media (prefers-reduced-motion: reduce) { .cx-nodes circle, .cx-particle { animation: none; } }

/* Glowing card border to match the premium reference */
.cx-admit { border-color: rgba(120,170,255,0.4);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.5), 0 0 0 1px rgba(120,170,255,0.08), 0 0 60px -22px rgba(47,107,224,0.6); }

/* ---------- In-hero trust / benefits strip ---------- */
.cx-hero-trust { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 26px;
  border-radius: 18px; overflow: hidden; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(150,190,255,0.18); backdrop-filter: blur(8px); }
.cx-trust-col { padding: 18px 16px; position: relative; }
.cx-trust-col + .cx-trust-col::before { content: ""; position: absolute; left: 0; top: 18%; height: 64%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(150,190,255,0.28), transparent); }
.cx-trust-col i { color: var(--cx-orange-2); font-size: 1.2rem; display: block; margin-bottom: 9px; }
.cx-trust-col b { display: block; color: #fff; font-size: 0.95rem; }
.cx-trust-col small { display: block; color: rgba(255,255,255,0.65); font-size: 0.78rem; margin-top: 3px; }
.cx-trust-col { transition: background 0.3s var(--cx-ease); }
.cx-trust-col:hover { background: rgba(255,255,255,0.05); }
.cx-trust-col:hover i { transform: translateY(-2px); transition: transform 0.3s var(--cx-ease); }

/* Blue hero glow */
.cx-glow-1 { background: radial-gradient(circle, rgba(47,107,224,0.5), transparent 70%); }

/* Card header replacing the removed fee block */
.cx-admit-head { text-align: center; margin: 6px 0 14px; }
.cx-admit-head h3 { font-family: "Space Grotesk", sans-serif; font-size: 1.3rem; font-weight: 700; margin: 0 0 4px; color: #fff; }
.cx-admit-head p { margin: 0; font-size: 0.84rem; color: rgba(255,255,255,0.72); line-height: 1.5; }

/* ---------- Interactivity: 3D tilt + parallax ---------- */
.cx-hero-side { transform-style: preserve-3d; transition: transform 0.5s var(--cx-ease); will-change: transform; }
.cx-hero-bg { transition: transform 0.5s ease-out; will-change: transform; }
.cx-fact { transition: transform 0.3s var(--cx-ease), background 0.3s, border-color 0.3s; }
.cx-fact:hover { transform: translateY(-3px); background: rgba(255,255,255,0.14); border-color: rgba(120,170,255,0.6); }
@media (prefers-reduced-motion: reduce) {
  .cx-hero-side, .cx-hero-bg { transition: none !important; transform: none !important; }
}

@media (max-width: 900px) {
  .cx-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .cx-hero .cx-wrap { padding-top: 40px; padding-bottom: 72px; }
  .cx-hero-side { max-width: 520px; width: 100%; margin: 0 auto; }
  .cx-circuit { opacity: 0.3; }
}
@media (max-width: 560px) {
  .cx-hero-trust { grid-template-columns: 1fr 1fr; }
  .cx-trust-col:nth-child(2n+1)::before { display: none; }
  .cx-trust-col:nth-child(3), .cx-trust-col:nth-child(4) { border-top: 1px solid rgba(150,190,255,0.14); }
  .cx-circuit { display: none; }
}

/* ============================================================
   2 · COUNTERS
   ============================================================ */
.cx-counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cx-counter { position: relative; text-align: center; background: var(--cx-glass); border: 1px solid var(--cx-line);
  border-radius: var(--cx-r); padding: 30px 22px; backdrop-filter: blur(14px); box-shadow: var(--cx-shadow-sm);
  transition: transform 0.4s var(--cx-ease), box-shadow 0.4s var(--cx-ease); overflow: hidden; }
.cx-counter::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--cx-grad-orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--cx-ease); }
.cx-counter:hover { transform: translateY(-8px); box-shadow: var(--cx-shadow); }
.cx-counter:hover::before { transform: scaleX(1); }
.cx-counter .ic { width: 58px; height: 58px; border-radius: 16px; margin: 0 auto 14px; display: grid; place-items: center;
  font-size: 1.4rem; color: #fff; background: var(--cx-grad-blue); box-shadow: 0 10px 22px -10px rgba(30, 86, 214, 0.7); }
.cx-counter:nth-child(even) .ic { background: var(--cx-grad-orange); box-shadow: 0 10px 22px -10px rgba(255, 122, 26, 0.7); }
.cx-counter h3 { font-family: "Space Grotesk", sans-serif; font-size: 2.1rem; font-weight: 700; margin: 0; color: var(--cx-ink); line-height: 1; }
.cx-counter span.l { display: block; margin-top: 7px; color: var(--cx-slate); font-weight: 500; font-size: 0.92rem; }
@media (max-width: 860px) { .cx-counters { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   3 · WHY / FEATURE CARDS  &  8 · PLACEMENT feature reuse
   ============================================================ */
.cx-feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cx-feat { background: var(--cx-glass); border: 1px solid var(--cx-line); border-radius: var(--cx-r);
  padding: 28px 24px; backdrop-filter: blur(14px); box-shadow: var(--cx-shadow-sm);
  transition: transform 0.4s var(--cx-ease), box-shadow 0.4s var(--cx-ease); }
.cx-feat:hover { transform: translateY(-8px); box-shadow: var(--cx-shadow); }
.cx-feat .ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; font-size: 1.35rem;
  margin-bottom: 16px; color: var(--cx-blue-600); background: var(--cx-blue-100); border: 1px solid var(--cx-line); transition: 0.35s var(--cx-ease); }
.cx-feat:hover .ic { background: var(--cx-grad-orange); color: #fff; border-color: transparent; transform: rotate(-6deg); }
.cx-feat h3 { margin: 0 0 7px; font-size: 1.04rem; font-weight: 700; color: var(--cx-ink); font-family: "Space Grotesk", sans-serif; }
.cx-feat p { margin: 0; color: var(--cx-slate); font-size: 0.9rem; line-height: 1.55; }
@media (max-width: 1000px) { .cx-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cx-feat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   4 · SKILLS grid
   ============================================================ */
.cx-skills { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cx-skill { background: var(--cx-surface); border: 1px solid var(--cx-line); border-radius: var(--cx-r-sm);
  padding: 22px 14px; text-align: center; box-shadow: var(--cx-shadow-sm);
  transition: transform 0.35s var(--cx-ease), box-shadow 0.35s var(--cx-ease), border-color 0.3s; }
.cx-skill:hover { transform: translateY(-6px) scale(1.03); box-shadow: var(--cx-shadow); border-color: var(--cx-blue-500); }
.cx-skill i { font-size: 1.9rem; background: var(--cx-grad-blue); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; }
.cx-skill:nth-child(even) i { background: var(--cx-grad-orange); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cx-skill span { display: block; margin-top: 10px; font-weight: 600; font-size: 0.86rem; color: var(--cx-ink); }
@media (max-width: 900px) { .cx-skills { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px) { .cx-skills { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   5 · CURRICULUM accordion (native <details>)
   ============================================================ */
.cx-curriculum { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.cx-mod { background: var(--cx-glass); border: 1px solid var(--cx-line); border-radius: var(--cx-r-sm);
  backdrop-filter: blur(12px); overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s; }
.cx-mod[open] { box-shadow: var(--cx-shadow-sm); border-color: var(--cx-blue-500); }
.cx-mod summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; gap: 16px; }
.cx-mod summary::-webkit-details-marker { display: none; }
.cx-mod .mnum { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; color: #fff; background: var(--cx-grad-blue); }
.cx-mod[open] .mnum { background: var(--cx-grad-orange); }
.cx-mod .mtitle { flex: 1; }
.cx-mod .mtitle b { display: block; font-size: 1.02rem; color: var(--cx-ink); font-weight: 700; }
.cx-mod .mtitle small { color: var(--cx-faint); font-size: 0.8rem; }
.cx-mod .mchev { flex: 0 0 auto; color: var(--cx-blue-600); transition: transform 0.4s var(--cx-ease); }
.cx-mod[open] .mchev { transform: rotate(180deg); }
.cx-mod .mbody { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--cx-ease), padding 0.45s var(--cx-ease);
  padding: 0 22px; }
.cx-mod[open] .mbody { max-height: 400px; padding: 0 22px 20px; }
.cx-mod .mbody ul { margin: 0; padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.cx-mod .mbody li { display: flex; gap: 10px; color: var(--cx-slate); font-size: 0.94rem; }
.cx-mod .mbody li i { color: var(--cx-orange); margin-top: 3px; }
.cx-mod .mprog { margin-top: 14px; height: 6px; border-radius: 100px; background: var(--cx-line); overflow: hidden; }
.cx-mod .mprog span { display: block; height: 100%; border-radius: 100px; background: var(--cx-grad-orange); }

/* ============================================================
   6 · ROADMAP timeline
   ============================================================ */
.cx-road { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; position: relative; }
.cx-road::before { content: ""; position: absolute; top: 30px; left: 7%; right: 7%; height: 3px;
  background: linear-gradient(90deg, var(--cx-blue-500), var(--cx-orange)); border-radius: 3px; z-index: 0; }
.cx-road-step { position: relative; z-index: 1; text-align: center; }
.cx-road-dot { width: 62px; height: 62px; margin: 0 auto 12px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.3rem; color: #fff; background: var(--cx-grad-blue); border: 4px solid var(--cx-bg);
  box-shadow: 0 12px 24px -12px rgba(30, 86, 214, 0.7); transition: transform 0.4s var(--cx-ease); }
.cx-road-step:nth-child(even) .cx-road-dot { background: var(--cx-grad-orange); box-shadow: 0 12px 24px -12px rgba(255, 122, 26, 0.7); }
.cx-road-step:hover .cx-road-dot { transform: translateY(-6px) scale(1.06); }
.cx-road-step .st { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--cx-faint); }
.cx-road-step h5 { margin: 3px 0 0; font-size: 0.9rem; font-weight: 700; color: var(--cx-ink); }
@media (max-width: 860px) { .cx-road { grid-template-columns: repeat(3, 1fr); gap: 24px 10px; } .cx-road::before { display: none; } }
@media (max-width: 460px) { .cx-road { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   7 · PROJECTS  /  15 · RELATED — snap slider + cards
   ============================================================ */
.cx-slider { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 22px; scrollbar-width: thin; }
.cx-slider::-webkit-scrollbar { height: 8px; }
.cx-slider::-webkit-scrollbar-thumb { background: var(--cx-line); border-radius: 100px; }
.cx-proj { flex: 0 0 auto; width: 360px; scroll-snap-align: start; background: var(--cx-surface);
  border: 1px solid var(--cx-line); border-radius: var(--cx-r); overflow: hidden; box-shadow: var(--cx-shadow-sm);
  transition: transform 0.4s var(--cx-ease), box-shadow 0.4s var(--cx-ease); }
.cx-proj:hover { transform: translateY(-8px); box-shadow: var(--cx-shadow-lg); }
.cx-proj-media { height: 180px; background: var(--cx-grad-mix); display: grid; place-items: center; position: relative; overflow: hidden; }
.cx-proj-media i { font-size: 3rem; color: rgba(255, 255, 255, 0.92); }
.cx-proj-media::after { content: ""; position: absolute; inset: 0; opacity: 0.25;
  background-image: radial-gradient(circle at 70% 30%, #fff 0 1px, transparent 1.4px); background-size: 22px 22px; }
.cx-proj-body { padding: 22px 22px 24px; }
.cx-proj-body h4 { margin: 0 0 8px; font-family: "Space Grotesk", sans-serif; font-size: 1.1rem; color: var(--cx-ink); }
.cx-proj-body p { margin: 0 0 14px; color: var(--cx-slate); font-size: 0.9rem; line-height: 1.55; }
.cx-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.cx-tag { font-size: 0.72rem; font-weight: 600; color: var(--cx-blue-600); background: var(--cx-blue-100);
  border: 1px solid var(--cx-line); padding: 4px 11px; border-radius: 100px; }
:root:not([data-theme="light"]) .cx-tag { color: #9dbcff; }
.cx-proj-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem;
  color: var(--cx-orange); text-decoration: none; }
.cx-proj-link:hover { gap: 12px; }
@media (max-width: 480px) { .cx-proj { width: 84vw; } }

/* ============================================================
   8 · PLACEMENT — packages + logos
   ============================================================ */
.cx-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.cx-pkg { position: relative; background: var(--cx-surface); border: 1px solid var(--cx-line); border-radius: var(--cx-r);
  padding: 32px 28px; box-shadow: var(--cx-shadow-sm); overflow: hidden;
  transition: transform 0.4s var(--cx-ease), box-shadow 0.4s var(--cx-ease); }
.cx-pkg:hover { transform: translateY(-10px); box-shadow: var(--cx-shadow-lg); }
.cx-pkg.featured { background: var(--cx-grad-blue); color: #fff; }
.cx-pkg.featured h4, .cx-pkg.featured .amt { color: #fff; }
.cx-pkg.featured p { color: rgba(255, 255, 255, 0.8); }
.cx-pkg .ic { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; font-size: 1.4rem;
  color: #fff; background: var(--cx-grad-blue); margin-bottom: 16px; }
.cx-pkg.featured .ic { background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.25); }
.cx-pkg h4 { margin: 0 0 4px; font-family: "Space Grotesk", sans-serif; font-size: 1.12rem; color: var(--cx-ink); }
.cx-pkg .amt { font-family: "Space Grotesk", sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--cx-blue-600); margin: 6px 0 10px; }
.cx-pkg p { margin: 0; color: var(--cx-slate); font-size: 0.9rem; line-height: 1.55; }
.cx-pkg-tag { position: absolute; top: 18px; right: 18px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #fff; background: var(--cx-grad-orange); padding: 5px 11px; border-radius: 100px; }
@media (max-width: 860px) { .cx-pkg-grid { grid-template-columns: 1fr; } }

.cx-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }
.cx-logo { width: 130px; height: 78px; display: grid; place-items: center; padding: 16px; background: var(--cx-glass);
  border: 1px solid var(--cx-line); border-radius: var(--cx-r-sm); backdrop-filter: blur(10px);
  transition: transform 0.35s var(--cx-ease), border-color 0.3s; }
.cx-logo:hover { transform: translateY(-5px); border-color: var(--cx-blue-500); }
.cx-logo img { max-width: 100%; max-height: 40px; object-fit: contain; filter: grayscale(1); opacity: 0.72; transition: 0.35s; }
.cx-logo:hover img { filter: grayscale(0); opacity: 1; }

/* ============================================================
   10 · TRAINER
   ============================================================ */
.cx-trainer { display: grid; grid-template-columns: 300px 1fr; gap: 34px; align-items: center;
  background: var(--cx-glass); border: 1px solid var(--cx-line); border-radius: var(--cx-r-lg);
  padding: 34px; backdrop-filter: blur(14px); box-shadow: var(--cx-shadow-sm); }
.cx-trainer-photo { position: relative; border-radius: var(--cx-r); overflow: hidden; aspect-ratio: 1; background: var(--cx-grad-blue);
  display: grid; place-items: center; box-shadow: var(--cx-shadow); }
.cx-trainer-photo img { width: 100%; height: 100%; object-fit: cover; }
.cx-trainer-photo i { font-size: 4.5rem; color: rgba(255, 255, 255, 0.9); }
.cx-trainer-info h3 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: 1.4rem; color: var(--cx-ink); }
.cx-trainer-info .role { color: var(--cx-orange); font-weight: 600; font-size: 0.95rem; }
.cx-trainer-info p { color: var(--cx-slate); line-height: 1.6; margin: 12px 0 16px; }
.cx-trainer-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
@media (max-width: 720px) { .cx-trainer { grid-template-columns: 1fr; text-align: center; }
  .cx-trainer-photo { max-width: 240px; margin: 0 auto; } .cx-trainer-skills { justify-content: center; } }

/* ============================================================
   11 · CERTIFICATE
   ============================================================ */
.cx-cert { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; align-items: center; }
.cx-cert-frame { position: relative; border-radius: var(--cx-r); overflow: hidden; padding: 22px;
  background: var(--cx-grad-mix); box-shadow: var(--cx-shadow-lg); }
.cx-cert-paper { background: #fff; border-radius: 12px; padding: 30px 26px; text-align: center; color: #1a2a4a;
  border: 3px double #c9a04a; }
.cx-cert-paper .seal { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 12px; display: grid; place-items: center;
  color: #fff; font-size: 1.4rem; background: var(--cx-grad-orange); }
.cx-cert-paper h4 { margin: 0 0 6px; font-family: "Space Grotesk", sans-serif; letter-spacing: 0.02em; }
.cx-cert-paper .sub { font-size: 0.82rem; color: #6a7590; }
.cx-cert-paper .line { height: 1px; background: #d8ddea; margin: 16px 0; }
.cx-cert-paper .name { font-family: "Space Grotesk", sans-serif; font-size: 1.3rem; font-weight: 700; color: #143a86; }
.cx-verify { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; color: #128c4a;
  background: #e2f7ea; border: 1px solid #b6e6c8; padding: 6px 13px; border-radius: 100px; margin-top: 16px; }
:root:not([data-theme="light"]) .cx-verify { background: #0f2a1c; color: #6fe0a0; border-color: #1e5738; }
.cx-cert-info h3 { font-family: "Space Grotesk", sans-serif; font-size: 1.5rem; margin: 0 0 10px; color: var(--cx-ink); }
.cx-cert-info ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.cx-cert-info li { display: flex; gap: 10px; color: var(--cx-slate); }
.cx-cert-info li i { color: var(--cx-orange); margin-top: 3px; }
@media (max-width: 760px) { .cx-cert { grid-template-columns: 1fr; } }

/* ============================================================
   12 · BATCHES table
   ============================================================ */
.cx-table-wrap { overflow-x: auto; border-radius: var(--cx-r); border: 1px solid var(--cx-line); box-shadow: var(--cx-shadow-sm); }
.cx-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--cx-surface); }
.cx-table thead th { background: var(--cx-grad-blue); color: #fff; text-align: left; padding: 15px 18px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; }
.cx-table tbody td { padding: 15px 18px; border-bottom: 1px solid var(--cx-line-2); color: var(--cx-ink); font-size: 0.92rem; }
.cx-table tbody tr:last-child td { border-bottom: none; }
.cx-table tbody tr:hover { background: var(--cx-bg-2); }
.cx-pill { display: inline-block; font-size: 0.74rem; font-weight: 600; padding: 4px 11px; border-radius: 100px;
  background: var(--cx-blue-100); color: var(--cx-blue-600); border: 1px solid var(--cx-line); }
:root:not([data-theme="light"]) .cx-pill { color: #9dbcff; }
.cx-pill.wk { background: #fff0e2; color: #c25e12; border-color: #ffd6b0; }
:root:not([data-theme="light"]) .cx-pill.wk { background: #2e1c0c; color: #ffb877; border-color: #5a3a1a; }

/* ============================================================
   13 · FAQ
   ============================================================ */
.cx-faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.cx-faq details { background: var(--cx-glass); border: 1px solid var(--cx-line); border-radius: var(--cx-r-sm);
  backdrop-filter: blur(12px); overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s; }
.cx-faq details[open] { box-shadow: var(--cx-shadow-sm); border-color: var(--cx-blue-500); }
.cx-faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 1rem; color: var(--cx-ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cx-faq summary::-webkit-details-marker { display: none; }
.cx-faq summary .ic { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--cx-blue-100);
  color: var(--cx-blue-600); display: grid; place-items: center; transition: transform 0.4s var(--cx-ease), background 0.3s, color 0.3s; }
.cx-faq details[open] summary .ic { transform: rotate(135deg); background: var(--cx-grad-orange); color: #fff; }
.cx-faq .ans { max-height: 0; overflow: hidden; padding: 0 22px; transition: max-height 0.45s var(--cx-ease), padding 0.45s var(--cx-ease); }
.cx-faq details[open] .ans { max-height: 340px; padding: 0 22px 20px; }
.cx-faq .ans p { margin: 0; color: var(--cx-slate); line-height: 1.62; }

/* ============================================================
   14 · CTA banner
   ============================================================ */
.cx-cta { position: relative; border-radius: var(--cx-r-lg); overflow: hidden; padding: 62px 40px; text-align: center;
  color: #fff; isolation: isolate; }
.cx-cta::before { content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(120deg, #081634, #1e56d6, #ff7a1a, #143a86); background-size: 300% 300%; animation: cxGrad 14s ease infinite; }
@keyframes cxGrad { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@media (prefers-reduced-motion: reduce) { .cx-cta::before { animation: none; } }
.cx-cta::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.22;
  background-image: radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 1.6px); background-size: 30px 30px; }
.cx-cta h2 { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.6rem, 3.6vw, 2.4rem); margin: 0 0 12px; color: #fff; text-wrap: balance; }
.cx-cta p { max-width: 540px; margin: 0 auto 28px; color: rgba(255, 255, 255, 0.86); font-size: 1.04rem; }
.cx-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.cx-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: 10px; padding: 12px 14px;
  background: var(--cx-surface); border-top: 1px solid var(--cx-line); box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.25); }
.cx-sticky .cx-btn { flex: 1; padding: 13px 16px; font-size: 0.92rem; }
@media (max-width: 720px) { .cx-sticky { display: flex; } .cx { padding-bottom: 72px; } }

/* ============================================================
   CATALOG (courses.php) specifics
   ============================================================ */
.cx-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.cx-filter-btn { font-weight: 600; font-size: 0.9rem; padding: 10px 20px; border-radius: 100px; cursor: pointer;
  background: var(--cx-glass); border: 1px solid var(--cx-line); color: var(--cx-slate); backdrop-filter: blur(10px);
  transition: 0.3s var(--cx-ease); }
.cx-filter-btn:hover { color: var(--cx-blue-600); border-color: var(--cx-blue-500); transform: translateY(-2px); }
.cx-filter-btn.active { background: var(--cx-grad-blue); color: #fff; border-color: transparent; box-shadow: 0 10px 22px -12px rgba(30,86,214,0.7); }

.cx-course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.cx-course { display: flex; flex-direction: column; background: var(--cx-surface); border: 1px solid var(--cx-line);
  border-radius: var(--cx-r); overflow: hidden; text-decoration: none; box-shadow: var(--cx-shadow-sm);
  transition: transform 0.4s var(--cx-ease), box-shadow 0.4s var(--cx-ease); }
.cx-course:hover { transform: translateY(-10px); box-shadow: var(--cx-shadow-lg); }
.cx-course-media { height: 190px; position: relative; background: var(--cx-grad-mix); display: grid; place-items: center; overflow: hidden; }
.cx-course-media > i { font-size: 3rem; color: rgba(255, 255, 255, 0.92); position: relative; z-index: 1; }
.cx-course-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--cx-ease); }
.cx-course:hover .cx-course-media img { transform: scale(1.07); }
.cx-course-cat { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: #fff; background: var(--cx-grad-orange); padding: 6px 12px; border-radius: 100px; }
.cx-course-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.cx-course-body h3 { margin: 0 0 8px; font-family: "Space Grotesk", sans-serif; font-size: 1.16rem; color: var(--cx-ink); }
.cx-course-body p { margin: 0 0 16px; color: var(--cx-slate); font-size: 0.9rem; line-height: 1.55; }
.cx-course-meta { display: flex; gap: 16px; margin-bottom: 18px; color: var(--cx-slate); font-size: 0.84rem; }
.cx-course-meta i { color: var(--cx-orange); }
.cx-course-more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem;
  color: var(--cx-blue-600); }
:root:not([data-theme="light"]) .cx-course-more { color: #9dbcff; }
.cx-course:hover .cx-course-more { gap: 12px; }
.cx-course.cx-hidden { display: none; }

/* Catalog testimonials */
.cx-testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.cx-testi { background: var(--cx-glass); border: 1px solid var(--cx-line); border-radius: var(--cx-r); padding: 28px 26px;
  backdrop-filter: blur(14px); box-shadow: var(--cx-shadow-sm); transition: transform 0.4s var(--cx-ease); }
.cx-testi:hover { transform: translateY(-6px); }
.cx-testi .stars { color: #ffcf4d; margin-bottom: 12px; letter-spacing: 2px; }
.cx-testi p { color: var(--cx-ink); font-size: 0.96rem; line-height: 1.6; margin: 0 0 18px; }
.cx-testi .who { display: flex; align-items: center; gap: 13px; }
.cx-testi .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: top center; }
.cx-testi .who .av { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: var(--cx-grad-orange); font-weight: 700; }
.cx-testi .who b { display: block; color: var(--cx-ink); }
.cx-testi .who span { color: var(--cx-faint); font-size: 0.84rem; }

/* Catalog blog */
.cx-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.cx-blog { display: flex; flex-direction: column; background: var(--cx-surface); border: 1px solid var(--cx-line);
  border-radius: var(--cx-r); overflow: hidden; text-decoration: none; box-shadow: var(--cx-shadow-sm);
  transition: transform 0.4s var(--cx-ease), box-shadow 0.4s var(--cx-ease); }
.cx-blog:hover { transform: translateY(-8px); box-shadow: var(--cx-shadow); }
.cx-blog-media { height: 176px; position: relative; background: var(--cx-grad-blue); display: grid; place-items: center; overflow: hidden; }
.cx-blog-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cx-blog-media > i { font-size: 2.4rem; color: #fff; }
.cx-blog-cat { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; color: #fff; background: var(--cx-grad-orange); padding: 5px 11px; border-radius: 100px; }
.cx-blog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.cx-blog-body .date { font-size: 0.78rem; color: var(--cx-faint); }
.cx-blog-body h3 { margin: 6px 0 8px; font-family: "Space Grotesk", sans-serif; font-size: 1.08rem; color: var(--cx-ink); }
.cx-blog-body p { margin: 0 0 14px; color: var(--cx-slate); font-size: 0.88rem; line-height: 1.5; }
.cx-blog-body .more { margin-top: auto; font-weight: 600; font-size: 0.88rem; color: var(--cx-blue-600); }
:root:not([data-theme="light"]) .cx-blog-body .more { color: #9dbcff; }

/* Utility */
.cx-center { text-align: center; margin-top: 36px; }
