:root {
  --bg: #ffffff;
  --bg2: #f7f7f7;
  --bg3: #eeeeee;
  --border: rgba(0, 0, 0, 0.08);
  --white: #000000;
  --muted: rgba(0, 0, 0, 0.9);
  --mid: rgba(0, 0, 0, 0.75);
}
input,
select,
textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--white);
  padding-top: 68px;
  font-family: Inter, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
img {
  -webkit-user-drag: none;
  pointer-events: none;
}
a {
  text-decoration: none;
  color: inherit;
}
b {
  font-weight: 600;
}
th {
  padding: 5px;
}
.label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.btn {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-white {
  background: #000;
  color: #fff;
}
.btn-white:hover {
  background: #333;
  color: #fff;
}
.btn-outline {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: #000;
}
.btn-outline:hover {
  background: #000;
  color: #fff;
}
.btn-black {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.btn-black:hover {
  background: #000;
  color: #fff;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #000;
}
.nav-cta {
  background: #d4ff00;
  color: #fff;
  padding: 0.55rem 1.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: #333;
  color: #d4ff00 !important;
}
@media (max-width: 960px) {
  nav {
    padding: 0 1.5rem;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1.5rem;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--muted);
  }
  .nav-links li:last-child a {
    border-bottom: none;
  }
  .nav-cta {
    margin-top: 0.5rem;
    display: inline-block;
    padding: 13px !important;
    width: 170px;
  }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(0, 0, 0, 0.08);
    margin-left: 1rem;
    transform: none;
    min-width: unset;
  }
  .dropdown::before {
    display: none;
  }
}
.marquee-wrap {
  background: #111;
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #fff;
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.marquee-item span {
  opacity: 0.3;
  font-size: 0.6rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.about-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-left {
  padding: 5rem 3rem;
  border-right: 1px solid var(--border);
}
.about-left p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 15px;
}
.about-left h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.92;
  margin: 1rem 0 2rem;
}
.about-right {
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}
.about-right p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
}
.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.about-bullet {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--mid);
}
.about-bullet::before {
  content: "—";
  color: #000;
}
.sec-header {
  text-align: center;
  padding: 5rem 3rem 3.5rem;
  border-bottom: 1px solid var(--border);
}
.sec-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9;
  margin: 0.8rem 0 1.2rem;
}
.sec-header p {
  font-size: 0.88rem;
  color: var(--muted);
  width: 50%;
  margin: 0 auto;
  line-height: 1.85;
}
@media (max-width: 600px) {
  .sec-header p {
    width: 95%;
  }
}
#exams {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.exams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--border);
}
.exam-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.8rem 2.5rem;
  position: relative;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}
.exam-card:hover {
  background: var(--bg3);
}
.exam-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4ff00;
  transition: width 0.3s ease;
}
.exam-card:hover::after {
  width: 100%;
}
.exam-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.07);
  line-height: 1;
  margin-bottom: 1rem;
}
.exam-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.exam-full {
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
  line-height: 1.6;
  flex: 1;
}
.exam-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}
.exam-tag {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.6);
  padding: 0.2rem 0.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.exam-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.exam-link {
  font-size: 0.77rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.exam-link::before {
  content: "→";
  color: #000;
}
.exam-link:hover {
  color: #000;
}
#courses {
  background: var(--bg2);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.course-card {
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.course-card.featured {
  background: #000;
  color: #fff;
}
.course-rec {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #d4ff00;
  color: #000;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  white-space: nowrap;
}
.course-duration {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  padding-top: 1rem;
}
.course-type {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.course-card.featured .course-type {
  color: rgba(255, 255, 255, 0.55);
}
.course-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}
.course-card.featured .course-divider {
  background: rgba(255, 255, 255, 0.15);
}
.course-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.course-features li {
  font-size: 0.83rem;
  line-height: 1.5;
  padding-left: 1.4rem;
  position: relative;
  color: var(--mid);
}
.course-card.featured .course-features li {
  color: rgba(255, 255, 255, 0.8);
}
.course-features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #000;
}
.course-card.featured .course-features li::before {
  color: rgba(255, 255, 255, 0.4);
}
.course-btn {
  display: block;
  text-align: center;
  padding: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--bg);
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  cursor: pointer;
}
.course-btn:hover {
  background: #000;
  color: #fff;
}
.course-card.featured .course-btn {
  background: #d4ff00;
  color: #000;
  border: none;
  font-weight: 700;
}
.stats-bar {
  background: #000;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item {
  padding: 3.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: #fff;
  display: block;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
  display: block;
}
#why {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--border);
}
.why-item {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2.5rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.why-item:hover {
  background: var(--bg3);
}
.why-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}
.why-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
.why-desc {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--muted);
}
.testimonials {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.testimonialsSwiper {
  border-left: 1px solid var(--border);
}
.testimonialsSwiper .swiper-slide {
  border-right: 1px solid var(--border);
  box-sizing: border-box;
}
.tcard {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.tcard-quote {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  line-height: 0.8;
  color: rgba(0, 0, 0, 0.06);
  margin-bottom: 1rem;
}
.tcard-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--mid);
  flex: 1;
  margin-bottom: 2rem;
  font-style: italic;
}
.tcard-author {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}
.tcard-name {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}
.tcard-role {
  font-size: 0.72rem;
  color: var(--muted);
}
.testimonials-pagination {
  position: static;
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
}
#faq {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--border);
}
.faq-left {
  padding: 5rem 3rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq-left h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  line-height: 0.92;
  margin: 0.8rem 0 1.2rem;
}
.faq-left p {
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2rem;
}
.faq-right {
  padding: 5rem 3rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}
