/* TEVVO Academy — static site stylesheet (plain HTML + CSS) */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Caveat:wght@600;700&family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  --navy-50: #f1f2fe;
  --navy-100: #e2e3fb;
  --navy-200: #bfc2f5;
  --navy-300: #8f94ec;
  --navy-500: #3d43d1;
  --navy-700: #1e229a;
  --navy-800: #12157f;
  --navy-900: #070970;
  --navy-950: #04043a;
  --gold-100: #fdf8e0;
  --gold-200: #fbf2c4;
  --gold-300: #f7e99b;
  --gold-400: #f3e074;
  --gold-500: #eed749;
  --gold-600: #d4b81f;
  --gold-700: #a98f0f;
  --gold-800: #7f6b0c;
  --indigo-50: #eef0ff;
  --indigo-100: #e0e3ff;
  --indigo-200: #c6ccff;
  --indigo-500: #5661f6;
  --indigo-600: #3f45e0;
  --indigo-700: #3134bd;
  --slate-50: #f7f8fb;
  --slate-100: #eef1f6;
  --slate-150: #e7ebf2;
  --slate-200: #e2e7f0;
  --slate-300: #cbd3e1;
  --slate-400: #9aa5bd;
  --slate-500: #6b7691;
  --slate-600: #4b566e;
  --slate-700: #343d52;
  --slate-900: #121826;
  --green-50: #ecfdf3;
  --green-600: #12813b;
  --red-50: #fef3f2;
  --red-600: #dc2626;
  --sky-50: #eff8ff;
  --sky-600: #0284c7;
  --primary: var(--navy-900);
  --accent: var(--indigo-500);
  --accent-600: var(--indigo-600);
  --bg: var(--slate-50);
  --surface: #fff;
  --card: #fff;
  --border: var(--slate-200);
  --divider: var(--slate-150);
  --hover: var(--slate-100);
  --text: var(--slate-900);
  --text-2: var(--slate-600);
  --muted: var(--slate-500);
  --primary-soft: var(--navy-50);
  --accent-soft: var(--indigo-50);
  --success: var(--green-600);
  --danger: var(--red-600);
  --font-display: "Space Grotesk", sans-serif;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(7, 9, 60, 0.06), 0 1px 3px rgba(7, 9, 60, 0.08);
  --sh-2: 0 2px 6px rgba(7, 9, 60, 0.06), 0 4px 12px rgba(7, 9, 60, 0.08);
  --sh-3: 0 6px 16px rgba(7, 9, 60, 0.08), 0 12px 28px rgba(7, 9, 60, 0.1);
  --sh-4: 0 12px 28px rgba(7, 9, 60, 0.12), 0 24px 48px rgba(7, 9, 60, 0.14);
  --sh-drop: 0 8px 24px rgba(7, 9, 60, 0.14), 0 2px 6px rgba(7, 9, 60, 0.08);
  --grad-hero: linear-gradient(135deg, #070970 0%, #1e229a 45%, #3f45e0 100%);
  --grad-brand: linear-gradient(120deg, #070970 0%, #3f45e0 60%, #5661f6 100%);
  --grad-gold: linear-gradient(120deg, #f3e074 0%, #d4b81f 100%);
  --grad-ai: linear-gradient(120deg, #5661f6 0%, #8f5cff 50%, #f3e074 100%);
  --grad-glow: radial-gradient(
    120% 120% at 50% 0%,
    rgba(86, 97, 246, 0.18) 0%,
    rgba(86, 97, 246, 0) 60%
  );
  --hdr-h: 73px; /* sticky header height (72px bar + 1px border) */
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--accent-600);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover {
  color: var(--navy-900);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
}
::selection {
  background: var(--gold-300);
  color: var(--navy-900);
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: 80px 0;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.15s,
    background 0.15s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-lg {
  height: 52px;
  padding: 0 26px;
  font-size: 1rem;
}
.btn-sm {
  height: 36px;
  padding: 0 16px;
  font-size: 0.8125rem;
}
.btn-pill {
  border-radius: var(--r-pill);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--sh-1);
}
.btn-primary:hover {
  filter: brightness(1.1);
  color: #fff;
}
.btn-secondary {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-secondary:hover {
  filter: brightness(1.05);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 30px rgba(63, 69, 224, 0.28);
}
.btn-accent:hover {
  filter: brightness(1.08);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--slate-300);
}
.btn-outline:hover {
  background: var(--hover);
  color: var(--primary);
}
.btn-outline.on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn svg {
  width: 17px;
  height: 17px;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand img {
  height: 42px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  padding: 26px 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
}
.nav-link:hover {
  color: var(--primary);
}
.nav-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.15s;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: -16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-drop);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.15s,
    transform 0.15s;
  z-index: 120;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown:hover .nav-link {
  color: var(--primary);
}
.dropdown:hover .nav-link svg {
  transform: rotate(180deg);
}
.menu-courses {
  width: 440px;
  max-width: 90vw;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
}
.dropdown-menu .menu-all {
  grid-column: 1/-1;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  margin-bottom: 4px;
}
.menu-services {
  width: 1160px;
  max-width: 94vw;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
}
/* the menu is right-anchored to its button, so drop to 3 columns once 5 no longer fit to its left */
@media (max-width: 1399px) {
  .menu-services {
    width: 740px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 18px;
  }
}
.dropdown-menu a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 10px;
  border-radius: var(--r-sm);
}
.dropdown-menu a:hover {
  background: var(--hover);
  color: var(--primary);
}
.menu-services a {
  display: block;
  white-space: nowrap;
}
.menu-group-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px 8px;
}

/* generic section heads */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.sec-title {
  font-size: 2.3rem;
  line-height: 1.14;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 12px;
}
.sec-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}
.sec-head-center {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

/* landing hero */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy-900) url("assets/hero-banner.png") center right/cover
    no-repeat;
}
.hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--navy-900) 0%,
    rgba(7, 9, 60, 0.92) 28%,
    rgba(7, 9, 60, 0.4) 44%,
    rgba(7, 9, 60, 0) 56%
  );
}
.hero-inner {
  position: relative;
  padding: 96px 0 104px;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 10px;
  border-radius: var(--r-pill);
  background: rgba(12, 15, 70, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin-bottom: 26px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
.hero-badge svg {
  flex: none;
  width: 16px;
  height: 16px;
  padding: 4px;
  border-radius: 999px;
  background: var(--gold-400, #eed749);
  color: var(--navy-900);
  box-sizing: content-box;
}
.hero h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 30px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
}
.hero-stats .stat .n {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
.hero-stats .stat .l {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
.hero-stats .divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 26px;
}

/* hero trust markers (icon + label), replaces the numeric stat row */
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 18px;
  margin-top: 52px;
  max-width: 620px;
}
.hero-usp {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-usp .ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  color: #7fe7ff;
}
.hero-usp .ico svg {
  width: 19px;
  height: 19px;
}
/* narrow enough that each label breaks onto two lines, as in the reference */
.hero-usp .t {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  max-width: 78px;
}

/* categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.cat-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--sh-1);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-3);
}
.cat-tile .ico {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
}
.cat-tile .ico svg {
  width: 24px;
  height: 24px;
}
.cat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cat-tile .lbl {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  overflow-wrap: anywhere;
}
.cat-tile .cnt {
  font-size: 13px;
  color: var(--muted);
}

/* course cards */
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.course-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-4);
}
.course-thumb {
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  padding: 16px;
  position: relative;
}
.course-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
}
.course-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.course-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}
.course-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
}
.price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.price s {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 8px;
}

/* badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--r-pill);
}
.badge-gold {
  background: var(--gold-500);
  color: var(--navy-900);
}
.badge-soft {
  background: var(--slate-100);
  color: var(--slate-700);
}
.badge-primary {
  background: var(--primary-soft);
  color: var(--primary);
}
.badge-danger {
  background: var(--danger);
  color: #fff;
}

/* services cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-1);
  padding: 28px;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
}
.svc-card .ico {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.svc-card .ico svg {
  width: 24px;
  height: 24px;
}
.svc-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.svc-card .desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.svc-list .row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.svc-list .check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
}
.svc-list .check svg {
  width: 12px;
  height: 12px;
}

/* why choose */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-media {
  position: relative;
  height: 400px;
}
.why-media .a {
  position: absolute;
  left: 0;
  top: 20px;
  width: 70%;
  height: 300px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.why-media .b {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 220px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-4);
  border: 5px solid var(--bg);
}
.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.acc-item {
  border-bottom: 1px solid var(--border);
}
.acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
}
.acc-head svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform 0.15s;
}
.acc-item.open .acc-head svg {
  transform: rotate(180deg);
}
.acc-panel {
  display: none;
  padding: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 420px;
}
.acc-item.open .acc-panel {
  display: block;
}

/* our work */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card .thumb {
  height: 220px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 14px;
}
.work-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card .meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}
.work-card .name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
}

/* skills */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  max-width: 900px;
  margin: 0 auto;
}
.skills-grid .col-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-900);
  margin-bottom: 22px;
}
.skills-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.skill-pill {
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}
.skill-pill.dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad-hero);
  box-shadow: var(--sh-2);
  color: #fff;
  border: none;
}
.skill-pill.dark svg {
  width: 16px;
  height: 16px;
  color: var(--gold-400);
}
.skills-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.skills-rail::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  border-left: 2px dashed var(--slate-300);
}
.skills-rail .dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 0 0 0 4px var(--bg);
}

/* testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-card p {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
  flex: 1;
}
.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gold-500);
}
.stars svg {
  width: 16px;
  height: 16px;
}
.person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
  overflow: hidden;
}
.avatar.lg {
  width: 72px;
  height: 72px;
  font-size: 1.5rem;
}
.avatar.sm {
  width: 32px;
  height: 32px;
  font-size: 0.75rem;
}
.avatar.ring {
  box-shadow:
    0 0 0 3px var(--surface),
    0 0 0 5px var(--primary);
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  border-radius: var(--r-xl);
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
}
.price-card.hi {
  background: var(--grad-hero);
  color: #fff;
  border: none;
  box-shadow: var(--sh-4);
}
.price-card .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.price-card .top .nm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.price-card .top .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: #fff;
}
.price-card.hi .top .ic {
  background: var(--gold-500);
  color: var(--navy-900);
}
.price-card .amt {
  margin: 16px 0 6px;
}
.price-card .amt b {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
}
.price-card .amt span {
  font-size: 14px;
  opacity: 0.7;
}
.price-card .pdesc {
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 22px;
  color: var(--muted);
}
.price-card.hi .pdesc {
  color: rgba(255, 255, 255, 0.75);
}
.feat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feat .f {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}
.feat .f.off {
  opacity: 0.45;
}
.feat .f .fc {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--green-50);
  color: var(--success);
}
.price-card.hi .feat .f .fc {
  background: var(--gold-500);
  color: var(--navy-900);
}
.feat .f .fc svg {
  width: 11px;
  height: 11px;
}

/* faq */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 150px;
}
.faq-card .q-ic {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.faq-card .q {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: auto;
  color: var(--navy-900);
}

/* landing CTA */
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-3);
  background: var(--surface);
  min-height: 440px;
}
.cta-left {
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
}
.cta-left .wT {
  position: absolute;
  left: 36px;
  top: 120px;
  font-family: var(--font-display);
  font-size: 280px;
  font-weight: 700;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.05);
}
.cta-left .wCircle {
  position: absolute;
  left: -60px;
  top: 40px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.cta-left .photo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 24px;
}
.cta-left .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 72px;
  overflow: hidden;
}
.cta-right h2 {
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 20px;
}
.cta-right h2 .a {
  color: var(--accent);
}
.cta-right .rule {
  width: 64px;
  height: 5px;
  border-radius: var(--r-pill);
  background: var(--accent);
  margin-bottom: 24px;
}
.cta-right p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 420px;
  margin: 0 0 30px;
}
.cta-ring {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 38px solid var(--indigo-100);
}

/* footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
}
.site-footer .container {
  padding-top: 64px;
  padding-bottom: 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-top img {
  height: 66px;
  width: auto;
  margin-bottom: 16px;
}
.foot-top .blurb {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 0 18px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials span {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #fff;
}
.socials span svg {
  width: 18px;
  height: 18px;
}
.foot-col h4 {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
}
.foot-col .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col .links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
}
.foot-col .links a:hover {
  color: #fff;
}
.foot-bot {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.foot-bot .legal {
  display: flex;
  gap: 22px;
}
.foot-bot a {
  color: rgba(255, 255, 255, 0.68);
}

/* page hero (inner) */
.page-hero {
  background: var(--grad-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero .glowA {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    110% 140% at 82% 0%,
    rgba(238, 215, 73, 0.14) 0%,
    rgba(238, 215, 73, 0) 42%
  );
}
.page-hero .glowB {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    90% 120% at 0% 100%,
    rgba(86, 97, 246, 0.35) 0%,
    rgba(86, 97, 246, 0) 50%
  );
}
.page-hero .rings {
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  opacity: 0.5;
}
.page-hero .dots {
  position: absolute;
  right: 56px;
  top: 52px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 13px;
  color: rgba(255, 255, 255, 0.18);
}
.page-hero .dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.page-hero .inner {
  position: relative;
  padding-top: 56px;
  padding-bottom: 64px;
}
.page-hero .crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}
.page-hero .crumbs a {
  color: rgba(255, 255, 255, 0.7);
}
.page-hero .crumbs a:hover {
  color: #fff;
}
.page-hero .crumbs svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
}
.page-hero .eyebrow {
  color: var(--gold-400);
}
.page-hero h1 {
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  max-width: 720px;
}
.page-hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0;
}
.page-hero .rule {
  width: 64px;
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--gold-500);
  margin-top: 24px;
}

/* page-hero photo variant -------------------------------------------------
   Same model as .cs-hero--photo: photo under a per-page veil (--cs-veil),
   with the decorative glows/dots removed so they don't fight the image. */
.page-hero--photo {
  --cs-veil: 1;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 6, 26, calc(var(--cs-veil) * 0.84)) 0%,
      rgba(4, 6, 26, calc(var(--cs-veil) * 0.78)) 30%,
      rgba(4, 6, 26, calc(var(--cs-veil) * 0.6)) 55%,
      rgba(4, 6, 26, calc(var(--cs-veil) * 0.32)) 78%,
      rgba(4, 6, 26, calc(var(--cs-veil) * 0.4)) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 6, 26, calc(var(--cs-veil) * 0.42)) 0%,
      rgba(4, 6, 26, 0) 26%,
      rgba(4, 6, 26, 0) 58%,
      rgba(4, 6, 26, calc(var(--cs-veil) * 0.62)) 100%
    ),
    var(--cs-hero-img),
    var(--grad-hero);
  background-size: cover, cover, cover, auto;
  background-position: center, center, center right, center;
  background-repeat: no-repeat;
}
.page-hero--photo > .container {
  width: 100%;
}
.page-hero--photo .glowA,
.page-hero--photo .glowB,
.page-hero--photo .dots,
.page-hero--photo .rings {
  display: none;
}
.page-hero--photo h1,
.page-hero--photo p {
  text-shadow: 0 2px 16px rgba(4, 6, 26, 0.62);
}
/* match the .cs-hero text structure (eyebrow pill, gradient h1, body copy) */
.page-hero--photo h1 {
  font-family: var(--font-display);
  font-size: 3.05rem;
  letter-spacing: -0.032em;
  font-weight: 700;
  margin: 0 0 18px;
}
.page-hero--photo h1 .g {
  background: linear-gradient(100deg, #7fe7ff, #c4b5fd 60%, #f3e074);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.page-hero--photo p {
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
/* .cs-hero confines its text to a ~562px grid column; .page-hero has no such
   column, so cap the text width to match — keeps copy off the photo's bright side */
.page-hero--photo h1,
.page-hero--photo p {
  max-width: 560px;
}
@media (max-width: 900px) {
  .page-hero--photo {
    background-position: center, center, 72% center, center;
    background-image:
      linear-gradient(
        180deg,
        rgba(4, 6, 26, calc(max(var(--cs-veil), 0.78) * 0.9)) 0%,
        rgba(4, 6, 26, calc(max(var(--cs-veil), 0.78) * 0.84)) 46%,
        rgba(4, 6, 26, calc(max(var(--cs-veil), 0.78) * 0.78)) 100%
      ),
      linear-gradient(
        180deg,
        rgba(4, 6, 26, calc(max(var(--cs-veil), 0.78) * 0.42)) 0%,
        rgba(4, 6, 26, 0) 26%,
        rgba(4, 6, 26, 0) 58%,
        rgba(4, 6, 26, calc(max(var(--cs-veil), 0.78) * 0.62)) 100%
      ),
      var(--cs-hero-img),
      var(--grad-hero);
  }
}

/* tabs */
.tabs {
  display: inline-flex;
  gap: 24px;
  border-bottom: 1.5px solid var(--border);
}
.tab {
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  padding: 12px 2px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
}
.tab.active {
  font-weight: 600;
  color: var(--text);
}
.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.5px;
  height: 3px;
  border-radius: var(--r-pill);
  background: var(--primary);
}
.tabs.pill {
  gap: 4px;
  padding: 4px;
  background: var(--slate-100);
  border-radius: var(--r-pill);
  border: none;
}
.tabs.pill .tab {
  padding: 8px 18px;
  border-radius: var(--r-pill);
}
.tabs.pill .tab.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--sh-1);
}
.tabs.pill .tab.active::after {
  display: none;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

/* about / contact / util */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.media-box {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* embedded maps fill the box; the box's overflow:hidden clips them to its radius */
.media-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}
/* Visit section: the copy column is short, so give the map the extra width.
   Scoped to #visit so other .grid-2 uses (about, site) keep their 1fr 1fr. */
#visit .grid-2 {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
}
#visit .media-box,
#visit .media-box iframe {
  min-height: 460px;
}
.stat-band {
  background: var(--grad-hero);
  color: #fff;
}
.stat-band .container {
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-band .n {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
}
.stat-band .l {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}
.stat-band .divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.val-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* Why TEVVO — scroll-driven journey */
.why2 {
  position: relative;
  height: 300vh;
  background: var(--navy-900);
  color: #fff;
}
.why2-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(40px + var(--hdr-h)) 0 40px;
}
.why2-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.why2-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7, 9, 60, 0.92) 0%,
    rgba(7, 9, 60, 0.72) 50%,
    rgba(18, 21, 127, 0.6) 100%
  );
  pointer-events: none;
}
.why2-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.why2-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.why2-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 40px;
}
.why2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.why2-badge svg {
  width: 15px;
  height: 15px;
}
.why2-head h2 {
  font-family: var(--font-display);
  font-size: 2.9rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 12px;
}
.why2-head h2 .g {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why2-head p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.why2-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.why2-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 8px;
}
.why2-rail {
  position: absolute;
  left: 31px;
  top: 26px;
  bottom: 26px;
  width: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
}
.why2-fill {
  position: absolute;
  left: 31px;
  top: 26px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(120deg, #2c2c2ceb, #d4b81f 100%);
  height: 0;
  transition: height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.why2-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.why2-step.on {
  opacity: 1;
  transform: translateX(4px);
}
.why2-node {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  transition: all 0.4s;
}
.why2-node svg {
  width: 22px;
  height: 22px;
}
.why2-step.done .why2-node {
  background: var(--gold-600);
  color: var(--navy-900);
  border: none;
}
.why2-step.on .why2-node {
  background: var(--gold-500);
  color: var(--navy-900);
  border: none;
  animation: why2pulse 2s infinite;
}
@keyframes why2pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(238, 215, 73, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(238, 215, 73, 0);
  }
}
.why2-step .t {
  display: flex;
  align-items: center;
  gap: 10px;
}
.why2-step .t b {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.why2-step .wk {
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.14);
}
.why2-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: rgba(10, 14, 40, 0.55);
  backdrop-filter: blur(18px);
  padding: 38px;
  box-shadow: var(--sh-modal);
}
.why2-card.on {
  opacity: 1;
  pointer-events: auto;
}
.why2-cardwrap {
  position: relative;
  min-height: 424px;
}
.why2-card .cbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.why2-card .cscrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7, 9, 60, 0.86) 0%,
    rgba(7, 9, 60, 0.55) 55%,
    rgba(7, 9, 60, 0.25) 100%
  );
  pointer-events: none;
}
.why2-card .cbody {
  position: relative;
}
.why2-card .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.16);
  margin-bottom: 10px;
}
.why2-card .num s {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}
.why2-card .cico {
  width: 60px;
  height: 60px;
  border-radius: var(--r-lg);
  background: var(--grad-ai);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: var(--glow-brand);
}
.why2-card .cico svg {
  width: 32px;
  height: 32px;
  color: #fff;
}
.why2-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.why2-card p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 20px;
  max-width: 460px;
}
.why2-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 14.5px;
  font-weight: 700;
}
.why2-card .pill svg {
  width: 16px;
  height: 16px;
}
/* keep the pinned panel inside shorter desktop viewports (laptops) */
@media (min-width: 901px) and (max-height: 900px) {
  .why2-sticky {
    padding: calc(28px + var(--hdr-h)) 0 28px;
  }
  .why2-head {
    margin-bottom: 24px;
  }
  .why2-head h2 {
    font-size: 2.35rem;
  }
  .why2-head p {
    font-size: 1rem;
  }
  .why2-steps {
    gap: 14px;
  }
  .why2-cardwrap {
    min-height: 388px;
  }
  .why2-card {
    padding: 30px;
  }
  .why2-card .num {
    font-size: 2.4rem;
  }
  .why2-card .cico {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }
}
@media (min-width: 901px) and (max-height: 800px) {
  .why2-sticky {
    padding: calc(20px + var(--hdr-h)) 0 20px;
  }
  .why2-badge {
    margin-bottom: 10px;
  }
  .why2-head {
    margin-bottom: 18px;
  }
  .why2-head h2 {
    font-size: 2rem;
  }
  .why2-head p {
    font-size: 0.95rem;
  }
  .why2-cardwrap {
    min-height: 344px;
  }
  .why2-card {
    padding: 24px;
  }
  .why2-card .num {
    font-size: 2rem;
    margin-bottom: 6px;
  }
  .why2-card .cico {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
  }
  .why2-card .cico svg {
    width: 26px;
    height: 26px;
  }
  .why2-card h3 {
    font-size: 1.5rem;
  }
  .why2-card p {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }
}
@media (min-width: 901px) and (max-height: 660px) {
  .why2-sticky {
    padding: calc(16px + var(--hdr-h)) 0 16px;
  }
  .why2-badge {
    margin-bottom: 6px;
  }
  .why2-head {
    margin-bottom: 12px;
  }
  .why2-head h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  .why2-head p {
    font-size: 0.875rem;
  }
  .why2-steps {
    gap: 10px;
  }
  .why2-cardwrap {
    min-height: 288px;
  }
  .why2-card {
    padding: 18px;
  }
  .why2-card .num {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
  .why2-card .cico {
    width: 36px;
    height: 36px;
    border-radius: var(--r-md);
    margin-bottom: 6px;
  }
  .why2-card .cico svg {
    width: 20px;
    height: 20px;
  }
  .why2-card h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
  .why2-card p {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
  .why2-card .pill {
    padding: 7px 14px;
    font-size: 13px;
  }
}
.why2-pillars {
  background: var(--navy-950);
  color: #fff;
}
.why2-pillars .container {
  padding-top: 72px;
  padding-bottom: 72px;
}
.why2-pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why2-pcard {
  padding: 26px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.22s,
    background 0.22s,
    border-color 0.22s;
}
.why2-pcard:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(238, 215, 73, 0.5);
}
.why2-pcard .ico {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--grad-ai);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.why2-pcard .ico svg {
  width: 24px;
  height: 24px;
}
.why2-pcard h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.why2-pcard p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.val-card {
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
}
.val-card .ico {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--grad-brand);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.val-card .ico svg {
  width: 24px;
  height: 24px;
}
.val-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.val-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  text-align: center;
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--border);
}
.team-card .avatar {
  margin: 0 auto 16px;
}
.team-card .nm {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
}
.team-card .rl {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 2px;
}
.cta-band {
  background: var(--grad-hero);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 14px;
}
.cta-band p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 26px;
}

