/**
 * Siksha Connects — Engineering & Medical course landings (premium consultancy).
 * Design tokens aligned with services-premium.css.
 */

.sc-crs-page {
  --sc-navy: #071c4d;
  --sc-navy-mid: #0b245f;
  --sc-teal: #16d5c0;
  --sc-teal-dim: #12b8c8;
  --sc-text: #0f172a;
  --sc-muted: #475569;
  --sc-radius: 18px;
  --sc-radius-sm: 12px;
  --sc-shadow: 0 8px 32px rgba(7, 28, 77, 0.07);
  --sc-shadow-lift: 0 20px 48px rgba(7, 28, 77, 0.11);
  font-family: "Outfit", "DM Sans", system-ui, sans-serif;
  color: var(--sc-text);
  background: #eef7f8;
}

body.sc-page-engineering-premium .main-banner,
body.sc-page-medical-premium .main-banner,
body.sc-page-management-premium .main-banner,
body.sc-page-engineering-premium .blog.section-padding .sidebar,
body.sc-page-medical-premium .blog.section-padding .sidebar,
body.sc-page-management-premium .blog.section-padding .sidebar {
  display: none !important;
}

.sc-crs-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Scroll reveal */
.sc-crs-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* —— Hero —— */
.sc-crs-hero {
  position: relative;
  padding: 44px 0 52px;
  overflow: hidden;
  border-bottom: 1px solid rgba(7, 28, 77, 0.06);
}

.sc-crs-hero--engineering {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f2fb 38%, #dceef6 72%, #f4fafb 100%);
}

.sc-crs-hero--medical {
  background: linear-gradient(135deg, #f6fcfb 0%, #e8f6f5 40%, #e4f0fb 100%);
}

.sc-crs-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.sc-crs-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sc-teal-dim);
}

.sc-crs-hero__title {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--sc-navy);
}

.sc-crs-hero__lead {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--sc-muted);
  max-width: 34rem;
}

.sc-crs-hero__highlights {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 36rem;
}

.sc-crs-hero__highlights li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sc-text);
  line-height: 1.45;
}

.sc-crs-hero__highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
  color: var(--sc-teal-dim);
  font-weight: 800;
}

.sc-crs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Engineering abstract visual */
.sc-crs-eng-viz {
  position: relative;
  aspect-ratio: 5 / 4;
  max-height: 340px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(232, 244, 251, 0.85) 100%);
  border: 1px solid rgba(7, 28, 77, 0.08);
  box-shadow: var(--sc-shadow-lift);
  overflow: hidden;
}

.sc-crs-eng-viz__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 28, 77, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 28, 77, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.65;
}

.sc-crs-eng-viz__orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -36px;
  top: 18%;
  background: radial-gradient(circle at 35% 35%, rgba(22, 213, 192, 0.45) 0%, rgba(18, 184, 200, 0.12) 45%, transparent 70%);
  filter: blur(0px);
}

.sc-crs-eng-viz__svg {
  position: absolute;
  inset: 8% 6% 8% 6%;
  width: 88%;
  height: auto;
}

/* Medical line-art visual */
.sc-crs-med-viz {
  position: relative;
  aspect-ratio: 5 / 4;
  max-height: 340px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(236, 252, 250, 0.9) 100%);
  border: 1px solid rgba(18, 184, 200, 0.15);
  box-shadow: var(--sc-shadow-lift);
  overflow: hidden;
}

.sc-crs-med-viz__pulse {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 50%;
  top: 22%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 213, 192, 0.2) 0%, transparent 70%);
  animation: scCrsPulse 3.2s ease-in-out infinite;
}

@keyframes scCrsPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1;
  }
}

.sc-crs-med-viz__svg {
  position: absolute;
  inset: 10% 5% 12% 5%;
  width: 90%;
  height: auto;
}

.sc-crs-med-viz__ecg {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: scCrsEcg 2.8s ease forwards 0.3s;
}

@keyframes scCrsEcg {
  to {
    stroke-dashoffset: 0;
  }
}

/* —— Buttons —— */
.sc-crs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--sc-radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.sc-crs-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--sc-navy-mid) 0%, #0d4a5c 55%, var(--sc-teal-dim) 130%);
  box-shadow: 0 8px 28px rgba(7, 28, 77, 0.22);
}

