@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #0B1220;
  background: #FBFBF8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #0B1220;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
}

h5 {
  font-size: 1rem;
}

p {
  margin: 0 0 1em;
}

a {
  color: #1B4F8C;
  text-decoration: none;
  transition: color 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: #1BA0DB;
}

::selection {
  background: #1BA0DB;
  color: #FFFFFF;
}

.kicker {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1F7A1B;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.kicker::before {
  content: '';
  width: 22px;
  height: 2px;
  background: #3AAA35;
}

.kicker--plain::before {
  display: none;
}

.kicker--blue {
  color: #1B4F8C;
}

.kicker--blue::before {
  background: #1BA0DB;
}

.kicker--light {
  color: #4FC74A;
}

.kicker--light::before {
  background: #4FC74A;
}

.section-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 1rem;
}

.section-row__num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: #1F7A1B;
  font-weight: 700;
}

.section-row__title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  letter-spacing: -0.02em;
  color: #0B1220;
  margin: 0;
}

.section-row__rule {
  flex-grow: 1;
  height: 1px;
  background: #DDE0E4;
}

.section-row__aside {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4A5466;
}

@media (max-width: 768px) {
  .section-row__aside {
    display: none;
  }
}

.container-x {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-cyan {
  color: #1BA0DB !important;
}

.text-green {
  color: #4FC74A !important;
}

.text-mute {
  color: #4A5466 !important;
}

.bg-paper {
  background: #FBFBF8 !important;
}

.bg-soft {
  background: #EAF2FB !important;
}

.bg-navy {
  background: #0E2E55 !important;
  color: #FFFFFF;
}

.bg-ink {
  background: #0B1220 !important;
  color: #FFFFFF;
}

section {
  padding: 4rem 0;
}

.section-tight {
  padding: 2.5rem 0;
}

.section-wide {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  .section-wide {
    padding: 4rem 0;
  }
}

.btn-cm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-cm i, .btn-cm svg {
  font-size: 0.85em;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11, 18, 32, 0.08);
}

.btn-cm:hover i, .btn-cm:hover svg {
  transform: translateX(2px);
}

.btn-cm:active {
  transform: translateY(0);
}

.btn-cm--primary {
  background: #3AAA35;
  color: #FFFFFF;
  border-color: #3AAA35;
}

.btn-cm--primary:hover {
  background: #1F7A1B;
  border-color: #1F7A1B;
  color: #FFFFFF;
}

.btn-cm--secondary {
  background: #1B4F8C;
  color: #FFFFFF;
  border-color: #1B4F8C;
}

.btn-cm--secondary:hover {
  background: #0E2E55;
  border-color: #0E2E55;
  color: #FFFFFF;
}

.btn-cm--outline-light {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-cm--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-cm--outline {
  background: transparent;
  color: #0B1220;
  border-color: #0B1220;
}

.btn-cm--outline:hover {
  background: #0B1220;
  color: #FFFFFF;
}

.btn-cm--ghost {
  background: transparent;
  color: #1B4F8C;
  border-color: transparent;
  padding: 0.5rem 0;
}

.btn-cm--ghost:hover {
  background: transparent;
  color: #1BA0DB;
  transform: translateX(2px);
  box-shadow: none;
}

.btn-cm--lg {
  padding: 0.95rem 1.8rem;
  font-size: 0.95rem;
}

.btn-cm--sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.btn-cm--block {
  width: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  font-weight: 600;
  background: #EAF2FB;
  color: #1B4F8C;
}

.tag--green {
  background: #ECF8EB;
  color: #1F7A1B;
}

.tag--cyan {
  background: rgba(27, 160, 219, 0.12);
  color: #1583B5;
}

.tag--ink {
  background: rgba(11, 18, 32, 0.08);
  color: #0B1220;
}

.tag--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.cm-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0E2E55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cm-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.cm-navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.cm-navbar__logo img {
  height: 48px;
  width: auto;
  display: block;
}

.cm-navbar__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cm-navbar__links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 220ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.cm-navbar__links a:hover, .cm-navbar__links a.active {
  color: #FFFFFF;
}

.cm-navbar__links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: #4FC74A;
}

@media (max-width: 992px) {
  .cm-navbar__links {
    display: none;
  }
  .cm-navbar__links.is-open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #0E2E55;
    padding: 1.5rem 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 768px) {
  .cm-navbar__cta {
    display: none;
  }
}

.cm-navbar__toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .cm-navbar__toggle {
    display: inline-flex;
  }
}

.hero {
  position: relative;
  background: #0E2E55;
  color: #FFFFFF;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  top: 30px;
  right: 100px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #3AAA35 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero__headline {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin: 0.8rem 0 1.2rem;
}

.hero__headline em {
  font-style: italic;
  font-weight: 500;
  color: #4FC74A;
}

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 1.8rem;
}

.hero__cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.hero__stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.1rem;
  border-radius: 6px;
}

