/* University × course detail pages
   Scoped under .ucp-page so it can't leak. */

.ucp-page {
  --ucp-navy: #0f172a;
  --ucp-navy-2: #1e293b;
  --ucp-muted: #64748b;
  --ucp-line: #e5e9f0;
  --ucp-soft: #f8fafc;
  --ucp-cream: #fff8f1;
  --ucp-accent: #ec6734;
  --ucp-accent-2: #c2410c;
  --ucp-radius: 18px;
  --ucp-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  --ucp-shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.05);
  background: var(--ucp-soft);
  color: var(--ucp-navy);
}

.ucp-container {
  width: min(1260px, calc(100% - 96px));
  margin-inline: auto;
  padding-inline: clamp(20px, 3vw, 40px);
  box-sizing: border-box;
}

/* ====== HERO ====== */
.ucp-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(140px, 13vw, 175px) 0 clamp(110px, 10vw, 150px);
  background:
    linear-gradient(170deg, #fff 0%, #fff8f1 52%, #fff 100%);
  border-bottom: 1px solid var(--ucp-line);
}

.ucp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Hero Background Vector Doodles Overlay */
.ucp-hero-doodles-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ucp-hero-doodle {
  position: absolute;
  color: rgba(236, 103, 52, 0.16);
  pointer-events: none;
}

.ucp-hero-doodle--cap {
  top: 18%;
  left: 5%;
  width: 58px;
  height: 58px;
}

.ucp-hero-doodle--book {
  top: 20%;
  right: 6%;
  width: 52px;
  height: 52px;
}

.ucp-hero-doodle--sparkle {
  top: 45%;
  left: 48%;
  width: 32px;
  height: 32px;
  color: rgba(245, 158, 11, 0.28);
}

.ucp-hero-doodle--certificate {
  bottom: 22%;
  left: 8%;
  width: 44px;
  height: 44px;
}

.ucp-hero-doodle--squiggle {
  bottom: 18%;
  right: 12%;
  width: 110px;
  height: 22px;
  color: rgba(236, 103, 52, 0.25);
}

.ucp-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.55;
  will-change: transform;
}

.ucp-hero__orb--a {
  top: -160px;
  right: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(236, 103, 52, 0.28) 0%, transparent 70%);
  animation: ucp-orb 16s ease-in-out infinite;
}

.ucp-hero__orb--b {
  bottom: -180px;
  left: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, transparent 70%);
  animation: ucp-orb 20s ease-in-out infinite reverse;
}

.ucp-hero__orb--c {
  top: 30%;
  left: 50%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.16) 0%, transparent 70%);
  animation: ucp-orb 24s ease-in-out infinite 4s;
}

.ucp-hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.07) 1.2px, transparent 1.6px);
  background-size: 22px 22px;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
}

@keyframes ucp-orb {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(24px, -28px, 0) scale(1.06);
  }
}

.ucp-hero__inner {
  position: relative;
  width: 100%;
}

.ucp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 28px;
  font-size: 0.875rem;
  color: var(--ucp-muted);
}

.ucp-breadcrumb a {
  color: var(--ucp-muted);
  text-decoration: none;
}

.ucp-breadcrumb a:hover {
  color: var(--ucp-accent);
}

.ucp-hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

@media (min-width: 900px) {
  .ucp-hero__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.ucp-hero__main {
  position: relative;
  z-index: 2;
}

.ucp-hero__brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.ucp-hero__logo {
  flex-shrink: 0;
  display: inline-flex;
  width: 78px;
  height: 78px;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--ucp-line);
  box-shadow: var(--ucp-shadow-sm);
}

.ucp-hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ucp-hero__brand-copy {
  min-width: 0;
}

.ucp-hero__eyebrow {
  margin: 0 0 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ucp-muted);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ucp-hero__eyebrow a {
  color: var(--ucp-accent);
  font-weight: 700;
  text-decoration: none;
}

.ucp-hero__eyebrow a:hover {
  text-decoration: underline;
}

.ucp-hero__divider {
  color: var(--ucp-line);
  font-weight: 700;
}

.ucp-hero__title {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 1.3rem + 2.4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ucp-navy);
}

.ucp-hero__tagline {
  margin: 0 0 22px;
  max-width: 58ch;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  line-height: 1.6;
  color: #334155;
}

.ucp-hero__stats {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.ucp-hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--ucp-shadow-sm);
}

.ucp-hero__stats strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ucp-navy);
  line-height: 1.15;
}

.ucp-hero__stats span {
  font-size: 0.78rem;
  color: var(--ucp-muted);
  line-height: 1.3;
}

.ucp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.ucp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 7px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--ucp-shadow-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ucp-navy);
}

.ucp-hero__badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.ucp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.ucp-btn {
  min-height: 48px;
  padding-inline: 22px;
  font-weight: 700;
}

.ucp-btn--ghost {
  background: transparent;
  border-color: rgba(15, 23, 42, 0.18);
  color: var(--ucp-navy);
}

.ucp-hero__rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--ucp-navy);
}

.ucp-hero__stars {
  --ucp-rating: 0;
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1;
  color: rgba(15, 23, 42, 0.14);
}

.ucp-hero__stars-fill {
  position: absolute;
  inset: 0;
  width: calc(var(--ucp-rating) / 5 * 100%);
  overflow: hidden;
  color: #fbbf24;
  white-space: nowrap;
}

.ucp-hero__rating-count {
  color: var(--ucp-muted);
  font-weight: 600;
}