.sc-crs-btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(22, 213, 192, 0.35);
}

.sc-crs-btn--ghost {
  color: var(--sc-navy);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(7, 28, 77, 0.14);
  box-shadow: 0 4px 18px rgba(7, 28, 77, 0.06);
}

.sc-crs-btn--ghost:hover {
  border-color: rgba(22, 213, 192, 0.45);
  transform: translateY(-2px);
}

.sc-crs-btn--outline-dark {
  color: var(--sc-navy);
  background: #fff;
  border-color: rgba(7, 28, 77, 0.18);
  box-shadow: 0 4px 20px rgba(7, 28, 77, 0.08);
}

.sc-crs-btn--outline-dark:hover {
  border-color: rgba(22, 213, 192, 0.5);
  transform: translateY(-2px);
}

/* —— Stats (glass) —— */
.sc-crs-stats {
  padding: 36px 0 28px;
  background: linear-gradient(180deg, #eef7f8 0%, #e8f3f6 100%);
}

.sc-crs-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sc-crs-stat {
  position: relative;
  padding: 22px 18px 20px;
  border-radius: var(--sc-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 4px 24px rgba(7, 28, 77, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
  text-align: center;
}

.sc-crs-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 213, 192, 0.35);
  box-shadow:
    var(--sc-shadow-lift),
    0 0 0 1px rgba(22, 213, 192, 0.1);
}

.sc-crs-stat__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(22, 213, 192, 0.2) 0%, rgba(7, 28, 77, 0.06) 100%);
  border: 1px solid rgba(22, 213, 192, 0.28);
  position: relative;
}

.sc-crs-stat__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0.88;
}

.sc-crs-stat__icon--college::after {
  width: 18px;
  height: 14px;
  border: 2px solid var(--sc-navy-mid);
  border-radius: 2px;
  box-shadow: 0 -6px 0 -3px var(--sc-navy-mid);
}

.sc-crs-stat__icon--branch::after {
  width: 3px;
  height: 18px;
  background: var(--sc-navy-mid);
  border-radius: 2px;
  box-shadow: -6px 4px 0 -1px var(--sc-teal-dim), 6px 4px 0 -1px var(--sc-teal-dim);
}

.sc-crs-stat__icon--people::after {
  width: 22px;
  height: 10px;
  background: radial-gradient(circle at 30% 50%, var(--sc-navy-mid) 3px, transparent 4px),
    radial-gradient(circle at 50% 45%, var(--sc-navy-mid) 3px, transparent 4px),
    radial-gradient(circle at 70% 50%, var(--sc-navy-mid) 3px, transparent 4px);
}

.sc-crs-stat__icon--globe::after {
  width: 20px;
  height: 20px;
  border: 2px solid var(--sc-navy-mid);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(22, 213, 192, 0.35);
}

.sc-crs-stat__icon--exam::after {
  width: 16px;
  height: 20px;
  border: 2px solid var(--sc-navy-mid);
  border-radius: 3px;
  background: linear-gradient(transparent 45%, var(--sc-teal-dim) 45%, var(--sc-teal-dim) 48%, transparent 48%);
}

.sc-crs-stat__value {
  margin: 0 0 6px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sc-navy);
  line-height: 1.2;
}

.sc-crs-stat__label {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--sc-muted);
  font-weight: 600;
}

/* —— Section heads —— */
.sc-crs-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}

.sc-crs-section-head--left {
  text-align: left;
  margin-left: 0;
}

.sc-crs-section-head__title {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--sc-navy);
  line-height: 1.2;
}

.sc-crs-section-head__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--sc-teal), var(--sc-teal-dim));
}

.sc-crs-section-head:not(.sc-crs-section-head--left) .sc-crs-section-head__title::after {
  margin-left: auto;
  margin-right: auto;
}

.sc-crs-section-head__sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sc-muted);
}

/* —— Program tabs —— */
.sc-crs-programs {
  padding: 40px 0 36px;
  background: #f6fbfc;
}