.hero__stat-num {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.hero__stat-num .unit {
  font-size: 0.7rem;
  color: #4FC74A;
  font-weight: 500;
  letter-spacing: 0;
}

.hero__stat-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.hero--compact {
  padding: 3.5rem 0 4rem;
}

.hero--compact .hero__content {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hero--compact .hero__headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.8rem;
}

.hero__badges {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero__badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.4rem 0.85rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  border-radius: 100px;
}

.hero__badge--green {
  background: #3AAA35;
  border-color: #4FC74A;
  font-weight: 600;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

.pillar {
  position: relative;
  background: #FFFFFF;
  border: 1.5px solid #0B1220;
  border-radius: 4px;
  padding: 1.4rem 1.4rem 1.4rem;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(11, 18, 32, 0.12);
}

.pillar--green-accent {
  background: linear-gradient(180deg, #FFFFFF 55%, #ECF8EB 100%);
}

.pillar__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background: #1B4F8C;
  color: #FFFFFF;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 4px 0 14px;
}

.pillar--green-accent .pillar__corner {
  background: #3AAA35;
}

.pillar__icon {
  width: 32px;
  height: 32px;
  color: #1B4F8C;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.pillar--green-accent .pillar__icon {
  color: #1F7A1B;
}

.pillar__label {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  color: #0B1220;
  margin-bottom: 0.35rem;
}

.pillar__text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #4A5466;
  margin: 0;
}

.course-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #DDE0E4;
  border-radius: 4px;
  padding: 1.4rem 1.3rem 1.3rem 1.5rem;
  position: relative;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #3AAA35;
  border-radius: 4px 0 0 4px;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 18, 32, 0.12);
  border-color: #3AAA35;
}

.course-card:hover .course-card__title {
  color: #1B4F8C;
}

.course-card:hover .course-card__arrow {
  transform: translateX(4px);
  color: #1F7A1B;
}

.course-card__tag {
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #1F7A1B;
  background: #ECF8EB;
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  align-self: flex-start;
}

.course-card__icon {
  width: 44px;
  height: 44px;
  background: #ECF8EB;
  color: #1F7A1B;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.course-card__title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.15;
  color: #0B1220;
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
  transition: color 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card__text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #4A5466;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.course-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid #ECEEF1;
}

.course-card__meta-info {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A93A4;
}

.course-card__arrow {
  color: #3AAA35;
  font-size: 0.95rem;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), color 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card--free-tag .course-card__tag::before {
  content: '★ ';
  color: #3AAA35;
}

.course-card--it::after {
  background: #1B4F8C;
}

.course-card--it .course-card__icon {
  background: #EAF2FB;
  color: #1B4F8C;
}

.course-card--it .course-card__tag {
  background: #EAF2FB;
  color: #1B4F8C;
}

.course-card--it .course-card__arrow {
  color: #1B4F8C;
}

.course-card--it:hover {
  border-color: #1B4F8C;
}

.course-card--it:hover .course-card__arrow {
  color: #0E2E55;
}

.course-card__audience-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1583B5;
  background: rgba(27, 160, 219, 0.1);
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
  font-weight: 600;
  margin-left: 0.4rem;
}

.brief-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  border: 1px solid #DDE0E4;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.brief-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(11, 18, 32, 0.12);
  border-color: #1BA0DB;
}

.brief-card:hover .brief-card__title {
  color: #1B4F8C;
}

.brief-card:hover .brief-card__arrow {
  transform: translateX(4px);
}

.brief-card__top {
  padding: 1.3rem 1.4rem 0.8rem;
  background: linear-gradient(135deg, #EAF2FB 0%, rgba(27, 160, 219, 0.06) 100%);
  border-bottom: 1px solid #ECEEF1;
  position: relative;
}

.brief-card--arts .brief-card__top {
  background: linear-gradient(135deg, rgba(27, 160, 219, 0.14) 0%, rgba(27, 160, 219, 0.04) 100%);
}

.brief-card--commerce .brief-card__top {
  background: linear-gradient(135deg, rgba(58, 170, 53, 0.14) 0%, rgba(58, 170, 53, 0.04) 100%);
}

.brief-card--science .brief-card__top {
  background: linear-gradient(135deg, rgba(27, 79, 140, 0.14) 0%, rgba(27, 79, 140, 0.04) 100%);
}

.brief-card__num {
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 2.3rem;
  line-height: 1;
  color: #3AAA35;
  letter-spacing: -0.03em;
  opacity: 0.85;
}

.brief-card--arts .brief-card__num {
  color: #1BA0DB;
}

.brief-card--commerce .brief-card__num {
  color: #1F7A1B;
}

.brief-card--science .brief-card__num {
  color: #1B4F8C;
}

.brief-card__stream {
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #1B4F8C;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.brief-card__body {
  padding: 1.1rem 1.4rem 1.3rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.brief-card__title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.15;
  color: #0B1220;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  transition: color 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.brief-card__text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #4A5466;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.brief-card__methods {
  border-top: 1px solid #ECEEF1;
  padding-top: 0.7rem;
  margin-bottom: 0.8rem;
}

.brief-card__methods-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8A93A4;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.brief-card__methods-value {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: #1F7A1B;
  font-weight: 500;
}

.brief-card__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1B4F8C;
}