/* Hero visual */
.ucp-hero__visual {
  position: relative;
}

.ucp-hero__frame {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4) 60%),
    linear-gradient(145deg, #ffe5cc 0%, #ffd6a5 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.14),
    0 8px 24px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.ucp-hero__frame-shine {
  position: absolute;
  inset: -50%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.6) 50%, transparent 60%);
  animation: ucp-shine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ucp-shine {

  0%,
  100% {
    transform: translate3d(-30%, -30%, 0);
    opacity: 0;
  }

  45% {
    opacity: 0.7;
  }

  60% {
    transform: translate3d(30%, 30%, 0);
    opacity: 0;
  }
}

.ucp-hero__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 18px;
}

.ucp-hero__visual-badge {
  position: absolute;
  bottom: -16px;
  right: 18px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--ucp-navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
}

.ucp-hero__visual-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fdba74;
  font-weight: 700;
}

.ucp-hero__visual-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 700;
}

/* ====== SHELL (sidebar + main) ====== */
.ucp-shell {
  padding: clamp(40px, 5vw, 72px) 0 clamp(64px, 8vw, 96px);
}

.ucp-shell__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 960px) {
  .ucp-shell__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ── About / Overview Section (Open Prose + Elevated Form Card) ── */
.ucp-about-hero-block {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: clamp(48px, 5.5vw, 72px) 0;
  background: #f7f6ea;
  border-radius: 0;
  border: none;
  overflow: hidden;
  margin-bottom: 0;
  box-sizing: border-box;
}

.ucp-about-doodle-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.ucp-about-wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
}

.ucp-about-layout-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 960px) {
  .ucp-about-layout-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Left Open Column (No card background/border box!) */
.ucp-about-main-col {
  padding-right: 12px;
}

.ucp-about-hero-title {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
}

.ucp-about-hero-subtitle {
  font-family: Georgia, 'Times New Roman', Times, serif, system-ui;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  color: #292524;
  line-height: 1.32;
  margin: 0 0 24px;
}

.ucp-about-open-prose {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #44403c;
}

.ucp-about-open-prose p {
  margin-bottom: 16px;
}

/* Universal Common Feature Pillars below About prose */
.ucp-about-common-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed #e2dec1;
}

.ucp-common-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e6e3c8;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.ucp-common-feature-item:hover {
  transform: translateY(-2px);
  border-color: #ea580c;
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.1);
}

.ucp-common-feature-icon {
  font-size: 1.35rem;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #f5f4e6;
  border-radius: 12px;
  flex-shrink: 0;
}

.ucp-common-feature-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #1c1917;
  line-height: 1.3;
}

.ucp-common-feature-item small {
  display: block;
  font-size: 0.78rem;
  color: #57534e;
  line-height: 1.4;
  margin-top: 3px;
}

/* Right Elevated Lead Form Card */
.ucp-hero-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.ucp-form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e1b18;
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.ucp-form-title-highlight {
  background: linear-gradient(90deg, #ea580c, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.ucp-form-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.ucp-form-chip {
  font-size: 0.72rem;
  font-weight: 700;
  color: #44403c;
  background: #f4f3e6;
  padding: 5px 8px;
  border-radius: 20px;
  border: 1px solid #e7e5d4;
  white-space: nowrap;
  flex: 1;
  text-align: center;
}

.ucp-form-sub-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e1b18;
  text-align: center;
  margin: 0 0 20px;
}

.ucp-hero-lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ucp-form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.92rem;
  color: #1e1b18;
  background: #ffffff;
  transition: all 0.2s ease;
  outline: none;
}

.ucp-form-input::placeholder {
  color: #94a3b8;
}

.ucp-form-input:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.ucp-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}

.ucp-phone-field-group {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.2s ease;
}

.ucp-phone-field-group:focus-within {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.ucp-phone-country-code {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 14px;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}

.ucp-phone-input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 14px 16px;
}

.ucp-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.45;
  margin: 4px 0 8px;
  cursor: pointer;
}

.ucp-form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #f97316;
  margin-top: 2px;
  flex-shrink: 0;
}

.ucp-form-submit-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
  transition: all 0.25s ease;
}

.ucp-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.45);
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.ucp-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 30px;
  background: #fff8f1;
  border: 1px solid rgba(236, 79, 37, 0.2);
  color: #ec4f25;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.ucp-section__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.ucp-about-prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
}

.ucp-about-prose p {
  margin-bottom: 18px;
}

/* About Trust Ribbon */
.ucp-about-trust-ribbon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #f1f5f9;
}

.ucp-about-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.25s ease;
}

.ucp-about-trust-item:hover {
  background: #fff8f1;
  border-color: rgba(236, 79, 37, 0.35);
  transform: translateY(-2px);
}

.ucp-trust-icon {
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.ucp-about-trust-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
}

.ucp-about-trust-item small {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 2px;
}

/* ── Program Highlights Grid (Pill Style Layout matching reference screenshot) ── */
.ucp-highlights-section {
  background: transparent !important;
  padding: 48px 0;
  border-bottom: 1px solid #f1f5f9;
}

.ucp-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.ucp-highlight-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #f8fafc;
  border: 1px solid #dde1e9;
  border-radius: 18px;
  transition: all 0.25s ease;
}

.ucp-highlight-pill:hover {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transform: translateY(-3px);
}

.ucp-highlight-pill__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ucp-highlight-pill__content h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0 0 3px;
}

.ucp-highlight-pill__content p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