.sc-crs-programs--simple {
  background: linear-gradient(180deg, #f6fbfc 0%, #eef7f8 100%);
}

.sc-crs-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 26px;
}

.sc-crs-tabs__btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(7, 28, 77, 0.1);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--sc-muted);
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.2s ease,
    box-shadow 0.25s ease;
}

.sc-crs-tabs__btn:hover {
  border-color: rgba(22, 213, 192, 0.4);
  color: var(--sc-navy);
}

.sc-crs-tabs__btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--sc-navy-mid), var(--sc-teal-dim));
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(7, 28, 77, 0.18);
}

.sc-crs-prog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sc-crs-prog-card {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: var(--sc-radius);
  background: linear-gradient(165deg, #ffffff 0%, #f6fcfd 100%);
  border: 1px solid rgba(7, 28, 77, 0.07);
  box-shadow: var(--sc-shadow);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.sc-crs-prog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 213, 192, 0.32);
  box-shadow:
    var(--sc-shadow-lift),
    0 0 0 1px rgba(22, 213, 192, 0.1);
}

.sc-crs-prog-card__trend {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sc-teal-dim);
  background: rgba(22, 213, 192, 0.12);
  padding: 4px 8px;
  border-radius: 999px;
}

.sc-crs-prog-card__top {
  padding-right: 0;
}

.sc-crs-prog-card:has(.sc-crs-prog-card__trend) .sc-crs-prog-card__top {
  padding-right: 72px;
}

.sc-crs-prog-card__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(22, 213, 192, 0.18) 0%, rgba(7, 28, 77, 0.05) 100%);
  border: 1px solid rgba(22, 213, 192, 0.22);
  position: relative;
}

.sc-crs-prog-card__icon::after {
  content: "";
  width: 18px;
  height: 18px;
  opacity: 0.9;
  background: var(--sc-navy-mid);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.sc-crs-prog-card__icon--chip::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3C/svg%3E");
  background: var(--sc-navy-mid);
}