.brief-card__arrow {
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faculty-card {
  border: 1.5px solid #0B1220;
  padding: 1rem 1.3rem 1.1rem;
  background: #FFFFFF;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.faculty-card--arts {
  background: #1BA0DB;
  color: #FFFFFF;
  border-color: #1BA0DB;
}

.faculty-card--commerce {
  background: #1F7A1B;
  color: #FFFFFF;
  border-color: #1F7A1B;
}

.faculty-card--science {
  background: #1B4F8C;
  color: #FFFFFF;
  border-color: #1B4F8C;
}

.faculty-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 0.6rem;
  margin-bottom: 0.7rem;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
}

.faculty-card__title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #FFFFFF;
  margin: 0;
}

.faculty-card__count {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #4FC74A;
  text-align: right;
}

.faculty-card__count .unit {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  display: block;
  margin-top: 0.15rem;
  text-transform: uppercase;
}

.faculty-card__list {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  columns: 2;
  column-gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faculty-card--commerce .faculty-card__list {
  columns: 1;
}

.faculty-card__list li {
  padding-left: 0.7rem;
  position: relative;
  break-inside: avoid;
}

.faculty-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  background: #4FC74A;
  border-radius: 50%;
}

.faculty-card__list li a {
  color: inherit;
  transition: color 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faculty-card__list li a:hover {
  color: #4FC74A;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

@media (max-width: 992px) {
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }
}

.tinted-band {
  background: #EAF2FB;
  position: relative;
  padding: 3rem 0;
}

.tinted-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1B4F8C 0%, #3AAA35 100%);
}

.faculty-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1fr;
  gap: 1rem;
}

@media (max-width: 992px) {
  .faculty-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faculty-grid .faculty-card:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .faculty-grid {
    grid-template-columns: 1fr;
  }
  .faculty-grid .faculty-card:nth-child(3) {
    grid-column: auto;
  }
}

.cta-band {
  background: #0E2E55;
  color: #FFFFFF;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #3AAA35 0%, transparent 65%);
  opacity: 0.15;
  border-radius: 50%;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .cta-band__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.cta-band__title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin: 0 0 0.4rem;
}

.cta-band__title em {
  color: #4FC74A;
  font-style: italic;
  font-weight: 500;
}

.cta-band__text {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.98rem;
}

.cta-band__cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.page-header {
  background: #0E2E55;
  color: #FFFFFF;
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #3AAA35 0%, transparent 70%);
  opacity: 0.18;
  border-radius: 50%;
}

.page-header__inner {
  position: relative;
  z-index: 2;
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

.page-header__breadcrumb a:hover {
  color: #4FC74A;
}

.page-header__breadcrumb .separator {
  color: #4FC74A;
}

.page-header__title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 0 0 0.7rem;
}

.page-header__title em {
  color: #4FC74A;
  font-style: italic;
  font-weight: 500;
}

.page-header__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 640px;
  margin: 0;
}

.inline-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.inline-stat__num {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  color: #FFFFFF;
}

.inline-stat__num .unit {
  font-size: 0.75rem;
  color: #4FC74A;
  font-weight: 500;
}

.inline-stat__label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.services-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 992px) {
  .services-block {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  border-radius: 6px;
  padding: 2rem 2rem 2.1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 18, 32, 0.12);
}

.service-card--dark {
  background: #0E2E55;
  color: #FFFFFF;
}

.service-card--dark::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #3AAA35 0%, transparent 65%);
  opacity: 0.18;
  border-radius: 50%;
  pointer-events: none;
}

.service-card--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.service-card--dark > * {
  position: relative;
  z-index: 1;
}

.service-card--light {
  background: #FFFFFF;
  border: 1.5px solid #DDE0E4;
}

.service-card--light::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #1BA0DB 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
}

.service-card--light > * {
  position: relative;
  z-index: 1;
}

.service-card__eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.service-card--dark .service-card__eyebrow {
  color: #4FC74A;
}

.service-card--light .service-card__eyebrow {
  color: #1F7A1B;
}

.service-card__eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: currentColor;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 1.1rem;
}

.service-card--dark .service-card__icon {
  background: rgba(255, 255, 255, 0.08);
  color: #4FC74A;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card--light .service-card__icon {
  background: #EAF2FB;
  color: #1B4F8C;
}

.service-card__title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.55rem, 2.6vw, 1.95rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 0.8rem;
}

.service-card__title em {
  font-style: italic;
  font-weight: 500;
}

.service-card--dark .service-card__title em {
  color: #4FC74A;
}

.service-card--light .service-card__title em {
  color: #1F7A1B;
}

.service-card--dark .service-card__title {
  color: #FFFFFF;
}

.service-card--light .service-card__title {
  color: #0B1220;
}

.service-card__text {
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 1.3rem;
}

.service-card--dark .service-card__text {
  color: rgba(255, 255, 255, 0.78);
}

.service-card--light .service-card__text {
  color: #4A5466;
}

.service-card__audience {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.1rem;
  align-self: flex-start;
}

.service-card--dark .service-card__audience {
  background: rgba(58, 170, 53, 0.18);
  color: #4FC74A;
  border: 1px solid rgba(79, 199, 74, 0.25);
}

