/* Candidate Portal Styles & Design System */

:root {
  --blue: #075fbe;
  --blue-dark: #034c9b;
  --blue-deep: #063d83;
  --blue-bright: #0788e9;
  --blue-vivid: #00a4f4;
  --blue-soft: #dff4ff;
  --orange: #ff7900;
  --orange-dark: #e45d00;
  --yellow-light: #fff3c9;
  --yellow-gold: #ffd18c;
  --yellow-bright: #ffe082;
  --ink: #0d315e;
  --muted: #456b91;
  --line: #badcf5;
  --paper: #fff;
  --mist: #eaf7ff;
  --sky: #ccefff;
  --radius: 22px;
}

/* ========================================================
   TOP PORTAL SWITCHER & INNER CANDIDATE HEADER
   ======================================================== */
.portal-switcher-bar {
  background: var(--surface-900);
  color: var(--surface-300);
  font-size: 0.8rem;
  height: var(--switcher-height, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portal-switcher-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm, 6px);
  font-size: 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.portal-switcher-btn:hover {
  background: var(--primary-500);
  border-color: var(--primary-500);
}

/* Candidate Header on Inner Pages (Register, Login, Application, Inbox) */
.candidate-header {
  background: #ffffff;
  border-bottom: 2px solid #d4edff;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 4px 18px rgba(4, 83, 157, 0.08);
}

.candidate-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--surface-900);
}

.brand-badge {
  font-size: 0.65rem;
  background: #e0f2fe;
  color: var(--blue);
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
  display: inline-flex;
  align-items: center;
}

.nav-link {
  color: #263b5b;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--orange);
}

/* Candidate Footer */
.candidate-footer {
  background: #043b7a;
  color: #e0f2fe;
  padding: 48px 0 24px;
  margin-top: auto;
}

/* ========================================================
   LANDING PAGE TEMPLATE (UNETI)
   ======================================================== */
.notice-bar {
  color: #ffffff !important;
  background: linear-gradient(90deg, #034f9f, #0788e9 55%, #00a4f4);
  border-bottom: 1px solid #0081d8;
  font-size: 13px;
}

.notice-inner {
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  display: flex;
}

.notice-inner strong {
  color: #ffffff !important;
  font-weight: 700;
}

.notice-inner a {
  color: var(--yellow-light) !important;
  margin-left: 10px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.notice-inner a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.live-dot {
  background: #ffb000;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 1.8s ease-out infinite livePulse;
  box-shadow: 0 0 0 5px #ffb0003d;
}

.site-header {
  z-index: 30;
  background: #fffffff7;
  border-bottom: 2px solid #d4edff;
  position: sticky;
  top: 0;
  box-shadow: 0 8px 28px #04539d14;
}

.header-inner {
  align-items: center;
  gap: 32px;
  min-height: 90px;
  display: flex;
}

.brand {
  align-items: center;
  gap: 13px;
  min-width: 475px;
  display: inline-flex;
  text-decoration: none;
}

.brand-logo-img {
  object-fit: contain;
  flex: none;
  width: 58px;
  height: 66px;
  display: block;
}

.brand-copy {
  flex-direction: column;
  line-height: 1.15;
  display: flex;
}

.brand-copy strong {
  color: var(--blue);
  letter-spacing: 0.012em;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.brand-copy span {
  color: #315f8e;
  letter-spacing: 0.055em;
  white-space: nowrap;
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
}

.main-nav {
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  display: flex;
}

.main-nav a {
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #0284c7;
  background: #f0f9ff;
}

.main-nav a.active {
  color: #0284c7;
  font-weight: 700;
  background: #e0f2fe;
}

.login-link {
  color: #334155;
  white-space: nowrap;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.login-link:hover {
  color: #0284c7;
  border-color: #0284c7;
  background: #f0f9ff;
}

.btn-header-cta {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff !important;
  border-radius: 999px;
  padding: 7.5px 18px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-header-cta:hover {
  background: linear-gradient(135deg, #0369a1, #075985);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

/* --- Mobile Menu Toggle Button & Drawer Navigation --- */
.mobile-menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 120;
  margin-left: auto;
}

.mobile-menu-toggle-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #1e293b;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}

.mobile-menu-toggle-btn.is-active {
  background: #e0f2fe;
  border-color: #0284c7;
}

.mobile-menu-toggle-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: #0284c7;
}

.mobile-menu-toggle-btn.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #0284c7;
}

.mobile-nav-drawer {
  display: none;
  background: #ffffff;
  border-bottom: 2px solid #e0f2fe;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  width: 100%;
}

.mobile-nav-drawer.is-open {
  display: block;
  animation: 0.25s ease-out slideDownNav;
}

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

.mobile-nav-content {
  padding: 14px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  color: #1e293b;
  font-size: 14.5px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: #f0f9ff;
  color: #0284c7;
}

.mobile-nav-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 8px 0;
}

.mobile-nav-actions {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 10px;
  margin-top: 6px;
}

.mobile-btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  color: #1e293b;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  text-align: center;
}

.mobile-btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  border-radius: 8px;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.25);
}