.sc-crs-prog-card__icon--code::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M8 9l-4 3 4 3M16 9l4 3-4 3'/%3E%3Cpath d='M14 6l-4 12'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M8 9l-4 3 4 3M16 9l4 3-4 3'/%3E%3Cpath d='M14 6l-4 12'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--chart::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 20V10M10 20V4M16 20v-6M22 20V14'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 20V10M10 20V4M16 20v-6M22 20V14'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--shield::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 3l8 4v6c0 5-3.5 9-8 10-4.5-1-8-5-8-10V7l8-4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 3l8 4v6c0 5-3.5 9-8 10-4.5-1-8-5-8-10V7l8-4z'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--cloud::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M18 10h1a4 4 0 010 8h-12a5 5 0 111.5-9.8A4 4 0 0118 10z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M18 10h1a4 4 0 010 8h-12a5 5 0 111.5-9.8A4 4 0 0118 10z'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--gear::after,
.sc-crs-prog-card__icon--dial::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--building::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 22V4a2 2 0 012-2h8l6 6v14H4z'/%3E%3Cpath d='M9 22v-4h6v4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 22V4a2 2 0 012-2h8l6 6v14H4z'/%3E%3Cpath d='M9 22v-4h6v4'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--flask::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M9 3h6M10 3v5l-5 9a2 2 0 001.7 3h10.6a2 2 0 001.7-3l-5-9V3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M9 3h6M10 3v5l-5 9a2 2 0 001.7 3h10.6a2 2 0 001.7-3l-5-9V3'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--car::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M5 17h14v-5l-2-4H7l-2 4v5zM7 17v2M17 17v2M5 11h14'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M5 17h14v-5l-2-4H7l-2 4v5zM7 17v2M17 17v2M5 11h14'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--plane::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 12h6l3-9 4 18 3-9h6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 12h6l3-9 4 18 3-9h6'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--wave::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 12c2-4 4-4 6 0s4 4 6 0 4-4 6 0 4 4 6 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 12c2-4 4-4 6 0s4 4 6 0 4-4 6 0 4 4 6 0'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--bolt::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M13 2L3 14h8l-2 8 10-12h-8l2-8z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M13 2L3 14h8l-2 8 10-12h-8l2-8z'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--robot::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='5' y='8' width='14' height='10' rx='2'/%3E%3Cpath d='M12 4v4M8 14h8M9 18v2M15 18v2'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='5' y='8' width='14' height='10' rx='2'/%3E%3Cpath d='M12 4v4M8 14h8M9 18v2M15 18v2'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--node::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Ccircle cx='5' cy='19' r='2'/%3E%3Ccircle cx='19' cy='19' r='2'/%3E%3Cpath d='M12 7v6M8.5 16.5l-2.5 1M15.5 16.5l2.5 1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Ccircle cx='5' cy='19' r='2'/%3E%3Ccircle cx='19' cy='19' r='2'/%3E%3Cpath d='M12 7v6M8.5 16.5l-2.5 1M15.5 16.5l2.5 1'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--chain::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M10 13a5 5 0 007.07 0l2.12-2.12a5 5 0 00-7.07-7.07L10 6'/%3E%3Cpath d='M14 11a5 5 0 00-7.07 0L4.81 13.12a5 5 0 007.07 7.07L14 18'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M10 13a5 5 0 007.07 0l2.12-2.12a5 5 0 00-7.07-7.07L10 6'/%3E%3Cpath d='M14 11a5 5 0 00-7.07 0L4.81 13.12a5 5 0 007.07 7.07L14 18'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--grad::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 10l8-4 8 4-8 4-8-4zM8 12v5M16 12v5'/%3E%3Cpath d='M9 21h6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 10l8-4 8 4-8 4-8-4zM8 12v5M16 12v5'/%3E%3Cpath d='M9 21h6'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--laptop::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='12' rx='2'/%3E%3Cpath d='M2 18h20'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='12' rx='2'/%3E%3Cpath d='M2 18h20'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--stack::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 3L4 7l8 4 8-4-8-4zM4 12l8 4 8-4M4 17l8 4 8-4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 3L4 7l8 4 8-4-8-4zM4 12l8 4 8-4M4 17l8 4 8-4'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--steth::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4.5 12.5a4 4 0 108 0V9a2 2 0 10-4 0v3.5'/%3E%3Cpath d='M8.5 12.5V16a4 4 0 004 4h1a3 3 0 003-3v-1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4.5 12.5a4 4 0 108 0V9a2 2 0 10-4 0v3.5'/%3E%3Cpath d='M8.5 12.5V16a4 4 0 004 4h1a3 3 0 003-3v-1'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--tooth::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 3c-2 0-3 2-3 4-1 2-2 3-2 6 0 4 2 8 5 8s5-4 5-8c0-3-1-4-2-6 0-2-1-4-3-4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 3c-2 0-3 2-3 4-1 2-2 3-2 6 0 4 2 8 5 8s5-4 5-8c0-3-1-4-2-6 0-2-1-4-3-4z'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__icon--microscope::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 21h12M9 21v-4M6 3h6v6a3 3 0 01-3 3H6V3zM14 7l5 5'/%3E%3Ccircle cx='14' cy='14' r='3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 21h12M9 21v-4M6 3h6v6a3 3 0 01-3 3H6V3zM14 7l5 5'/%3E%3Ccircle cx='14' cy='14' r='3'/%3E%3C/svg%3E");
}

.sc-crs-prog-card__title {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sc-navy);
  line-height: 1.25;
}

.sc-crs-prog-card__badge {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sc-teal-dim);
}

.sc-crs-prog-card__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--sc-muted);
}

/* —— Eligibility —— */
.sc-crs-eligibility {
  padding: 40px 0 44px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fafb 100%);
}

.sc-crs-elig__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sc-crs-elig__grid--single {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.sc-crs-elig-card {
  padding: 24px 22px 26px;
  border-radius: var(--sc-radius);
  background: #fff;
  border: 1px solid rgba(7, 28, 77, 0.07);
  box-shadow: var(--sc-shadow);
  border-top: 4px solid var(--sc-teal-dim);
}

.sc-crs-elig-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.sc-crs-elig-card__head h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--sc-navy);
}

.sc-crs-elig-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(22, 213, 192, 0.2) 0%, rgba(7, 28, 77, 0.06) 100%);
  border: 1px solid rgba(22, 213, 192, 0.25);
  position: relative;
}