.ucp-highlight-card__body h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
  line-height: 1.35;
}

.ucp-highlight-card__body p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.ucp-sidebar {
  position: relative;
}

@media (min-width: 960px) {
  .ucp-sidebar {
    position: sticky;
    top: 88px;
  }
}

.ucp-sidebar__nav {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--ucp-line);
  box-shadow: var(--ucp-shadow-sm);
  margin-bottom: 16px;
}

.ucp-sidebar__title {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ucp-muted);
}

.ucp-sidebar__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.ucp-sidebar__link {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--ucp-navy);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.ucp-sidebar__link:hover {
  background: var(--ucp-soft);
  color: var(--ucp-accent);
}

.ucp-sidebar__link.is-active {
  background: var(--ucp-cream);
  color: var(--ucp-accent);
  border-left-color: var(--ucp-accent);
  font-weight: 700;
}

.ucp-sidebar__cta {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--ucp-navy) 0%, var(--ucp-navy-2) 100%);
  color: #fff;
}

.ucp-sidebar__cta-kicker {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fdba74;
}

.ucp-sidebar__cta-text {
  margin: 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.ucp-sidebar__cta-btn {
  width: 100%;
  justify-content: center;
}

/* ====== MAIN ====== */
.ucp-main {
  min-width: 0;
}

.ucp-section {
  padding: clamp(40px, 5vw, 64px) 0;
  margin-bottom: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid #e2e8f0;
  scroll-margin-top: 96px;
}

.ucp-section:last-child {
  border-bottom: none;
}

.ucp-section__head {
  margin-bottom: 22px;
}

.ucp-section__tag {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--ucp-cream);
  color: var(--ucp-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ucp-section__title {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.65rem);
  color: var(--ucp-navy);
  letter-spacing: -0.01em;
}

.ucp-section__deck {
  margin: 0;
  color: var(--ucp-muted);
  line-height: 1.65;
  max-width: 100%;
  font-size: 0.97rem;
}

.ucp-prose {
  line-height: 1.7;
  color: #334155;
}

.ucp-prose p {
  margin: 0 0 12px;
}

.ucp-prose p:last-child {
  margin-bottom: 0;
}

.ucp-prose ul {
  padding-left: 1.2em;
  margin: 0 0 12px;
}

.ucp-prose ul li {
  margin-bottom: 6px;
}

/* Highlights */
.ucp-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 600px) {
  .ucp-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

.ucp-highlight {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  background: var(--ucp-soft);
  border: 1px solid var(--ucp-line);
}

.ucp-highlight__num {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ucp-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}

.ucp-highlight h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--ucp-navy);
}

.ucp-highlight p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #334155;
}

/* ── Specializations Section (Pill Style Layout matching reference screenshot) ── */
.ucp-spec-section {
  background: transparent !important;
  padding: 48px 0;
  border-bottom: 1px solid #f1f5f9;
}

.ucp-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.ucp-spec-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #f8fafc;
  border: 1px solid #dde1e9;
  border-radius: 18px;
  transition: all 0.25s ease;
}

.ucp-spec-pill:hover {
  background: #ffffff;
  border-color: #ea580c;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.08);
  transform: translateY(-3px);
}

.ucp-spec-pill__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ucp-spec-pill__content h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0 0 3px;
}

.ucp-spec-pill__content p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

.ucp-spec p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ucp-muted);
}

/* ── Premium Curriculum Section (Distinct Soft Warm Cream Background) ── */
.ucp-curriculum-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: clamp(56px, 7vw, 84px) 0;
  background: #f6f5ea;
  border-top: 1px solid #e6e3ce;
  border-bottom: 1px solid #e6e3ce;
  overflow: hidden;
  box-sizing: border-box;
}

.ucp-curriculum-doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.ucp-curr-doodle {
  position: absolute;
  color: rgba(234, 88, 12, 0.18);
  pointer-events: none;
}

.ucp-curr-doodle--book {
  top: 12%;
  left: 4%;
  width: 56px;
  height: 56px;
}

.ucp-curr-doodle--sparkle {
  top: 18%;
  right: 5%;
  width: 36px;
  height: 36px;
  color: rgba(245, 158, 11, 0.3);
}

.ucp-curr-doodle--wave {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
}

.ucp-curriculum-inner {
  position: relative;
  z-index: 2;
  width: min(1260px, calc(100% - 96px));
  margin-inline: auto;
  padding-inline: clamp(20px, 3vw, 40px);
  box-sizing: border-box;
}

.ucp-section__head--center {
  text-align: center;
  margin-bottom: 36px;
}

.ucp-section__head--center .ucp-section__deck {
  margin-inline: auto;
}

/* Accordion Wrapper */
.ucp-semesters-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.ucp-semester-accordion {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ucp-semester-accordion:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.ucp-semester-accordion[open] {
  border-color: #ea580c;
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.12);
}

.ucp-semester-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease;
}

.ucp-semester-summary::-webkit-details-marker {
  display: none;
}

.ucp-semester-summary:hover {
  background: #fafaf9;
}

.ucp-semester-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ucp-semester-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
  flex-shrink: 0;
}

.ucp-semester-info h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px;
  line-height: 1.3;
}

.ucp-semester-meta {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
}

.ucp-semester-chevron-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0f172a;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ucp-semester-accordion[open] .ucp-semester-chevron-btn {
  background: #fff3eb;
  color: #ea580c;
  transform: rotate(180deg);
}