.service-card--light .service-card__audience {
  background: rgba(27, 160, 219, 0.1);
  color: #1583B5;
  border: 1px solid rgba(27, 160, 219, 0.25);
}

.service-card__audience i {
  font-size: 0.75em;
}

.service-card__features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.4;
}

.service-card--dark .service-card__feature {
  color: rgba(255, 255, 255, 0.88);
}

.service-card--light .service-card__feature {
  color: #0B1220;
}

.service-card__feature i {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.service-card--dark .service-card__feature i {
  background: rgba(58, 170, 53, 0.18);
  color: #4FC74A;
}

.service-card--light .service-card__feature i {
  background: #ECF8EB;
  color: #1F7A1B;
}

.service-card__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1rem 0 1.25rem;
  margin-top: auto;
  border-top: 1px solid;
}

.service-card--dark .service-card__stats {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.service-card--light .service-card__stats {
  border-top-color: #ECEEF1;
}

.service-card__stat-num {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.service-card--dark .service-card__stat-num {
  color: #FFFFFF;
}

.service-card--light .service-card__stat-num {
  color: #0B1220;
}

.service-card__stat-num .unit {
  font-size: 0.7rem;
  font-weight: 500;
}

.service-card--dark .service-card__stat-num .unit {
  color: #4FC74A;
}

.service-card--light .service-card__stat-num .unit {
  color: #1F7A1B;
}

.service-card__stat-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.service-card--dark .service-card__stat-label {
  color: rgba(255, 255, 255, 0.55);
}

.service-card--light .service-card__stat-label {
  color: #8A93A4;
}

.service-card__cta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .audience-strip {
    grid-template-columns: 1fr;
  }
}

.audience-card {
  background: #FFFFFF;
  border: 1px solid #DDE0E4;
  border-radius: 4px;
  padding: 1.5rem 1.4rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(11, 18, 32, 0.08);
  border-color: #1BA0DB;
}

.audience-card__icon {
  width: 44px;
  height: 44px;
  background: #EAF2FB;
  color: #1B4F8C;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.audience-card__title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #0B1220;
  margin: 0 0 0.4rem;
  letter-spacing: -0.015em;
}

.audience-card__text {
  font-size: 0.88rem;
  color: #4A5466;
  line-height: 1.5;
  margin: 0;
}

.detail__layout {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .detail__layout {
    grid-template-columns: 1fr;
  }
}

.detail__block {
  margin-bottom: 2.5rem;
}

.detail__block:last-child {
  margin-bottom: 0;
}

.detail__heading {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #0B1220;
  margin: 0 0 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.detail__heading-num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: #1F7A1B;
  font-weight: 700;
}

.detail__text {
  font-size: 1rem;
  line-height: 1.65;
  color: #4A5466;
}

.detail__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.detail__list li {
  position: relative;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  background: #FBFBF8;
  border: 1px solid #DDE0E4;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #0B1220;
}

.detail__list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #3AAA35;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

.detail__brief {
  background: #FFFFFF;
  border: 1px solid #DDE0E4;
  border-radius: 4px;
  padding: 1.2rem 1.4rem 1.2rem 4.5rem;
  position: relative;
  margin-bottom: 0.7rem;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.detail__brief:hover {
  border-color: #1BA0DB;
  box-shadow: 0 2px 6px rgba(11, 18, 32, 0.06);
}

.detail__brief-num {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  width: 36px;
  height: 36px;
  background: #EAF2FB;
  color: #1B4F8C;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
  font-size: 0.85rem;
}

.detail__brief-title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0B1220;
  margin: 0 0 0.4rem;
  letter-spacing: -0.015em;
}

.detail__brief-text {
  font-size: 0.88rem;
  color: #4A5466;
  margin: 0 0 0.5rem;
  line-height: 1.55;
}

.detail__brief-collect {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  color: #1F7A1B;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
}

.detail__brief-collect i {
  margin-right: 0.4rem;
}

.detail__receive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 576px) {
  .detail__receive {
    grid-template-columns: 1fr;
  }
}

.detail__receive-item {
  background: #FFFFFF;
  border: 1px solid #DDE0E4;
  border-radius: 4px;
  padding: 1rem 1.1rem 1.05rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.detail__receive-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #ECF8EB;
  color: #1F7A1B;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.detail__receive-item-title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0B1220;
  margin: 0 0 0.2rem;
  letter-spacing: -0.01em;
}

.detail__receive-item-text {
  font-size: 0.8rem;
  color: #4A5466;
  margin: 0;
  line-height: 1.5;
}

.detail__sidebar {
  position: sticky;
  top: 90px;
  background: #FFFFFF;
  border: 1.5px solid #0B1220;
  border-radius: 6px;
  padding: 1.5rem 1.5rem 1.6rem;
}

@media (max-width: 992px) {
  .detail__sidebar {
    position: static;
  }
}

.detail__sidebar-title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #0B1220;
  margin: 0 0 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1.5px solid #DDE0E4;
  letter-spacing: -0.015em;
}