.sc-crs-elig-card__icon--hat::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 14px;
  border: 2px solid var(--sc-navy-mid);
  border-radius: 10px 10px 2px 2px;
  box-shadow: 0 6px 0 -3px var(--sc-navy-mid);
}

.sc-crs-elig-card__icon--doc::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 20px;
  border: 2px solid var(--sc-navy-mid);
  border-radius: 3px;
  background: linear-gradient(transparent 55%, rgba(22, 213, 192, 0.35) 55%);
}

.sc-crs-elig-card__icon--cross::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: linear-gradient(var(--sc-navy-mid), var(--sc-navy-mid)) center/2px 100% no-repeat,
    linear-gradient(var(--sc-navy-mid), var(--sc-navy-mid)) center/100% 2px no-repeat;
  opacity: 0.85;
}

.sc-crs-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sc-crs-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--sc-text);
}

.sc-crs-checklist__mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 213, 192, 0.14);
  color: var(--sc-teal-dim);
}

.sc-crs-path-cards {
  display: grid;
  gap: 14px;
}

.sc-crs-path-card {
  padding: 18px 18px 20px;
  border-radius: var(--sc-radius-sm);
  background: linear-gradient(165deg, #ffffff 0%, #f4fbfc 100%);
  border: 1px solid rgba(7, 28, 77, 0.07);
  box-shadow: 0 6px 22px rgba(7, 28, 77, 0.05);
  border-left: 4px solid rgba(18, 184, 200, 0.65);
}

.sc-crs-path-card__title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--sc-navy);
}

.sc-crs-path-card__desc {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--sc-muted);
}

/* —— Exams —— */
.sc-crs-exams {
  padding: 40px 0 44px;
  background: #eef7f8;
}

.sc-crs-exam-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sc-crs-exam-card {
  padding: 20px 20px 22px;
  border-radius: var(--sc-radius);
  background: #fff;
  border: 1px solid rgba(7, 28, 77, 0.07);
  box-shadow: var(--sc-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.sc-crs-exam-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 213, 192, 0.3);
  box-shadow: var(--sc-shadow-lift);
}

.sc-crs-exam-card__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sc-crs-exam-card__logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(145deg, var(--sc-navy-mid), var(--sc-teal-dim));
  box-shadow: 0 6px 18px rgba(7, 28, 77, 0.2);
}

.sc-crs-exam-card__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sc-navy);
  line-height: 1.2;
}

.sc-crs-exam-card__purpose,
.sc-crs-exam-card__colleges {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--sc-muted);
}

.sc-crs-exam-card__purpose strong,
.sc-crs-exam-card__colleges strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sc-navy-mid);
  margin-bottom: 4px;
}

.sc-crs-exam-card__cta {
  margin-top: auto;
  padding-top: 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--sc-teal-dim);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sc-crs-exam-card__cta::after {
  content: "→";
  transition: transform 0.2s ease;
}

.sc-crs-exam-card__cta:hover {
  color: var(--sc-navy);
}

.sc-crs-exam-card__cta:hover::after {
  transform: translateX(3px);
}

/* —— Final CTA —— */
.sc-crs-final-cta {
  position: relative;
  padding: 48px 0 56px;
  overflow: hidden;
}

.sc-crs-final-cta--engineering {
  background: linear-gradient(180deg, #e8f4f8 0%, #dceef4 50%, #f4fafb 100%);
}

.sc-crs-final-cta--medical {
  background: linear-gradient(180deg, #e8f6f4 0%, #e2f0fb 55%, #f4fbfa 100%);
}

.sc-crs-final-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(circle at 12% 40%, rgba(22, 213, 192, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 88% 60%, rgba(7, 28, 77, 0.08) 0%, transparent 42%);
}

.sc-crs-final-cta__bg--medical {
  background-image: radial-gradient(circle at 20% 30%, rgba(22, 213, 192, 0.22) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cpath d='M10 60h100M60 10v100' stroke='%23071c4d' stroke-opacity='0.06' stroke-width='1'/%3E%3Cpath d='M20 80 Q60 40 100 80' stroke='%2312b8c8' stroke-opacity='0.12' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-size: auto, 180px 180px;
}

.sc-crs-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 28px 40px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f2fafb 55%, #eef8f8 100%);
  border: 1px solid rgba(7, 28, 77, 0.08);
  box-shadow: 0 24px 56px rgba(7, 28, 77, 0.1);
}

.sc-crs-final-cta__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--sc-navy);
  line-height: 1.2;
}