/* Expanded Content */
.ucp-semester-body {
  padding: 0 24px 24px;
  border-top: 1px dashed #e2e8f0;
  margin-top: 4px;
  padding-top: 20px;
  animation: ucpFadeDown 0.3s ease-out;
}

@keyframes ucpFadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ucp-subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.ucp-subject-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  transition: all 0.2s ease;
}

.ucp-subject-chip:hover {
  background: #ffffff;
  border-color: #ea580c;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.08);
  transform: translateY(-2px);
}

.ucp-subject-icon {
  font-size: 1.15rem;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.ucp-subject-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
}

/* Action CTA Footer */
.ucp-curriculum-cta {
  text-align: center;
  margin-top: 36px;
}

.ucp-btn--accent {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.35);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ucp-btn--accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(234, 88, 12, 0.45);
  color: #ffffff;
  grid-template-columns: 1fr;
  gap: 6px;
}

@media (min-width: 640px) {
  .ucp-semester__subjects {
    grid-template-columns: 1fr 1fr;
  }
}

.ucp-semester__subjects li {
  position: relative;
  font-size: 0.92rem;
  color: #334155;
  padding-left: 18px;
}

.ucp-semester__subjects li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ucp-accent);
}

/* ── Eligibility Dark Grid Banner (Matching Reference Screenshot) ── */
.ucp-eligibility-dark-banner {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: clamp(52px, 6vw, 76px) 0;
  background: #111418;
  overflow: hidden;
  box-sizing: border-box;
}

.ucp-dark-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.8;
}

.ucp-eligibility-banner-inner {
  position: relative;
  z-index: 2;
  width: min(1260px, calc(100% - 96px));
  margin-inline: auto;
  padding-inline: clamp(20px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .ucp-eligibility-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}

.ucp-eligibility-content-col {
  flex: 1;
}

.ucp-eligibility-banner-title {
  font-family: Georgia, 'Times New Roman', Times, serif, system-ui;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.ucp-eligibility-banner-sub {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 68ch;
  margin: 0 0 28px;
}

.ucp-eligibility-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ucp-eligibility-pastel-pill {
  padding: 10px 22px;
  background: var(--pill-bg, #ddd6fe);
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 750;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.ucp-eligibility-pastel-pill:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.ucp-eligibility-action-col {
  flex-shrink: 0;
}

.ucp-btn-white-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
}

.ucp-btn-white-pill:hover {
  background: #f8fafc;
  color: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.ucp-eligibility li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--ucp-soft);
  border: 1px solid var(--ucp-line);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #334155;
}

.ucp-eligibility__check {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ucp-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

/* ── Program Fee Structure (Matching Reference Screenshot) ── */
.ucp-fees-section {
  padding: 48px 0;
  border-bottom: 1px solid #f1f5f9;
}

.ucp-fee-banner-card {
  background: linear-gradient(145deg, #c7d2fe 0%, #ddd6fe 100%);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.08);
  margin-top: 24px;
}

.ucp-fee-pricing-white-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

@media (max-width: 960px) {
  .ucp-fee-pricing-white-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ucp-fee-pricing-white-box {
    grid-template-columns: 1fr;
  }
}

.ucp-fee-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 16px;
  border-right: 1px solid #e2e8f0;
}

.ucp-fee-col:last-child {
  border-right: none;
  padding-right: 0;
}

.ucp-fee-col-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 12px;
}

.ucp-fee-price-group {
  margin-bottom: 10px;
}

.ucp-fee-orig-price {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.ucp-fee-final-price {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 900;
  color: #ea580c;
  line-height: 1.2;
}

.ucp-fee-emi-price {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
}

.ucp-fee-badge {
  font-size: 0.78rem;
  font-weight: 750;
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ucp-fee-badge--muted {
  color: #64748b;
}

/* Card Footer inside Lavender Card */
.ucp-fee-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding-top: 8px;
}

@media (max-width: 800px) {
  .ucp-fee-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ucp-fee-notes-list p {
  font-size: 0.84rem;
  color: #334155;
  line-height: 1.5;
  margin: 0 0 4px;
  font-weight: 500;
}

.ucp-fee-notes-list p:last-child {
  margin-bottom: 0;
}

.ucp-fee-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 750;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.ucp-fee-pill-btn:hover {
  background: #f8fafc;
  color: #ea580c;
  transform: translateY(-2px);
}

/* Bottom Outer Actions (Note & Enroll Now) */
.ucp-fee-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 700px) {
  .ucp-fee-bottom-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ucp-fee-nri-note {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
}

.ucp-fee-nri-note a {
  color: #0284c7;
  text-decoration: underline;
  font-weight: 600;
}

.ucp-btn-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
  transition: all 0.25s ease;
}

.ucp-btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.45);
  color: #ffffff;
  font-weight: 700;
  color: var(--ucp-navy);
}

.ucp-fees__table tbody tr+tr td {
  border-top: 1px solid var(--ucp-line);
}

.ucp-fees__table td {
  color: #334155;
}

.ucp-fees__table td:last-child {
  font-weight: 700;
  color: var(--ucp-navy);
  text-align: right;
}

.ucp-fees__emi {
  margin: 14px 0 0;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ucp-cream);
  border: 1px dashed #fdba74;
  font-size: 0.9rem;
  color: var(--ucp-navy);
}

/* ── How to Apply: Auto-Sliding 4-Step Pipeline Carousel ── */
.ucp-admission-section {
  padding: 48px 0;
  border-bottom: 1px solid #f1f5f9;
}