/* Tablet & Mobile Breakpoints for Responsive Navigation */
@media (max-width: 1024px) {
  .desktop-only,
  .candidate-desktop-nav,
  .site-header .main-nav,
  .site-header .header-actions,
  .candidate-header .candidate-desktop-nav {
    display: none !important;
  }

  .mobile-menu-toggle-btn {
    display: flex !important;
  }

  .candidate-header-container,
  .header-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  .brand-copy strong,
  .brand-title {
    font-size: 12.5px !important;
    white-space: normal !important;
    max-width: 320px !important;
    line-height: 1.25 !important;
  }

  .brand-logo-img {
    width: 40px !important;
    height: 46px !important;
  }
}

@media (max-width: 640px) {
  .brand-copy strong,
  .brand-title {
    font-size: 11px !important;
    max-width: 210px !important;
  }
  .brand-copy span,
  .brand-badge {
    font-size: 8px !important;
  }
  .brand-logo-img {
    width: 34px !important;
    height: 40px !important;
  }
  .mobile-nav-actions {
    grid-template-columns: 1fr;
  }
}

/* Hero Section */
.hero {
  min-height: 720px;
  color: var(--ink);
  background: linear-gradient(125deg, #bfeaff, #e8f8ff);
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 38%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.08) contrast(1.04) brightness(1.01);
  width: 100%;
  height: 100%;
  animation: 18s ease-in-out infinite alternate heroZoom;
}

.hero-overlay {
  background: linear-gradient(90deg, #d9f4ff 0%, #ccefff 32%, rgba(208, 240, 255, 0.88) 46%, rgba(220, 246, 255, 0.35) 68%, rgba(255, 255, 255, 0.05) 100%);
  position: absolute;
  inset: 0;
}

.hero-orb {
  background: #169fee0d;
  border: 2px solid #007fdc33;
  border-radius: 50%;
  animation: 7s ease-in-out infinite orbFloat;
  position: absolute;
}

.orb-one {
  width: 430px;
  height: 430px;
  top: 130px;
  left: -220px;
}

.orb-two {
  width: 260px;
  height: 260px;
  animation-delay: -3s;
  top: -140px;
  left: 37%;
}

.hero-grid {
  z-index: 2;
  grid-template-columns: 1.1fr 0.72fr;
  align-items: center;
  gap: 78px;
  min-height: 585px;
  padding: 70px 0 116px;
  display: grid;
  position: relative;
}

.hero-copy {
  max-width: 650px;
  animation: 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) both riseIn;
}

.eyebrow, .section-kicker {
  color: var(--blue);
  letter-spacing: 0.14em;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  display: inline-flex;
}

.eyebrow span {
  color: var(--orange);
}