.sc-crs-final-cta__sub {
  margin: 0 0 24px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--sc-muted);
}

.sc-crs-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* —— Management page (Services-aligned: light, teal, minimal gold) —— */
.sc-crs-page--management {
  background: linear-gradient(180deg, #f4fafb 0%, #eef7f8 45%, #f6fbfc 100%);
}

.sc-crs-hero--management {
  position: relative;
  padding: 48px 0 56px;
  background: linear-gradient(180deg, #f4fafb 0%, #eef7f8 50%, #e8f4f6 100%);
  border-bottom: 1px solid rgba(7, 28, 77, 0.06);
  overflow: hidden;
}

.sc-crs-hero--management::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(7, 28, 77, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 28, 77, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

.sc-crs-hero--management::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: min(52%, 480px);
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(22, 213, 192, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.sc-crs-hero--management .sc-crs-container.sc-crs-hero__grid {
  position: relative;
  z-index: 1;
}

.sc-crs-btn--mgmt {
  background: linear-gradient(135deg, #0b245f 0%, #0d4a5c 55%, #12b8c8 130%);
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(7, 28, 77, 0.18);
}

.sc-crs-btn--mgmt:hover {
  color: #fff !important;
  box-shadow: 0 12px 36px rgba(22, 213, 192, 0.28);
}

/* Hero dashboard */
.sc-crs-mgmt-dash {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

.sc-crs-mgmt-dash__glass {
  width: 100%;
  max-width: 400px;
  padding: 20px 20px 22px;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.38) 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 20px 50px rgba(7, 28, 77, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
}

.sc-crs-mgmt-dash__head {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.sc-crs-mgmt-dash__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(7, 28, 77, 0.18);
}

.sc-crs-mgmt-dash__dot:first-child {
  background: var(--sc-teal-dim);
}

.sc-crs-mgmt-dash__dot:nth-child(2) {
  background: #12b8c8;
}

.sc-crs-mgmt-dash__chart {
  margin-bottom: 16px;
  padding: 12px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(7, 28, 77, 0.06);
}

.sc-crs-mgmt-dash__chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.sc-crs-mgmt-dash__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sc-crs-mgmt-dash__tile {
  padding: 12px 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(7, 28, 77, 0.06);
}

.sc-crs-mgmt-dash__tile--wide {
  grid-column: 1 / -1;
}

.sc-crs-mgmt-dash__tile-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sc-muted);
  margin-bottom: 4px;
}

.sc-crs-mgmt-dash__tile-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sc-navy);
}

.sc-crs-stats--management {
  background: linear-gradient(180deg, #eef7f8 0%, #f6fbfc 100%);
  padding: 40px 0 32px;
}

.sc-crs-stat--mgmt {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88) 0%, rgba(246, 252, 253, 0.75) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.sc-crs-stat--mgmt:hover {
  border-color: rgba(18, 184, 200, 0.35);
}

.sc-crs-programs--management {
  background: #fff;
  padding: 44px 0 40px;
}

.sc-crs-tabs--management {
  max-width: 920px;
  margin: 0 auto;
}

.sc-crs-tabs__list--mgmt {
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.sc-crs-tabs__btn--mgmt {
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  border-radius: 12px;
  border: 1px solid rgba(7, 28, 77, 0.08);
  background: #fff;
  color: var(--sc-muted);
  box-shadow: 0 2px 12px rgba(7, 28, 77, 0.04);
}

.sc-crs-tabs__btn--mgmt:hover {
  color: var(--sc-navy);
  border-color: rgba(22, 213, 192, 0.4);
}

.sc-crs-tabs__btn--mgmt.is-active {
  color: #fff;
  background: linear-gradient(135deg, #0b245f 0%, #134070 50%, #0d5c6e 100%);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(7, 28, 77, 0.2);
}

.sc-crs-tabs__panel--mgmt {
  padding: 0;
}

.sc-crs-mgmt-overview {
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--sc-muted);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sc-crs-mgmt-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.sc-crs-mgmt-mod {
  padding: 16px 18px 18px;
  border-radius: var(--sc-radius-sm);
  background: #fff;
  border: 1px solid rgba(7, 28, 77, 0.07);
  box-shadow: 0 6px 22px rgba(7, 28, 77, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.sc-crs-mgmt-mod:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 213, 192, 0.32);
  box-shadow: 0 14px 36px rgba(7, 28, 77, 0.08);
}

.sc-crs-mgmt-mod__label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sc-teal-dim);
}

.sc-crs-mgmt-mod__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--sc-text);
}

.sc-crs-mgmt-specblock {
  padding: 18px 20px 20px;
  border-radius: var(--sc-radius-sm);
  background: linear-gradient(180deg, #fffefb 0%, #f7fafb 100%);
  border: 1px solid rgba(7, 28, 77, 0.06);
}

.sc-crs-mgmt-specblock__label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sc-navy-mid);
}