.detail__sidebar-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.detail__sidebar-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.detail__sidebar-list li i {
  width: 32px;
  height: 32px;
  background: #EAF2FB;
  color: #1B4F8C;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.detail__sidebar-list li strong {
  color: #0B1220;
  font-weight: 600;
}

.detail__sidebar-list li span {
  color: #4A5466;
  margin-left: auto;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.8rem;
}

.detail__price {
  text-align: center;
  padding: 1rem 0 1.2rem;
  border-top: 1px dashed #DDE0E4;
  margin-top: 1rem;
}

.detail__price-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #4A5466;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.detail__price-value {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #1F7A1B;
}

.detail__price-value .strike {
  text-decoration: line-through;
  color: #8A93A4;
  font-size: 0.75em;
  margin-right: 0.4rem;
  font-weight: 500;
}

.detail__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.detail__filter {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1.5px solid #DDE0E4;
  border-radius: 100px;
  background: #FFFFFF;
  color: #4A5466;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
}

.detail__filter:hover {
  border-color: #1B4F8C;
  color: #1B4F8C;
}

.detail__filter.active {
  background: #0B1220;
  color: #FFFFFF;
  border-color: #0B1220;
}

.enroll__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .enroll__layout {
    grid-template-columns: 1fr;
  }
}

.enroll__form {
  background: #FFFFFF;
  border: 1.5px solid #0B1220;
  border-radius: 6px;
  padding: 2rem 2rem 2.2rem;
}

@media (max-width: 576px) {
  .enroll__form {
    padding: 1.5rem 1.25rem 1.7rem;
  }
}

.enroll__form-title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #0B1220;
  margin: 0 0 0.4rem;
}

.enroll__form-sub {
  color: #4A5466;
  font-size: 0.92rem;
  margin: 0 0 1.5rem;
}

.enroll__choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
  .enroll__choice {
    grid-template-columns: 1fr;
  }
}

.enroll__choice-option {
  position: relative;
}

.enroll__choice-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.enroll__choice-option label {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid #DDE0E4;
  border-radius: 6px;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  background: #FFFFFF;
  align-items: flex-start;
}

.enroll__choice-option label:hover {
  border-color: #1BA0DB;
  background: rgba(27, 160, 219, 0.04);
}

.enroll__choice-option input:checked + label {
  border-color: #1B4F8C;
  background: #EAF2FB;
  box-shadow: 0 0 0 3px rgba(27, 79, 140, 0.08);
}

.enroll__choice-option input:checked + label .enroll__choice-icon {
  background: #1B4F8C;
  color: #FFFFFF;
}

.enroll__choice-option-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: #EAF2FB;
  color: #1B4F8C;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.enroll__choice-option-text strong {
  display: block;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 700;
  color: #0B1220;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.enroll__choice-option-text span {
  font-size: 0.78rem;
  color: #4A5466;
  line-height: 1.4;
}

.enroll__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

@media (max-width: 576px) {
  .enroll__row {
    grid-template-columns: 1fr;
  }
}

.enroll__field {
  margin-bottom: 0.9rem;
}

.enroll__field label {
  display: block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4A5466;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.enroll__field label .required {
  color: #1F7A1B;
}

.enroll__field input,
.enroll__field select,
.enroll__field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #DDE0E4;
  border-radius: 4px;
  background: #FFFFFF;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  color: #0B1220;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.enroll__field input:focus,
.enroll__field select:focus,
.enroll__field textarea:focus {
  outline: none;
  border-color: #1BA0DB;
  box-shadow: 0 0 0 3px rgba(27, 160, 219, 0.12);
}

.enroll__field input::placeholder,
.enroll__field select::placeholder,
.enroll__field textarea::placeholder {
  color: #8A93A4;
}

.enroll__field textarea {
  min-height: 100px;
  resize: vertical;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.enroll__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234A5466'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 1.2rem;
  padding-right: 2.2rem;
}

.enroll__submit {
  margin-top: 1rem;
}

.enroll__note {
  font-size: 0.78rem;
  color: #4A5466;
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

.enroll__note i {
  color: #3AAA35;
  margin-right: 0.3rem;
}

.enroll__side {
  background: #0E2E55;
  color: #FFFFFF;
  border-radius: 6px;
  padding: 1.8rem 1.8rem 2rem;
  position: relative;
  overflow: hidden;
}

.enroll__side::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #3AAA35 0%, transparent 70%);
  opacity: 0.18;
  border-radius: 50%;
}

.enroll__side-title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0.5rem 0 0.7rem;
  letter-spacing: -0.02em;
}

.enroll__side-title em {
  color: #4FC74A;
  font-style: italic;
  font-weight: 500;
}

.enroll__side-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.enroll__side-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.enroll__side-list li:last-child {
  border-bottom: none;
}

.enroll__side-list li i {
  width: 28px;
  height: 28px;
  background: rgba(58, 170, 53, 0.2);
  color: #4FC74A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.enroll__side-contact {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 2;
}

.enroll__side-contact-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: #4FC74A;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.enroll__side-contact a {
  color: #FFFFFF;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.enroll__side-contact a i {
  color: #4FC74A;
}

.enroll__side-contact a:hover {
  color: #4FC74A;
}