/* enroll / get-in-touch section (matches React About page) */
.enroll {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.enroll-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--slate-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--slate-200) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 40%,
    #000 30%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 40%,
    #000 30%,
    transparent 75%
  );
  opacity: 0.7;
}
.enroll-inner {
  position: relative;
  z-index: 1;
  padding-top: 84px;
  padding-bottom: 84px;
  text-align: center;
}
.enroll-deco {
  position: absolute;
  color: var(--slate-400);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.enroll-deco svg {
  width: 100%;
  height: 100%;
}
.enroll-eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}
.enroll-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.enroll-avatars .avatar {
  border: 3px solid var(--bg);
}
.enroll-avatars .avatar + .avatar {
  margin-left: -14px;
}
.enroll h2 {
  font-family: var(--font-display);
  font-size: 2.9rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--navy-900);
}
.enroll h2 .a {
  color: var(--gold-600);
}
.enroll .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 30px;
}
.enroll-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.enroll-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.enroll-note .scribble {
  width: 46px;
  height: 34px;
  color: var(--gold-600);
  transform: scaleX(-1);
  flex: none;
}
.enroll-note .hand {
  font-family: "Caveat", cursive;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--gold-600);
  text-align: left;
}
.enroll-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 64px auto 0;
}
.enroll-feats .feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.enroll-feats .ico {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
}
.enroll-feats .ico svg {
  width: 24px;
  height: 24px;
}
.enroll-feats .t {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  max-width: 200px;
}
/* services — group sections (matches React) */
section[id] {
  scroll-margin-top: var(--hdr-h);
}
.svc-group {
  scroll-margin-top: var(--hdr-h);
}
.svc-group > .container {
  padding-top: 72px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
}
.svc-side {
  position: sticky;
  top: 96px;
  color: #fff;
  border-radius: var(--r-2xl);
  padding: 36px 32px;
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.svc-side .orb {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.svc-side .in {
  position: relative;
}
.svc-side .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.svc-side .b-ico {
  width: 60px;
  height: 60px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
}
.svc-side .b-ico svg {
  width: 28px;
  height: 28px;
}
.svc-side .num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.22);
}
/* small audience label above the heading, matching .eco-cat on the home page */
.svc-side .cat {
  position: relative;
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 10px;
}
.svc-side h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #fff;
}
.svc-side p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px;
}
.svc-side .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    border-color 0.18s;
}
.svc-row:hover {
  transform: translateX(6px);
  box-shadow: var(--sh-3);
  border-color: var(--slate-300);
}
.svc-row .n {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-600);
  line-height: 1.3;
  flex-shrink: 0;
  width: 34px;
}
.svc-row .c {
  flex: 1;
  min-width: 0;
}
.svc-row h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--navy-900);
}
.svc-row .c p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}
.svc-row .arr {
  width: 18px;
  height: 18px;
  color: var(--gold-600);
  flex-shrink: 0;
  margin-top: 4px;
}
/* services — process */
.proc-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.proc-line {
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--slate-300) 0 8px,
    transparent 8px 16px
  );
  pointer-events: none;
}
.proc-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.proc-ic {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: var(--r-2xl);
  background: var(--grad-hero);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(86, 97, 246, 0.35);
}
.proc-ic > svg {
  width: 34px;
  height: 34px;
}
.proc-ic .bdg {
  position: absolute;
  right: -8px;
  top: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border: 3px solid var(--bg);
}
.proc-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 6px 0 0;
  color: var(--navy-900);
}
.proc-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
  max-width: 220px;
}
/* contact — conversion redesign */
.ct-hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  color: #fff;
}
.ct-hero .glow {
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  pointer-events: none;
}
.ct-hero .orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ct-hero > .container {
  position: relative;
  padding-top: 72px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.ct-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(12, 15, 70, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}
.ct-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38d39f;
  box-shadow: 0 0 0 4px rgba(56, 211, 159, 0.25);
  animation: ctpulse 2s infinite;
}
@keyframes ctpulse {
  50% {
    box-shadow: 0 0 0 8px rgba(56, 211, 159, 0);
  }
}
.ct-hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 18px;
}
.ct-hero h1 .g {
  color: var(--gold-400);
}
.ct-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 26px;
  max-width: 520px;
}
.ct-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.ct-avs {
  display: flex;
}
.ct-avs .avatar {
  border: 2px solid var(--navy-800);
}
.ct-avs .avatar + .avatar {
  margin-left: -12px;
}
.ct-proof .stars {
  display: flex;
  gap: 2px;
  color: var(--gold-400);
}
.ct-proof .stars svg {
  width: 16px;
  height: 16px;
}
.ct-proof b {
  font-size: 14px;
}
.ct-proof-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 3px;
}
.ct-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.ct-chip {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  transition:
    background 0.18s,
    border-color 0.18s,
    transform 0.18s;
}
.ct-chip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}
.ct-chip .ci {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  flex: none;
}
.ct-chip .ci svg {
  width: 18px;
  height: 18px;
}
.ct-chip > span:not(.ci) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ct-chip .cl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}
.ct-chip .cv {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 3px;
}
.ct-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.ct-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.ct-trust svg {
  width: 15px;
  height: 15px;
  color: var(--gold-400);
  flex: none;
}
.ct-form {
  background: #fff;
  border-radius: var(--r-2xl);
  box-shadow: 0 30px 70px rgba(4, 4, 58, 0.42);
  padding: 32px;
}
.ct-form-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  gap: 12px;
}
.ct-form-top h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
}
.ct-min {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.ct-form .sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 22px;
}
.ct-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.ct-form-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
  justify-content: center;
  text-align: center;
}
.ct-form-foot svg {
  width: 14px;
  height: 14px;
  flex: none;
}
.proc-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

/* forms */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.field input,
.field textarea,
.field select {
  height: 44px;
  padding: 0 14px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.field textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(86, 97, 246, 0.2);
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
  padding: 40px;
}
.info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}
.info-card .ic {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
}
.info-card .ic svg {
  width: 22px;
  height: 22px;
}
.info-card .t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
}
.info-card .m {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  margin-top: 4px;
}
.info-card .s {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* office cards (one per country) ---------------------------------------- */
.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.office-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.office-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: var(--navy-200);
}
.office-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.office-head .ic {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
}
.office-head .ic svg {
  width: 21px;
  height: 21px;
}
.office-head .country {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--navy-900);
  line-height: 1.2;
}
.office-row {
  display: flex;
  gap: 12px;
  padding-top: 16px;
}
.office-row svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--muted);
}
.office-row .m {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.office-row .s {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 2px;
}
.office-row a {
  color: var(--text);
  font-weight: 600;
  font-size: 14.5px;
}
.office-row a:hover {
  color: var(--accent-600);
}
@media (max-width: 860px) {
  .office-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* course detail */
.cd-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.cd-aside {
  position: sticky;
  top: 96px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-3);
  overflow: hidden;
}
.cd-aside .thumb {
  height: 200px;
  position: relative;
}
.cd-aside .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cd-aside .body {
  padding: 24px;
}
.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.learn-grid .li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}
.learn-grid .li svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}
.mod {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--card);
  margin-bottom: 10px;
}
.mod-head {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 18px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}
.mod-head .mt {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  flex: 1;
  color: var(--navy-900);
}
.mod-head .cnt {
  font-size: 12.5px;
  color: var(--muted);
}
.mod-head svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform 0.15s;
}
.mod.open .mod-head svg,
.mod-item.open .mod-head svg {
  transform: rotate(180deg);
}
.mod-panel {
  display: none;
  padding: 0 10px 10px;
}
.mod.open .mod-panel,
.mod-item.open .mod-panel {
  display: block;
}
.lesson {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  font-size: 14px;
  color: var(--text-2);
}
.lesson svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}
.lesson .dur {
  margin-left: auto;
  font-size: 12.5px;
  color: var(--muted);
}
.review {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--card);
  margin-bottom: 16px;
}
.review .rh {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review .rh .stars {
  margin-left: auto;
}
.review p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
}
.includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.includes .row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
}
.includes .row svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}
/* course detail — dark content card (matches React) */
.cd-grid {
  align-items: stretch;
}
.cd-left {
  display: flex;
  flex-direction: column;
}
.cd-aside {
  align-self: start;
}
.cd-left .tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  border: none;
  background: none;
  padding: 0;
}
.cd-left .tab {
  padding: 12px 26px;
  border-radius: var(--r-md);
  border: 1px solid var(--slate-300);
  background: var(--navy-950);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.18s;
}
.cd-left .tab.active {
  background: var(--indigo-500);
  border-color: var(--indigo-200);
  box-shadow: 0 8px 26px rgba(86, 97, 246, 0.42);
}
.cd-left .tab.active::after {
  display: none;
}
.cd-left .tab-panels {
  position: relative;
  flex: 1;
  margin-top: 22px;
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-xl);
  padding: 36px;
  overflow: hidden;
  min-height: 340px;
}
.cd-left .tab-panels::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 97, 246, 0.28), transparent 70%);
  pointer-events: none;
}
@keyframes cdslide {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cd-left .tab-panel.active {
  position: relative;
  animation: cdslide 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cd-left .tab-panel h2 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.6rem;
}
.cd-left .tab-panel > p {
  color: rgba(255, 255, 255, 0.7);
}
.cd-left .learn-grid .li {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 15px;
}
.cd-left .learn-grid .li svg {
  color: var(--gold-400);
}
.cd-left .mod {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}
.cd-left .mod-head .mt {
  color: #fff;
}
.cd-left .mod-head .cnt {
  color: rgba(255, 255, 255, 0.55);
}
.cd-left .mod-head svg {
  color: rgba(255, 255, 255, 0.6);
}
.cd-left .lesson {
  color: rgba(255, 255, 255, 0.75);
}
.cd-left .lesson svg {
  color: var(--indigo-200);
}
.cd-left .lesson .dur {
  color: rgba(255, 255, 255, 0.5);
}
.cd-left .review {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}
.cd-left .review strong {
  color: #fff;
}
.cd-left .review p {
  color: rgba(255, 255, 255, 0.72);
}
.cd-left .ins-name {
  color: #fff;
}
.cd-left .ins-role {
  color: rgba(255, 255, 255, 0.55);
}
.cd-left .ins-bio {
  color: rgba(255, 255, 255, 0.72);
}
/* course detail — journey band */
.cd-journey {
  background: var(--grad-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cd-journey .glow {
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
}
.cd-journey .container {
  position: relative;
  padding-top: 72px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.cd-journey h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.cd-journey p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 28px;
  max-width: 520px;
}
.cd-journey .vid {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  aspect-ratio: 16/9;
}
.cd-journey .vid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cd-journey .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.cd-journey .play i {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  color: var(--primary);
  box-shadow: var(--sh-3);
}
.cd-journey .play svg {
  width: 30px;
  height: 30px;
}

/* blog */
.blog-feat {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-2);
}
.blog-feat .img {
  min-height: 340px;
  position: relative;
}
.blog-feat .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-feat .body {
  padding: 44px 44px 44px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-feat h2 {
  font-size: 1.9rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 12px;
}
.blog-toolbar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0 24px;
}
.search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  width: 280px;
  margin-left: auto;
}
.search input {
  border: none;
  outline: none;
  background: none;
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
}
.search svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-1);
  cursor: pointer;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-3);
}
.blog-card .img {
  height: 180px;
}
.blog-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card .body {
  padding: 20px;
}
.blog-card h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--navy-900);
  margin: 10px 0 14px;
}
.blog-card .by {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}
.pager a {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.875rem;
}
.pager a.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.news-band {
  background: var(--grad-hero);
  border-radius: var(--r-2xl);
  color: #fff;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.news-band h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.news-form {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 18px;
  min-width: 360px;
}
.news-form input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
}