.sc-crs-mgmt-specblock__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sc-crs-mgmt-pill--inline {
  font-size: 12px;
  padding: 7px 12px;
}

.sc-crs-mgmt-spec-section {
  padding: 40px 0 44px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fafb 100%);
}

.sc-crs-mgmt-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sc-crs-mgmt-pill {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sc-navy);
  background: #fff;
  border: 1px solid rgba(7, 28, 77, 0.08);
  box-shadow: 0 4px 16px rgba(7, 28, 77, 0.04);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sc-crs-mgmt-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 184, 200, 0.4);
  box-shadow: 0 8px 24px rgba(18, 184, 200, 0.12);
}

/* Why management — light band + service-style cards */
.sc-crs-mgmt-why {
  position: relative;
  padding: 48px 0 52px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8f4f6 0%, #f4fafb 55%, #ffffff 100%);
  border-top: 1px solid rgba(7, 28, 77, 0.05);
  border-bottom: 1px solid rgba(7, 28, 77, 0.05);
}

.sc-crs-mgmt-why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sc-crs-mgmt-why-card {
  padding: 22px 20px 24px;
  border-radius: var(--sc-radius);
  background: linear-gradient(165deg, #ffffff 0%, #f6fcfd 55%, #f0f9fb 100%);
  border: 1px solid rgba(7, 28, 77, 0.07);
  box-shadow: var(--sc-shadow);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.sc-crs-mgmt-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 213, 192, 0.35);
  box-shadow:
    var(--sc-shadow-lift),
    0 0 0 1px rgba(22, 213, 192, 0.1);
}

.sc-crs-mgmt-why-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: linear-gradient(145deg, rgba(22, 213, 192, 0.2) 0%, rgba(7, 28, 77, 0.06) 100%);
  border: 1px solid rgba(22, 213, 192, 0.28);
  position: relative;
}

.sc-crs-mgmt-why-card__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  opacity: 0.9;
  background: var(--sc-navy-mid);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.sc-crs-mgmt-why-card__icon--lead::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2l3 7h7l-5.5 4 2 7L12 16l-6.5 4 2-7L2 9h7l3-7z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2l3 7h7l-5.5 4 2 7L12 16l-6.5 4 2-7L2 9h7l3-7z'/%3E%3C/svg%3E");
}

.sc-crs-mgmt-why-card__icon--corp::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 22V4a2 2 0 012-2h8l6 6v14H4z'/%3E%3Cpath d='M9 22v-4h6v4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 22V4a2 2 0 012-2h8l6 6v14H4z'/%3E%3Cpath d='M9 22v-4h6v4'/%3E%3C/svg%3E");
}

.sc-crs-mgmt-why-card__icon--growth::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 20V10M10 20V4M16 20v-6M22 20V14'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 20V10M10 20V4M16 20v-6M22 20V14'/%3E%3C/svg%3E");
}

.sc-crs-mgmt-why-card__icon--industry::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4'/%3E%3C/svg%3E");
}