.ucp-admission-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ucp-slider-nav-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ucp-slider-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.ucp-slider-nav-btn:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  transform: scale(1.05);
}

.ucp-slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ucp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ucp-dot.is-active {
  width: 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
}

/* Track & Horizontal Slider Styles */
.ucp-admission-slider-track {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-block: 12px 8px;
}

.ucp-admission-slider-track::-webkit-scrollbar {
  display: none;
}

.ucp-admission-slider-track .ucp-admission-pipeline {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 24px;
}

.ucp-admission-slider-track .ucp-pipeline-step {
  flex: 0 0 clamp(260px, 28vw, 320px);
  scroll-snap-align: start;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  transition: all 0.35s ease;
}

.ucp-admission-slider-track .ucp-pipeline-step.is-active {
  border-color: #ea580c;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.16);
  transform: translateY(-4px);
}

.ucp-admission-slider-track .ucp-pipeline-step.is-active .ucp-pipeline-icon {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  border-color: #ea580c;
}

.ucp-pipeline-step {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
}

.ucp-pipeline-step:hover {
  border-color: #ea580c;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.12);
}

.ucp-pipeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ucp-pipeline-number {
  font-family: Georgia, 'Times New Roman', Times, serif, system-ui;
  font-size: 1.8rem;
  font-weight: 900;
  color: #ea580c;
  line-height: 1;
  opacity: 0.9;
}

.ucp-pipeline-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #ea580c;
  display: grid;
  place-items: center;
  border: 1px solid #fed7aa;
}

.ucp-pipeline-icon svg {
  width: 22px;
  height: 22px;
}

.ucp-pipeline-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
  line-height: 1.3;
}

.ucp-pipeline-body p {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

.ucp-pipeline-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  color: #ea580c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .ucp-pipeline-arrow {
    display: none;
  }
}

.ucp-admission-footer-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.ucp-btn-admission-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.35);
  transition: all 0.25s ease;
}

.ucp-btn-admission-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(234, 88, 12, 0.45);
  color: #ffffff;
}

/* ── Rankings & Accreditations (Folded Ribbon Cards matching reference screenshot) ── */
.ucp-approvals-section {
  padding: 48px 0;
  border-bottom: 1px solid #f1f5f9;
}

.ucp-approvals-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ucp-approvals-filter-tabs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ucp-filter-pill {
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #475569;
}

.ucp-filter-pill--active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.ucp-accreditation-carousel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.ucp-rank-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
}

.ucp-rank-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

/* Folded Red Ribbon Flag at Top Center */
.ucp-rank-flag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.ucp-rank-flag span {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 850;
  padding: 5px 16px 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.ucp-rank-logo-wrapper {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 12px;
}

.ucp-rank-logo-wrapper img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
  transition: transform 0.25s ease;
}

.ucp-rank-card:hover .ucp-rank-logo-wrapper img {
  transform: scale(1.05);
}

.ucp-rank-logo-fallback {
  font-size: 2.5rem;
}

.ucp-rank-card-info h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}

.ucp-rank-card-info p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

/* ── LMS & Learning Experience (Matching Screenshot 1) ── */
.ucp-lms-section {
  padding: 48px 0;
  border-bottom: 1px solid #f1f5f9;
}

.ucp-lms-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ucp-lms-head > div {
  flex: 1;
  min-width: 0;
}

.ucp-btn-outline-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #ffffff;
  border: 1px solid #0f172a;
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 750;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ucp-btn-outline-pill:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
}

.ucp-lms-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.ucp-lms-soft-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s ease;
}

.ucp-lms-soft-card:hover {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transform: translateY(-4px);
}

.ucp-lms-icon-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ucp-lms-icon-avatar--blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.ucp-lms-icon-avatar--pink {
  background: #fce7f3;
  color: #be185d;
}

.ucp-lms-icon-avatar--yellow {
  background: #fef9c3;
  color: #a16207;
}

.ucp-lms-icon-avatar--green {
  background: #dcfce7;
  color: #15803d;
}