.trusted {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 0.55;
}
.trusted .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--slate-600);
}
.trusted .logo svg {
  width: 22px;
  height: 22px;
}
.about-hero-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--navy-900);
}
.menu-toggle svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }
  .site-header .container {
    gap: 12px;
  }
  .brand {
    margin-right: auto;
  }
  .brand img {
    height: 34px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 20px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-3);
    max-height: calc(100vh - 72px);
    overflow: auto;
  }
  header.nav-open .nav {
    display: flex;
  }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
  }
  .dropdown {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    padding: 0 0 10px 12px;
    width: auto !important;
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  .dropdown.open .dropdown-menu {
    display: grid;
  }
  .menu-services a {
    white-space: normal;
  }
  .section {
    padding: 56px 0;
  }
  .course-grid,
  .val-grid,
  .team-grid,
  .svc-grid,
  .work-grid,
  .testi-grid,
  .price-grid,
  .blog-grid,
  .learn-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .why2 {
    height: auto;
  }
  /* relative, not static: keeps the orbs' containing block inside overflow:hidden */
  .why2-sticky {
    position: relative;
    height: auto;
    padding: 56px 0;
  }
  .why2-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why2-head h2 {
    font-size: 2rem;
  }
  .why2-pgrid {
    grid-template-columns: 1fr 1fr;
  }
  .why2-card {
    padding: 32px;
    min-height: 0;
  }
  .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-2,
  .why-wrap,
  .faq-wrap,
  .cta,
  .cd-grid,
  .blog-feat,
  .contact-grid,
  .news-band,
  .cd-journey .container {
    grid-template-columns: 1fr !important;
  }
  .cd-journey .container {
    padding-top: 56px;
    padding-bottom: 56px;
    gap: 32px;
  }
  .cd-journey h2 {
    font-size: 1.8rem;
  }
  .svc-group > .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .svc-side {
    position: static;
  }
  .proc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
  }
  .proc-line {
    display: none;
  }
  .ct-hero > .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    padding-top: 56px;
    padding-bottom: 64px;
  }
  .ct-hero h1 {
    font-size: 2.1rem;
  }
  .ct-form {
    min-width: 0;
    padding: 24px;
  }
  .ct-row2 {
    grid-template-columns: minmax(0, 1fr);
  }
  /* four nowrap tabs are too wide for one row on a phone */
  .ct-form .tabs.pill {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .contact-info-grid .info-card .m,
  .contact-info-grid .info-card .s {
    overflow-wrap: anywhere;
  }
  .proc-grid.three {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding: 64px 0 72px;
    max-width: none;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero {
    background-position: center right -140px;
  }
  .hero .scrim {
    background: linear-gradient(
      100deg,
      var(--navy-900) 0%,
      rgba(7, 9, 60, 0.92) 55%,
      rgba(7, 9, 60, 0.55) 100%
    );
  }
  .sec-title {
    font-size: 1.9rem;
  }
  .cta {
    min-height: 0;
  }
  .cta-left {
    min-height: 300px;
  }
  .cta-right {
    padding: 40px 28px;
  }
  .cta-right h2 {
    font-size: 2rem;
  }
  .cta-left .wT {
    font-size: 200px;
  }
  .cd-aside {
    position: static;
  }
  .why-media {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .why-media .a,
  .why-media .b {
    position: static;
    width: 100%;
    height: 220px;
    border: none;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .skills-rail {
    display: none;
  }
  .page-hero .rings {
    display: none;
  }
  .page-hero h1 {
    font-size: 2.1rem;
  }
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
  .blog-feat .body {
    padding: 28px;
  }
  .form-card {
    padding: 28px;
  }
  .news-band {
    padding: 36px 28px;
  }
  .news-form {
    min-width: 0;
    width: 100%;
  }
  .stat-band .container {
    gap: 16px;
  }
  .stat-band .divider {
    display: none;
  }
  .cta-right .cta-ring {
    display: none;
  }
  .enroll-deco {
    display: none;
  }
  .contact-info-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .cat-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .why2-pgrid {
    grid-template-columns: 1fr;
  }
  .foot-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .page-hero h1 {
    font-size: 1.7rem;
  }
  .sec-title,
  .cta-right h2,
  .cta-band h2,
  .news-band h2 {
    font-size: 1.6rem;
  }
  .hero p,
  .page-hero p {
    font-size: 1rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 14px;
  }
  .hero-stats .divider {
    display: none;
  }
  .hero-stats .stat {
    min-width: 80px;
  }
  .hero-usps {
    gap: 16px 20px;
    margin-top: 36px;
  }
  .hero-usp .ico {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }
  .hero-usp .t {
    font-size: 13.5px;
    max-width: 88px;
  }
  .blog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .search {
    width: 100%;
    margin-left: 0;
  }
  .tabs {
    overflow-x: auto;
    max-width: 100%;
    white-space: nowrap;
  }
  .contact-grid > div:first-child {
    padding: 24px;
  }
  .cta-band {
    padding: 36px 24px;
  }
  .enroll-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .enroll h2 {
    font-size: 1.9rem;
  }
  .enroll-feats {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 44px;
  }
  .foot-bot {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* learning ecosystem */
.eco {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 112px 0 120px;
  background: radial-gradient(
    120% 120% at 50% -12%,
    #12157f 0%,
    #070970 42%,
    #050752 70%,
    #04043a 100%
  );
}
.eco-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(
    ellipse 92% 74% at 50% 30%,
    #000 18%,
    transparent 72%
  );
  mask-image: radial-gradient(
    ellipse 92% 74% at 50% 30%,
    #000 18%,
    transparent 72%
  );
}
.eco-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.eco-orb.gold {
  top: -140px;
  right: 5%;
  width: 440px;
  height: 440px;
  background: radial-gradient(
    circle,
    rgba(238, 215, 73, 0.18),
    transparent 66%
  );
}
.eco-orb.indigo {
  bottom: -180px;
  left: -70px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(86, 97, 246, 0.34), transparent 66%);
}
.eco-inner {
  position: relative;
}
.eco-head {
  max-width: 690px;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.eco-head.in {
  opacity: 1;
  transform: none;
}
.eco-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy-300);
  margin-bottom: 22px;
}
.eco-eyebrow .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(238, 215, 73, 0.2);
  animation: ecoPulse 2.4s ease-in-out infinite;
}
@keyframes ecoPulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(238, 215, 73, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(238, 215, 73, 0);
  }
}
.eco-head h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 20px;
}
.eco-head p {
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
}
.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.eco-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 30px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.065),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(26px);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.6s ease,
    border-color 0.35s,
    box-shadow 0.4s;
}
.eco-card.in {
  opacity: 1;
  transform: none;
}
.eco-card.in:hover {
  transform: translateY(-8px);
  border-color: rgba(238, 215, 73, 0.34);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(238, 215, 73, 0.12);
}
.eco-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(238, 215, 73, 0.75),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.eco-card.in:hover::before {
  opacity: 1;
}
.eco-card .glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(
    120% 80% at 50% 0%,
    rgba(86, 97, 246, 0.3),
    transparent 62%
  );
}
.eco-card.in:hover .glow {
  opacity: 1;
}
.eco-ico {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: rgba(86, 97, 246, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #9fb4ff;
  margin-bottom: 26px;
  transition:
    background 0.35s,
    color 0.35s;
}
.eco-ico svg {
  width: 26px;
  height: 26px;
}
.eco-card.in:hover .eco-ico {
  background: var(--grad-ai);
  color: #fff;
}
.eco-cat {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}
.eco-card h3 {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.22;
  font-weight: 700;
  margin: 0 0 14px;
  color: #fff;
}
.eco-card > p {
  position: relative;
  font-size: 14.5px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.63);
  margin: 0 0 22px;
}
.eco-pills {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.eco-pill {
  font-family: var(--font-mono);
  font-size: 11.5px;
  white-space: nowrap;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.eco-pill:hover {
  background: rgba(238, 215, 73, 0.14);
  border-color: var(--gold-500);
  color: #fff;
}
.eco-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-400);
}
.eco-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s;
}
.eco-link:hover {
  color: #fff;
}
.eco-card.in:hover .eco-link svg {
  transform: translateX(5px);
}
@media (max-width: 1100px) {
  .eco-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .eco {
    padding: 72px 0 80px;
  }
  .eco-head {
    margin-bottom: 40px;
  }
  .eco-head h2 {
    font-size: 2.1rem;
  }
}
@media (max-width: 600px) {
  .eco-grid {
    grid-template-columns: 1fr;
  }
  .eco-head h2 {
    font-size: 1.7rem;
  }
}

/* featured programs — discipline explorer */
.fp {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 112px 0 120px;
  background: linear-gradient(180deg, #04043a 0%, #070970 46%, #050752 100%);
}
.fp-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.fp-orb.a {
  top: -160px;
  left: -90px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(86, 97, 246, 0.34), transparent 66%);
}
.fp-orb.b {
  bottom: -190px;
  right: -70px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(238, 215, 73, 0.15),
    transparent 66%
  );
}
.fp-inner {
  position: relative;
}
.fp-head {
  max-width: 680px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fp-head.in {
  opacity: 1;
  transform: none;
}
.fp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy-300);
  margin-bottom: 22px;
}
.fp-eyebrow .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(238, 215, 73, 0.2);
  animation: ecoPulse 2.4s ease-in-out infinite;
}
.fp-head h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 18px;
}
.fp-head p {
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
}
.fp-explorer {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: start;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fp-explorer.in {
  opacity: 1;
  transform: none;
}
.fp-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 19px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: var(--font-sans);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.fp-tab .no {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}
.fp-tab .nm {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.fp-tab .ar {
  width: 17px;
  height: 17px;
  color: rgba(255, 255, 255, 0.28);
  flex: none;
  transition:
    transform 0.3s,
    color 0.3s;
}
.fp-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.fp-tab.active {
  background: linear-gradient(
    120deg,
    rgba(86, 97, 246, 0.3),
    rgba(86, 97, 246, 0.07)
  );
  border-color: rgba(238, 215, 73, 0.4);
}
.fp-tab.active .no {
  color: var(--gold-400);
}
.fp-tab.active .ar {
  color: var(--gold-400);
  transform: translateX(4px);
}
.fp-tab.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 3px;
  background: var(--gold-500);
}
.fp-stage {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--grad-hero);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 70px rgba(2, 2, 25, 0.5);
  min-height: 452px;
}
.fp-stage .glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    90% 100% at 85% 0%,
    rgba(86, 97, 246, 0.42),
    transparent 55%
  );
}
.fp-stage .grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 82% 8%,
    #000,
    transparent 68%
  );
  mask-image: radial-gradient(ellipse 80% 80% at 82% 8%, #000, transparent 68%);
}
.fp-panel {
  display: none;
  position: relative;
  padding: 46px 48px;
}
.fp-panel.active {
  display: block;
  animation: fpIn 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes fpIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fp-panel .no {
  position: absolute;
  right: 42px;
  top: 26px;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
}
.fp-ico {
  width: 68px;
  height: 68px;
  border-radius: var(--r-lg);
  background: var(--grad-ai);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(86, 97, 246, 0.4);
  margin-bottom: 26px;
}
.fp-ico svg {
  width: 32px;
  height: 32px;
  color: #fff;
}
.fp-panel h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  max-width: 78%;
}
.fp-panel .lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 26px;
  max-width: 440px;
}
.fp-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 32px;
}
.fp-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
}
.fp-explore {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 14.5px;
  font-weight: 700;
  transition:
    filter 0.2s,
    transform 0.2s;
}
.fp-explore:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  color: var(--navy-900);
}
.fp-explore svg {
  width: 16px;
  height: 16px;
}
.fp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  padding: 28px 36px;
  border-radius: var(--r-xl);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fp-cta.in {
  opacity: 1;
  transform: none;
}
.fp-cta .txt h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.fp-cta .txt p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
  max-width: 520px;
}
@media (max-width: 960px) {
  .fp-explorer {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fp-stage {
    min-height: 0;
  }
  .fp-panel h3 {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .fp {
    padding: 72px 0 80px;
  }
  .fp-head {
    margin-bottom: 36px;
  }
  .fp-head h2 {
    font-size: 2.1rem;
  }
}
@media (max-width: 600px) {
  .fp-head h2 {
    font-size: 1.7rem;
  }
  .fp-panel {
    padding: 32px 24px;
  }
  .fp-panel h3 {
    font-size: 1.5rem;
  }
  .fp-cta {
    padding: 24px;
  }
}

/* ===== courses — explore roles catalogue ===== */
.xp-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.xp-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px 7px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
}
.xp-select select {
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  padding: 2px 6px;
  cursor: pointer;
}
.xp-select select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
.xp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.xp-chip {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
.xp-chip:hover {
  background: var(--hover);
  color: var(--primary);
}
.xp-chip.active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}

.xp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.xp-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.xp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-3);
  border-color: var(--navy-200);
}
.xp-card.is-extra {
  display: none;
}
.xp-card.is-extra.revealed {
  display: flex;
}
.xp-card[hidden] {
  display: none !important;
}
.xp-media {
  position: relative;
  height: 132px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.xp-media-ico {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}
.xp-media-ico svg {
  width: 26px;
  height: 26px;
}
.xp-media-sheet {
  position: absolute;
  right: -28px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(18deg);
}
.xp-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  flex: 1;
}
.xp-body h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin: 0;
}
.xp-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}
.xp-like {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}
.xp-like b {
  color: var(--text);
  font-weight: 700;
}
.xp-certs {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.xp-certs-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.xp-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
}
.xp-cert-b {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy-700);
  display: grid;
  place-items: center;
}
.xp-cert-b svg {
  width: 11px;
  height: 11px;
}
.xp-more {
  align-self: flex-start;
  border: none;
  background: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-600);
  cursor: default;
}
.xp-empty {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  padding: 44px 0 8px;
  margin: 0;
}
.xp-showmore {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.xp-showmore svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}
.xp-showmore.open svg {
  transform: rotate(180deg);
}

.xp-intent {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.xp-intent h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  flex-shrink: 0;
}
.xp-intent-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: auto;
}
.xp-intent-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
.xp-intent-btn:hover {
  background: var(--navy-50);
  border-color: var(--navy-200);
  color: var(--primary);
}
.xp-intent-btn .ii {
  width: 26px;
  height: 26px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent-600);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.xp-intent-btn .ii svg {
  width: 15px;
  height: 15px;
}

.xp-sec-head {
  margin-bottom: 20px;
}
.xp-sec-head h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin: 0;
}
.xp-res-tabs {
  margin-bottom: 22px;
}
.xp-res-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.xp-res {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.xp-res:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-3);
  border-color: var(--navy-200);
}
.xp-res h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary);
  margin: 0;
}
.xp-res p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}
.xp-res-meta {
  margin-top: auto;
  padding-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.xp-story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.xp-story {
  margin: 0;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.xp-story-top {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.xp-story-top .nm {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.xp-story-top .cr {
  font-size: 12px;
  color: var(--muted);
}
.xp-story blockquote {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-2);
}
.xp-note {
  margin: 26px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .xp-grid,
  .xp-res-grid,
  .xp-story-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .xp-intent-row {
    margin-left: 0;
  }
}
@media (max-width: 820px) {
  .xp-grid,
  .xp-res-grid,
  .xp-story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .xp-sec-head h2 {
    font-size: 1.45rem;
  }
  .xp-intent {
    padding: 22px;
  }
  .xp-intent h2 {
    font-size: 1.05rem;
  }
}
@media (max-width: 560px) {
  .xp-grid,
  .xp-res-grid,
  .xp-story-grid {
    grid-template-columns: 1fr;
  }
  .xp-filters {
    gap: 12px;
  }
  .xp-chips {
    gap: 6px;
  }
  .xp-chip {
    padding: 7px 13px;
    font-size: 12.5px;
  }
  .xp-res-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .xp-intent-btn {
    font-size: 12.5px;
    padding: 9px 14px;
  }
}

/* ===== home — expert-recommended courses carousel ===== */
.rc-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 26px;
}
.rc-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.rc-title .g {
  color: var(--accent-600);
}
.rc-arrows {
  display: flex;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.rc-arrow {
  width: 44px;
  height: 38px;
  border-radius: var(--r-sm);
  border: 1px solid var(--navy-100);
  background: var(--navy-50);
  color: var(--accent-600);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
.rc-arrow:hover {
  background: var(--accent-600);
  border-color: var(--accent-600);
  color: #fff;
}
.rc-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}
.rc-arrow:disabled:hover {
  background: var(--navy-50);
  border-color: var(--navy-100);
  color: var(--accent-600);
}
.rc-arrow svg {
  width: 19px;
  height: 19px;
}

/* stretch, so the city rail and the card row share one row height */
.rc-body {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}
/* margins mirror .rc-track's padding so the rail's edges line up with the card edges */
.rc-side {
  display: flex;
  flex-direction: column;
  margin: 4px 0 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px;
}
.rc-side-scroll {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: auto;
  scrollbar-color: var(--slate-400) var(--slate-100);
}
.rc-side-scroll::-webkit-scrollbar {
  width: 11px;
}
.rc-side-scroll::-webkit-scrollbar-track {
  background: var(--slate-100);
  border-radius: var(--r-pill);
}
.rc-side-scroll::-webkit-scrollbar-thumb {
  background: var(--slate-400);
  border-radius: var(--r-pill);
  border: 2px solid var(--slate-100);
}
.rc-cat {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 13px 12px;
  border: none;
  border-radius: var(--r-sm);
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition:
    background 0.16s,
    color 0.16s;
}
.rc-cat .ci {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--accent-600);
}
.rc-cat .ci svg {
  width: 19px;
  height: 19px;
}
.rc-cat .nm {
  flex: 1;
  min-width: 0;
}
.rc-cat .cv {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--slate-400);
}
.rc-cat:hover {
  background: var(--hover);
}
.rc-cat.active {
  background: var(--accent-600);
  color: #fff;
}
.rc-cat.active .ci,
.rc-cat.active .cv {
  color: #fff;
}

.rc-viewport {
  overflow: hidden;
}
.rc-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 14px;
  scrollbar-width: none;
}
.rc-track::-webkit-scrollbar {
  display: none;
}
.rc-card {
  position: relative;
  flex: 0 0 268px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding-bottom: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.rc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-3);
  border-color: var(--slate-300);
}
.rc-card[hidden] {
  display: none;
}
.rc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 5px;
  background: #9d2222;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
/* faded classroom backdrop, so the coloured mark reads clearly on top */
.rc-thumb {
  position: relative;
  height: 196px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 9px 9px 0 0;
  background: #eef1f6;
}
.rc-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(assets/hero-banner.png) center/cover;
  filter: grayscale(0.55);
  opacity: 0.22;
}
.rc-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
}
.rc-art {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  display: block;
}
.rc-art svg {
  width: 100%;
  height: 100%;
}
.rc-cb {
  position: relative;
  margin: 10px 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 14px 16px;
  text-align: center;
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
}
.rc-cb h3 {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--slate-900);
  margin: 0;
}
.rc-rate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}
.rc-stars {
  display: inline-flex;
  gap: 1px;
  color: #f5a623;
}
.rc-stars svg {
  width: 16px;
  height: 16px;
}
.rc-count {
  font-size: 13.5px;
  color: var(--slate-700);
  font-weight: 600;
}
.rc-link {
  margin-top: auto;
  padding-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a6bd6;
}
.rc-link:hover {
  text-decoration: underline;
}
.rc-link svg {
  width: 22px;
  height: 13px;
  transition: transform 0.18s;
}
.rc-card:hover .rc-link svg {
  transform: translateX(3px);
}

@media (max-width: 1000px) {
  .rc-body {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .rc-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 820px) {
  .rc-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .rc-side {
    margin: 0;
  }
  .rc-side-scroll {
    flex: 0 0 auto;
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
    padding-bottom: 4px;
  }
  .rc-cat {
    width: auto;
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
  .rc-cat .cv {
    display: none;
  }
}
@media (max-width: 560px) {
  .rc-head {
    flex-direction: column;
    gap: 14px;
  }
  .rc-arrows {
    margin-left: 0;
  }
  .rc-title {
    font-size: 1.55rem;
  }
  .rc-card {
    flex-basis: 246px;
  }
  .rc-thumb {
    height: 170px;
  }
  .rc-art {
    width: 78px;
    height: 78px;
  }
}

/* ===== home — featured programs carousel ===== */
.fpx {
  --fpx-navy: #0a1f6f;
  overflow: hidden;
}
.fpx-head {
  max-width: 760px;
  margin-bottom: 38px;
}
.fpx-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 12px;
}
.fpx-head h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1.14;
  letter-spacing: -0.028em;
  font-weight: 700;
  color: var(--fpx-navy);
  margin: 0 0 14px;
}
.fpx-head p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0;
}

/* full-bleed rail with a gradient fade at both edges */
.fpx-rail {
  position: relative;
  overflow: hidden;
  padding: 10px 0 22px;
  cursor: grab;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}
.fpx-rail.dragging {
  cursor: grabbing;
}
.fpx-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.fpx-card {
  flex: 0 0 328px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 2px 6px rgba(10, 31, 111, 0.05),
    0 12px 28px rgba(10, 31, 111, 0.07);
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.28s,
    border-color 0.28s;
}
.fpx-rail:not(.dragging) .fpx-card:hover {
  transform: translateY(-8px);
  border-color: rgba(63, 69, 224, 0.35);
  box-shadow:
    0 10px 24px rgba(10, 31, 111, 0.1),
    0 22px 54px rgba(63, 69, 224, 0.22),
    0 0 0 4px rgba(86, 97, 246, 0.1);
}