.thanks-card {
  text-align: center;
  background: #FFFFFF;
  border: 1.5px solid #3AAA35;
  border-radius: 6px;
  padding: 3rem 2rem;
}

.thanks-card__icon {
  width: 70px;
  height: 70px;
  background: #ECF8EB;
  color: #1F7A1B;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.thanks-card__title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: #0B1220;
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
}

.thanks-card__text {
  color: #4A5466;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.cm-footer {
  background: #0B1220;
  color: #FFFFFF;
  padding: 3rem 0 1.5rem;
}

.cm-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .cm-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
}

@media (max-width: 576px) {
  .cm-footer__top {
    grid-template-columns: 1fr;
  }
}

.cm-footer__brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.cm-footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 280px;
}

.cm-footer__socials {
  display: flex;
  gap: 0.5rem;
}

.cm-footer__socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cm-footer__socials a:hover {
  background: #3AAA35;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.cm-footer__head {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: #4FC74A;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 1rem;
}

.cm-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cm-footer__list li {
  margin-bottom: 0.55rem;
}

.cm-footer__list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 220ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cm-footer__list a:hover {
  color: #4FC74A;
}

.cm-footer__list a i {
  color: #4FC74A;
  font-size: 0.7rem;
  width: 14px;
}

.cm-footer__cred {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  line-height: 1.7;
  margin-top: 1rem;
}

.cm-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cm-footer__bottom .dot {
  color: #4FC74A;
}

.cm-footer__bottom a {
  color: rgba(255, 255, 255, 0.45);
}

.cm-footer__bottom a:hover {
  color: #4FC74A;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #3AAA35;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  z-index: 999;
  border-radius: 4px;
}