.ucp-lms-soft-card h3 {
  font-family: Georgia, 'Times New Roman', Times, serif, system-ui;
  font-size: 1.15rem;
  font-weight: 750;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.ucp-lms-soft-card p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ── Online Examination Pattern (Lime Green Split Table matching Screenshot 2) ── */
.ucp-exam-section {
  padding: 48px 0;
  border-bottom: 1px solid #f1f5f9;
}

.ucp-lime-table-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 32px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.ucp-lime-table-head {
  background: #c0d731;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 24px;
  border-bottom: 1px solid #b2ca25;
}

@media (max-width: 768px) {
  .ucp-lime-table-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.ucp-lime-head-col {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.ucp-lime-table-body {
  display: flex;
  flex-direction: column;
}

.ucp-lime-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  border-bottom: 1px solid #f1f5f9;
}

.ucp-lime-row:last-child {
  border-bottom: none;
}

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

.ucp-lime-cell {
  padding: 20px 24px;
}

.ucp-lime-cell--left {
  background: #f7f9e8;
  border-right: 1px solid #eef3d0;
  display: flex;
  align-items: center;
}

.ucp-lime-cell--left strong {
  font-size: 0.92rem;
  font-weight: 750;
  color: #1e293b;
  line-height: 1.45;
}

.ucp-lime-cell--right {
  background: #ffffff;
  display: flex;
  align-items: center;
}

.ucp-lime-cell--right span {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
}

.ucp-lms-features li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ucp-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

/* ── Premium Sample Degree Certificate Section (Warm Cream Background + Doodles) ── */
.ucp-cert-section-block {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: clamp(56px, 7vw, 84px) 0;
  background: #f7f6ea;
  border-top: 1px solid #e7e5d2;
  border-bottom: 1px solid #e7e5d2;
  overflow: hidden;
  box-sizing: border-box;
}

.ucp-cert-doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.ucp-cert-doodle {
  position: absolute;
  color: #ea580c;
  opacity: 0.12;
}

.ucp-cert-doodle--cap {
  top: 12%;
  left: 4%;
  width: 72px;
  height: 72px;
}

.ucp-cert-doodle--seal {
  bottom: 16%;
  right: 6%;
  width: 80px;
  height: 80px;
}

.ucp-cert-doodle--wave {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  opacity: 0.8;
}

.ucp-cert-inner-container {
  position: relative;
  z-index: 2;
  width: min(1260px, calc(100% - 96px));
  margin-inline: auto;
  padding-inline: clamp(20px, 3vw, 40px);
  box-sizing: border-box;
}

.ucp-cert-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

@media (max-width: 960px) {
  .ucp-cert-layout-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.ucp-cert-hero-title {
  font-family: Georgia, 'Times New Roman', Times, serif, system-ui;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 12px 0;
}

.ucp-cert-hero-sub {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 28px;
}

.ucp-cert-features-ribbon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .ucp-cert-features-ribbon {
    grid-template-columns: 1fr;
  }
}

.ucp-cert-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #e7e5d2;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.ucp-cert-feature-item:hover {
  border-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.08);
}

.ucp-cert-feature-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.ucp-cert-feature-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
}

.ucp-cert-feature-item small {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
  display: block;
}

.ucp-cert-action-box {
  margin-top: 8px;
}

.ucp-btn-cert-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.35);
  transition: all 0.25s ease;
}

.ucp-btn-cert-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(234, 88, 12, 0.45);
  color: #ffffff;
}

/* Right Showcase Column (Diploma Frame) */
.ucp-cert-frame-wrapper {
  position: relative;
  background: #ffffff;
  border: 1px solid #e7e5d2;
  border-radius: 20px;
  padding: 16px;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.ucp-cert-frame-wrapper:hover {
  border-color: #ea580c;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(234, 88, 12, 0.12);
}

.ucp-cert-frame-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 5px 14px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
  letter-spacing: 0.02em;
}

.ucp-cert-img-box {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ucp-cert-img-box img {
  width: 100%;
  max-height: 270px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.ucp-cert-frame-wrapper:hover .ucp-cert-img-box img {
  transform: scale(1.02);
}

.ucp-cert-placeholder-frame {
  height: 240px;
  background: #fafafa;
  border-radius: 14px;
  border: 2px dashed #cbd5e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.ucp-cert-placeholder-seal {
  font-size: 3.5rem;
  margin-bottom: 12px;
}

.ucp-cert-placeholder-frame h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}

.ucp-cert-placeholder-frame p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

/* ── Our Reputed Hiring Partners (Matching Reference Screenshot) ── */
.ucp-placement-section {
  padding: 48px 0;
  border-bottom: 1px solid #f1f5f9;
}

.ucp-placement-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ucp-placement-head > div:first-child {
  flex: 1;
  min-width: 0;
}

.ucp-placement-nav-btns {
  display: flex;
  gap: 10px;
}

.ucp-hiring-partners-card {
  background: #f4f5f6;
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid #e2e8f0;
  margin-top: 28px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.02);
}

.ucp-hiring-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) {
  .ucp-hiring-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .ucp-hiring-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .ucp-hiring-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ucp-hiring-logo-card {
  background: #ffffff;
  border-radius: 16px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  transition: all 0.25s ease;
}

.ucp-hiring-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.ucp-hiring-logo-card img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: none;
}

.ucp-hiring-dots-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.ucp-hiring-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #94a3b8;
  display: inline-block;
}

.ucp-hiring-dot--active {
  border: none;
  width: auto;
  height: auto;
  font-size: 0.75rem;
  color: #0f172a;
}

/* ── FAQ Section with Course Guide Title ── */
.ucp-faq-section {
  padding: 48px 0;
  border-bottom: 1px solid #f1f5f9;
}

.ucp-faq-head {
  margin-bottom: 28px;
}

.ucp-faq-guide-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 8px 0 16px;
  display: inline;
  background: linear-gradient(180deg, transparent 55%, #bfdbfe 55%);
  padding-bottom: 2px;
}

.ucp-faq-guide-para {
  font-size: 0.97rem;
  color: #475569;
  line-height: 1.7;
  /* max-width: 860px; */
  margin: 0 0 28px;
}

.ucp-faq-guide-para strong {
  color: #0f172a;
  font-weight: 700;
}

/* FAQs */
.ucp-faqs {
  display: grid;
  gap: 10px;
}

.ucp-faq {
  border: 1.5px solid var(--ucp-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.ucp-faq[open] {
  border-color: var(--ucp-accent);
  box-shadow: 0 8px 24px rgba(236, 103, 52, 0.08);
}

.ucp-faq>summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  font-weight: 700;
  color: var(--ucp-navy);
}

.ucp-faq>summary::-webkit-details-marker {
  display: none;
}

.ucp-faq__chevron {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--ucp-accent);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.ucp-faq[open] .ucp-faq__chevron {
  transform: rotate(45deg);
}

.ucp-faq p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #334155;
}