.fpx-art {
  position: relative;
  display: block;
  height: 172px;
  overflow: hidden;
}
.fpx-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.55;
}
.fpx-glow {
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.28),
    transparent 68%
  );
}
.fpx-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0.95;
}
.fpx-mark svg {
  width: 86px;
  height: 86px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.28));
}
.fpx-card:hover .fpx-mark svg {
  transform: scale(1.05);
}
.fpx-mark svg {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Course photo artwork -------------------------------------------------- */
.fpx-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--fpx-navy, #0a1f6f);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fpx-rail:not(.dragging) .fpx-card:hover .fpx-photo {
  transform: scale(1.07);
}
/* Navy scrim keeps the badges and level pill legible over any photo */
.fpx-art:has(.fpx-photo)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 31, 111, 0.62) 0%,
    rgba(10, 31, 111, 0.16) 42%,
    rgba(10, 31, 111, 0.38) 100%
  );
}
.fpx-art:has(.fpx-photo) .fpx-grid {
  z-index: 2;
  opacity: 0.16;
}
.fpx-art:has(.fpx-photo) .fpx-glow,
.fpx-art:has(.fpx-photo) .fpx-mark {
  display: none;
}
.fpx-art:has(.fpx-photo) .fpx-badge,
.fpx-art:has(.fpx-photo) .fpx-lvl {
  z-index: 3;
}
.fpx-art:has(.fpx-photo) .fpx-lvl {
  background: rgba(10, 31, 111, 0.42);
  backdrop-filter: blur(6px);
}

.fpx-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--fpx-navy);
  background: var(--gold-500);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  animation: fpxPulse 2.8s ease-in-out infinite;
}
.fpx-badge.trend {
  background: #ff8a3d;
  color: #3a1500;
}
.fpx-badge.new {
  background: #4ade80;
  color: #053b1c;
}
.fpx-badge.career {
  background: #8f5cff;
  color: #fff;
}
@keyframes fpxPulse {
  0%,
  100% {
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.18),
      0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  55% {
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.18),
      0 0 0 7px rgba(255, 255, 255, 0);
  }
}
.fpx-lvl {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
}

.fpx-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 18px 16px;
  flex: 1;
}
.fpx-cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.fpx-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--fpx-navy);
  min-height: 2.64em;
}
.fpx-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.fpx-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--slate-300);
}
.fpx-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 600;
}
.fpx-rate {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #f5a623;
}
.fpx-rate svg {
  width: 15px;
  height: 15px;
}
.fpx-rate b {
  color: var(--text);
  font-weight: 700;
}
.fpx-learners {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fpx-learners svg {
  width: 15px;
  height: 15px;
  color: var(--accent-600);
}
.fpx-foot {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.fpx-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
}
.fpx-cert svg {
  width: 15px;
  height: 15px;
}
.fpx-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-600);
  white-space: nowrap;
}
.fpx-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fpx-card:hover .fpx-cta svg {
  transform: translateX(5px);
}
.fpx-more {
  text-align: center;
  margin-top: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .fpx-badge {
    animation: none;
  }
  .fpx-card,
  .fpx-cta svg,
  .fpx-mark svg {
    transition: none;
  }
}
@media (max-width: 900px) {
  .fpx-head h2 {
    font-size: 2rem;
  }
  .fpx-head p {
    font-size: 1rem;
  }
  .fpx-card {
    flex-basis: 300px;
  }
  .fpx-track {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .fpx-head h2 {
    font-size: 1.65rem;
  }
  .fpx-card {
    flex-basis: 268px;
    border-radius: 20px;
  }
  .fpx-art {
    height: 150px;
  }
  .fpx-mark svg {
    width: 70px;
    height: 70px;
  }
  .fpx-title {
    font-size: 1.02rem;
  }
  .fpx-rail {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 4%,
      #000 96%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 4%,
      #000 96%,
      transparent 100%
    );
  }
}

/* ===== course detail (reference layout) ===== */
.cdx-hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  color: #fff;
}
.cdx-hero .glowA {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    110% 140% at 82% 0%,
    rgba(238, 215, 73, 0.14),
    rgba(238, 215, 73, 0) 42%
  );
}
.cdx-hero .glowB {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    90% 120% at 0% 100%,
    rgba(86, 97, 246, 0.35),
    rgba(86, 97, 246, 0) 50%
  );
}
.cdx-hero-in {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: 44px;
  align-items: start;
  padding-top: 44px;
  padding-bottom: 56px;
}
.cdx-hmain {
  min-width: 0;
}
.cdx-hero .crumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}
.cdx-hero .crumbs a {
  color: rgba(255, 255, 255, 0.72);
}
.cdx-hero .crumbs a:hover {
  color: #fff;
}
.cdx-hero .crumbs svg {
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, 0.4);
}
.cdx-tags {
  display: flex;
  gap: 9px;
  margin-bottom: 14px;
}
.cdx-tag {
  padding: 5px 13px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.cdx-tag.best {
  background: var(--gold-500);
  color: var(--navy-900);
}
.cdx-tag.lv {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.cdx-hmain h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1.12;
  letter-spacing: -0.028em;
  font-weight: 700;
  margin: 0 0 14px;
}
.cdx-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 18px;
  max-width: 56ch;
}
.cdx-stars {
  display: inline-flex;
  gap: 1px;
  color: #f5a623;
}
.cdx-stars svg {
  width: 15px;
  height: 15px;
}
.cdx-rate {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}
.cdx-rate b {
  color: var(--gold-400);
  font-weight: 800;
}
.cdx-rate i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.cdx-by {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.cdx-by-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 800;
  font-size: 14px;
}
.cdx-by-t {
  display: flex;
  flex-direction: column;
}
.cdx-by-t b {
  font-size: 14.5px;
}
.cdx-by-t em {
  font-style: normal;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.68);
}
.cdx-hmeta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
}
.cdx-hmeta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.cdx-hmeta svg {
  width: 16px;
  height: 16px;
  color: var(--gold-400);
}

/* enrol card, overlapping into the section below */
.cdx-buy {
  position: relative;
  z-index: 5;
  margin-bottom: -132px;
  background: var(--surface);
  color: var(--text);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 18px 44px rgba(4, 4, 58, 0.34),
    0 2px 8px rgba(4, 4, 58, 0.2);
}
.cdx-prev {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy-900);
}
.cdx-prev img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cdx-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}
.cdx-play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}
.cdx-prev-l {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 9px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(4, 4, 58, 0.82));
}
.cdx-buy-b {
  padding: 18px;
}
.cdx-enroll {
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}
.cdx-specs {
  display: flex;
  flex-direction: column;
}
.cdx-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 13.5px;
  color: var(--text-2);
}
.cdx-spec b {
  color: var(--text);
  font-weight: 700;
}
.cdx-spec.x {
  display: none;
}
.cdx-specs.open .cdx-spec.x {
  display: flex;
}
.cdx-showmore,
.cdx-more-t {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  border: none;
  background: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-600);
  cursor: pointer;
}
.cdx-showmore svg,
.cdx-more-t svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}
.cdx-showmore.open svg,
.cdx-more-t.open svg {
  transform: rotate(180deg);
}
.cdx-share {
  display: flex;
  gap: 9px;
  margin-top: 16px;
  justify-content: center;
}
.cdx-share a {
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  background: var(--slate-100);
  color: var(--text-2);
  display: grid;
  place-items: center;
  transition:
    background 0.18s,
    color 0.18s;
}
.cdx-share a:hover {
  background: var(--navy-50);
  color: var(--primary);
}
.cdx-share a svg {
  width: 16px;
  height: 16px;
}
.cdx-share.sm {
  justify-content: flex-start;
  margin-top: 12px;
}
.cdx-call {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--divider);
  text-align: center;
}
.cdx-call span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 9px;
}
.cdx-call .btn {
  width: 100%;
  justify-content: center;
  font-size: 13.5px;
}
.cdx-call .btn svg {
  width: 15px;
  height: 15px;
}

/* body grid keeps the right gutter clear for the overlapping card */
.cdx-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: 44px;
  align-items: start;
}
.cdx-body {
  padding-top: 44px;
}
.cdx-col {
  min-width: 0;
}
.cdx-tabs {
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.cdx-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 20px;
}
.cdx-card h2 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 14px;
}
.cdx-lead {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 18px;
}
.cdx-learn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 26px;
}
.cdx-l {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
}
.cdx-l.x {
  display: none;
}
.cdx-learn.open .cdx-l.x {
  display: flex;
}
.cdx-ck {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-600);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.cdx-ck svg {
  width: 11px;
  height: 11px;
}
.cdx-cc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.cdx-cc-head h2 {
  margin: 0;
}
.cdx-cc-head span {
  font-size: 13px;
  color: var(--muted);
}
.cdx-mods {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.cdx-mods .mod-item + .mod-item {
  border-top: 1px solid var(--border);
}
.cdx-lec {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--text-2);
  border-top: 1px dashed var(--divider);
}
.cdx-lec .ic {
  color: var(--accent-600);
  display: grid;
  place-items: center;
}
.cdx-lec .ic svg {
  width: 16px;
  height: 16px;
}
.cdx-lec .nm {
  flex: 1;
  min-width: 0;
}
.cdx-lec .tm {
  color: var(--muted);
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
}
.cdx-prevb {
  padding: 2px 9px;
  border-radius: var(--r-pill);
  background: var(--navy-50);
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 700;
}
.cdx-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.cdx-ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}
.cdx-ins {
  display: flex;
  gap: 20px;
}
.cdx-ins-av {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
}
.cdx-ins-b h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 2px;
}
.cdx-ins-b .rl {
  font-size: 13px;
  color: var(--muted);
}
.cdx-ins-st {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 12px 0 12px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 600;
}
.cdx-ins-st span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cdx-ins-st svg {
  width: 15px;
  height: 15px;
  color: var(--accent-600);
}
.cdx-ins-b p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0;
}
.cdx-rev-top {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.cdx-score {
  text-align: center;
}
.cdx-score b {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-600);
}
.cdx-score .cdx-stars {
  margin: 6px 0 4px;
}
.cdx-score span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}
.cdx-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cdx-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cdx-bar .tr {
  flex: 1;
  height: 8px;
  border-radius: var(--r-pill);
  background: var(--slate-150);
  overflow: hidden;
}
.cdx-bar .tr i {
  display: block;
  height: 100%;
  border-radius: var(--r-pill);
  background: var(--gold-600);
}
.cdx-bar em {
  font-style: normal;
  font-size: 12.5px;
  color: var(--muted);
  min-width: 34px;
  text-align: right;
}
.cdx-revs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cdx-rv {
  display: flex;
  gap: 13px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}
.cdx-rv:first-child {
  padding-top: 0;
  border-top: none;
}
.cdx-rv-av {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}
.cdx-rv-h {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.cdx-rv-h b {
  font-size: 14px;
  color: var(--primary);
}
.cdx-rv p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
}

.cdx-eyebrow {
  display: inline-block;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  background: var(--navy-50);
  color: var(--accent-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cdx-more-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.cdx-more-h h2,
.cdx-rel-h {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin: 0;
}
.cdx-more-h h2 span {
  color: var(--accent-600);
}
.cdx-rel-h {
  margin: 0 0 22px;
}
.cdx-cgrid {
  display: grid;
  gap: 20px;
}
.cdx-cgrid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cdx-cgrid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cdx-cc {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.cdx-cc:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  border-color: var(--navy-200);
}
.cdx-cc-art {
  position: relative;
  height: 130px;
  display: grid;
  place-items: center;
}
.cdx-cc-mark {
  color: #fff;
  opacity: 0.9;
}
.cdx-cc-mark svg {
  width: 44px;
  height: 44px;
}
/* Course photo artwork */
.cdx-cc-art:has(.cdx-cc-photo) {
  overflow: hidden;
}
.cdx-cc-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--navy-900, #0a1f6f);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cdx-cc:hover .cdx-cc-photo {
  transform: scale(1.06);
}
.cdx-cc-art:has(.cdx-cc-photo)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 31, 111, 0.45) 0%,
    rgba(10, 31, 111, 0.12) 45%,
    rgba(10, 31, 111, 0.34) 100%
  );
}
.cdx-cc-art:has(.cdx-cc-photo) .cdx-cc-mark {
  display: none;
}
.cdx-cc-b {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px;
}
.cdx-cc-cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.cdx-cc-t {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.32;
  color: var(--primary);
}
.cdx-cc-r {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.cdx-cc-r b {
  color: var(--text);
  font-weight: 700;
}
.cdx-cc-r i {
  font-style: normal;
  color: var(--muted);
  font-size: 12.5px;
}
.cdx-cc-m {
  font-size: 12.5px;
  color: var(--muted);
}

/* sticky purchase bar */
.cdx-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(7, 9, 60, 0.1);
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cdx-bar.on {
  transform: translateY(0);
}
.cdx-bar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.cdx-bar-t {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.cdx-bar-t b {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cdx-bar-t span {
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .cdx-hero-in,
  .cdx-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .cdx-buy {
    margin-bottom: 0;
    max-width: 520px;
  }
  .cdx-gutter {
    display: none;
  }
  .cdx-hmain h1 {
    font-size: 2.1rem;
  }
}
@media (max-width: 760px) {
  .cdx-hmain h1 {
    font-size: 1.72rem;
  }
  .cdx-learn,
  .cdx-two {
    grid-template-columns: minmax(0, 1fr);
  }
  .cdx-rev-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
  .cdx-cgrid.two,
  .cdx-cgrid.three {
    grid-template-columns: minmax(0, 1fr);
  }
  .cdx-ins {
    flex-direction: column;
    gap: 14px;
  }
  .cdx-ins-av {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
  }
  .cdx-card {
    padding: 20px;
  }
  .cdx-more-h h2,
  .cdx-rel-h {
    font-size: 1.45rem;
  }
  .cdx-bar-t span {
    display: none;
  }
}

/* ===== course detail v2 — light gradient hero + sticky enrol card =====
   NOTE: no ancestor of .cdx-buy may set overflow, or position:sticky breaks. */
.cdx {
  position: relative;
  padding-bottom: 72px;
}
.cdx-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 640px;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(
      120% 95% at 88% 12%,
      rgba(232, 206, 255, 0.92) 0%,
      rgba(232, 206, 255, 0) 58%
    ),
    radial-gradient(
      95% 85% at 8% 96%,
      rgba(126, 140, 246, 0.62) 0%,
      rgba(126, 140, 246, 0) 62%
    ),
    radial-gradient(
      85% 75% at 58% 104%,
      rgba(186, 168, 252, 0.66) 0%,
      rgba(186, 168, 252, 0) 64%
    ),
    linear-gradient(180deg, #ffffff 0%, #faf8ff 38%, #f2ecfd 72%, #eae6fb 100%);
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 74%,
    transparent 100%
  );
  mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
}
.cdx-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 384px;
  gap: 48px;
  align-items: start;
  padding-top: 40px;
}
.cdx-col {
  min-width: 0;
}
.cdx-hmain {
  padding-bottom: 34px;
}
.cdx .crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}
.cdx .crumbs a {
  color: var(--text-2);
  font-weight: 600;
}
.cdx .crumbs a:hover {
  color: var(--primary);
}
.cdx .crumbs svg {
  width: 16px;
  height: 16px;
  color: var(--slate-400);
}
.cdx-hmain h1 {
  font-family: var(--font-display);
  font-size: 2.85rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0 0 18px;
  max-width: 20ch;
}
.cdx-sub {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 24px;
  max-width: 58ch;
}
.cdx-stars {
  display: inline-flex;
  gap: 2px;
  color: #f5a623;
}
.cdx-stars svg {
  width: 17px;
  height: 17px;
}
.cdx-rate {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14.5px;
  color: var(--text-2);
  margin-bottom: 22px;
}
.cdx-rate b {
  font-size: 1rem;
  font-weight: 800;
  color: var(--slate-900);
}
.cdx-tag.best {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--slate-200);
  color: var(--slate-900);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--sh-1);
}
.cdx-tag.best svg {
  width: 17px;
  height: 17px;
  color: #f5a623;
}
.cdx-chip {
  padding: 5px 12px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--slate-200);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
}
.cdx-chip.s {
  background: none;
  border: none;
  font-weight: 700;
  color: var(--slate-900);
}
.cdx-by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.cdx-by-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}
.cdx-by-t {
  font-size: 14.5px;
  color: var(--text-2);
}
.cdx-by-t b {
  color: var(--slate-900);
  font-weight: 700;
}
.cdx-hmeta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-2);
}
.cdx-hmeta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cdx-hmeta svg {
  width: 17px;
  height: 17px;
  color: var(--accent-600);
}

/* the card follows the page down the empty right column */
.cdx-buy {
  position: sticky;
  top: calc(var(--hdr-h) + 18px);
  z-index: 5;
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(10, 31, 111, 0.1),
    0 26px 60px rgba(10, 31, 111, 0.1);
  max-height: calc(100vh - var(--hdr-h) - 36px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.cdx-buy::-webkit-scrollbar {
  width: 8px;
}
.cdx-buy::-webkit-scrollbar-thumb {
  background: var(--slate-300);
  border-radius: var(--r-pill);
}
.cdx-prev {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy-900);
  margin: 10px 10px 0;
  border-radius: 14px;
}
.cdx-prev img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cdx-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent-600);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.28),
    0 10px 26px rgba(0, 0, 0, 0.28);
}
.cdx-play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}
.cdx-prev-l {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(4, 4, 58, 0.78));
}
.cdx-buy-b {
  padding: 18px;
}