.faq-plus {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item.open .faq-plus {
  background: #000;
  color: #fff;
}
.faq-a {
  font-size: 0.83rem;
  line-height: 1.8;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 1.5rem;
}
.community {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.community-left {
  padding: 6rem 3rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.community-left h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.9;
  margin: 1rem 0 1.5rem;
}
.community-left p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 2.5rem;
}
.community-right {
  background: #111;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.community-right h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.contact-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 1rem;
}
.contact-lbl {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.25rem;
}
.contact-val {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-left: 1px solid var(--border);
}
.fcol {
  border-right: 1px solid var(--border);
  padding: 4rem 2.5rem;
}
@media (max-width: 600px) {
  .fcol {
    border-bottom: 1px solid var(--border);
  }
}
.fcol iframe {
  filter: grayscale(1) contrast(1.05);
}
.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 240px;
  margin-bottom: 2rem;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.fsoc {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}
.fsoc:hover {
  color: #000;
}
.fcol h4 {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.fcol a,
.fcol p {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.fcol a:hover {
  color: #000;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.2);
  letter-spacing: 0.04em;
}
.r {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}
.r.v {
  opacity: 1;
  transform: translateY(0);
}
.r.v:first-child {
  transition-delay: 0.1s;
}
.r.v:nth-child(2) {
  transition-delay: 0.25s;
}
.r.v:nth-child(3) {
  transition-delay: 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  .r {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 960px) {
  nav {
    padding: 0 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .about-strip,
  .community,
  .faq-wrap {
    grid-template-columns: 1fr;
  }
  .about-left,
  .community-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .courses-grid,
  .exams-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .faq-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .about-left,
  .about-right,
  .community-left,
  .community-right,
  .faq-left,
  .faq-right,
  .fcol {
    padding: 3rem 1.5rem;
  }
  .sec-header {
    padding: 4rem 1.5rem 2.5rem;
  }
  .footer-bottom {
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .courses-grid,
  .exams-grid,
  .stats-bar,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}
.mySwiper {
  width: 100%;
  position: relative;
}
.mySwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.mySwiper .swiper-slide {
  position: relative;
}
.mySwiper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}
.swiper-overlay {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  z-index: 10;
  pointer-events: none;
}
.swiper-overlay .slide-link {
  pointer-events: all;
}
.slide-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  line-height: 1;
  margin: 0 0 0.75rem;
}
.slide-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.25rem;
  max-width: 480px;
  line-height: 1.6;
}
.slide-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #000;
  background: #d4ff00;
  padding: 0.55rem 1.2rem;
  transition: opacity 0.2s;
}
.slide-link:hover {
  opacity: 0.85;
}
.slider-tagline-strip {
  display: none;
}
@media (max-width: 767px) {
  .swiper-overlay {
    left: 1rem;
    bottom: 1rem;
  }
  .slide-title {
    font-size: clamp(1.2rem, 5vw, 2rem);
    margin-bottom: 0.5rem;
  }
  .swiper-overlay .slide-desc,
  .swiper-overlay .slide-link {
    display: none;
  }
  .slider-tagline-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #000;
    padding: 0.9rem 1.25rem;
  }
  .strip-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
  }
  .strip-desc b {
    color: #fff;
    font-weight: 700;
  }
  .strip-link {
    display: inline-block;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #000;
    background: #d4ff00;
    padding: 0.5rem 1rem;
    transition: opacity 0.2s;
    white-space: nowrap;
  }
  .strip-link:hover {
    opacity: 0.85;
  }
}
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.dropdown-arrow {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: currentColor;
}
.has-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
.has-dropdown {
  position: relative;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  min-width: 160px;
  list-style: none;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.dropdown.open {
  display: block;
}
.dropdown li a {
  display: block;
  padding: 0.75rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  transition:
    background 0.15s,
    color 0.15s;
}
.dropdown li a:hover {
  background: #f7f7f7;
  color: #000;
}
#scrollTopBtn {
  width: 44px;
  height: 44px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(212, 255, 0, 0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    background 0.2s,
    color 0.2s;
}
#scrollTopBtn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#scrollTopBtn:hover {
  background: #d4ff00;
  color: #000;
  border-color: #d4ff00;
}
@media (max-width: 768px) {
  .floating-btns {
    padding: 0 1.25rem;
  }
}
.floating-btns {
  position: fixed;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
  align-items: flex-end;
  transition: bottom 0.2s ease;
}
.floating-btns > * {
  pointer-events: auto;
}
.wa-btn {
  width: 44px;
  height: 44px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(215, 255, 0, 0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.wa-btn:hover {
  background: #d4ff00;
  color: #000;
}
.wa-btn svg {
  width: 22px;
  height: 22px;
}
.ab-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 3rem;
}
.ab-label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-hero {
  padding: 5.5rem 0 5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.about-hero .ab-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
}
.ab-hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}
.about-hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 1.6rem;
}
.ab-hero-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 2rem;
}
.ab-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ab-btn-fill {
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: background 0.2s;
}
.ab-btn-fill:hover {
  background: #222;
}
.ab-hero-stats {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
.ab-hstat {
  padding: 1.5rem 2.2rem;
  border-bottom: 1px solid var(--border);
}
.ab-hstat:last-child {
  border-bottom: none;
}
.ab-hstat-n {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.ab-hstat-l {
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}
.ab-founders {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.ab-founders .ab-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: start;
}
.ab-sec-aside {
  padding-top: 0.2rem;
}
.ab-sec-aside h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-top: 0.5rem;
}
.ab-founders-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ab-founders-body p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.9;
}
.ab-founders-body strong {
  font-weight: 600;
  color: #000;
}
.ab-pull-quote {
  border-left: 2px solid #000;
  padding-left: 1.6rem;
}
.ab-pull-quote p {
  font-size: 0.88rem;
  color: var(--mid);
  font-weight: 400;
}
.ab-two-col-strip {
  border-bottom: 1px solid var(--border);
}
.ab-two-col-strip .ab-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ab-tcol {
  padding: 3.5rem 3rem;
}
.ab-tcol:first-child {
  border-right: 1px solid var(--border);
}
.ab-tcol h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.ab-tcol p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.9;
}
.ab-tcol p + p {
  margin-top: 0.75rem;
}
.ab-tcol strong {
  font-weight: 600;
  color: #000;
}
.ab-skills {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.ab-skills .ab-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: start;
}
.ab-sec-sub {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 0.6rem;
}
.ab-skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.ab-sk {
  padding: 1.8rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.ab-sk:nth-child(2n) {
  border-right: none;
}
.ab-sk.ab-full {
  border-bottom: none;
}
.ab-sk.ab-full {
  grid-column: span 2;
  border-right: none;
  border-bottom: none;
}
.ab-sk-n {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.ab-sk-title {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.ab-sk-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
}
.ab-why {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.ab-why .ab-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: start;
}
.ab-why-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.ab-why-body p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.9;
}
.ab-why-body strong {
  font-weight: 600;
  color: #000;
}
.ab-vision {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.ab-vision .ab-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: start;
}
.ab-vision-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.ab-vision-intro p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.9;
}
.ab-vision-list {
  border: 1px solid var(--border);
}
.ab-vl-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.ab-vl-row:last-child {
  border-bottom: none;
}
.ab-vl-num {
  padding: 1.2rem 0 1.2rem 1.2rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.ab-vl-text {
  padding: 1.2rem 1.4rem;
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.75;
  border-left: 1px solid var(--border);
}
.ab-cta-band {
  background: #000;
  color: #fff;
  padding: 5rem 0;
}
.ab-cta-band .ab-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ab-cta-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #fff;
}
.ab-cta-heading span {
  color: #d4ff00;
}
.ab-cta-body {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
}
.ab-cta-right {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.ab-cta-right p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}
.ab-btn-accent {
  display: inline-block;
  background: #d4ff00;
  color: #000;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.88rem 2rem;
  transition: background 0.2s;
}
.ab-btn-accent:hover {
  background: #c8f000;
}
@media (max-width: 960px) {
  .ab-wrap {
    padding: 0 1.5rem;
  }
  .ab-cta-band .ab-wrap,
  .ab-two-col-strip .ab-wrap,
  .about-hero .ab-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ab-hero-stats {
    border-left: none;
    border-top: 1px solid var(--border);
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ab-hstat {
    flex: 1;
    min-width: 130px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .ab-tcol:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .ab-founders .ab-wrap,
  .ab-skills .ab-wrap,
  .ab-vision .ab-wrap,
  .ab-why .ab-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ab-cta-band .ab-wrap {
    gap: 2.5rem;
  }
}
@media (max-width: 600px) {
  .ab-skills-grid {
    grid-template-columns: 1fr;
  }
  .ab-sk,
  .ab-sk.ab-full {
    grid-column: span 1;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .ab-sk:last-child {
    border-bottom: none;
  }
}
.uc-r {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}
.uc-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
h2.uc-sec-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin: 0.4rem 0 0.6rem;
}
.uc-sec-sub {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}
.uc-hero {
  background: #000;
  color: #fff;
  padding: 3.5rem 0;
  border-bottom: 3px solid var(--accent);
}
.uc-hero .uc-r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.uc-hero-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  margin-bottom: 1rem;
}
.uc-hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.uc-hero h1 span {
  color: var(--accent);
}
.uc-hero p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 440px;
}
.uc-btn-accent {
  display: inline-block;
  background: #c8f000;
  color: #000;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  transition: all 0.2s;
  text-decoration: none;
}
.uc-btn-accent:hover {
  background: #fff;
}
.uc-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.uc-hstat {
  background: #111;
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.uc-hstat-n {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.uc-hstat-l {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}
.uc-info-strip {
  border-bottom: 1px solid var(--border);
}
.uc-info-strip .uc-r {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.uc-info-col {
  padding: 3rem;
}
.uc-info-col:first-child {
  border-right: 1px solid var(--border);
}
.uc-info-col .uc-label {
  display: block;
  margin-bottom: 0.5rem;
}
.uc-info-col h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.uc-info-col p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.uc-info-col p:last-of-type {
  margin-bottom: 0;
}
.uc-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.uc-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.25rem 0.65rem;
  color: var(--mid);
}
.uc-collapse-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.uc-collapse-body.open {
  max-height: 1000px;
}
.uc-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  background: 0 0;
  border: none;
  padding: 0;
  transition: color 0.2s;
}
.uc-read-more-btn:hover {
  color: #000;
}
.uc-arrow {
  transition: transform 0.3s;
  display: inline-block;
}
.uc-read-more-btn.open .uc-arrow {
  transform: rotate(180deg);
}
.uc-approach {
  padding: 3rem 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.uc-approach .uc-r {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}
.uc-approach-aside .uc-label {
  display: block;
  margin-bottom: 0.5rem;
}
.uc-approach-aside p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 0.75rem;
}
.uc-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.uc-acard {
  background: var(--bg);
  padding: 1.5rem 1.4rem;
}
.uc-acard--dark {
  background: #000;
  color: #fff;
}
.uc-acard--dark .uc-adesc {
  color: rgba(255, 255, 255, 0.6);
}
.uc-atitle {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.uc-adesc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}
.uc-tabbed {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.uc-tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
}
.tab-nav-wrap {
  position: relative;
}
.tab-nav-arrow {
  display: none;
}
@media (max-width: 768px) {
  .tab-nav-arrow {
    display: none;
    position: absolute;
    top: 0;
    height: calc(100% - 2px);
    width: 36px;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    cursor: pointer;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .tab-nav-arrow.visible {
    display: flex;
    opacity: 1;
    pointer-events: all;
  }
  .tab-nav-arrow--left {
    left: 0;
    background: linear-gradient(to right, var(--bg) 60%, transparent);
  }
  .tab-nav-arrow--right {
    right: 0;
    background: linear-gradient(to left, var(--bg) 60%, transparent);
  }
}
.uc-tab-btn {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  background: 0 0;
  border: none;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  white-space: nowrap;
}
.uc-tab-btn.active {
  color: #000;
  border-bottom-color: #000;
}
.uc-tab-btn:hover {
  color: #000;
}
.uc-tab-pane {
  display: none;
}
.uc-tab-pane.active {
  display: block;
}
.uc-elig-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}
.uc-elig-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
}
.uc-elig-table thead th {
  background: #000;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.8rem 1.1rem;
  text-align: left;
}
.uc-elig-table tbody tr {
  border: 1px solid var(--border);
}
.uc-elig-table tbody td {
  padding: 1rem 1.1rem;
  color: var(--mid);
  line-height: 1.65;
  vertical-align: top;
}
.uc-elig-table tbody td:first-child {
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  width: 150px;
}
.uc-exam-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.uc-ecard-head {
  background: #000;
  color: #fff;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.uc-ecard-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}
.uc-ecard-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.2rem 0.55rem;
}
.uc-struct-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.uc-struct-table tr {
  border: 1px solid var(--border);
}
.uc-struct-table td {
  padding: 0.75rem 1.1rem;
  color: var(--mid);
  vertical-align: top;
}
.uc-struct-table td:first-child {
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  width: 42%;
  background: var(--bg2);
  border-right: 1px solid var(--border);
}
.uc-qtable-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.uc-qwrap {
  overflow-x: auto;
}
.uc-qtable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.79rem;
}
.uc-qtable thead th {
  background: #000;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.65rem 0.9rem;
  text-align: center;
  white-space: nowrap;
}
.uc-qtable thead th:first-child,
.uc-qtable thead th:nth-child(2) {
  text-align: left;
}
.uc-qtable tbody tr {
  border: 1px solid var(--border);
}
.uc-qtable tbody tr:last-child {
  background: var(--bg2);
  font-weight: 600;
}
.uc-qtable tbody td {
  padding: 0.7rem 0.9rem;
  color: var(--mid);
  text-align: center;
}
.uc-qtable tbody td:first-child,
.uc-qtable tbody td:nth-child(2) {
  text-align: left;
}
.uc-neg {
  color: #c0392b;
}
.uc-syl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.uc-syl-head {
  background: #000;
  color: #fff;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.uc-syl-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.uc-syl-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.uc-syl-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  border: 1px solid var(--border);
}
.uc-syl-row:last-child {
  border: 1px solid var(--border);
}
.uc-syl-area {
  padding: 0.8rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.uc-syl-desc {
  padding: 0.8rem 1rem;
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.65;
  display: flex;
  align-items: center;
}
.uc-campus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.uc-campus-bot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
}
.uc-ccard {
  background: var(--bg);
  padding: 1.5rem 1.4rem;
}
.uc-cnum {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--bg3);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.uc-cname {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.uc-cdis {
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.uc-cseats {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.6rem;
}
.uc-cfeat {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
}
.uc-fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.uc-fee-table thead th {
  background: #000;
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  text-align: left;
  white-space: nowrap;
}
.uc-fee-table tbody tr {
  border: 1px solid var(--border);
}
.uc-fee-table tbody td {
  padding: 0.9rem 1rem;
  color: var(--mid);
}
.uc-fee-table tbody td:first-child {
  font-weight: 700;
  color: #000;
}
.uc-fee-total {
  font-weight: 700;
  color: #000 !important;
  background: var(--bg2);
}
@media (max-width: 960px) {
  .uc-r {
    padding: 0 1.5rem;
  }
  .uc-hero .uc-r,
  .uc-info-strip .uc-r {
    grid-template-columns: 1fr;
  }
  .uc-info-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .uc-approach .uc-r {
    grid-template-columns: 1fr;
  }
  .uc-elig-layout {
    grid-template-columns: 1fr;
  }
  .uc-exam-cols,
  .uc-syl-grid {
    grid-template-columns: 1fr;
  }
  .uc-campus-grid {
    grid-template-columns: 1fr 1fr;
  }
  .uc-campus-bot {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .uc-approach-grid {
    grid-template-columns: 1fr;
  }
  .uc-campus-grid {
    grid-template-columns: 1fr;
  }
  .uc-tab-btn {
    padding: 0.7rem 0.9rem;
    font-size: 0.62rem;
  }
}
.nid-switcher {
  background: #111;
  border-bottom: 3px solid var(--accent);
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 99;
}
.nid-switcher-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.nid-sw-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding: 0 1.5rem 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}
.nid-sw-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  cursor: pointer;
  background: 0 0;
  border: none;
  color: #fff;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.nid-sw-btn.active {
  color: #d4ff00;
  background: rgba(212, 255, 0, 0.08);
  border-bottom-color: var(--accent);
}
.nid-sw-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.nid-sw-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.5rem;
}
.nid-page {
  display: none;
}
.nid-page.active {
  display: block;
}
.nid-seat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
}
.nid-seat-table thead th {
  background: #000;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.8rem 1.1rem;
  text-align: left;
}
.nid-seat-table thead th:not(:first-child) {
  text-align: center;
}
.nid-seat-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.nid-seat-table tbody td {
  padding: 0.8rem 1.1rem;
  color: var(--mid);
  vertical-align: middle;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  font-weight: 600;
}
.nid-seat-table tbody td:first-child {
  font-weight: 600;
  color: #000;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  text-align: left;
  font-size: 0.8rem;
}
@media (max-width: 960px) {
  .nid-sw-label {
    display: none;
  }
  .nid-sw-btn {
    padding: 0.9rem 1.2rem;
  }
}
@media (max-width: 600px) {
  .nid-sw-btn {
    font-size: 0.65rem;
    padding: 0.9rem 1rem;
  }
}
.contact-hero {
  background: #000;
  color: #fff;
  padding: 6rem 6rem 5rem;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "CONTACT";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(6rem, 18vw, 18rem);
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.04em;
  z-index: 0;
}
.contact-hero > * {
  position: relative;
  z-index: 1;
}
.contact-hero .label {
  color: #d4ff00;
  display: block;
  margin-bottom: 1rem;
}
.contact-hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.contact-hero p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  max-width: 460px;
  line-height: 1.75;
}
.uc-hero .hero-badge {
  display: block;
  width: fit-content;
  margin-bottom: 1rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.45rem 1rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #d4ff00;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotBlink 2s infinite;
}
@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-accent {
  position: absolute;
  right: 6rem;
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.3;
  z-index: 1;
}
.hero-accent-line {
  width: 56px;
  height: 1px;
  background: #fff;
}
.hero-accent span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}
.contact-main {
  display: grid;
  grid-template-columns: 480px 1fr;
  align-items: start;
}
.contact-info {
  background: #f4f4f4;
  padding: 4.5rem 3.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 68px;
}
.contact-info > .label {
  display: block;
  margin-bottom: 1.2rem;
}
.contact-info > h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 2.8rem;
}
.info-block {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.info-icon {
  width: 40px;
  height: 40px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.info-lbl {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin-bottom: 0.3rem;
}
.info-val {
  font-size: 0.88rem;
  font-weight: 500;
  color: #000;
  line-height: 1.55;
}
.info-val a {
  color: #000;
  text-decoration: none;
}
.info-val a:hover {
  color: #555;
}
.info-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 2rem 0;
}
.social-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
.social-pill svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.social-pill:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.map-block {
  height: 170px;
  background: #ddd;
  position: relative;
  overflow: hidden;
}
.map-block iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) contrast(1.05);
  display: block;
}
.hours-section {
  margin-top: 2.5rem;
}
.hours-section > .label {
  display: block;
  margin-bottom: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.82rem;
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-day {
  font-weight: 500;
}
.hours-time {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
}
.hours-badge {
  background: #d4ff00;
  color: #000;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  margin-left: 0.5rem;
}
.contact-form-panel {
  background: #fff;
  padding: 4.5rem 5rem;
}
.contact-form-panel > .label {
  display: block;
  margin-bottom: 1rem;
}
.contact-form-panel > h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}
.form-intro {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.65;
  margin-bottom: 3rem;
  max-width: 520px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.fg.span2 {
  grid-column: 1/-1;
}
.fg > label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
}
.fg .opt {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}
.fg input,
.fg select {
  font-family: Inter, sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: #000;
  background: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0 1rem;
  height: 52px;
  line-height: 52px;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
  transition:
    border-color 0.18s,
    background 0.18s;
}
.fg input::placeholder {
  color: rgba(0, 0, 0, 0.28);
  font-weight: 300;
}
.fg input:focus,
.fg select:focus {
  border-color: #000;
  background: #fff;
  outline: 0;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1L5.5 6L10 1' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}
.fg select option {
  color: #000;
  background: #fff;
}
.phone-wrap {
  display: flex;
}
.phone-prefix {
  background: #000;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0 0.85rem;
  height: 52px;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #000;
  box-sizing: border-box;
}
.phone-prefix svg {
  width: 14px;
  height: 14px;
  color: #fff;
}
.fg-phone-input {
  border-left: none !important;
  flex: 1;
  min-width: 0;
}
.fg textarea {
  font-family: Inter, sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: #000;
  background: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 1rem;
  outline: 0;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
  transition:
    border-color 0.18s,
    background 0.18s;
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
  appearance: none;
  -webkit-appearance: none;
}
.fg textarea::placeholder {
  color: rgba(0, 0, 0, 0.28);
  font-weight: 300;
}
.fg textarea:focus {
  border-color: #000;
  background: #fff;
  outline: 0;
}
.submit-row {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 0.4rem;
}
.btn-submit {
  background: #000;
  color: #fff;
  border: none;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition:
    background 0.18s,
    color 0.18s;
  white-space: nowrap;
}
.btn-submit svg {
  width: 15px;
  height: 15px;
  transition: transform 0.18s;
  flex-shrink: 0;
}
.btn-submit:hover {
  background: #d4ff00;
  color: #000;
}
.btn-submit:hover svg {
  transform: translateX(3px);
}
.submit-note {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.38);
  font-weight: 300;
  line-height: 1.55;
}
.submit-note strong {
  color: #000;
  font-weight: 600;
}
.form-success {
  display: none;
  align-items: center;
  gap: 0.8rem;
  background: #d4ff00;
  color: #000;
  padding: 1rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  grid-column: 1/-1;
}
.form-success.show {
  display: flex;
}
.form-success svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 1180px) {
  .contact-main {
    grid-template-columns: 480px 1fr;
  }
  .contact-form-panel {
    padding: 4rem 3.5rem;
  }
}
@media (max-width: 960px) {
  .contact-main {
    grid-template-columns: 1fr;
  }
  .contact-info {
    position: static;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3.5rem 2.5rem;
  }
  .contact-form-panel {
    padding: 3.5rem 2.5rem;
  }
}
@media (max-width: 640px) {
  .contact-hero {
    padding: 4.5rem 1.5rem 3.5rem;
  }
  .hero-accent {
    display: none;
  }
  .contact-info {
    padding: 3rem 1.5rem;
  }
  .contact-form-panel {
    padding: 3rem 1.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .fg.span2 {
    grid-column: 1;
  }
  .submit-row {
    grid-column: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .form-success {
    grid-column: 1;
  }
}
.bd-hero {
  background: #000;
  color: #fff;
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bd-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3rem;
}
.bd-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.bd-meta-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.bd-category {
  display: inline-block;
  background: #d4ff00;
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
}
.bd-dot {
  color: rgba(255, 255, 255, 0.3);
}
.bd-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1.2rem;
}
.bd-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.bd-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}
.bd-author-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  color: #d4ff00;
  flex-shrink: 0;
}
.bd-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.bd-author-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
}
.bd-author-role {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
}
.bd-date-block {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: right;
}
.bd-date-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}
.bd-date-val {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}
.bd-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 3rem;
}
.bd-article {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.bd-article section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.bd-article h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  line-height: 1;
  border-top: 2px solid #000;
  padding-top: 0.6rem;
  margin-bottom: 0.2rem;
}
.bd-article p {
  font-size: 0.93rem;
  line-height: 1.92;
  color: var(--muted);
}
.bd-article b {
  font-weight: 600;
  color: #000;
}
.bd-figure {
  display: flex;
  flex-direction: column;
  margin: 0.5rem 0;
}
.bd-figure-img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
}
.bd-figcaption {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
  padding: 0.7rem 0.9rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-top: none;
  line-height: 1.6;
}
@media (max-width: 960px) {
  .bd-hero-inner {
    padding: 0 1.5rem;
  }
  .bd-layout {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 600px) {
  .bd-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .bd-author-row {
    flex-wrap: wrap;
  }
  .bd-date-block {
    text-align: left;
  }
  .bd-layout {
    padding: 2.5rem 1.5rem;
  }
}
.bl-meta-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #000;
}
.bl-avatar {
  width: 28px;
  height: 28px;
  background: #000;
  color: #d4ff00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.bl-meta-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--muted);
}
.bl-dot {
  opacity: 0.4;
}
.bl-grid-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 3rem 5rem;
}
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.bl-card {
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.2s;
  overflow: hidden;
}
.bl-card:hover {
  background: var(--bg2);
}
.bl-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4ff00;
  transition: width 0.3s ease;
}
.bl-card:hover::after {
  width: 100%;
}
.bl-card-img-wrap {
  overflow: hidden;
  height: 200px;
  border-bottom: 1px solid var(--border);
}
.bl-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.bl-card:hover .bl-card-img {
  transform: scale(1.04);
}
.bl-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.bl-card-body .bd-category {
  align-self: flex-start;
}
.bl-card-title {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #000;
}
.bl-card-excerpt {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.bl-read-more {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 0.45rem 0.9rem;
  align-self: flex-start;
  transition: all 0.2s;
  color: #000;
}
.bl-card:hover .bl-read-more {
  background: #000;
  color: #fff;
  border-color: #000;
}
.bl-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}
@media (max-width: 960px) {
  .bl-grid-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .bl-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .bl-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .bl-grid-wrap {
    padding-bottom: 3rem;
  }
}
.fc-strip {
  margin-bottom: 3rem;
  border: 1px solid var(--border);
  background: #fff;
}
.fc-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
}
.fc-strip-left {
  padding: 2.2rem 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.fc-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.fc-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #000;
  margin: 0;
}
.fc-body {
  font-family: Inter, sans-serif;
  font-size: 0.76rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}