.container {
  max-width: 1240px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────────────────────
   Auth (sign in / sign up) page styling
   Higher specificity (a.btn-social) so it wins over the global `a` rule.
   ────────────────────────────────────────────────────────────────────────── */

/* Social provider buttons (Google, LinkedIn) */
a.btn-social,
button.btn-social {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: -0.005em;
  text-decoration: none !important;
  border: 1.5px solid #E1E5EB;
  background: #FFFFFF;
  color: #0E2E55 !important;
  box-shadow: 0 1px 2px rgba(14, 46, 85, 0.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  cursor: pointer;
  position: relative;
}
a.btn-social:hover,
button.btn-social:hover {
  background: #FBFCFE;
  border-color: #0E2E55;
  color: #0E2E55 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(14, 46, 85, 0.10);
}
a.btn-social:active,
button.btn-social:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(14, 46, 85, 0.08);
}
a.btn-social i,
button.btn-social i {
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
a.btn-social--google i        { color: #DB4437; }
a.btn-social--linkedin i      { color: #0A66C2; }
button.btn-social--google i   { color: #DB4437; }
button.btn-social--linkedin i { color: #0A66C2; }

/* Divider with horizontal rules on each side, centered text */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.4rem 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8A93A4;
  text-align: center;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E1E5EB, transparent);
}

/* Group wrapper around the two social buttons */
.auth-social-group {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

/* ──────────────────────────────────────────────────────────────────────────
   Phone input with country-code prefix (+91)
   ────────────────────────────────────────────────────────────────────────── */
.phone-input {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #E1E5EB;
  border-radius: 10px;
  background: #FFFFFF;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.phone-input:focus-within {
  border-color: #0E2E55;
  box-shadow: 0 0 0 3px rgba(14, 46, 85, 0.08);
}
.phone-input__prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 0.95rem;
  background: #F5F7FA;
  border-right: 1.5px solid #E1E5EB;
  color: #4A5466;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  user-select: none;
}
.phone-input input[type="tel"] {
  flex: 1;
  min-width: 0;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 0.85rem 0.95rem !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #0E2E55;
  letter-spacing: 0.02em;
}
.phone-input input[type="tel"]::placeholder {
  color: #B3BAC4;
  letter-spacing: normal;
}
.phone-input input[type="tel"]:focus {
  box-shadow: none !important;
}

/* ──────────────────────────────────────────────────────────────────────────
   Role chooser cards (signup) — Student vs Mentor
   ────────────────────────────────────────────────────────────────────────── */
.role-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.role-choice__option {
  cursor: pointer;
  display: block;
}
.role-choice__option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.role-choice__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid #E1E5EB;
  border-radius: 12px;
  background: #FFFFFF;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}
.role-choice__card i {
  font-size: 1.35rem;
  color: #0E2E55;
  margin-bottom: 0.15rem;
}
.role-choice__card strong {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 1.05rem;
  color: #0E2E55;
}
.role-choice__card small {
  font-size: 0.78rem;
  color: #4A5466;
  line-height: 1.35;
}
.role-choice__option:hover .role-choice__card {
  border-color: #0E2E55;
  background: #FBFCFE;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 46, 85, 0.06);
}
.role-choice__option input[type="radio"]:checked + .role-choice__card {
  border-color: #1F7A1B;
  background: #F5FAF5;
  box-shadow: 0 0 0 3px rgba(31, 122, 27, 0.10);
}
.role-choice__option input[type="radio"]:checked + .role-choice__card i,
.role-choice__option input[type="radio"]:checked + .role-choice__card strong {
  color: #1F7A1B;
}
@media (max-width: 480px) {
  .role-choice { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────────────────────
   Profile-completion banner (dashboard)
   ────────────────────────────────────────────────────────────────────────── */
.profile-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  margin: 0 0 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(31, 122, 27, 0.06), rgba(14, 46, 85, 0.04));
  border: 1px solid rgba(31, 122, 27, 0.18);
}
.profile-banner__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(31, 122, 27, 0.12);
  color: #1F7A1B;
  font-size: 1.4rem;
}
.profile-banner__title {
  margin: 0 0 0.25rem;
  font-family: 'Bricolage Grotesque', serif;
  font-size: 1.1rem;
  color: #0E2E55;
}
.profile-banner__sub {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: #4A5466;
  line-height: 1.45;
}
.profile-banner__bar {
  height: 6px;
  background: rgba(14, 46, 85, 0.08);
  border-radius: 4px;
  overflow: hidden;
  max-width: 340px;
}
.profile-banner__bar-fill {
  height: 100%;
  background: #1F7A1B;
  border-radius: 4px;
  transition: width .35s ease;
}
.profile-banner--warn {
  background: linear-gradient(135deg, rgba(229, 165, 28, 0.08), rgba(14, 46, 85, 0.04));
  border-color: rgba(229, 165, 28, 0.30);
}
.profile-banner--warn .profile-banner__icon {
  background: rgba(229, 165, 28, 0.14);
  color: #B57B0E;
}
@media (max-width: 640px) {
  .profile-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .profile-banner__icon { width: 44px; height: 44px; font-size: 1.2rem; }
}

/* ──────────────────────────────────────────────────────────────────────────
   Slide deck (student-side lesson player)
   ────────────────────────────────────────────────────────────────────────── */
.slide-deck {
  background: #FFFFFF;
  border: 1px solid #E1E5EB;
  border-radius: 18px;
  padding: 1.4rem 1.6rem 1.2rem;
  box-shadow: 0 1px 3px rgba(14, 46, 85, 0.04);
}
.slide-deck__progress {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}
.slide-deck__progress-bar {
  flex: 1;
  height: 5px;
  background: #ECEEF2;
  border-radius: 3px;
  overflow: hidden;
}
.slide-deck__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1F7A1B, #2BA827);
  border-radius: 3px;
  transition: width .25s ease;
}
.slide-deck__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: #4A5466;
  letter-spacing: 0.06em;
}
.slide-deck__slide {
  min-height: 280px;
  padding: 0.6rem 0 1.2rem;
}
.slide-deck__title {
  font-family: 'Bricolage Grotesque', serif;
  font-size: clamp(1.4rem, 2vw + 0.6rem, 1.85rem);
  margin: 0 0 1rem;
  color: #0E2E55;
}
.slide-deck__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.slide-deck__video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.slide-deck__video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.slide-deck__video-native {
  display: block;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: #000;
}
.slide-deck__body {
  font-size: 1rem;
  line-height: 1.65;
  color: #20283A;
}
.slide-deck__body p { margin: 0 0 0.85rem; }
.slide-deck__body img { max-width: 100%; height: auto; border-radius: 8px; }
.slide-deck__body pre {
  background: #0E2E55; color: #FFFFFF; padding: 1rem 1.1rem;
  border-radius: 10px; overflow-x: auto; font-size: 0.85rem;
}
.slide-deck__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.1rem;
  border-top: 1px solid #ECEEF2;
}
.slide-deck__nav button {
  min-width: 130px;
}
@media (max-width: 540px) {
  .slide-deck { padding: 1rem 1.1rem; }
  .slide-deck__nav button { min-width: 0; flex: 1; }
}

/* ──────────────────────────────────────────────────────────────────────────
   Mentor drag-to-reorder — handle, ghost, drop states, toast
   ────────────────────────────────────────────────────────────────────────── */
.sortable-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B7280;
}
.sortable-hint i { color: #0E2E55; }

.sortable-list .sortable-item {
  transition: box-shadow .15s ease, transform .15s ease, background .15s ease;
}

.sortable__handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6B7280;
  cursor: grab;
  border-radius: 6px;
  transition: background .15s ease, color .15s ease;
}
.sortable__handle:hover {
  background: #F1F4F8;
  color: #0E2E55;
}
.sortable__handle:active { cursor: grabbing; }
.sortable__handle i { font-size: 0.95rem; }

.sortable__ghost {
  opacity: 0.35;
  background: #F0F7F0 !important;
  border-color: #1F7A1B !important;
}
.sortable__chosen {
  box-shadow: 0 8px 22px rgba(14, 46, 85, 0.12);
}
.sortable__drag {
  background: #FFFFFF !important;
  box-shadow: 0 14px 30px rgba(14, 46, 85, 0.18);
  transform: rotate(0.5deg);
}