/* course detail v2 overrides for shared blocks */
.cdx-tabs {
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.cdx-body {
  display: none;
}

@media (max-width: 1080px) {
  .cdx-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .cdx-buy {
    position: static;
    max-height: none;
    max-width: 520px;
    margin-bottom: 28px;
  }
  .cdx-hmain h1 {
    font-size: 2.15rem;
    max-width: none;
  }
  .cdx-bg {
    height: 520px;
  }
}
@media (max-width: 760px) {
  .cdx-hmain h1 {
    font-size: 1.75rem;
  }
  .cdx-rate {
    gap: 9px;
  }
  .cdx-hmeta {
    gap: 14px;
    font-size: 13px;
  }
}

/* ===== course detail v3 — 3/4 content column, card readable top-to-bottom ===== */
.cdx-grid {
  grid-template-columns: minmax(0, 3fr) minmax(450px, 1fr);
  gap: 40px;
}

/* The card is taller than the viewport, so it must NOT scroll internally --
   script.js sets `top` to pin its bottom instead, which lets the whole card
   be read as the page scrolls. */
.cdx-buy {
  overflow: visible;
  max-height: none;
}
.cdx-buy-b {
  padding: 16px;
}
.cdx-enroll {
  margin-bottom: 10px;
}
.cdx-enroll2 {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}
.cdx-guar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 0 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--success);
  text-align: center;
  line-height: 1.4;
}
.cdx-guar svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.cdx-spec {
  padding: 9px 0;
  font-size: 13px;
}
.cdx-spec b {
  background: var(--slate-100);
  border-radius: var(--r-sm);
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.cdx-prev {
  margin: 8px 8px 0;
  border-radius: 12px;
}
.cdx-play {
  width: 58px;
  height: 58px;
}
.cdx-play svg {
  width: 21px;
  height: 21px;
}

@media (max-width: 1080px) {
  .cdx-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .cdx-buy {
    position: static !important;
    top: auto !important;
    max-width: 520px;
    margin-bottom: 28px;
  }
}

/* ===== course detail v4 — stacked sections + sticky section nav ===== */
.cdx-secs {
  display: block;
}
.cdx-sec {
  display: block;
  scroll-margin-top: calc(var(--hdr-h) + 78px);
}
/* the tab bar becomes in-page navigation that rides along under the header */
.cdx-tabs {
  position: sticky;
  top: calc(var(--hdr-h) + 10px);
  z-index: 6;
  margin-bottom: 20px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(10, 31, 111, 0.08);
  border: 1px solid var(--slate-200);
}
.cdx-tabs .tab {
  cursor: pointer;
}

/* ===== course detail v5 — enrol card styled to the reference ===== */
.cdx-buy {
  padding: 14px;
  background: var(--surface);
  border: 1.6px solid #b9a7f2;
  border-radius: 18px;
  box-shadow:
    0 10px 30px rgba(87, 60, 200, 0.1),
    0 26px 60px rgba(87, 60, 200, 0.1);
}

/* preview: inset, softer radius, ringed play button, eye on the label */
.cdx-prev {
  margin: 0;
  border-radius: 10px;
}
.cdx-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.cdx-play {
  width: 82px;
  height: 82px;
  background: #fff;
  color: #3f5bff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
}
.cdx-play svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}
.cdx-prev-l {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}
.cdx-prev-l svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cdx-buy-b {
  padding: 16px 4px 4px;
}
/* reference uses soft rectangles, not pills */
.cdx-buy .btn {
  border-radius: 10px;
}
.cdx-enroll {
  background: linear-gradient(96deg, #4f57f5 0%, #7c5cf6 52%, #a855f7 100%);
  border: none;
  color: #fff;
  padding: 16px 20px;
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(103, 79, 240, 0.32);
  margin-bottom: 12px;
}
.cdx-enroll:hover {
  filter: brightness(1.06);
}
.cdx-enroll2 {
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
  background: var(--surface);
  border: 1px solid var(--slate-200);
  margin-bottom: 14px;
}
.cdx-enroll2:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
  color: var(--primary);
}
.cdx-guar {
  color: var(--muted);
  font-weight: 500;
  font-size: 13.5px;
  margin-bottom: 18px;
}
.cdx-guar svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.cdx-spec {
  padding: 13px 0;
  font-size: 15px;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-150);
}
.cdx-spec b {
  background: var(--slate-100);
  color: var(--slate-700);
  border-radius: 7px;
  padding: 5px 11px;
  font-size: 12.5px;
  font-weight: 600;
}
.cdx-showmore {
  margin-top: 14px;
  font-size: 14px;
}
.cdx-share {
  margin-top: 18px;
}
.cdx-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--slate-200);
}
.cdx-share a:hover {
  background: var(--navy-50);
  border-color: var(--navy-200);
}
.cdx-call {
  margin-top: 18px;
  padding-top: 16px;
}
.cdx-call span {
  font-size: 13.5px;
}
.cdx-call .btn {
  background: #efeaff;
  border: none;
  color: var(--accent-600);
  font-weight: 700;
  padding: 13px 18px;
}
.cdx-call .btn:hover {
  background: #e4dcff;
}

/* ===== course detail v6 — trim the card so it fits a laptop viewport ===== */
.cdx-buy {
  padding: 12px;
}
.cdx-buy-b {
  padding: 14px 3px 2px;
}
.cdx-enroll {
  padding: 14px 20px;
  margin-bottom: 10px;
}
.cdx-enroll2 {
  padding: 13px 20px;
  margin-bottom: 12px;
}
.cdx-guar {
  margin-bottom: 14px;
}
.cdx-spec {
  padding: 9px 0;
  font-size: 14px;
}
.cdx-showmore {
  margin-top: 11px;
}
.cdx-share {
  margin-top: 14px;
  gap: 8px;
}
.cdx-share a {
  width: 36px;
  height: 36px;
}
.cdx-call {
  margin-top: 14px;
  padding-top: 13px;
}
.cdx-call span {
  margin-bottom: 8px;
}
.cdx-call .btn {
  padding: 11px 16px;
}
.cdx-ring {
  width: 118px;
  height: 118px;
}
.cdx-play {
  width: 72px;
  height: 72px;
}
.cdx-play svg {
  width: 24px;
  height: 24px;
}

/* ===== course detail v7 — smaller play button, pulsing ring, video modal ===== */
.cdx-prev{cursor:pointer}
.cdx-prev:focus-visible{outline:3px solid var(--accent);outline-offset:3px}
.cdx-play{width:54px;height:54px;transition:transform .22s cubic-bezier(.2,.8,.2,1),box-shadow .22s}
.cdx-play svg{width:18px;height:18px;margin-left:3px}
.cdx-prev:hover .cdx-play{transform:translate(-50%,-50%) scale(1.09);box-shadow:0 10px 26px rgba(0,0,0,.3)}

/* the outline breathes outward from the button */
.cdx-ring{width:54px;height:54px;border:1.6px solid rgba(255,255,255,.9);animation:cdxRing 2.6s cubic-bezier(.4,0,.6,1) infinite}
@keyframes cdxRing{
  0%   {transform:translate(-50%,-50%) scale(1);   opacity:.85}
  70%  {transform:translate(-50%,-50%) scale(2.1); opacity:0}
  100% {transform:translate(-50%,-50%) scale(2.1); opacity:0}
}
@media(prefers-reduced-motion:reduce){.cdx-ring{animation:none;transform:translate(-50%,-50%) scale(1.6);opacity:.4}.cdx-play{transition:none}}

/* modal */
.cdx-modal{position:fixed;inset:0;z-index:200;display:grid;place-items:center;padding:24px}
.cdx-modal[hidden]{display:none}
.cdx-modal-bd{position:absolute;inset:0;background:rgba(4,4,58,.72);backdrop-filter:blur(8px);animation:cdxFade .22s ease}
.cdx-modal-in{position:relative;width:min(1040px,100%);animation:cdxPop .28s cubic-bezier(.2,.8,.2,1)}
.cdx-modal-frame{position:relative;aspect-ratio:16/9;background:#000;border-radius:16px;overflow:hidden;box-shadow:0 30px 90px rgba(0,0,0,.55);border:1px solid rgba(255,255,255,.16)}
.cdx-modal-frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0;display:block}
.cdx-modal-x{position:absolute;top:-46px;right:0;width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.28);background:rgba(255,255,255,.12);color:#fff;display:grid;place-items:center;cursor:pointer;transition:background .18s}
.cdx-modal-x:hover{background:rgba(255,255,255,.24)}
.cdx-modal-x svg{width:18px;height:18px}
@keyframes cdxFade{from{opacity:0}to{opacity:1}}
@keyframes cdxPop{from{opacity:0;transform:translateY(14px) scale(.97)}to{opacity:1;transform:none}}
@media(max-width:600px){.cdx-modal{padding:16px}.cdx-modal-x{top:-42px}}
body.cdx-lock{overflow:hidden}


/* ===== course detail v8 — even 20px padding on all four sides of the card ===== */
.cdx-buy{padding:20px}
/* zero side padding here so the buttons/specs line up with the preview edges */
.cdx-buy-b{padding:16px 0 0}


/* ===== course detail v9 — larger play glyph for visibility ===== */
.cdx-play{width:60px;height:60px}
.cdx-play svg{width:26px;height:26px;margin-left:4px}
.cdx-ring{width:60px;height:60px}
@media(prefers-reduced-motion:reduce){.cdx-ring{transform:translate(-50%,-50%) scale(1.6)}}


/* ===== category tiles: one per row on phones ===== */
@media (max-width: 640px) {
  .cat-grid{grid-template-columns:minmax(0,1fr)}
  /* full width means labels no longer wrap mid-word */
  .cat-tile{padding:16px 18px}
  .cat-tile .lbl{overflow-wrap:normal}
}


/* ===== contact form — even vertical rhythm + tidy mobile layout ===== */
/* fields inside a row were getting margin-bottom AND the grid gap, so stacked
   pairs sat 34px apart while row-to-row sat 18px. One source of spacing now. */
.ct-row2{margin-bottom:18px}
.ct-row2 > .field{margin-bottom:0}

@media (max-width: 640px){
  .ct-form{padding:20px;border-radius:var(--r-xl)}
  .ct-form-top{align-items:flex-start;flex-wrap:wrap;gap:8px;margin-bottom:6px}
  .ct-form-top h2{font-size:1.22rem;line-height:1.25}
  .ct-min{font-size:11px;padding:4px 9px}
  .ct-form .sub{font-size:13.5px;line-height:1.55;margin-bottom:18px}

  /* 2x2 pill group reads better with a softer radius than the full stadium */
  .ct-form .tabs.pill{border-radius:14px;padding:5px;gap:5px;margin-bottom:20px!important}
  .ct-form .tabs.pill .tab{border-radius:10px;padding:10px 6px!important;font-size:12.5px!important}

  .ct-row2{gap:16px;margin-bottom:16px}
  .field{margin-bottom:16px;gap:5px}
  .field label{font-size:12.5px}
  /* 16px keeps iOS from zooming the page on focus */
  .field input,.field select{height:46px;font-size:16px}
  .field textarea{font-size:16px}
  .ct-form .btn{width:100%;justify-content:center}

  /* two chips side by side squeeze the email address on narrow screens */
  .ct-quick{grid-template-columns:minmax(0,1fr)}
}


/* All four enquiry panels stack in one grid cell, so the widest control sizes
   the whole form. A <select> is as wide as its longest option, which pushed the
   fields past the card's padding. Cap the cell and let controls fill it. */
.ct-form .tab-panels{grid-template-columns:minmax(0,1fr)}
.ct-form .tab-panel{min-width:0}
.field input,.field select,.field textarea{width:100%;min-width:0;max-width:100%}


/* ===== category course listing (e.g. Artificial Intelligence) ===== */
.cxp-head{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;flex-wrap:wrap;margin-bottom:32px}
.cxp-head>div{max-width:640px}
.cxp-eyebrow{display:inline-block;padding:5px 13px;border-radius:var(--r-pill);background:var(--navy-50);color:var(--accent-600);font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;margin-bottom:12px}
.cxp-head h2{font-family:var(--font-display);font-size:2rem;line-height:1.16;letter-spacing:-.025em;font-weight:700;color:var(--primary);margin:0 0 10px}
.cxp-head p{font-size:1rem;line-height:1.65;color:var(--text-2);margin:0}

.cxp-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.cxp-card{display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--slate-200);border-radius:18px;overflow:hidden;
  box-shadow:0 2px 6px rgba(10,31,111,.05),0 10px 24px rgba(10,31,111,.06);
  transition:transform .24s cubic-bezier(.2,.8,.2,1),box-shadow .24s,border-color .24s}
.cxp-card:hover{transform:translateY(-6px);border-color:rgba(63,69,224,.34);box-shadow:0 10px 24px rgba(10,31,111,.10),0 22px 48px rgba(63,69,224,.20)}

.cxp-art{position:relative;display:block;height:150px;overflow:hidden}
.cxp-grid-l,.cxp-grid .cxp-card .cxp-grid{}
.cxp-card .cxp-grid{position:absolute;inset:0;display:block;
  background-image:linear-gradient(rgba(255,255,255,.10) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.10) 1px,transparent 1px);
  background-size:24px 24px;opacity:.55}
.cxp-glow{position:absolute;right:-36px;bottom:-52px;width:170px;height:170px;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.26),transparent 68%)}
.cxp-no{position:absolute;top:14px;right:18px;font-family:var(--font-display);font-size:1.9rem;font-weight:700;color:rgba(255,255,255,.24);line-height:1}
.cxp-mark{position:absolute;inset:0;display:grid;place-items:center;color:#fff}
.cxp-mark svg{width:60px;height:60px;filter:drop-shadow(0 6px 14px rgba(0,0,0,.26));transition:transform .28s cubic-bezier(.2,.8,.2,1)}
.cxp-card:hover .cxp-mark svg{transform:scale(1.07)}

.cxp-body{display:flex;flex-direction:column;gap:10px;padding:20px;flex:1}
.cxp-tag{align-self:flex-start;padding:4px 11px;border-radius:var(--r-pill);background:var(--gold-100);color:var(--gold-800);font-size:11px;font-weight:800;letter-spacing:.04em}
.cxp-t{font-family:var(--font-display);font-size:1.06rem;font-weight:700;line-height:1.32;letter-spacing:-.01em;color:var(--primary)}
.cxp-d{font-size:14px;line-height:1.62;color:var(--text-2)}
.cxp-cta{margin-top:auto;padding-top:12px;display:inline-flex;align-items:center;gap:7px;font-size:13.5px;font-weight:700;color:var(--accent-600)}
.cxp-cta svg{width:16px;height:16px;transition:transform .24s}
.cxp-card:hover .cxp-cta svg{transform:translateX(4px)}

.cxp-cta-band{display:flex;align-items:center;justify-content:space-between;gap:26px;flex-wrap:wrap;
  padding:30px 34px;border-radius:var(--r-xl);background:var(--grad-hero);color:#fff}
.cxp-cta-band h3{font-family:var(--font-display);font-size:1.4rem;font-weight:700;margin:0 0 6px}
.cxp-cta-band p{font-size:.98rem;line-height:1.6;color:rgba(255,255,255,.82);margin:0;max-width:52ch}

@media(max-width:1000px){.cxp-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.cxp-head h2{font-size:1.7rem}}
@media(max-width:640px){
  .cxp-grid{grid-template-columns:minmax(0,1fr);gap:18px}
  .cxp-head{margin-bottom:24px;gap:18px}
  .cxp-head h2{font-size:1.45rem}
  .cxp-art{height:132px}
  .cxp-mark svg{width:52px;height:52px}
  .cxp-cta-band{padding:24px;gap:18px}
  .cxp-cta-band h3{font-size:1.2rem}
  .cxp-cta-band .btn{width:100%;justify-content:center}
}


/* ===== course detail — outcomes list + numbered session rows ===== */
/* one outcome per row so they read in order top to bottom */
.cdx-out{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:minmax(0,1fr);gap:14px;counter-reset:none}
.cdx-out li{display:flex;gap:12px;align-items:flex-start}
.cdx-out .n{flex-shrink:0;width:30px;height:30px;border-radius:9px;display:grid;place-items:center;
  background:var(--navy-50);color:var(--accent-600);font-family:var(--font-display);font-size:12.5px;font-weight:800}
.cdx-out .t{font-size:14px;line-height:1.6;color:var(--text-2);padding-top:4px}

/* session numbering inside the curriculum */
.cdx-lec .nm b{display:inline-block;min-width:30px;color:var(--accent-600);font-weight:700}
.cdx-lec .tm{white-space:nowrap}

@media(max-width:760px){
  .cdx-out{grid-template-columns:minmax(0,1fr);gap:12px}
  .cdx-out .n{width:26px;height:26px;font-size:11.5px}
  .cdx-out .t{font-size:13.5px;padding-top:2px}
}


/* ===== home — 100% placement support ===== */
.plc{position:relative;overflow:hidden;background:var(--navy-950);color:#fff}
.plc-bg{position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(90% 70% at 88% 0%, rgba(238,215,73,.16) 0%, rgba(238,215,73,0) 55%),
    radial-gradient(85% 75% at 4% 100%, rgba(86,97,246,.42) 0%, rgba(86,97,246,0) 58%),
    radial-gradient(70% 60% at 55% 40%, rgba(143,92,255,.20) 0%, rgba(143,92,255,0) 62%)}
.plc>.container{position:relative}

.plc-head{max-width:760px;margin-bottom:40px}
.plc-eyebrow{display:inline-flex;align-items:center;gap:9px;padding:7px 15px;border-radius:var(--r-pill);
  background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.20);
  font-size:12.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-bottom:18px}
.plc-eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--gold-500);box-shadow:0 0 0 4px rgba(238,215,73,.22)}
.plc-head h2{font-family:var(--font-display);font-size:2.9rem;line-height:1.1;letter-spacing:-.03em;font-weight:700;margin:0 0 16px}
.plc-head h2 .g{background:var(--grad-gold);-webkit-background-clip:text;background-clip:text;color:transparent}
.plc-head p{font-size:1.08rem;line-height:1.7;color:rgba(255,255,255,.76);margin:0}

.plc-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin-bottom:40px}
.plc-stat{display:flex;flex-direction:column;gap:6px;padding:22px;border-radius:var(--r-lg);
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.13);backdrop-filter:blur(10px)}
.plc-stat .ic{width:38px;height:38px;border-radius:var(--r-md);display:grid;place-items:center;
  background:rgba(238,215,73,.16);color:var(--gold-400);margin-bottom:6px}
.plc-stat .ic svg{width:20px;height:20px}
.plc-stat .n{font-family:var(--font-display);font-size:1.9rem;font-weight:700;line-height:1}
.plc-stat .l{font-size:13.5px;color:rgba(255,255,255,.66)}