.fc-dest-list {
  font-family: Inter, sans-serif;
  font-size: 0.68rem;
  color: rgba(0, 0, 0, 0.3);
  margin: 0;
  line-height: 1.6;
}
.fc-strip-right {
  padding: 2.2rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-cta {
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid #000;
  padding: 0.85rem 1.8rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
}
.fc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.fc-cta:hover {
  color: #fff;
}
.fc-cta:hover::before {
  transform: translateY(0);
}
.fc-cta span {
  position: relative;
  z-index: 1;
}
@media (max-width: 700px) {
  .fc-strip-inner {
    grid-template-columns: 1fr;
  }
  .fc-strip-left {
    border-right: none;
    padding: 1.8rem 1.5rem;
  }
  .fc-strip-right {
    padding: 1.5rem;
    justify-content: flex-start;
    border-bottom: 1px solid var(--border);
  }
}
@media (max-width: 600px) {
  .uc-elig-table tbody td:first-child {
    white-space: normal;
    width: auto;
  }
  .uc-elig-table {
    font-size: 0.75rem;
  }
  .uc-elig-table tbody td {
    padding: 0.75rem 0.75rem;
  }
}
.mob-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  z-index: 1001;
  position: relative;
}
.mob-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
  transform-origin: center;
}
.mob-burger.open {
  position: fixed;
  top: 22px;
  right: 1.5rem;
}
.mob-burger.open span {
  background: #000;
}
.mob-burger.open span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.mob-burger.open span:nth-child(2) {
  opacity: 0;
}
.mob-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
}
.mob-overlay.open {
  display: block;
}
.mob-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mob-menu.open {
  transform: translateX(0);
}
.mob-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 5rem 1rem 2rem;
  overflow-x: hidden;
}
.mob-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: 0 0;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1rem;
  text-align: left;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
  margin: 0 -1rem;
  width: calc(100% + 2rem);
}
.mob-link:hover {
  color: #000;
}
.mob-arrow {
  width: 12px;
  height: 8px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.mob-exams-toggle.open .mob-arrow {
  transform: rotate(180deg);
}
.mob-exams-list {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  margin: 0 -1rem;
  width: calc(100% + 2rem);
  box-shadow:
    inset 0 4px 10px rgba(0, 0, 0, 0.07),
    inset 0 -4px 10px rgba(0, 0, 0, 0.04);
}
.mob-exams-list.open {
  display: flex;
}
.mob-sub-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mob-sub-link:last-child {
  border-bottom: none;
}
.mob-sub-link:hover {
  color: #000;
}
.mob-cta {
  margin-top: 1.5rem;
  align-self: center;
  background: #d4ff00;
  color: #000;
  padding: 0.55rem 1.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.mob-cta:hover {
  background: #333;
  color: #d4ff00;
}
@media (max-width: 960px) {
  .mob-burger {
    display: flex;
  }
  .nav-links {
    display: none !important;
  }
}
.uc-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #000;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.88rem 2rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  border: none;
  cursor: pointer;
}
.uc-download-btn:hover {
  background: #d4ff00;
  color: #000;
}
.uc-download-btn svg {
  flex-shrink: 0;
}
.uc-download-btn + .uc-download-btn {
  margin-top: 0.6rem;
  display: inline-flex;
}
.uc-sample-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