.hero h1 {
  letter-spacing: -0.035em;
  color: #063b7b;
  text-shadow: 0 2px #ffffff8c;
  margin: 19px 0 18px;
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 em {
  color: var(--blue-bright);
  font-style: normal;
  position: relative;
}

.hero h1 em:after {
  content: "";
  background: linear-gradient(90deg, var(--orange), #ffb000);
  transform-origin: 0;
  border-radius: 999px;
  height: 5px;
  animation: 0.8s ease-out 0.65s both lineDraw;
  position: absolute;
  bottom: -3px;
  left: 3%;
  right: 0;
}

.hero-copy > p {
  color: #285a88;
  max-width: 590px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

.hero-actions {
  gap: 12px;
  margin-top: 32px;
  display: flex;
}

.button {
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff8b00, #f56600);
  animation: 2.8s ease-in-out infinite ctaGlow;
  box-shadow: 0 16px 32px #e75b0057;
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-ghost {
  color: var(--blue-deep);
  background: #ffffffd1;
  border: 2px solid #5faee7;
}

.hero-note {
  color: #527392;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 13px;
  display: flex;
}

.shield {
  color: #fff;
  background: var(--blue-bright);
  border-radius: 50%;
  place-items: center;
  width: 22px;
  height: 22px;
  font-weight: 900;
  display: grid;
}

/* Application Card */
.application-card {
  color: var(--ink);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #fffffff7;
  border: 2px solid #9bd9ff;
  border-radius: 24px;
  padding: 34px 30px 28px;
  animation: 5s ease-in-out 1s infinite cardFloat;
  position: relative;
  box-shadow: 0 30px 76px #0163b547;
}

.card-badge {
  color: #fff;
  background: var(--orange);
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 10px;
  position: absolute;
  top: -15px;
  right: 22px;
}

.card-badge strong {
  font-size: 13px;
}

.card-kicker {
  color: var(--blue);
  letter-spacing: 0.12em;
  margin: 0;
  font-size: 11px;
  font-weight: 900;
}

.application-card h2 {
  color: var(--blue-deep);
  margin: 8px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.card-lead {
  color: var(--muted);
  margin: 7px 0 22px;
  font-size: 14px;
}

.portal-option {
  border: 1px solid var(--line);
  border-radius: 14px;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
  padding: 15px;
  transition: all 0.2s;
  display: grid;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
}

.portal-option:hover {
  border-color: #7caadd;
  transform: translateY(-1px);
}

.portal-option.active {
  color: #ffffff !important;
  border-color: var(--blue-bright);
  background: linear-gradient(135deg, #0064c7, #079bea);
  box-shadow: 0 10px 24px #0268c63d;
}

.portal-option.active strong {
  color: #ffffff !important;
  font-size: 14px;
}

.portal-option.active small {
  color: #dff4ff !important;
}

.portal-option > span:nth-child(2) {
  flex-direction: column;
  display: flex;
}

.portal-option strong {
  font-size: 14px;
}

.portal-option small {
  color: var(--muted);
  margin-top: 2px;
  font-size: 11px;
}

.option-icon {
  width: 40px;
  height: 40px;
  color: var(--blue);
  background: #fff;
  border-radius: 11px;
  place-items: center;
  font-size: 18px;
  display: grid;
}

.option-icon.outline {
  background: var(--blue-soft);
}

.support-line {
  border-top: 1px solid var(--line);
  color: var(--muted);
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 17px;
  font-size: 12px;
  display: flex;
}

.support-line > span {
  width: 28px;
  height: 28px;
  color: var(--orange-dark);
  background: #fff1e6;
  border-radius: 50%;
  place-items: center;
  font-weight: 900;
  display: grid;
}

.support-line p {
  margin: 0;
  line-height: 1.45;
}

.support-line strong {
  color: var(--ink);
}

/* Stats Strip */
.stats-strip {
  z-index: 4;
  color: var(--ink);
  background: #fff;
  border-radius: 18px 18px 0 0;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  box-shadow: 0 -10px 42px #042c5a24;
  width: min(1180px, 100% - 40px);
  overflow: hidden;
}

.stats-strip div {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 112px;
  padding: 20px 24px;
  display: flex;
  position: relative;
}

.stats-strip div + div:before {
  content: "";
  background: var(--line);
  width: 1px;
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
}

.stats-strip strong {
  color: var(--blue);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  display: block;
}

.stats-strip span {
  color: var(--muted);
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  display: block;
  line-height: 1.35;
}
}

/* Section Standards */
.section {
  padding: 92px 0;
}

.section-heading h2, .study-intro h2, .final-cta h2 {
  letter-spacing: -0.025em;
  margin: 12px 0 14px;
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.16;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
}

.centered {
  text-align: center;
  max-width: 730px;
  margin: 0 auto 42px;
}

.left-heading {
  max-width: 390px;
}

/* Quick Info Section */
.quick-info {
  background: linear-gradient(#edf9ff, #d9f2ff);
  padding: 60px 0;
}

.quick-grid {
  grid-template-columns: 1.25fr repeat(3, 1fr);
  align-items: center;
  gap: 18px;
  display: grid;
}

.quick-grid .section-heading h2 {
  font-size: 34px;
}

.prep-card {
  border: 1px solid #abd8f6;
  border-top: 4px solid var(--blue-bright);
  background: #fff;
  border-radius: 18px;
  min-height: 155px;
  padding: 22px 20px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 12px 30px #0465b21a;
}

.prep-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px #0465b22e;
}

.prep-index {
  color: var(--orange);
  font-size: 20px;
  font-weight: 800;
}

.prep-card strong {
  color: var(--blue-deep);
  margin-top: 16px;
  font-size: 15px;
  display: block;
}

.prep-card p {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

/* Methods Grid */
.method-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  display: grid;
}

.method-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #fff 65%, #e9f7ff);
  min-height: 270px;
  padding: 28px 24px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.method-card:after {
  content: "";
  background: linear-gradient(135deg, var(--blue-vivid), var(--blue));
  opacity: 0.16;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  transition: transform 0.35s, opacity 0.35s;
  position: absolute;
  top: -45px;
  right: -45px;
}

.method-card:hover {
  border-color: #aac7e5;
  transform: translateY(-5px);
  box-shadow: 0 18px 45px #0542821a;
}

.method-card:hover:after {
  opacity: 0.25;
  transform: scale(1.45);
}

.method-number {
  color: #7fa6cc;
  font-size: 17px;
  font-weight: 800;
}

.method-card h3 {
  min-height: 54px;
  color: var(--blue-deep);
  margin: 28px 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.method-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.method-card a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  position: absolute;
  bottom: 24px;
  left: 24px;
  text-decoration: none;
}

/* ========================================================
   STUDY SECTION (Blue Background -> Pure White & Light Gold Text)
   ======================================================== */
.study {
  color: #ffffff !important;
  background: linear-gradient(135deg, #034c9b, #0574cc 58%, #079bea) !important;
}

.study-layout {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 80px;
  display: grid;
}

.section-kicker.orange {
  color: var(--yellow-bright) !important;
  font-weight: 800;
}

.study-intro {
  position: sticky;
  top: 32px;
}

.study-intro h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.study-intro p {
  color: #e0f2fe !important;
  max-width: 420px;
  line-height: 1.65;
  font-size: 15px;
}

.button-white {
  color: var(--blue-dark) !important;
  background: #ffffff !important;
  margin-top: 26px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 44, 97, 0.35);
}

.button-white:hover {
  background: #f0fdf4 !important;
  transform: translateY(-2px);
}

.field-list {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.field-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  grid-template-columns: 42px 1fr 28px;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  transition: padding 0.25s, background 0.25s;
  display: grid;
  text-decoration: none;
  color: #ffffff !important;
  cursor: pointer;
}

.field-row:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  padding-left: 14px;
  padding-right: 14px;
}

.field-row > span {
  color: var(--yellow-bright) !important;
  font-weight: 800;
  font-size: 16px;
}

.field-row h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff !important;
}

.field-row p {
  color: #e0f2fe !important;
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.field-row b {
  color: var(--yellow-bright) !important;
  font-size: 20px;
}

/* Journey Section */
.journey {
  background: #f8fbfe;
}

.step-line {
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  display: grid;
  position: relative;
}

.step-line:before {
  content: "";
  background: #bfd0e2;
  height: 1px;
  position: absolute;
  top: 57px;
  left: 4%;
  right: 4%;
}

.step {
  z-index: 1;
  text-align: center;
  position: relative;
}

.step-number {
  color: #8ca8c3;
  font-size: 17px;
  font-weight: 800;
}

.step-dot {
  outline: 2px solid var(--blue);
  background: var(--orange);
  border: 5px solid #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  margin: 17px auto 24px;
  box-shadow: 0 0 0 5px #eaf2fb;
}

.step h3 {
  color: var(--blue-deep);
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.step p {
  max-width: 230px;
  color: var(--muted);
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.5;
}

/* Document Banner */
.document-banner {
  color: #ffffff !important;
  background: linear-gradient(110deg, #005bbb, #049be8) !important;
  border-radius: 17px;
  justify-content: space-between;
  align-items: center;
  margin-top: 52px;
  padding: 23px 28px;
  display: flex;
  box-shadow: 0 18px 38px #035eb138;
}

.document-banner > div {
  align-items: center;
  gap: 15px;
  display: flex;
}

.document-banner strong {
  color: #ffffff !important;
  font-size: 16px;
}

.document-icon {
  width: 43px;
  height: 43px;
  color: var(--blue);
  background: #fff;
  border-radius: 12px;
  place-items: center;
  font-weight: 900;
  display: grid;
}

.document-banner p {
  color: #e0f2fe !important;
  margin: 1px 0 0;
  font-size: 13px;
}

.document-banner a {
  background: rgba(255, 255, 255, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 900;
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.2s;
}

.document-banner a:hover {
  background: #ffffff !important;
  color: var(--blue) !important;
}

/* News & Notices */
.news-heading {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  display: flex;
}

.news-heading h2 {
  margin: 8px 0 0;
  font-size: 38px;
  font-weight: 800;
}

.news-heading > a, .text-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.notice-list {
  border-top: 1px solid var(--line);
}

.notice-row {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 80px 90px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 100px;
  transition: all 0.2s;
  display: grid;
  text-decoration: none;
  color: inherit;
}

.notice-row:hover {
  color: var(--blue);
  background: #f9fbfe;
  padding-left: 10px;
}

.notice-date {
  color: var(--blue);
  flex-direction: column;
  align-items: center;
  display: flex;
}

.notice-date strong {
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.notice-date small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.notice-tag {
  color: var(--orange-dark);
  background: #fff1e6;
  border-radius: 6px;
  justify-self: start;
  padding: 5px 8px;
  font-size: 9px;
  font-weight: 900;
}

.notice-row > strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

/* FAQ */
.faq {
  background: var(--mist);
}

.faq-layout {
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  display: grid;
}

.text-link {
  margin-top: 22px;
  display: inline-block;
}

.faq-list details {
  border-bottom: 1px solid #cedae7;
  padding: 20px 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--blue-deep);
  font-weight: 800;
  list-style: none;
  font-size: 15px;
}

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

.faq-list summary:after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 22px;
}

.faq-list details[open] summary:after {
  content: "−";
}

.faq-list p {
  color: var(--muted);
  margin: 12px 45px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  color: #ffffff !important;
  background: linear-gradient(115deg, #004d9f, #078ee3) !important;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.final-cta:after {
  content: "";
  border: 55px solid #ffffff14;
  border-radius: 50%;
  width: 360px;
  height: 360px;
  animation: 7s ease-in-out infinite orbFloat;
  position: absolute;
  top: -150px;
  right: -100px;
}

.final-inner {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  display: flex;
  position: relative;
}

.section-kicker.light {
  color: var(--yellow-bright) !important;
  font-weight: 800;
}

.final-cta h2 {
  margin: 8px 0;
  font-size: 40px;
  color: #ffffff !important;
}

.final-cta p {
  color: #e0f2fe !important;
  margin: 0;
  font-size: 16px;
}

.button-orange {
  color: #ffffff !important;
  background: var(--orange) !important;
  flex: none;
}

.button-orange:hover {
  background: var(--orange-dark) !important;
}

/* Footer */
footer {
  color: #e0f2fe !important;
  background: #043b7a !important;
  padding: 62px 0 24px;
}

.footer-grid {
  grid-template-columns: 1.35fr 1fr 1fr 0.8fr;
  gap: 36px;
  display: grid;
}

.light-brand {
  min-width: auto;
}

.light-brand .brand-copy strong {
  color: #ffffff !important;
  white-space: normal;
  font-size: 12px;
  line-height: 1.35;
}

.light-brand .brand-copy span {
  color: var(--yellow-bright) !important;
}

.footer-logo-box {
  background: #fff;
  border-radius: 10px;
  flex: none;
  place-items: center;
  width: 68px;
  height: 76px;
  display: grid;
  overflow: hidden;
}

.footer-logo-box .brand-logo-img {
  width: 56px;
  height: 64px;
}

.footer-brand p {
  color: #e0f2fe !important;
  margin-top: 20px;
  font-style: italic;
  font-size: 13px;
}

footer h3 {
  color: var(--yellow-bright) !important;
  margin: 5px 0 17px;
  font-size: 15px;
  font-weight: 800;
}

footer p {
  margin: 8px 0;
  font-size: 13px;
  line-height: 1.6;
  color: #e0f2fe !important;
}

footer a {
  color: #e0f2fe !important;
  text-decoration: none;
}

footer a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 12px;
  color: #bae6fd !important;
  display: flex;
}

/* ========================================================
   WIZARD STEPPER & APPLICATION STYLES
   ======================================================== */
.stepper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.stepper-nav::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: var(--surface-200);
  z-index: 1;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-100);
  border: 3px solid var(--surface-300);
  color: var(--surface-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.step-label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--surface-500);
  text-align: center;
}

.step-item.active .step-circle {
  background: var(--primary-600);
  border-color: #93c5fd;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.2);
}

.step-item.active .step-label {
  color: var(--primary-800);
  font-weight: 700;
}

.step-item.completed .step-circle {
  background: var(--success-600);
  border-color: #86efac;
  color: #ffffff;
}

.step-item.completed .step-label {
  color: var(--success-700);
}

/* Wish Items */
.wish-item {
  background: #ffffff;
  border: 1.5px solid var(--surface-200);
  border-radius: var(--radius-lg, 12px);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wish-item:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
}

.wish-priority-badge {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.wish-details {
  flex: 1;
}

.wish-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Status Banners */
.status-banner {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg, 12px);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-banner.banner-warning {
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  color: #92400e;
}

.status-banner.banner-info {
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  color: #0369a1;
}

.status-banner.banner-success {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  color: #166534;
}

/* Tabs */
.tabs-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--surface-200);
  padding-bottom: 0.25rem;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--surface-600);
  border-radius: var(--radius-md, 8px);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn:hover {
  background: var(--surface-100);
  color: var(--surface-900);
}

.tab-btn.active {
  background: var(--primary-50);
  color: var(--primary-700);
  font-weight: 800;
  border-bottom: 3px solid var(--primary-600);
}

.mobile-cta {
  display: none;
}

.reveal-ready {
  opacity: 0;
  transition: opacity 0.7s ease var(--reveal-delay, 0s), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0s);
  transform: translateY(28px);
}

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

/* Animations */
@keyframes riseIn {
  0% { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineDraw {
  0% { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  to { transform: scale(1.045); }
}

@keyframes orbFloat {
  0%, to { transform: translate(0); }
  50% { transform: translate(10px, 16px); }
}

@keyframes cardFloat {
  0%, to { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes livePulse {
  0% { box-shadow: 0 0 #ffb0008c; }
  70%, to { box-shadow: 0 0 0 9px #ffb00000; }
}

@keyframes ctaGlow {
  0%, to { box-shadow: 0 16px 32px #e75b004d; }
  50% { box-shadow: 0 18px 42px #ff73007a; }
}

/* ==========================================================================
   Active Campaign Countdown Showcase Section (Pixel-Perfect Responsive 2-Row)
   ========================================================================== */
.campaign-countdown-section {
  position: relative;
  z-index: 10;
  margin: 48px auto 32px;
  padding: 0;
  width: 100%;
}

.campaign-countdown-card {
  background: linear-gradient(135deg, #0A74DA 0%, #0284C7 55%, #0062BA 100%);
  border-radius: 20px;
  padding: 28px 36px;
  color: #ffffff !important;
  box-shadow: 0 16px 42px rgba(10, 116, 218, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.campaign-countdown-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  pointer-events: none;
}

/* ROW 1: Header + Deadline */
.campaign-row-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.campaign-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.campaign-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.campaign-status-badge .live-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.45);
  animation: livePulse 2s infinite;
}

.campaign-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.3;
}

.campaign-deadline-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.deadline-icon {
  font-size: 18px;
}

.deadline-text-group {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 14px;
  color: #e0f2fe;
}

.deadline-val {
  color: #fff3c4 !important;
  font-weight: 800;
}

/* Divider Line */
.campaign-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

/* ROW 2: Countdown Timer (Left) + Actions (Right) */
.campaign-row-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.campaign-countdown-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.countdown-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e0f2fe !important;
  font-weight: 800;
  white-space: nowrap;
}

.countdown-tiles-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.countdown-tile {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  width: 72px;
  height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
}

.countdown-tile:hover {
  transform: translateY(-2px);
  border-color: #ffe082;
  background: rgba(255, 255, 255, 0.26);
}

.cd-digit {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: #ffffff !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cd-unit {
  font-size: 10px;
  font-weight: 800;
  color: #fff3c4 !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 3px;
  line-height: 1;
}

.countdown-sep {
  font-size: 22px;
  font-weight: 900;
  color: #fff3c4 !important;
  line-height: 1;
  opacity: 0.9;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.campaign-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-campaign-apply {
  background: #ff7900;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(255, 121, 0, 0.4);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-campaign-apply:hover {
  background: #ff9100;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 121, 0, 0.5);
}

.btn-campaign-secondary {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-campaign-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #ffffff;
}

/* ==========================================================================
   High School Searchable Combobox Component
   ========================================================================== */
.school-combobox-container {
  position: relative;
  width: 100%;
}

.school-autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow-y: auto;
  background: #ffffff;
  border: 1.5px solid var(--primary-500, #0a74da);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  padding: 6px;
}

.school-result-item {
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: all 0.15s ease;
  margin-bottom: 2px;
}

.school-result-item:hover, .school-result-item.active {
  background: #f0f7ff;
}

.school-result-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.school-result-name {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.school-result-meta {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.school-result-meta .code-badge {
  background: #e2e8f0;
  color: #475569;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
  font-size: 11px;
  padding: 1px 5px;
  border-radius: 4px;
}

.school-result-badge {
  background: #e0f2fe;
  color: #0369a1;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.school-result-custom {
  background: #fffbeb;
  border: 1px dashed #f59e0b;
  color: #b45309;
}

.school-result-custom:hover {
  background: #fef3c7;
}

.school-empty-state {
  padding: 16px 12px;
  text-align: center;
  color: #64748b;
  font-size: 13px;
}

/* ==========================================================================
   Responsive Breakpoints for Campaign Showcase Card
   ========================================================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .campaign-countdown-card {
    padding: 24px 28px;
  }
  .campaign-title {
    font-size: 20px;
  }
  .campaign-row-1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .campaign-row-2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .campaign-countdown-group {
    width: 100%;
    justify-content: space-between;
  }
  .campaign-actions {
    width: 100%;
  }
  .btn-campaign-apply, .btn-campaign-secondary {
    flex: 1;
    justify-content: center;
  }
}

/* Mobile Large & Small (max-width: 640px) */
@media (max-width: 640px) {
  .campaign-countdown-section {
    margin: 32px auto 20px;
  }
  .campaign-countdown-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .campaign-header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }
  .campaign-title {
    font-size: 18px;
  }
  .campaign-deadline-box {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: 8px 12px;
  }
  .deadline-text-group {
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .campaign-divider {
    margin: 16px 0;
  }
  .campaign-countdown-group {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .countdown-tiles-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 4px;
    align-items: center;
  }
  .countdown-tile {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 4px 2px;
  }
  .cd-digit {
    font-size: 22px;
  }
  .cd-unit {
    font-size: 8px;
    margin-top: 2px;
  }
  .countdown-sep {
    font-size: 18px;
    height: 52px;
  }
  .campaign-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .btn-campaign-apply, .btn-campaign-secondary {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .login-link { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr 0.78fr; gap: 38px; }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-grid .section-heading { grid-column: 1 / -1; max-width: 700px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  body { padding-bottom: 68px; }
  .container { width: min(100% - 28px, 600px); }
  .notice-inner { white-space: nowrap; justify-content: flex-start; overflow: hidden; }
  .notice-inner a { display: none; }
  .header-inner { min-height: 76px; }
  .brand { min-width: 0; }
  .brand-logo-img { width: 44px; height: 50px; }
  .brand-copy strong { white-space: normal; max-width: 240px; font-size: 10px; line-height: 1.3; }
  .brand-copy span { white-space: normal; max-width: 240px; font-size: 7px; line-height: 1.3; }
  .login-link { display: none; }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-media { opacity: 0.34; inset: 0; }
  .hero-overlay { background: linear-gradient(#f2fafff7, #dff3ffeb); }
  .hero-grid { min-height: auto; padding: 62px 0 150px; display: block; }
  .hero h1 { margin-top: 15px; font-size: 44px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .application-card { margin-top: 42px; padding: 28px 20px 22px; }
  .stats-strip { border-radius: 0; grid-template-columns: 1fr 1fr; width: 100%; position: relative; bottom: auto; left: auto; transform: none; }
  .stats-strip div { min-height: 92px; padding: 16px 14px; align-items: center; text-align: center; }
  .stats-strip div:nth-child(3):before { display: none; }
  .stats-strip div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .stats-strip strong { font-size: 28px; text-align: center; }
  .stats-strip span { font-size: 11px; text-align: center; }
  .quick-info { padding: 54px 0; }
  .quick-grid, .method-grid, .study-layout, .faq-layout, .footer-grid { grid-template-columns: 1fr; }
  .quick-grid .section-heading { grid-column: auto; }
  .section { padding: 68px 0; }
  .section-heading h2, .study-intro h2 { font-size: 32px; }
  .centered { text-align: left; }
  .method-card { min-height: 245px; }
  .study-layout { gap: 40px; }
  .study-intro { position: static; }
  .field-row { grid-template-columns: 32px 1fr 20px; gap: 10px; }
  .step-line { grid-template-columns: 1fr; gap: 0; }
  .step-line:before { width: 1px; height: auto; inset: 20px auto 20px 21px; }
  .step { text-align: left; grid-template-columns: 44px 1fr; padding: 0 0 28px; display: grid; }
  .step-number { grid-column: 2; }
  .step-dot { grid-area: 1 / 1 / span 3; margin: 8px 0 0 13px; }
  .step h3, .step p { grid-column: 2; max-width: none; }
  .step h3 { margin-top: 5px; }
  .document-banner { flex-direction: column; align-items: flex-start; }
  .news-heading { flex-direction: column; align-items: flex-start; gap: 15px; }
  .notice-row { grid-template-columns: 62px 1fr auto; gap: 12px; padding: 14px 0; }
  .notice-tag { display: none; }
  .notice-row > strong { font-size: 15px; }
  .faq-layout { gap: 25px; }
  .final-inner { flex-direction: column; align-items: flex-start; }
  .final-cta h2 { font-size: 34px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .mobile-cta { z-index: 50; background: #fff; grid-template-columns: 0.75fr 1.25fr; padding: 8px; display: grid; position: fixed; bottom: 0; left: 0; right: 0; box-shadow: 0 -8px 25px #062d5929; }
  .mobile-cta a { min-height: 48px; color: var(--blue); border-radius: 9px; justify-content: center; align-items: center; font-size: 14px; font-weight: 900; display: flex; text-decoration: none; }
  .mobile-cta a:last-child { color: #fff; background: var(--orange); gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, :before, :after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal-ready { opacity: 1; transform: none; }
}

/* ==========================================================================
   Step 3: Compact Admission Method Cards in Register Wizard
   ========================================================================== */
.reg-methods-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reg-method-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: auto !important;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.reg-method-card:after {
  display: none !important;
}

.reg-method-card:hover {
  border-color: #93c5fd;
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.reg-method-card.selected {
  border-color: #0284c7;
  background: #f0f9ff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.1);
}

.reg-method-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #0284c7;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0 !important;
}

.reg-method-content {
  flex: 1;
  min-width: 0;
}

.reg-method-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.reg-method-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 800;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #e0f2fe;
  color: #0369a1;
  letter-spacing: 0.5px;
}

.reg-method-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.reg-method-desc {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.reg-method-badge {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.reg-method-card.selected .reg-method-badge {
  background: #dbeafe;
  color: #1d4ed8;
}

.reg-method-card:not(.selected) .reg-method-badge {
  background: #f1f5f9;
  color: #94a3b8;
}

/* --- Public Pages Enhancements --- */
.major-card-item {
  border: 1px solid var(--surface-200);
  background: #ffffff;
}

.major-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #93c5fd;
}

.faq-item-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-item-accordion summary::after {
  content: '▼';
  font-size: 11px;
  color: var(--surface-400);
  transition: transform 0.2s ease;
}

.faq-item-accordion[open] summary::after {
  transform: rotate(180deg);
  color: var(--primary-500);
}

.nav-links li a.nav-link {
  color: #334155;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.nav-links li a.nav-link:hover {
  color: #0284c7;
  background: #f0f9ff;
}

.nav-links li a.nav-link.active {
  color: #0284c7;
  font-weight: 700;
  background: #e0f2fe;
}

/* ==========================================================================
   OFFICIAL UNETI FOOTER COMPONENT (Pixel-Perfect Matching Official Design)
   ========================================================================== */
.uneti-official-footer {
  background: #084c98;
  color: #ffffff;
  font-family: 'Be Vietnam Pro', sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.uneti-footer-main {
  padding: 42px 0 36px;
  background: linear-gradient(135deg, #074287 0%, #0a54a8 60%, #084c98 100%);
}

.uneti-footer-container {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .uneti-footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.uneti-footer-brand {
  display: flex;
  flex-direction: column;
}

.uneti-footer-logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #ffffff;
}

.uneti-footer-logo-badge {
  width: 68px;
  height: 68px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.uneti-footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none !important;
  display: block;
}

.uneti-footer-brand-text {
  display: flex;
  flex-direction: column;
}

.uneti-footer-brand-text h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
  line-height: 1.25;
}

.uneti-footer-brand-text h2 {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 2px 0;
  color: #ffffff;
  line-height: 1.25;
}

.uneti-footer-brand-text span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #bae6fd;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 3px;
  margin-top: 3px;
  display: block;
}

.uneti-footer-campuses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 640px) {
  .uneti-footer-campuses {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.uneti-campus-col {
  display: flex;
  flex-direction: column;
}

.uneti-campus-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 14px 0;
  position: relative;
  display: inline-block;
}

.uneti-campus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uneti-campus-list li {
  font-size: 13.5px;
  color: #f0f9ff;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.uneti-campus-list .uneti-icon {
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1.35;
  opacity: 0.95;
}

.uneti-campus-list a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.uneti-campus-list a:hover {
  color: #bae6fd;
  text-decoration: underline;
}

/* Footer Bottom Bar */
.uneti-footer-bottom {
  background: #042e60;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
  font-size: 13px;
  color: #e0f2fe;
}

.uneti-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.uneti-copyright {
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.uneti-visitor-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bae6fd;
  font-size: 12.5px;
}

.uneti-visitor-stats strong {
  color: #ffffff;
  font-weight: 700;
}

.uneti-stat-sep {
  opacity: 0.4;
}

/* ==========================================================================
   Responsive Enhancements for Stepper, Application Detail & Header
   ========================================================================== */
.stepper-track-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.stepper-step {
  transition: all 0.2s ease;
}

@media (max-width: 900px) {
  .stepper-track-container {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
    gap: 8px !important;
  }
}

@media (max-width: 640px) {
  .stepper-track-container {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .stepper-step {
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
  }
  .candidate-header-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .brand-title {
    font-size: 0.82rem !important;
  }

  /* Step Actions Responsive Layout */
  #step-container-2 .btn-primary,
  #step-container-3 .btn,
  #step-container-final .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 11px 16px !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
  }

  .captcha-verification-box .form-control {
    width: 100% !important;
    text-align: center;
  }
}

/* Captcha Verification Box */
.captcha-verification-box {
  transition: all 0.2s ease;
}
.captcha-verification-box:focus-within {
  border-color: var(--primary-400) !important;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15) !important;
}