.sc-crs-mgmt-why-card__icon--globe::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15 15 0 000 20M12 2a15 15 0 010 20'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15 15 0 000 20M12 2a15 15 0 010 20'/%3E%3C/svg%3E");
}

.sc-crs-mgmt-why-card__icon--rocket::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 15s-1-1-1-2 1-2 2-2h2l8-8a4 4 0 016 6l-8 8v2c0 1-1 2-2 2s-2-1-2-1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 15s-1-1-1-2 1-2 2-2h2l8-8a4 4 0 016 6l-8 8v2c0 1-1 2-2 2s-2-1-2-1'/%3E%3C/svg%3E");
}

.sc-crs-mgmt-why-card__title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sc-navy);
  line-height: 1.3;
}

.sc-crs-mgmt-why-card__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--sc-muted);
}

.sc-crs-exams--management {
  background: linear-gradient(180deg, #f0f4f8 0%, #eef7f8 100%);
}

.sc-crs-mgmt-exam-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sc-crs-mgmt-exam-card {
  padding: 18px 18px 20px;
  border-radius: var(--sc-radius-sm);
  background: #fff;
  border: 1px solid rgba(7, 28, 77, 0.07);
  box-shadow: 0 6px 22px rgba(7, 28, 77, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.sc-crs-mgmt-exam-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 213, 192, 0.32);
  box-shadow: 0 16px 40px rgba(7, 28, 77, 0.09);
}

.sc-crs-mgmt-exam-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sc-crs-mgmt-exam-card__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(145deg, #0b245f, #1a5f72);
  flex-shrink: 0;
}

.sc-crs-mgmt-exam-card__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--sc-navy);
}

.sc-crs-mgmt-exam-card__line {
  margin: 0 0 14px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--sc-muted);
}

.sc-crs-mgmt-exam-card__meta {
  margin: 0;
  display: grid;
  gap: 10px;
}

.sc-crs-mgmt-exam-card__meta > div {
  display: grid;
  gap: 2px;
}

.sc-crs-mgmt-exam-card__meta dt {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sc-teal-dim);
}

.sc-crs-mgmt-exam-card__meta dd {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--sc-text);
}

.sc-crs-final-cta--management {
  background: linear-gradient(180deg, #f4fafb 0%, #faf7f0 40%, #eef7f8 100%);
  padding: 52px 0 60px;
}

.sc-crs-final-cta__bg--management {
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120' fill='none'%3E%3Cpath d='M0 90h120M0 60h120M0 30h120M30 0v120M60 0v120M90 0v120' stroke='%23071c4d' stroke-opacity='0.05'/%3E%3Cpath d='M10 100 L30 70 L50 85 L75 40 L95 55 L110 35' stroke='%2312b8c8' stroke-opacity='0.18' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

.sc-crs-final-cta__inner--management {
  background: linear-gradient(165deg, #ffffff 0%, #f6fcfd 45%, #f0f9fb 100%);
  border: 1px solid rgba(7, 28, 77, 0.08);
  box-shadow: 0 24px 56px rgba(7, 28, 77, 0.08);
}

@media (max-width: 960px) {
  .sc-crs-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sc-crs-hero--management::after {
    opacity: 0.35;
    top: auto;
    bottom: -10%;
    right: -15%;
    height: 55%;
  }

  .sc-crs-hero__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .sc-crs-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sc-crs-prog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sc-crs-elig__grid,
  .sc-crs-elig__grid--single {
    grid-template-columns: 1fr;
  }

  .sc-crs-exam-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sc-crs-mgmt-modules {
    grid-template-columns: 1fr;
  }

  .sc-crs-mgmt-why__grid {
    grid-template-columns: 1fr;
  }

  .sc-crs-mgmt-exam-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .sc-crs-stats__grid {
    grid-template-columns: 1fr;
  }

  .sc-crs-prog-grid,
  .sc-crs-exam-grid {
    grid-template-columns: 1fr;
  }

  .sc-crs-tabs__list {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .sc-crs-tabs__btn {
    flex-shrink: 0;
  }

  .sc-crs-hero {
    padding: 32px 0 40px;
  }

  .sc-crs-mgmt-exam-grid {
    grid-template-columns: 1fr;
  }
}