/* Related programs */
/* ── More Programs From University (Premium Auto-Sliding 4-Card Carousel) ── */
.ucp-more-programs-section {
  padding: 56px 0 64px;
  border-top: 1px solid #f1f5f9;
}

.ucp-more-programs-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.ucp-more-programs-header-text {
  flex: 1;
  min-width: 0;
}

.ucp-more-programs-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin: 6px 0 0;
  line-height: 1.25;
}

.ucp-more-programs-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Slider Track - horizontally scrollable */
.ucp-more-programs-track {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.ucp-more-programs-track::-webkit-scrollbar {
  display: none;
}

.ucp-more-programs-row {
  display: flex;
  gap: 20px;
}

/* Individual Program Card */
.ucp-prog-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 240px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.ucp-prog-card:hover {
  border-color: #ea580c;
  box-shadow: 0 14px 36px rgba(234, 88, 12, 0.14);
  transform: translateY(-5px);
}

/* Image / Placeholder */
.ucp-prog-card__img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  flex-shrink: 0;
}

.ucp-prog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ucp-prog-card:hover .ucp-prog-card__img-wrap img {
  transform: scale(1.06);
}

.ucp-prog-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f2744 100%);
}

/* Badge Overlay on Image */
.ucp-prog-card__badge {
  position: absolute;
  top: 12px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #ea580c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Card Body */
.ucp-prog-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.ucp-prog-card__title {
  font-size: 0.97rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.ucp-prog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ucp-prog-card__uni {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

.ucp-prog-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #ea580c;
  margin-top: 4px;
  transition: gap 0.2s ease;
}

.ucp-prog-card:hover .ucp-prog-card__cta {
  gap: 10px;
}

@media (max-width: 1100px) {
  .ucp-prog-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

@media (max-width: 768px) {
  .ucp-prog-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 500px) {
  .ucp-prog-card {
    flex: 0 0 85%;
  }
}


@media (max-width: 540px) {
  .ucp-hero__brand {
    flex-direction: column;
  }

  .ucp-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ucp-step {
    grid-template-columns: auto 1fr;
  }

  .ucp-step__icon {
    grid-row: 1 / 2;
  }

  .ucp-step__num {
    grid-column: 1 / 2;
  }

  .ucp-step>div {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ucp-hero__orb,
  .ucp-hero__frame-shine {
    animation: none;
  }
}

/* ====== MODERN TEMPLATE STYLES ====== */
.uc-modern-hero {
  position: relative;
  padding: 100px 0 60px;
  background: linear-gradient(170deg, #ffffff 0%, #fff8f1 52%, #f8fafc 100%);
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}

.uc-modern-hero__mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(236, 103, 52, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.uc-modern-container {
  width: min(1200px, 100% - 32px);
  margin-inline: auto;
}

.uc-modern-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 24px;
}

.uc-modern-breadcrumb a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
}

.uc-modern-breadcrumb a:hover {
  color: #ec6734;
}

.uc-modern-hero__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.uc-modern-hero__brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.uc-modern-hero__brand-tag img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.uc-modern-hero__approval-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ec6734;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.uc-modern-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 12px;
}

.uc-modern-hero__subtitle {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 32px;
  max-width: 680px;
  line-height: 1.6;
}

.uc-modern-stats-ribbon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.uc-stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}

.uc-stat-pill:hover {
  border-color: rgba(236, 103, 52, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.uc-stat-pill__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(236, 103, 52, 0.1);
  color: #ec6734;
  border-radius: 10px;
  border: 1px solid rgba(236, 103, 52, 0.2);
}

.uc-stat-pill__icon svg {
  width: 20px;
  height: 20px;
}

.uc-stat-pill small {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.uc-stat-pill strong {
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 800;
}

.uc-modern-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.uc-modern-fast-card {
  background: #ffffff;
  color: #0f172a;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid #e2e8f0;
}

.uc-fast-card__header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.uc-fast-card__header p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 20px;
}

.uc-fast-card__form .uc-field {
  margin-bottom: 12px;
}

.uc-fast-card__form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.9rem;
}

.uc-fast-card__form input:focus {
  border-color: #ec6734;
  outline: none;
  box-shadow: 0 0 0 3px rgba(236, 103, 52, 0.15);
}

.uc-fast-card__lock {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.75rem;
  color: #64748b;
}

.uc-modern-subnav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.uc-modern-subnav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
}

.uc-modern-subnav a {
  display: block;
  padding: 16px 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.uc-modern-subnav a:hover,
.uc-modern-subnav a.is-active {
  color: #ec6734;
  border-bottom-color: #ec6734;
}

.uc-modern-body {
  padding: 40px 0 80px;
}

.uc-section-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.uc-section-card__head {
  margin-bottom: 24px;
}

.uc-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ec6734;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
}

.uc-section-card__head h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
}

.uc-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.uc-feature-box {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.uc-feature-box:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 103, 52, 0.35);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.uc-feature-box__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(236, 103, 52, 0.1);
  color: #ec6734;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgba(236, 103, 52, 0.2);
}

.uc-feature-box__icon svg {
  width: 18px;
  height: 18px;
}

.uc-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.uc-spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}

.uc-spec-tag:hover {
  background: #fff8f1;
  border-color: #ec6734;
  color: #ec6734;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236, 79, 37, 0.15);
}

.uc-spec-tag__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ec6734;
  box-shadow: 0 0 0 3px rgba(236, 103, 52, 0.2);
}