.sortable-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 0.65rem 1.1rem;
  background: #0E2E55;
  color: #FFFFFF;
  font-size: 0.85rem;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(14, 46, 85, 0.20);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1000;
}
.sortable-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.sortable-toast--error { background: #B91C1C; }

/* ──────────────────────────────────────────────────────────────────────────
   Slide thumbnail strip (student-side player)
   ────────────────────────────────────────────────────────────────────────── */
.slide-thumbs {
  display: flex;
  gap: 0.65rem;
  margin: 0 0 1.2rem;
  padding-bottom: 0.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #C5CBD3 transparent;
}
.slide-thumbs::-webkit-scrollbar { height: 6px; }
.slide-thumbs::-webkit-scrollbar-thumb { background: #C5CBD3; border-radius: 3px; }
.slide-thumbs::-webkit-scrollbar-track { background: transparent; }

.slide-thumb {
  flex: 0 0 124px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  padding: 0.45rem;
  background: #FFFFFF;
  border: 1.5px solid #E1E5EB;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  scroll-snap-align: start;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  position: relative;
}
.slide-thumb:hover {
  border-color: #0E2E55;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 46, 85, 0.08);
}
.slide-thumb--active {
  border-color: #1F7A1B;
  box-shadow: 0 0 0 3px rgba(31, 122, 27, 0.18);
}
.slide-thumb--active::after {
  content: "";
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1F7A1B;
}
.slide-thumb__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #6B7280;
}
.slide-thumb__img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  background: #F1F4F8;
}
.slide-thumb__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  border-radius: 6px;
  background: linear-gradient(135deg, #F1F4F8, #E6EBF1);
  color: #0E2E55;
  font-size: 1.1rem;
}
.slide-thumb__placeholder--video {
  background: linear-gradient(135deg, #0E2E55, #1B4F8C);
  color: #FFFFFF;
}
.slide-thumb__caption {
  font-size: 0.78rem;
  color: #20283A;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 540px) {
  .slide-thumb { flex-basis: 108px; }
  .slide-thumb__img,
  .slide-thumb__placeholder { height: 56px; }
}

/* ──────────────────────────────────────────────────────────────────────────
   Course player TOC — module + lesson rows (student side, post-enrol)
   ────────────────────────────────────────────────────────────────────────── */
.course-toc {
  display: grid;
  gap: 1rem;
}
.course-toc__module {
  border: 1px solid #E1E5EB;
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  background: #FFFFFF;
}
.course-toc__module-title {
  margin: 0 0 0.3rem;
  font-family: 'Bricolage Grotesque', serif;
  font-size: 1.15rem;
  color: #0E2E55;
}
.course-toc__module-desc {
  margin: 0 0 0.4rem;
  color: #4A5466;
  font-size: 0.92rem;
  line-height: 1.45;
}
.course-toc__lessons {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.4rem;
}
.course-toc__lesson {
  display: grid;
  grid-template-columns: 24px 1fr auto 28px;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #FAFBFD;
  color: #0E2E55 !important;
  text-decoration: none !important;
  font-weight: 500;
  transition: background .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.course-toc__lesson:hover {
  background: #FFFFFF;
  border-color: #0E2E55;
  transform: translateX(2px);
  box-shadow: 0 4px 14px rgba(14, 46, 85, 0.06);
}
.course-toc__lesson:hover .course-toc__lesson-cta i {
  transform: translateX(2px);
}
.course-toc__lesson-state i {
  font-size: 1.05rem;
  color: #B3BAC4;
}
.course-toc__lesson--done .course-toc__lesson-state i { color: #1F7A1B; }
.course-toc__lesson--done { background: #F2F9F2; }
.course-toc__lesson--done .course-toc__lesson-title { color: #1F7A1B; }
.course-toc__lesson-title {
  font-size: 0.98rem;
  line-height: 1.35;
}
.course-toc__lesson-meta {
  font-size: 0.78rem;
  color: #6B7280;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.course-toc__lesson-meta i { margin-right: 0.25rem; }
.course-toc__lesson-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(14, 46, 85, 0.08);
  color: #0E2E55;
}
.course-toc__lesson-cta i { transition: transform .15s ease; }
.course-toc__empty {
  padding: 0.6rem 0.95rem;
  color: #6B7280;
  font-size: 0.88rem;
  font-style: italic;
}
@media (max-width: 540px) {
  .course-toc__lesson {
    grid-template-columns: 24px 1fr auto;
  }
  .course-toc__lesson-meta { grid-column: 2 / -1; padding-left: 0; font-size: 0.72rem; }
  .course-toc__lesson-cta { grid-row: 1; grid-column: 3; }
}

/* ──────────────────────────────────────────────────────────────────────────
   Empty-lesson state (no slides yet)
   ────────────────────────────────────────────────────────────────────────── */
.lesson-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #FAFBFD;
  border: 1px dashed #C5CBD3;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}
.lesson-empty__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(14, 46, 85, 0.08);
  color: #0E2E55;
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}
.lesson-empty__title {
  margin: 0 0 0.4rem;
  font-family: 'Bricolage Grotesque', serif;
  font-size: 1.25rem;
  color: #0E2E55;
}
.lesson-empty__sub {
  margin: 0 0 1.2rem;
  color: #4A5466;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