.plc-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-bottom:44px}
.plc-card{padding:26px;border-radius:var(--r-xl);background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.12);transition:transform .24s cubic-bezier(.2,.8,.2,1),background .24s,border-color .24s}
.plc-card:hover{transform:translateY(-5px);background:rgba(255,255,255,.09);border-color:rgba(238,215,73,.34)}
.plc-ico{width:52px;height:52px;border-radius:14px;display:grid;place-items:center;color:#fff;margin-bottom:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.28)}
.plc-ico svg{width:26px;height:26px}
.plc-ico.i0{background:linear-gradient(135deg,#3f45e0,#6d7bff)}
.plc-ico.i1{background:linear-gradient(135deg,#5b3fe0,#8f5cff)}
.plc-ico.i2{background:linear-gradient(135deg,#1c3fb0,#2f9e9e)}
.plc-ico.i3{background:linear-gradient(135deg,#12157f,#3f45e0)}
.plc-ico.i4{background:linear-gradient(135deg,#d4b81f,#f3e074);color:var(--navy-900)}
.plc-ico.i5{background:linear-gradient(135deg,#2b31b8,#5661f6)}
.plc-card h3{font-family:var(--font-display);font-size:1.1rem;font-weight:700;margin:0 0 9px}
.plc-card p{font-size:14px;line-height:1.65;color:rgba(255,255,255,.72);margin:0}

.plc-flow{padding:30px;border-radius:var(--r-xl);background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);margin-bottom:40px}
.plc-flow-h{margin-bottom:22px}
.plc-flow-h h3{font-family:var(--font-display);font-size:1.35rem;font-weight:700;margin:0 0 6px}
.plc-flow-h p{font-size:14px;color:rgba(255,255,255,.66);margin:0}
.plc-steps{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px;position:relative}
.plc-step{position:relative;padding:18px;border-radius:var(--r-lg);background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.11)}
.plc-step .no{display:inline-block;font-family:var(--font-display);font-size:1.5rem;font-weight:700;
  color:var(--gold-400);line-height:1;margin-bottom:10px}
.plc-step .t{display:flex;flex-direction:column;gap:5px}
.plc-step .t b{font-size:14.5px;font-weight:700}
.plc-step .t em{font-style:normal;font-size:13px;line-height:1.55;color:rgba(255,255,255,.66)}

.plc-cta{display:grid;grid-template-columns:1.25fr .75fr;gap:32px;align-items:center;
  padding:32px;border-radius:var(--r-xl);background:linear-gradient(120deg,rgba(63,69,224,.34),rgba(143,92,255,.22));
  border:1px solid rgba(255,255,255,.18)}
.plc-cta-t h3{font-family:var(--font-display);font-size:1.6rem;line-height:1.2;font-weight:700;margin:0 0 10px}
.plc-cta-t p{font-size:15px;line-height:1.65;color:rgba(255,255,255,.80);margin:0 0 16px}
.plc-ticks{display:flex;flex-wrap:wrap;gap:10px 20px}
.plc-ticks span{display:inline-flex;align-items:center;gap:8px;font-size:13.5px;font-weight:600;color:rgba(255,255,255,.88)}
.plc-ticks svg{width:15px;height:15px;color:var(--gold-400)}
.plc-cta-b{display:flex;flex-direction:column;gap:12px}
.plc-cta-b .btn{width:100%;justify-content:center}
.btn.btn-ghost{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.28);color:#fff}
.btn.btn-ghost:hover{background:rgba(255,255,255,.18)}
.plc-note{margin:24px 0 0;font-size:12px;line-height:1.6;color:rgba(255,255,255,.46);max-width:900px}

@media(max-width:1100px){
  .plc-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .plc-steps{grid-template-columns:repeat(3,minmax(0,1fr))}
  .plc-head h2{font-size:2.3rem}
}
@media(max-width:820px){
  .plc-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .plc-cta{grid-template-columns:minmax(0,1fr);gap:22px}
}
@media(max-width:600px){
  .plc-head h2{font-size:1.8rem}
  .plc-head p{font-size:1rem}
  .plc-grid,.plc-steps{grid-template-columns:minmax(0,1fr)}
  .plc-card{padding:20px}
  .plc-flow,.plc-cta{padding:22px}
  .plc-cta-t h3{font-size:1.3rem}
}


/* course card artwork (SVG fills the panel; number badge sits on top) */
.cxp-art{background:var(--navy-900)}
.cxp-art img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s cubic-bezier(.2,.8,.2,1)}
.cxp-card:hover .cxp-art img{transform:scale(1.05)}
.cxp-no{z-index:2;text-shadow:0 2px 10px rgba(0,0,0,.35)}

/* photo artwork: scrim keeps the number legible over any image */
.cxp-art:has(.cxp-photo)::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(180deg,rgba(10,31,111,.58) 0%,rgba(10,31,111,.14) 46%,rgba(10,31,111,.34) 100%)}
.cxp-art:has(.cxp-photo) .cxp-no{color:rgba(255,255,255,.92)}
.cxp-art:has(.cxp-photo) .cxp-grid{z-index:1;opacity:.16}
.cxp-art:has(.cxp-photo) .cxp-glow,
.cxp-art:has(.cxp-photo) .cxp-mark{display:none}


/* ===== student service inner pages (1.1 – 1.7) ===== */
.svp{position:relative;padding-bottom:8px}
.svp-bg{position:absolute;left:0;right:0;top:0;height:520px;pointer-events:none;overflow:hidden;
  background:
    radial-gradient(115% 90% at 88% 10%, rgba(232,206,255,.85) 0%, rgba(232,206,255,0) 58%),
    radial-gradient(95% 85% at 6% 98%, rgba(126,140,246,.55) 0%, rgba(126,140,246,0) 62%),
    linear-gradient(180deg,#ffffff 0%,#faf8ff 45%,#f1ecfd 100%);
  -webkit-mask-image:linear-gradient(180deg,#000 0%,#000 72%,transparent 100%);
          mask-image:linear-gradient(180deg,#000 0%,#000 72%,transparent 100%)}
.svp-hero{position:relative;padding-top:40px;padding-bottom:8px;max-width:1400px}
.svp .crumbs{display:flex;align-items:center;gap:8px;font-size:13.5px;color:var(--muted);margin-bottom:22px;flex-wrap:wrap}
.svp .crumbs a{color:var(--text-2);font-weight:600}
.svp .crumbs a:hover{color:var(--primary)}
.svp .crumbs svg{width:15px;height:15px;color:var(--slate-400)}
.svp-no{display:inline-block;padding:5px 13px;border-radius:var(--r-pill);background:var(--navy-900);color:#fff;
  font-family:var(--font-display);font-size:12.5px;font-weight:700;letter-spacing:.06em;margin-bottom:16px}
.svp-hero h1{font-family:var(--font-display);font-size:3rem;line-height:1.08;letter-spacing:-.03em;font-weight:700;
  color:var(--slate-900);margin:0 0 10px;max-width:18ch}
.svp-tag{font-family:var(--font-display);font-size:1.25rem;font-weight:600;color:var(--accent-600);margin:0 0 16px}
.svp-lead{font-size:1.08rem;line-height:1.72;color:var(--text-2);margin:0 0 26px;max-width:62ch}

.svp-facts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;max-width:900px}
.svp-fact{display:flex;flex-direction:column;gap:4px;padding:14px 16px;border-radius:var(--r-lg);
  background:rgba(255,255,255,.78);border:1px solid var(--slate-200);backdrop-filter:blur(8px)}
.svp-fact .k{font-size:11.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}
.svp-fact b{font-size:15px;font-weight:700;color:var(--primary)}

.svp-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:44px;align-items:start}
.svp-main{min-width:0;display:flex;flex-direction:column;gap:44px}
.svp-block h2{font-family:var(--font-display);font-size:1.6rem;line-height:1.2;letter-spacing:-.02em;
  font-weight:700;color:var(--primary);margin:0 0 20px}

.svp-hls{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.svp-hl{padding:24px;border-radius:var(--r-xl);background:var(--surface);border:1px solid var(--border);
  transition:transform .22s,box-shadow .22s,border-color .22s}
.svp-hl:hover{transform:translateY(-4px);box-shadow:var(--sh-3);border-color:var(--navy-200)}
.svp-hl-ico{width:46px;height:46px;border-radius:13px;display:grid;place-items:center;color:#fff;margin-bottom:14px}
.svp-hl-ico svg{width:23px;height:23px}
.svp-hl-ico.i0{background:linear-gradient(135deg,#0A1F6F,#3f45e0)}
.svp-hl-ico.i1{background:linear-gradient(135deg,#3f45e0,#8f5cff)}
.svp-hl-ico.i2{background:linear-gradient(135deg,#1c3fb0,#2f9e9e)}
.svp-hl-ico.i3{background:linear-gradient(135deg,#d4b81f,#f3e074);color:var(--navy-900)}
.svp-hl h3{font-family:var(--font-display);font-size:1.05rem;font-weight:700;color:var(--primary);margin:0 0 8px}
.svp-hl p{font-size:14px;line-height:1.65;color:var(--text-2);margin:0}

.svp-gets{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:12px 26px}
.svp-gets li{display:flex;gap:11px;align-items:flex-start;font-size:14.5px;line-height:1.55;color:var(--text-2)}
.svp-gets .tick{flex-shrink:0;width:20px;height:20px;border-radius:50%;background:var(--green-50);
  color:var(--green-600);display:grid;place-items:center;margin-top:1px}
.svp-gets .tick svg{width:11px;height:11px}

.svp-steps{list-style:none;margin:0;padding:0;position:relative;display:flex;flex-direction:column;gap:0}
.svp-step{position:relative;display:flex;gap:18px;padding:0 0 22px 0}
.svp-step:last-child{padding-bottom:0}
.svp-step::before{content:"";position:absolute;left:19px;top:44px;bottom:0;width:2px;background:var(--divider)}
.svp-step:last-child::before{display:none}
.svp-step .no{flex-shrink:0;width:40px;height:40px;border-radius:50%;display:grid;place-items:center;
  background:var(--navy-50);color:var(--accent-600);font-family:var(--font-display);font-size:13px;font-weight:800;
  border:1.5px solid var(--navy-100)}
.svp-step b{display:block;font-family:var(--font-display);font-size:1rem;font-weight:700;color:var(--primary);margin-bottom:5px;padding-top:9px}
.svp-step p{font-size:14px;line-height:1.65;color:var(--text-2);margin:0}

.svp-auds{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.svp-aud{padding:20px;border-radius:var(--r-lg);background:var(--slate-50);border:1px solid var(--border)}
.svp-aud h4{font-family:var(--font-display);font-size:1rem;font-weight:700;color:var(--primary);margin:0 0 7px}
.svp-aud p{font-size:13.5px;line-height:1.6;color:var(--text-2);margin:0}

.svp-faq .acc-item{background:var(--surface)}

/* sticky enquiry card */
.svp-aside{position:sticky;top:calc(var(--hdr-h) + 18px)}
.svp-card{padding:24px;border-radius:20px;background:var(--surface);border:1.6px solid #b9a7f2;
  box-shadow:0 10px 30px rgba(87,60,200,.10),0 26px 60px rgba(87,60,200,.10)}
.svp-card-tag{display:inline-block;padding:5px 12px;border-radius:var(--r-pill);background:var(--navy-50);
  color:var(--accent-600);font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;margin-bottom:12px}
.svp-card h3{font-family:var(--font-display);font-size:1.15rem;font-weight:700;color:var(--primary);margin:0 0 8px}
.svp-card>p{font-size:13.5px;line-height:1.6;color:var(--text-2);margin:0 0 16px}
.svp-cta{width:100%;justify-content:center;border-radius:10px;margin-bottom:10px;
  background:linear-gradient(96deg,#4f57f5 0%,#7c5cf6 52%,#a855f7 100%);border:none;color:#fff;
  box-shadow:0 8px 20px rgba(103,79,240,.30)}
.svp-cta:hover{filter:brightness(1.06)}
.svp-cta2{width:100%;justify-content:center;border-radius:10px;margin-bottom:16px}
.svp-card-facts{display:flex;flex-direction:column;gap:0;border-top:1px solid var(--divider);padding-top:4px}
.svp-card-facts .svp-fact{flex-direction:row;align-items:center;justify-content:space-between;gap:12px;
  background:none;border:none;border-bottom:1px solid var(--divider);border-radius:0;padding:11px 0;backdrop-filter:none}
.svp-card-facts .svp-fact:last-child{border-bottom:none}
.svp-card-facts .svp-fact .k{text-transform:none;letter-spacing:0;font-size:13.5px;font-weight:500;color:var(--text-2)}
.svp-card-facts .svp-fact b{font-size:12.5px;background:var(--slate-100);border-radius:7px;padding:4px 10px;white-space:nowrap}
.svp-card-call{margin-top:14px;padding-top:14px;border-top:1px solid var(--divider);text-align:center}
.svp-card-call span{display:block;font-size:12.5px;color:var(--muted);margin-bottom:8px}
.svp-card-call a{display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:700;color:var(--accent-600)}
.svp-card-call svg{width:15px;height:15px}

.svp-eyebrow{display:inline-block;padding:5px 13px;border-radius:var(--r-pill);background:var(--navy-50);
  color:var(--accent-600);font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;margin-bottom:12px}
.svp-more-h{font-family:var(--font-display);font-size:1.8rem;font-weight:700;letter-spacing:-.02em;color:var(--primary);margin:0 0 22px}
.svp-rels{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.svp-rel{display:flex;align-items:center;gap:13px;padding:16px 18px;border-radius:var(--r-lg);
  background:var(--surface);border:1px solid var(--border);transition:transform .2s,box-shadow .2s,border-color .2s}
.svp-rel:hover{transform:translateY(-3px);box-shadow:var(--sh-2);border-color:var(--navy-200)}
.svp-rel .n{flex-shrink:0;width:38px;height:38px;border-radius:10px;display:grid;place-items:center;
  background:var(--navy-50);color:var(--accent-600);font-family:var(--font-display);font-size:12.5px;font-weight:800}
.svp-rel .t{flex:1;min-width:0;display:flex;flex-direction:column;gap:2px}
.svp-rel .t b{font-size:14.5px;font-weight:700;color:var(--primary)}
.svp-rel .t em{font-style:normal;font-size:12.5px;color:var(--muted)}
.svp-rel svg{width:17px;height:17px;color:var(--slate-400);flex-shrink:0;transition:transform .2s}
.svp-rel:hover svg{transform:translateX(3px);color:var(--accent-600)}

.svp-band{display:flex;align-items:center;justify-content:space-between;gap:26px;flex-wrap:wrap;
  padding:30px 34px;border-radius:var(--r-xl);background:var(--grad-hero);color:#fff}
.svp-band h3{font-family:var(--font-display);font-size:1.45rem;font-weight:700;margin:0 0 6px}
.svp-band p{font-size:.98rem;line-height:1.6;color:rgba(255,255,255,.82);margin:0;max-width:56ch}

/* the service rows on services.html are links now */
a.svc-row{text-decoration:none}
a.svc-row:hover .c h3{color:var(--accent-600)}

@media(max-width:1080px){
  .svp-grid{grid-template-columns:minmax(0,1fr)}
  .svp-aside{position:static;max-width:520px}
  .svp-hero h1{font-size:2.3rem;max-width:none}
  .svp-facts{grid-template-columns:repeat(2,minmax(0,1fr))}
  .svp-rels{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
  .svp-hero h1{font-size:1.85rem}
  .svp-tag{font-size:1.08rem}
  .svp-hls,.svp-gets,.svp-auds,.svp-rels{grid-template-columns:minmax(0,1fr)}
  .svp-facts{grid-template-columns:minmax(0,1fr)}
  .svp-block h2{font-size:1.35rem}
  .svp-band{padding:24px}
  .svp-band .btn{width:100%;justify-content:center}
}


/* FAQ on the service pages: the shared .acc-* rules were written for a narrow
   column — no side padding and a 420px answer cap — which reads as misaligned
   in this 916px column. Scoped overrides only; the contact/blog FAQ is untouched. */
.svp-faq{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden}
.svp-faq .acc-item{background:none;border-bottom:1px solid var(--divider)}
.svp-faq .acc-item:last-child{border-bottom:none}
.svp-faq .acc-item.open{background:var(--slate-50)}
.svp-faq .acc-head{padding:18px 22px;gap:18px;font-size:1.02rem;line-height:1.4}
.svp-faq .acc-head:hover{color:var(--accent-600)}
.svp-faq .acc-panel{padding:0 22px 20px;max-width:72ch}

@media(max-width:700px){
  .svp-faq .acc-head{padding:16px;font-size:.98rem}
  .svp-faq .acc-panel{padding:0 16px 16px}
}


/* footer socials are links now, not inert spans — same chip styling plus a hover */
.socials a{width:38px;height:38px;border-radius:var(--r-md);background:rgba(255,255,255,.08);
  display:grid;place-items:center;color:#fff;transition:background .18s,color .18s,transform .18s}
.socials a svg{width:18px;height:18px}
.socials a:hover{background:var(--gold-500);color:var(--navy-900);transform:translateY(-2px)}
.socials a:focus-visible{outline:2px solid var(--gold-500);outline-offset:3px}


/* footer column count varies (3 on the multi-page site, 4 in site.html),
   so size the track list to whatever columns are actually present */
.foot-top.cols-3{grid-template-columns:1.4fr repeat(3,minmax(0,1fr))}
.foot-top.cols-4{grid-template-columns:1.4fr repeat(4,minmax(0,1fr))}
/* these two outrank the plain .foot-top rules in the 900/640 breakpoints above,
   so the responsive collapse has to be restated at the same specificity */
@media(max-width:900px){
  .foot-top.cols-3,.foot-top.cols-4{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:640px){
  .foot-top.cols-3,.foot-top.cols-4{grid-template-columns:minmax(0,1fr);gap:28px}
}


/* ===== courses page — the 8 category catalogue ===== */
.xc-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.xc-card{display:flex;flex-direction:column;padding:28px;border-radius:22px;background:var(--surface);
  border:1px solid var(--border);
  transition:transform .26s cubic-bezier(.2,.8,.2,1),box-shadow .26s,border-color .26s}
.xc-card:hover{transform:translateY(-6px);border-color:rgba(63,69,224,.32);
  box-shadow:0 12px 28px rgba(10,31,111,.10),0 24px 52px rgba(63,69,224,.14)}
.xc-top{display:flex;align-items:center;gap:15px;margin-bottom:15px}
.xc-ico{flex-shrink:0;width:52px;height:52px;border-radius:15px;display:grid;place-items:center;color:#fff}
.xc-ico svg{width:26px;height:26px}
.xc-top h3{flex:1;font-family:var(--font-display);font-size:1.2rem;font-weight:700;line-height:1.28;
  color:var(--primary);margin:0}
.xc-no{font-family:var(--font-display);font-size:1.3rem;font-weight:700;color:var(--slate-200);
  font-variant-numeric:tabular-nums}
.xc-d{font-size:14.5px;line-height:1.68;color:var(--text-2);margin:0 0 16px}
.xc-areas{display:flex;flex-wrap:wrap;gap:7px;margin-bottom:18px}
.xc-areas span{padding:5px 12px;border-radius:var(--r-pill);background:var(--navy-50);color:var(--navy-700);
  border:1px solid var(--border);font-size:12.5px;font-weight:600}
.xc-meta{margin-top:auto;padding-top:16px;border-top:1px solid var(--divider);
  display:flex;flex-wrap:wrap;gap:8px 22px}
.xc-meta span{display:inline-flex;align-items:center;gap:7px;font-size:13px;font-weight:700;color:var(--navy-800)}
.xc-meta svg{width:15px;height:15px;color:var(--accent-600)}
/* reserve two lines so the meta divider lines up across a row regardless of
   whether a category's role list wraps */
.xc-roles{margin:12px 0 0;font-size:12.5px;line-height:1.6;color:var(--muted);min-height:3.2em}
.xc-roles b{color:var(--text-2);font-weight:700}
.xc-cta{margin-top:16px;display:inline-flex;align-items:center;gap:7px;font-size:13.5px;font-weight:700;
  color:var(--accent-600)}
.xc-cta svg{width:16px;height:16px;transition:transform .22s}
.xc-card:hover .xc-cta svg{transform:translateX(4px)}

.xc-ico.c0{background:linear-gradient(135deg,#0A1F6F,#3f45e0)}
.xc-ico.c1{background:linear-gradient(135deg,#1c3fb0,#22d3ee)}
.xc-ico.c2{background:linear-gradient(135deg,#5b3fe0,#a78bfa)}
.xc-ico.c3{background:linear-gradient(135deg,#0f766e,#2f9e9e)}
.xc-ico.c4{background:linear-gradient(135deg,#8f1d3f,#e0556f)}
.xc-ico.c5{background:linear-gradient(135deg,#a11d5a,#f472b6)}
.xc-ico.c6{background:linear-gradient(135deg,#8a4b0f,#f0913a)}
.xc-ico.c7{background:linear-gradient(135deg,#b4881a,#e8bf4d)}

@media(max-width:900px){.xc-grid{grid-template-columns:minmax(0,1fr)}}
@media(max-width:640px){
  .xc-card{padding:22px}
  .xc-top h3{font-size:1.06rem}
  .xc-card:hover{transform:none}
}

/* ===== legal pages (privacy policy, terms of use) ===== */
.lg-wrap{display:grid;grid-template-columns:minmax(0,250px) minmax(0,1fr);gap:52px;align-items:start}
.lg-toc{position:sticky;top:calc(var(--hdr-h) + 24px);padding:22px;border-radius:var(--r-xl);
  background:var(--slate-50);border:1px solid var(--border)}
.lg-toc h2{font-family:var(--font-display);font-size:.78rem;letter-spacing:.09em;text-transform:uppercase;
  color:var(--muted);font-weight:700;margin:0 0 14px}
.lg-toc ol{list-style:none;margin:0;padding:0;counter-reset:lg}
.lg-toc li{counter-increment:lg;margin-bottom:2px}
.lg-toc a{display:flex;gap:9px;padding:6px 9px;border-radius:var(--r-sm);font-size:13.5px;line-height:1.45;
  color:var(--text-2);font-weight:600;transition:background .18s,color .18s}
.lg-toc a::before{content:counter(lg);flex-shrink:0;width:17px;color:var(--slate-300);font-variant-numeric:tabular-nums}
.lg-toc a:hover{background:var(--navy-50);color:var(--navy-800)}
.lg-toc a.active{background:var(--navy-50);color:var(--navy-800)}
.lg-toc a.active::before{color:var(--accent-600)}

.lg-meta{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:26px}
.lg-meta span{display:inline-flex;align-items:center;gap:8px;padding:6px 14px;border-radius:var(--r-pill);
  background:var(--navy-50);color:var(--navy-800);font-size:12.5px;font-weight:700}
.lg-meta svg{width:14px;height:14px;color:var(--accent-600)}

.lg-lead{font-size:1.06rem;line-height:1.75;color:var(--text-2);margin:0 0 12px}
.lg-body section{scroll-margin-top:calc(var(--hdr-h) + 20px);padding-top:34px}
.lg-body h2{font-family:var(--font-display);font-size:1.42rem;line-height:1.25;letter-spacing:-.02em;
  color:var(--primary);font-weight:700;margin:0 0 14px}
.lg-body h2 .n{color:var(--slate-300);margin-right:10px;font-variant-numeric:tabular-nums}
.lg-body h3{font-family:var(--font-display);font-size:1.02rem;font-weight:700;color:var(--primary);margin:22px 0 8px}
.lg-body p{font-size:15px;line-height:1.78;color:var(--text-2);margin:0 0 14px}
.lg-body ul{margin:0 0 16px;padding-left:0;list-style:none}
.lg-body li{position:relative;padding-left:22px;font-size:15px;line-height:1.72;color:var(--text-2);margin-bottom:9px}
.lg-body li::before{content:"";position:absolute;left:4px;top:10px;width:6px;height:6px;border-radius:50%;background:var(--accent-600)}
.lg-body li b{color:var(--primary)}
.lg-body a{color:var(--accent-600);font-weight:600;text-decoration:underline;text-underline-offset:2px}

/* placeholder text the site owner still has to supply — deliberately loud */
.lg-ph{background:#fdf0c7;border-bottom:1px dashed #b4881a;color:#6b4c05;padding:1px 5px;border-radius:4px;font-weight:600}

.lg-callout{padding:20px 24px;border-radius:var(--r-lg);background:var(--slate-50);
  border:1px solid var(--border);border-left:3px solid var(--accent-600);margin:0 0 16px}
.lg-callout p:last-child{margin-bottom:0}
.lg-contact{margin-top:34px;padding:26px;border-radius:var(--r-xl);background:var(--navy-950);color:#fff}
.lg-contact h3{font-family:var(--font-display);font-size:1.1rem;font-weight:700;margin:0 0 8px;color:#fff}
.lg-contact p{font-size:14.5px;line-height:1.7;color:rgba(255,255,255,.76);margin:0 0 6px}
.lg-contact a{color:#7fe7ff;font-weight:600;text-decoration:none}
.lg-contact a:hover{text-decoration:underline}

@media(max-width:900px){
  .lg-wrap{grid-template-columns:minmax(0,1fr);gap:28px}
  .lg-toc{position:static;padding:18px}
  .lg-toc ol{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 12px}
}
@media(max-width:640px){
  .lg-toc ol{grid-template-columns:minmax(0,1fr)}
  .lg-body h2{font-size:1.22rem}
  .lg-contact{padding:22px}
}

/* ===== WhatsApp chat widget ===== */
.wa-widget{position:fixed;right:22px;bottom:22px;z-index:150;display:flex;flex-direction:column;align-items:flex-end;gap:14px}
.wa-widget.wa-lifted{bottom:88px}

.wa-fab{position:relative;width:60px;height:60px;border-radius:50%;border:none;cursor:pointer;
  background:#25d366;color:#fff;display:grid;place-items:center;
  box-shadow:0 8px 22px rgba(37,211,102,.42),0 4px 10px rgba(0,0,0,.18);
  transition:transform .22s cubic-bezier(.2,.8,.2,1),box-shadow .22s}
.wa-fab svg{width:32px;height:32px;position:relative;z-index:1}
.wa-fab:hover{transform:scale(1.06);box-shadow:0 12px 28px rgba(37,211,102,.5),0 6px 14px rgba(0,0,0,.2)}
.wa-fab:focus-visible{outline:3px solid #128c7e;outline-offset:3px}
.wa-ping{position:absolute;inset:0;border-radius:50%;background:#25d366;opacity:.55;
  animation:waPing 2.6s cubic-bezier(.4,0,.6,1) infinite}
@keyframes waPing{0%{transform:scale(1);opacity:.5}70%{transform:scale(1.9);opacity:0}100%{transform:scale(1.9);opacity:0}}
.wa-widget.open .wa-ping{animation:none;opacity:0}

.wa-panel{width:330px;max-width:calc(100vw - 44px);border-radius:18px;overflow:hidden;background:var(--surface);
  border:1px solid var(--slate-200);box-shadow:0 18px 44px rgba(7,9,60,.22),0 4px 12px rgba(7,9,60,.12);
  animation:waPop .24s cubic-bezier(.2,.8,.2,1)}
.wa-panel[hidden]{display:none}
@keyframes waPop{from{opacity:0;transform:translateY(12px) scale(.97)}to{opacity:1;transform:none}}

.wa-head{display:flex;align-items:center;gap:11px;padding:14px 16px;background:#128c7e;color:#fff}
.wa-avatar{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.18);display:grid;place-items:center;flex-shrink:0}
.wa-avatar svg{width:22px;height:22px}
.wa-id{display:flex;flex-direction:column;flex:1;min-width:0}
.wa-id b{font-size:14.5px;font-weight:700}
.wa-id em{font-style:normal;font-size:12px;color:rgba(255,255,255,.82)}
.wa-x{width:28px;height:28px;border-radius:50%;border:none;background:rgba(255,255,255,.16);color:#fff;
  display:grid;place-items:center;cursor:pointer;flex-shrink:0}
.wa-x:hover{background:rgba(255,255,255,.28)}
.wa-x svg{width:15px;height:15px}

.wa-body{padding:16px;background:#efe7dd}
.wa-bubble{position:relative;margin:0 0 14px;padding:12px 14px;border-radius:0 12px 12px 12px;background:#fff;
  font-size:13.5px;line-height:1.6;color:var(--text-2);box-shadow:0 1px 2px rgba(0,0,0,.10)}
.wa-topics{display:flex;flex-direction:column;gap:8px}
.wa-topic{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:11px 13px;border-radius:10px;
  background:#fff;border:1px solid rgba(0,0,0,.06);font-size:13.5px;font-weight:600;color:var(--primary);
  box-shadow:0 1px 2px rgba(0,0,0,.08);transition:background .16s,transform .16s}
.wa-topic:hover{background:#f4fbf7;transform:translateX(2px)}
.wa-topic svg{width:15px;height:15px;color:#128c7e;flex-shrink:0}

.wa-start{display:flex;align-items:center;justify-content:center;gap:9px;padding:14px;background:#25d366;color:#fff;
  font-size:14px;font-weight:700;transition:background .16s}
.wa-start:hover{background:#1fbe5b}
.wa-start svg{width:20px;height:20px}

@media(prefers-reduced-motion:reduce){
  .wa-ping{animation:none;opacity:.35}
  .wa-panel{animation:none}
  .wa-fab,.wa-topic{transition:none}
}
@media(max-width:600px){
  .wa-widget{right:16px;bottom:16px;gap:12px}
  .wa-widget.wa-lifted{bottom:80px}
  .wa-fab{width:54px;height:54px}
  .wa-fab svg{width:28px;height:28px}
  .wa-panel{width:min(330px,calc(100vw - 32px))}
}


/* ===== cybersecurity category page ===== */
.cs-head{max-width:760px;margin-bottom:38px}
.cs-head.center{margin-left:auto;margin-right:auto;text-align:center}
.cs-head.row{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;flex-wrap:wrap;max-width:none}
.cs-head.row>div{max-width:700px}
.cs-tag{display:inline-block;padding:5px 13px;border-radius:var(--r-pill);background:var(--navy-50);
  color:var(--accent-600);font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;margin-bottom:14px}
.cs-tag.light{background:rgba(255,255,255,.12);color:#7fe7ff;border:1px solid rgba(255,255,255,.2)}
.cs-head h2{font-family:var(--font-display);font-size:2.2rem;line-height:1.16;letter-spacing:-.028em;
  font-weight:700;color:var(--primary);margin:0 0 12px}
.cs-head p{font-size:1.04rem;line-height:1.7;color:var(--text-2);margin:0}
.cs-head.light h2{color:#fff}
.cs-head.light p{color:rgba(255,255,255,.76)}
.cs-center{text-align:center;margin-top:32px}
.cs-note{margin:26px auto 0;max-width:760px;text-align:center;font-size:13px;color:var(--muted)}
.cs-note.lead{margin:34px auto 20px}

/* 1 — hero */
.cs-hero{position:relative;overflow:hidden;background:#05061f;color:#fff}
.cs-hero-bg{position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(80% 70% at 78% 12%, rgba(86,97,246,.42) 0%, rgba(86,97,246,0) 60%),
    radial-gradient(70% 65% at 10% 96%, rgba(34,211,238,.24) 0%, rgba(34,211,238,0) 62%),
    radial-gradient(60% 60% at 50% 40%, rgba(143,92,255,.26) 0%, rgba(143,92,255,0) 66%),
    linear-gradient(160deg,#05061f 0%,#0a0f3d 55%,#12157f 100%)}
.cs-hero-bg::after{content:"";position:absolute;inset:0;opacity:.5;
  background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:46px 46px;
  -webkit-mask-image:radial-gradient(70% 70% at 50% 40%,#000,transparent);mask-image:radial-gradient(70% 70% at 50% 40%,#000,transparent)}
/* photo hero variant -----------------------------------------------------
   Layer order (top -> bottom): horizontal scrim, bottom scrim, photo,
   then the original gradient stack as a fallback if the photo fails. */
/* --cs-veil scales the whole scrim per page: lower = lighter = photo more visible.
   Tuned per image so each page shows as much of its photo as contrast allows. */
.cs-hero--photo{--cs-veil:1;min-height:500px;display:flex;align-items:center}
.cs-hero--photo > .container{width:100%}
.cs-hero--photo .cs-hero-bg{
  background-image:
    linear-gradient(90deg,
      rgba(4,6,26,calc(var(--cs-veil) * .84)) 0%,
      rgba(4,6,26,calc(var(--cs-veil) * .78)) 30%,
      rgba(4,6,26,calc(var(--cs-veil) * .60)) 55%,
      rgba(4,6,26,calc(var(--cs-veil) * .32)) 78%,
      rgba(4,6,26,calc(var(--cs-veil) * .40)) 100%),
    linear-gradient(180deg,
      rgba(4,6,26,calc(var(--cs-veil) * .42)) 0%,
      rgba(4,6,26,0) 26%,
      rgba(4,6,26,0) 58%,
      rgba(4,6,26,calc(var(--cs-veil) * .62)) 100%),
    var(--cs-hero-img),
    radial-gradient(80% 70% at 78% 12%, rgba(86,97,246,.42) 0%, rgba(86,97,246,0) 60%),
    linear-gradient(160deg,#05061f 0%,#0a0f3d 55%,#12157f 100%);
  background-size:cover,cover,cover,auto,auto;
  background-position:center,center,center right,center,center;
  background-repeat:no-repeat}
/* softens text against the busier parts of the photo without darkening the photo itself */
.cs-hero--photo .cs-hero-t h1,
.cs-hero--photo .cs-hero-t > p{text-shadow:0 2px 16px rgba(4,6,26,.62)}
.cs-hero--photo .cs-hero-t h1 .g{text-shadow:none}
/* the photo carries its own grid, so pull the CSS grid overlay right back */
.cs-hero--photo .cs-hero-bg::after{opacity:.14}
/* the photo already has chart panels on the right - drop the SVG so they don't collide */
.cs-hero--photo .cs-hero-v{display:none}
@media(max-width:900px){
  /* single column: pan the photo so its bright right side sits away from the text */
  .cs-hero--photo .cs-hero-bg{
    /* single column: text spans the full width over the photo, so the veil
       needs a floor here regardless of how light the desktop value is */
    background-position:center,center,72% center,center,center;
    background-image:
      linear-gradient(180deg,
        rgba(4,6,26,calc(max(var(--cs-veil), .78) * .90)) 0%,
        rgba(4,6,26,calc(max(var(--cs-veil), .78) * .84)) 46%,
        rgba(4,6,26,calc(max(var(--cs-veil), .78) * .78)) 100%),
      linear-gradient(180deg,
        rgba(4,6,26,calc(max(var(--cs-veil), .78) * .42)) 0%,
        rgba(4,6,26,0) 26%,
        rgba(4,6,26,0) 58%,
        rgba(4,6,26,calc(max(var(--cs-veil), .78) * .62)) 100%),
      var(--cs-hero-img),
      radial-gradient(80% 70% at 78% 12%, rgba(86,97,246,.42) 0%, rgba(86,97,246,0) 60%),
      linear-gradient(160deg,#05061f 0%,#0a0f3d 55%,#12157f 100%)}
}

.cs-hero-in{position:relative;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);gap:48px;
  align-items:center;padding-top:52px;padding-bottom:64px}
.cs-hero .crumbs{display:flex;align-items:center;gap:8px;font-size:13.5px;color:rgba(255,255,255,.6);margin-bottom:20px}
.cs-hero .crumbs a{color:rgba(255,255,255,.72);font-weight:600}
.cs-hero .crumbs a:hover{color:#fff}
.cs-hero .crumbs svg{width:15px;height:15px;color:rgba(255,255,255,.36)}
.cs-eyebrow{display:inline-flex;align-items:center;gap:9px;padding:7px 15px;border-radius:var(--r-pill);
  background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.2);font-size:12.5px;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;margin-bottom:18px}
.cs-eyebrow .dot{width:7px;height:7px;border-radius:50%;background:#22d3ee;box-shadow:0 0 0 4px rgba(34,211,238,.24)}
.cs-hero h1{font-family:var(--font-display);font-size:3.05rem;line-height:1.08;letter-spacing:-.032em;
  font-weight:700;margin:0 0 18px}
.cs-hero h1 .g{background:linear-gradient(100deg,#7fe7ff,#c4b5fd 60%,#f3e074);-webkit-background-clip:text;background-clip:text;color:transparent}
.cs-hero p{font-size:1.08rem;line-height:1.72;color:rgba(255,255,255,.78);margin:0 0 28px;max-width:58ch}
/* no CTA block follows the copy, so drop the trailing gap */
.cs-hero-t > p:last-child{margin-bottom:0}
.cs-hero-cta{display:flex;gap:12px;flex-wrap:wrap}
.cs-hero-cta.center{justify-content:center}
.cs-hero-v{display:grid;place-items:center}
.cs-art{width:100%;max-width:480px;height:auto}

/* 2 — highlights */
.cs-hl-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.cs-hl{padding:24px;border-radius:var(--r-xl);background:var(--surface);border:1px solid var(--border);
  transition:transform .22s,box-shadow .22s,border-color .22s}
.cs-hl:hover{transform:translateY(-5px);box-shadow:var(--sh-3);border-color:var(--navy-200)}
.cs-hl-ico{width:48px;height:48px;border-radius:14px;display:grid;place-items:center;color:#fff;margin-bottom:15px}
.cs-hl-ico svg{width:24px;height:24px}
.cs-hl-ico.i0{background:linear-gradient(135deg,#0A1F6F,#3f45e0)}
.cs-hl-ico.i1{background:linear-gradient(135deg,#1c3fb0,#22d3ee)}
.cs-hl-ico.i2{background:linear-gradient(135deg,#5b3fe0,#a78bfa)}
.cs-hl-ico.i3{background:linear-gradient(135deg,#0f766e,#2f9e9e)}
.cs-hl h3{font-family:var(--font-display);font-size:1.05rem;font-weight:700;color:var(--primary);margin:0 0 8px}
.cs-hl p{font-size:14px;line-height:1.65;color:var(--text-2);margin:0}

/* 3 — learning paths */
.cs-paths-sec{background:var(--slate-50);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.cs-paths{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.cs-path{display:flex;flex-direction:column;padding:26px;border-radius:20px;background:var(--surface);
  border:1px solid var(--border);transition:transform .24s cubic-bezier(.2,.8,.2,1),box-shadow .24s,border-color .24s}
.cs-path:hover{transform:translateY(-6px);box-shadow:0 12px 28px rgba(10,31,111,.10),0 24px 52px rgba(63,69,224,.16);border-color:rgba(63,69,224,.34)}
.cs-path-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.cs-path-ico{width:46px;height:46px;border-radius:13px;display:grid;place-items:center;
  background:var(--grad-brand);color:#fff}
.cs-path-ico svg{width:23px;height:23px}
.cs-path-top .no{font-family:var(--font-display);font-size:1.6rem;font-weight:700;color:var(--slate-200)}
.cs-path h3{font-family:var(--font-display);font-size:1.1rem;font-weight:700;line-height:1.32;color:var(--primary);margin:0 0 8px}
.cs-path p{font-size:14px;line-height:1.6;color:var(--text-2);margin:0 0 14px}
.cs-chips{display:flex;flex-wrap:wrap;gap:7px;margin-bottom:16px}
.cs-chips span{padding:4px 11px;border-radius:var(--r-pill);background:var(--navy-50);color:var(--navy-700);
  font-size:11.5px;font-weight:700}
.cs-chips.wrap{margin-bottom:20px}
.cs-path-cta{margin-top:auto;display:inline-flex;align-items:center;gap:7px;font-size:13.5px;font-weight:700;color:var(--accent-600)}
.cs-path-cta svg{width:16px;height:16px;transition:transform .22s}
.cs-path:hover .cs-path-cta svg{transform:translateX(4px)}

/* 4 — featured courses */
.cs-course-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.cs-course{display:flex;flex-direction:column;padding:22px;border-radius:18px;background:var(--surface);
  border:1px solid var(--border);transition:transform .22s,box-shadow .22s,border-color .22s}
.cs-course:hover{transform:translateY(-5px);box-shadow:var(--sh-3);border-color:var(--navy-200)}
.cs-course-ico{width:42px;height:42px;border-radius:12px;display:grid;place-items:center;
  background:var(--navy-50);color:var(--accent-600);margin-bottom:14px}
.cs-course-ico svg{width:21px;height:21px}
.cs-course h3{font-family:var(--font-display);font-size:1rem;font-weight:700;line-height:1.34;color:var(--primary);margin:0 0 8px}
.cs-course p{font-size:13.5px;line-height:1.6;color:var(--text-2);margin:0 0 14px}
.cs-course-meta{display:flex;flex-direction:column;gap:7px;margin-top:auto;padding-top:12px;border-top:1px solid var(--divider)}
.cs-course-meta span{display:inline-flex;align-items:center;gap:7px;font-size:12.5px;color:var(--text-2);font-weight:600}
.cs-course-meta svg{width:14px;height:14px;color:var(--accent-600)}
.cs-course-meta .lvl svg{color:var(--gold-600)}
.cs-course-fmt{margin-top:10px;align-self:flex-start;padding:4px 10px;border-radius:var(--r-sm);
  background:var(--slate-100);color:var(--text-2);font-size:11.5px;font-weight:700}
/* the card itself is the link, so it carries no separate "View Course" CTA */

/* 5 — why */
.cs-why-sec{background:var(--navy-950);color:#fff}
.cs-why-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.cs-why{padding:26px;border-radius:var(--r-xl);background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.12);
  transition:background .22s,transform .22s,border-color .22s}
.cs-why:hover{background:rgba(255,255,255,.09);transform:translateY(-4px);border-color:rgba(127,231,255,.34)}
.cs-why .no{display:block;font-family:var(--font-display);font-size:1.9rem;font-weight:700;color:#7fe7ff;line-height:1;margin-bottom:12px}
.cs-why h3{font-family:var(--font-display);font-size:1.05rem;font-weight:700;margin:0 0 8px}
.cs-why p{font-size:14px;line-height:1.65;color:rgba(255,255,255,.74);margin:0}

/* 6 — hands-on */
.cs-journey{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap;margin-bottom:32px}
.cs-j{display:inline-flex;align-items:center;gap:10px;padding:12px 20px;border-radius:var(--r-pill);
  background:var(--surface);border:1px solid var(--border);font-size:14.5px;font-weight:700;color:var(--primary);box-shadow:var(--sh-1)}
.cs-j b{width:24px;height:24px;border-radius:50%;background:var(--navy-900);color:#fff;display:grid;place-items:center;font-size:12px}
.cs-j-arrow svg{width:20px;height:20px;color:var(--slate-300)}
/* long-labelled chains (e.g. the portfolio progression) need the row to fit in one line */
.cs-journey.tight{gap:7px}
.cs-journey.tight .cs-j{padding:10px 15px;font-size:13.5px;gap:8px}
.cs-journey.tight .cs-j b{width:21px;height:21px;font-size:11px}
.cs-journey.tight .cs-j-arrow svg{width:17px;height:17px}
/* forces a balanced break in a long chain instead of stranding the last pill */
.cs-j-break{flex-basis:100%;height:0}
.cs-hands{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px 24px}
.cs-hands li{display:flex;gap:10px;align-items:flex-start;font-size:14px;line-height:1.55;color:var(--text-2)}
.cs-hands .tick{flex-shrink:0;width:19px;height:19px;border-radius:50%;background:var(--green-50);color:var(--green-600);display:grid;place-items:center;margin-top:1px}
.cs-hands .tick svg{width:11px;height:11px}

/* 7 — career ladder: a numbered spine that warms as seniority rises */
.cs-career-sec{background:var(--slate-50);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.cs-ladder{max-width:900px;margin:0 auto;display:flex;flex-direction:column;gap:16px}
.cs-rung{position:relative;display:grid;grid-template-columns:54px minmax(0,1fr);gap:22px;align-items:start}
/* each rung draws the connector below its own node, so the spine ends on the last node
   rather than running past it to the bottom of a tall final card */
.cs-rung::before{content:"";position:absolute;left:26px;top:54px;bottom:-16px;width:2px;border-radius:2px;
  background:linear-gradient(180deg,var(--slate-200),var(--navy-200))}
.cs-rung:last-child::before{display:none}

.cs-rung-node{position:relative;z-index:1;width:54px;height:54px;border-radius:50%;display:grid;place-items:center;
  background:var(--surface);border:2px solid var(--border);font-family:var(--font-display);font-size:1rem;
  font-weight:700;color:var(--slate-300);font-variant-numeric:tabular-nums;transition:transform .25s,box-shadow .25s}
.cs-rung-card{padding:22px 26px;border-radius:18px;background:var(--surface);border:1px solid var(--border);
  transition:transform .25s cubic-bezier(.2,.8,.2,1),box-shadow .25s,border-color .25s}
.cs-rung:hover .cs-rung-card{transform:translateX(6px);box-shadow:var(--sh-2);border-color:var(--navy-200)}
.cs-rung:hover .cs-rung-node{transform:scale(1.07)}
.cs-rung-h{display:inline-flex;align-items:center;gap:9px;padding:5px 14px;border-radius:var(--r-pill);
  background:var(--navy-900);color:#fff;font-size:11.5px;font-weight:800;letter-spacing:.08em;
  text-transform:uppercase;margin-bottom:14px}
.cs-rung-h .c{opacity:.6;font-size:10.5px;font-weight:700;letter-spacing:.02em;text-transform:none}

.cs-roles{display:flex;flex-wrap:wrap;gap:9px}
.cs-roles span{padding:8px 16px;border-radius:var(--r-pill);background:var(--navy-50);color:var(--navy-800);
  font-size:14px;font-weight:700}

.cs-rung.r0 .cs-rung-node{color:var(--navy-700);border-color:var(--navy-200)}
.cs-rung.r1 .cs-rung-node{color:#fff;background:linear-gradient(135deg,#0A1F6F,#3f45e0);border-color:transparent}
.cs-rung.r2 .cs-rung-node{color:#fff;background:linear-gradient(135deg,#1c3fb0,#22d3ee);border-color:transparent}
.cs-rung.r3 .cs-rung-node{color:#fff;background:linear-gradient(135deg,#5b3fe0,#a78bfa);border-color:transparent}
.cs-rung.r4 .cs-rung-node{color:#fff;background:linear-gradient(135deg,#5b3fe0,#a78bfa);border-color:transparent}
/* the final rung is the destination, whether a category has four tiers or five —
   keyed on :last-child so it lands either way, and placed after the ramp to win on order */
.cs-rung:last-child .cs-rung-node{color:var(--navy-900);background:linear-gradient(135deg,#e8bf4d,#f3e074);
  border-color:transparent;box-shadow:0 0 0 6px rgba(232,191,77,.18)}
.cs-rung:last-child .cs-rung-card{border-color:rgba(232,191,77,.55);background:linear-gradient(180deg,#fffdf4,var(--surface))}
.cs-rung:last-child .cs-rung-h{background:linear-gradient(135deg,#b4881a,#e8bf4d);color:var(--navy-900)}
.cs-rung:last-child .cs-roles span{background:rgba(232,191,77,.16);color:#6b4c05}

@media(max-width:640px){
  .cs-rung{grid-template-columns:42px minmax(0,1fr);gap:14px}
  .cs-rung::before{left:20px;top:42px;bottom:-16px}
  .cs-rung-node{width:42px;height:42px;font-size:.86rem}
  .cs-rung-card{padding:18px 20px}
  .cs-rung:hover .cs-rung-card{transform:none}
  .cs-roles span{font-size:13px;padding:7px 13px}
}

/* 8 — credentials */
.cs-creds{display:flex;align-items:stretch;justify-content:center;gap:14px;flex-wrap:wrap}
.cs-cred{flex:1 1 260px;max-width:340px;padding:26px;border-radius:var(--r-xl);background:var(--surface);
  border:1px solid var(--border);text-align:center}
.cs-cred-ico{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;margin:0 auto 14px;
  background:var(--gold-100);color:var(--gold-700)}
.cs-cred-ico svg{width:24px;height:24px}
.cs-cred h3{font-family:var(--font-display);font-size:1.02rem;font-weight:700;color:var(--primary);margin:0 0 8px}
.cs-cred p{font-size:13.5px;line-height:1.6;color:var(--text-2);margin:0}
.cs-cred-arrow{display:grid;place-items:center}
.cs-cred-arrow svg{width:22px;height:22px;color:var(--slate-300)}

/* 9 — AI + cyber */
.cs-ai-sec{position:relative;overflow:hidden;background:#070a2e;color:#fff}
.cs-ai-bg{position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(70% 70% at 84% 6%, rgba(167,139,250,.34) 0%, rgba(167,139,250,0) 62%),
    radial-gradient(70% 70% at 8% 96%, rgba(34,211,238,.24) 0%, rgba(34,211,238,0) 62%)}
.cs-ai-sec>.container{position:relative}
.cs-ai-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.cs-ai-card{padding:24px;border-radius:var(--r-xl);background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.13);
  transition:transform .22s,background .22s,border-color .22s}
.cs-ai-card:hover{transform:translateY(-5px);background:rgba(255,255,255,.1);border-color:rgba(127,231,255,.4)}
.cs-ai-ico{width:46px;height:46px;border-radius:13px;display:grid;place-items:center;margin-bottom:14px;
  background:linear-gradient(135deg,#5661f6,#22d3ee);color:#fff}
.cs-ai-ico svg{width:23px;height:23px}
.cs-ai-card h3{font-family:var(--font-display);font-size:1.02rem;font-weight:700;margin:0 0 8px}
.cs-ai-card p{font-size:13.5px;line-height:1.62;color:rgba(255,255,255,.74);margin:0}

/* 10 — personas */
.cs-persona-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px}
.cs-persona{padding:22px;border-radius:var(--r-xl);background:var(--surface);border:1px solid var(--border);
  transition:transform .2s,box-shadow .2s}
.cs-persona:hover{transform:translateY(-4px);box-shadow:var(--sh-2)}
.cs-persona-ico{width:44px;height:44px;border-radius:12px;display:grid;place-items:center;margin-bottom:13px;
  background:var(--accent-soft);color:var(--accent-600)}
.cs-persona-ico svg{width:22px;height:22px}
.cs-persona h3{font-family:var(--font-display);font-size:1rem;font-weight:700;color:var(--primary);margin:0 0 7px}
.cs-persona p{font-size:13.5px;line-height:1.6;color:var(--text-2);margin:0}

/* 11 + 12 — corporate & university */
.cs-two{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.cs-panel{display:flex;flex-direction:column;padding:32px;border-radius:var(--r-2xl);background:var(--surface);
  border:1px solid var(--border);box-shadow:var(--sh-1)}
.cs-panel h2{font-family:var(--font-display);font-size:1.5rem;line-height:1.22;letter-spacing:-.02em;
  font-weight:700;color:var(--primary);margin:0 0 12px}
.cs-panel p{font-size:14.5px;line-height:1.68;color:var(--text-2);margin:0 0 18px}
.cs-panel .btn{margin-top:auto;align-self:flex-start}

/* 13 — projects */
.cs-proj-sec{background:var(--slate-50);border-top:1px solid var(--border)}
.cs-proj-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.cs-proj{padding:24px;border-radius:var(--r-xl);background:var(--surface);border:1px solid var(--border);
  transition:transform .2s,box-shadow .2s,border-color .2s}
.cs-proj:hover{transform:translateY(-5px);box-shadow:var(--sh-3);border-color:var(--navy-200)}
.cs-proj-ico{width:46px;height:46px;border-radius:13px;display:grid;place-items:center;margin-bottom:14px;
  background:var(--grad-hero);color:#fff}
.cs-proj-ico svg{width:23px;height:23px}
.cs-proj h3{font-family:var(--font-display);font-size:1.02rem;font-weight:700;color:var(--primary);margin:0 0 8px}
.cs-proj p{font-size:13.5px;line-height:1.6;color:var(--text-2);margin:0}

/* 14 — FAQ */
.cs-faq-wrap{max-width:900px}

/* 15 — final CTA */
.cs-final{position:relative;overflow:hidden;background:#05061f;color:#fff;text-align:center;padding:84px 0}
.cs-final-bg{position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(86,97,246,.44) 0%, rgba(86,97,246,0) 62%),
    radial-gradient(50% 60% at 82% 100%, rgba(34,211,238,.26) 0%, rgba(34,211,238,0) 64%),
    radial-gradient(50% 60% at 16% 96%, rgba(167,139,250,.26) 0%, rgba(167,139,250,0) 64%)}
.cs-final>.container{position:relative}
.cs-final h2{font-family:var(--font-display);font-size:2.5rem;line-height:1.12;letter-spacing:-.03em;font-weight:700;margin:0 0 12px}
.cs-final p{font-size:1.1rem;color:rgba(255,255,255,.78);margin:0 0 28px}

/* category: technology stack, by layer */
.cs-stack{display:flex;flex-direction:column;gap:14px;max-width:960px;margin:0 auto}
.cs-layer{display:grid;grid-template-columns:minmax(0,230px) minmax(0,1fr);align-items:center;gap:24px;
  padding:20px 26px;border-radius:var(--r-xl);background:var(--surface);border:1px solid var(--border);
  transition:transform .25s,box-shadow .25s,border-color .25s}
.cs-layer:hover{transform:translateX(4px);box-shadow:var(--sh-2);border-color:var(--navy-200)}
.cs-layer-h{display:flex;align-items:center;gap:13px}
.cs-layer-h b{font-family:var(--font-display);font-size:1.05rem;font-weight:700;color:var(--primary)}
.cs-layer-ico{flex-shrink:0;width:44px;height:44px;border-radius:13px;display:grid;place-items:center;color:#fff}
.cs-layer-ico svg{width:22px;height:22px}
.cs-layer-ico.l0{background:linear-gradient(135deg,#0A1F6F,#3f45e0)}
.cs-layer-ico.l1{background:linear-gradient(135deg,#1c3fb0,#22d3ee)}
.cs-layer-ico.l2{background:linear-gradient(135deg,#0f766e,#2f9e9e)}
.cs-layer-ico.l3{background:linear-gradient(135deg,#5b3fe0,#a78bfa)}
.cs-layer-ico.l4{background:linear-gradient(135deg,#b4881a,#e8bf4d)}
.cs-layer-ico.l5{background:linear-gradient(135deg,#a11d5a,#f472b6)}
.cs-layer-ico.l6{background:linear-gradient(135deg,#8a4b0f,#f0913a)}
.cs-layer-chips{display:flex;flex-wrap:wrap;gap:8px}
.cs-layer-chips span{padding:6px 13px;border-radius:var(--r-pill);background:var(--slate-50);color:var(--navy-800);
  border:1px solid var(--border);font-size:12.5px;font-weight:600}

/* category: development workflow */
.cs-flow{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:16px}
.cs-step{position:relative;padding:24px 20px;border-radius:var(--r-xl);background:var(--surface);
  border:1px solid var(--border);transition:transform .25s,box-shadow .25s,border-color .25s}
.cs-step:hover{transform:translateY(-5px);box-shadow:var(--sh-3);border-color:rgba(63,69,224,.32)}
.cs-step .no{display:block;font-family:var(--font-display);font-size:1.5rem;font-weight:700;line-height:1;
  margin-bottom:12px;background:linear-gradient(135deg,var(--accent-600),#a78bfa);
  -webkit-background-clip:text;background-clip:text;color:transparent}
.cs-step b{display:block;font-family:var(--font-display);font-size:1rem;font-weight:700;color:var(--primary);margin-bottom:6px}
.cs-step p{font-size:13.5px;line-height:1.6;color:var(--text-2);margin:0}

.cs-flow.seven{grid-template-columns:repeat(7,minmax(0,1fr));gap:12px}
.cs-flow.seven .cs-step{padding:20px 15px}
.cs-flow.seven .cs-step .no{font-size:1.3rem;margin-bottom:9px}
/* eight steps read best as two rows of four, at desktop and tablet alike */
.cs-flow.eight{grid-template-columns:repeat(4,minmax(0,1fr))}
/* seven paths sit better as 4+3 than as 3+3+1 */
.cs-paths.seven{grid-template-columns:repeat(4,minmax(0,1fr))}
.cs-ai-grid.five{grid-template-columns:repeat(5,minmax(0,1fr));gap:16px}

.cs-proj-grid.five{grid-template-columns:repeat(5,minmax(0,1fr));gap:16px}
.cs-proj-grid.six{grid-template-columns:repeat(3,minmax(0,1fr))}
.cs-persona-grid.six{grid-template-columns:repeat(3,minmax(0,1fr))}
.cs-proj-grid.five .cs-proj,.cs-proj-grid.six .cs-proj{display:flex;flex-direction:column}
.cs-proj-tech{display:block;margin-top:auto;padding-top:12px;border-top:1px solid var(--divider);
  font-size:12px;font-weight:600;line-height:1.5;color:var(--accent-600)}

@media(max-width:1100px){
  .cs-hl-grid,.cs-course-grid,.cs-why-grid,.cs-ai-grid,.cs-proj-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cs-proj-grid.five,.cs-proj-grid.six,.cs-persona-grid.six{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cs-flow,.cs-flow.seven{grid-template-columns:repeat(3,minmax(0,1fr))}
  .cs-paths,.cs-paths.seven{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cs-ai-grid.five{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cs-persona-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .cs-hands{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cs-hero-in{grid-template-columns:minmax(0,1fr);gap:34px}
  .cs-hero-v{order:-1}
  .cs-art{max-width:380px}
  .cs-hero h1{font-size:2.4rem}
  .cs-two{grid-template-columns:minmax(0,1fr)}
}
@media(max-width:700px){
  .cs-hero h1{font-size:1.95rem}
  .cs-hero p{font-size:1rem}
  .cs-head h2{font-size:1.65rem}
  .cs-hl-grid,.cs-course-grid,.cs-why-grid,.cs-ai-grid,.cs-proj-grid,.cs-proj-grid.five,.cs-proj-grid.six,.cs-paths,.cs-paths.seven,.cs-persona-grid,.cs-persona-grid.six,.cs-ai-grid.five,.cs-hands{grid-template-columns:minmax(0,1fr)}
  .cs-flow,.cs-flow.seven,.cs-flow.eight{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cs-layer{grid-template-columns:minmax(0,1fr);gap:14px;padding:20px}
  .cs-journey{flex-direction:column;gap:8px}
  .cs-j-break{display:none}
  .cs-j{width:100%;justify-content:center}
  /* rotate the glyph, not the box: a stretched flex item rotated 90deg
     reports its line height as width and pushes the page sideways */
  .cs-j-arrow svg,.cs-cred-arrow svg{transform:rotate(90deg)}
  .cs-j-arrow,.cs-cred-arrow{align-self:center;height:24px}
  /* .btn is nowrap by default, so a long label escapes the pill even with max-width */
  .cs-center .btn{max-width:100%;text-align:center;white-space:normal}
  .cs-panel{padding:24px}
  .cs-panel .btn,.cs-hero-cta .btn{width:100%;justify-content:center}
  .cs-final{padding:60px 0}
  .cs-final h2{font-size:1.8rem}
  .cs-roles span{font-size:13px;padding:7px 13px}
}