.uc-syllabus-accordion .uc-accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.uc-accordion-item[open] {
  border-color: rgba(236, 103, 52, 0.4);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.uc-accordion-head {
  padding: 18px 24px;
  background: #f8fafc;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.uc-accordion-head:hover {
  background: #fff8f1;
}

.uc-accordion-body {
  padding: 24px;
  background: #ffffff;
  color: #475569;
  line-height: 1.65;
  border-top: 1px solid #f1f5f9;
}

.uc-fee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.uc-fee-box {
  padding: 28px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.uc-fee-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.uc-fee-box--highlight {
  background: linear-gradient(135deg, #fff8f1 0%, #ffffff 100%);
  border: 1.5px solid rgba(236, 103, 52, 0.4);
  box-shadow: 0 8px 28px rgba(236, 103, 52, 0.1);
}

.uc-fee-box h3 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ec6734;
  margin: 8px 0;
}

@media (max-width: 900px) {
  .uc-modern-hero__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Floating Vector Doodles & Micro-Animations ── */
.uc-hero-doodles-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.uc-doodle {
  position: absolute;
  color: rgba(236, 103, 52, 0.22);
  pointer-events: none;
}

.uc-doodle--cap {
  top: 14%;
  left: 8%;
  width: 54px;
  height: 54px;
}

.uc-doodle--book {
  bottom: 20%;
  left: 12%;
  width: 48px;
  height: 48px;
}

.uc-doodle--star {
  top: 22%;
  right: 14%;
  width: 32px;
  height: 32px;
  color: rgba(245, 158, 11, 0.35);
}

.uc-doodle--badge {
  bottom: 24%;
  right: 8%;
  width: 46px;
  height: 46px;
}

.uc-float-slow {
  animation: ucFloatSlow 7s ease-in-out infinite alternate;
}

.uc-float-fast {
  animation: ucFloatFast 5s ease-in-out infinite alternate;
}

.uc-pulse {
  animation: ucPulse 3s ease-in-out infinite;
}

@keyframes ucFloatSlow {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-16px) rotate(6deg);
  }
}

@keyframes ucFloatFast {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-12px) rotate(-8deg);
  }
}

@keyframes ucPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

/* Green Live Approval Pulse Dot */
.uc-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
  animation: liveDotPulse 1.8s infinite;
  margin-right: 4px;
  vertical-align: middle;
}

@keyframes liveDotPulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Animated Buttons */
.uc-btn-animated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.uc-btn-animated:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(236, 79, 37, 0.35) !important;
}

.uc-btn-animated svg {
  transition: transform 0.25s ease;
}

.uc-btn-animated:hover svg {
  transform: translateY(3px);
}

/* Placement Stats Ribbon */
.uc-placement-stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 18px;
  color: #ffffff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.15);
}

.uc-ribbon-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.uc-ribbon-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f59e0b;
  letter-spacing: -0.02em;
}

.uc-ribbon-stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #cbd5e1;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .uc-placement-stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Savings Badge on Fee Card */
.uc-saving-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  background: #fef3c7;
  color: #b45309;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  border: 1px solid #fde68a;
}

/* ── Floating Subnav Widget (Bottom Center, Fixed Equal Width) ── */
.uni-prem__subnav {
  position: fixed;
  left: 50%;
  bottom: 28px;
  top: auto;
  right: auto;
  transform: translateX(-50%) translateY(80px);
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
}

.uni-prem__subnav.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.uni-prem__subnav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 220px;
  padding: 12px 20px;
  border-radius: 50px;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.45), 0 4px 14px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.uni-prem__subnav-btn:hover {
  background: #1e293b;
  border-color: rgba(245, 158, 11, 0.65);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.55);
  transform: scale(1.03);
}

.uni-prem__subnav-btn-text {
  flex: 1;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
}

.uni-prem__subnav-btn-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.uni-prem__subnav-btn-icon svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  transition: transform 0.3s ease;
}

.uni-prem__subnav.is-open .uni-prem__subnav-btn {
  background: #1e293b;
  border-color: #ec4f25;
  box-shadow: 0 16px 40px rgba(236, 79, 37, 0.35);
}

.uni-prem__subnav.is-open .icon-caret {
  display: none !important;
}

.uni-prem__subnav.is-open .icon-close {
  display: block !important;
}

.uni-prem__subnav-inner {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: calc(100% + 12px);
  width: 240px;
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px) scale(0.94);
  transform-origin: bottom center;
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.28s;
  z-index: 1;
}

.uni-prem__subnav-inner::-webkit-scrollbar {
  width: 4px;
}

.uni-prem__subnav-inner::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.uni-prem__subnav.is-open .uni-prem__subnav-inner {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.uni-prem__subnav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.uni-prem__subnav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.uni-prem__subnav a::before {
  content: '◆';
  font-size: 0.55rem;
  opacity: 0;
  color: #f59e0b;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: scale(0.5);
}

.uni-prem__subnav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.uni-prem__subnav a.is-active {
  background: rgba(236, 79, 37, 0.22);
  color: #ffffff;
  font-weight: 800;
  border: 1px solid rgba(236, 79, 37, 0.45);
}

.uni-prem__subnav a.is-active::before {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .uni-prem__subnav {
    bottom: 20px;
  }

  .uni-prem__subnav-btn {
    width: 200px;
    padding: 11px 16px;
  }

  .uni-prem__subnav-inner {
    width: 220px;
  }
}