:root {
  --sunny-orange: #f5891f;
  --sunny-orange-dark: #d96f00;
  --navy: #0f2745;
  --blue: #1e5b96;
  --light-bg: #fff7ef;
  --section-alt-bg: #fff7ed;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --line: #e5e7eb;
  --soft-shadow: 0 20px 60px rgba(15, 39, 69, 0.12);
  --card-shadow: 0 16px 40px rgba(15, 39, 69, 0.09);
  --radius-lg: 20px;
  --radius-md: 14px;
  --nav-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: "Be Vietnam Pro", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  padding-top: var(--nav-height);
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

section {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

.section-padding {
  padding: 72px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
}

.section-heading h2 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

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

.section-kicker,
.eyebrow,
.tab-label,
.small-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sunny-orange-dark);
  background: rgba(245, 137, 31, 0.11);
  border: 1px solid rgba(245, 137, 31, 0.2);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.78rem;
  font-weight: 700;
}

.banner-section .eyebrow {
  color: #ffffff;
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 30px rgba(15, 39, 69, 0.18);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: scale(1.02);
}

.btn-sunny {
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, var(--sunny-orange), var(--sunny-orange-dark));
  box-shadow: 0 12px 24px rgba(245, 137, 31, 0.28);
}

.btn-sunny:hover,
.btn-sunny:focus {
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(245, 137, 31, 0.36);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: #1e5b96;
  color: #ffffff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  color: #fff;
  background: #1e5b96;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--sunny-orange-dark);
  background: #fff1df;
  border-radius: 14px;
  font-size: 1.35rem;
}

.site-navbar {
  min-height: var(--nav-height);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.74);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 36px rgba(15, 39, 69, 0.1);
}

.site-navbar-inner {
  position: relative;
}

.site-navbar-collapse {
  align-items: center;
}

.site-navbar-menu-wrap {
  width: 100%;
}

.site-navbar-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
}

.site-navbar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

@media (min-width: 992px) {
  .site-navbar-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
  }

  .site-navbar-toggler {
    display: none;
  }

  .site-navbar-collapse {
    display: flex !important;
    grid-column: 2 / 4;
    justify-content: center;
    position: relative;
    width: 100%;
    height: auto !important;
    visibility: visible !important;
  }

  .site-navbar-menu-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    z-index: 2;
  }

  .site-navbar-menu {
    flex-direction: row;
  }

  .site-navbar-cta {
    margin-top: 0;
    margin-left: auto;
    min-width: 178px;
    justify-content: flex-end;
    z-index: 3;
  }

  .site-navbar .navbar-brand {
    min-width: 280px;
  }
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #ffffff;
  font-size: 0.8rem;
}

.brand-chip-seoul .brand-symbol {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.brand-x {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-chip-sunny {
  color: var(--sunny-orange-dark);
}

.brand-symbol-sunny {
  padding: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sunny-orange), var(--sunny-orange-dark));
}

.sunny-logo-img {
  display: block;
  width: auto;
  height: 24px;
  max-width: 26px;
  object-fit: contain;
  object-position: center;
}

.site-navbar-menu .nav-item {
  position: relative;
}

.site-navbar-menu .nav-link {
  position: relative;
  color: #4b5563;
  font-size: 1.14rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 0;
  transition: color 0.22s ease;
}

.site-navbar-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sunny-orange), var(--sunny-orange-dark));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.site-navbar-menu .nav-link:hover,
.site-navbar-menu .nav-link:focus {
  color: var(--navy);
  background: transparent;
}

.site-navbar-menu .nav-link.active {
  color: var(--sunny-orange-dark);
  background: transparent;
  box-shadow: none;
}

.site-navbar-menu .nav-link.active::after {
  transform: scaleX(1);
}

.site-navbar-toggler {
  border: 1px solid rgba(15, 39, 69, 0.1);
  border-radius: 12px;
  padding: 8px 10px;
}

.nav-cta-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 18px;
  font-size: 0.95rem;
  isolation: isolate;
  animation: ctaWiggle 2.4s ease-in-out infinite;
}

.nav-cta-ring::before,
.nav-cta-ring::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 2px solid rgba(245, 137, 31, 0.42);
  border-radius: inherit;
  opacity: 0;
  animation: ctaRing 2.4s ease-out infinite;
}

.nav-cta-ring::after {
  animation-delay: 1.2s;
}

.nav-cta-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sunny-orange-dark);
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(15, 39, 69, 0.14);
  animation: phoneTilt 1.7s ease-in-out infinite;
}

@keyframes ctaRing {
  0% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes ctaWiggle {
  0%,
  72%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  76% {
    transform: rotate(-1.5deg) scale(1.015);
  }
  80% {
    transform: rotate(1.5deg) scale(1.015);
  }
  84% {
    transform: rotate(-1deg) scale(1.01);
  }
  88% {
    transform: rotate(1deg) scale(1.01);
  }
}

@keyframes phoneTilt {
  0%,
  60%,
  100% {
    transform: rotate(0deg);
  }
  68% {
    transform: rotate(-13deg);
  }
  76% {
    transform: rotate(13deg);
  }
  84% {
    transform: rotate(-8deg);
  }
}

.navbar-toggler {
  border: 0;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(245, 137, 31, 0.22);
}

.banner-section {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #0a192f;
  background-image:
    linear-gradient(
      to right,
      rgba(10, 25, 47, 0.94) 0%,
      rgba(12, 32, 55, 0.9) 38%,
      rgba(15, 39, 69, 0.76) 58%,
      rgba(18, 48, 76, 0.42) 74%,
      rgba(22, 55, 84, 0.16) 86%,
      transparent 94%
    ),
    url("../images/seoultech-campus.png");
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, cover;
  background-position: center, center;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(30, 91, 150, 0.14), transparent 32%);
  pointer-events: none;
}

.banner-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(10, 25, 47, 0.22), transparent);
  pointer-events: none;
}

.banner-container {
  position: relative;
  z-index: 1;
  padding-top: clamp(38px, 5vh, 64px);
  padding-bottom: clamp(42px, 6vh, 72px);
}

.banner-copy {
  max-width: 760px;
}

.banner-label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.banner-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.banner-copy h1 {
  margin: 18px 0 16px;
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.banner-subtitle {
  max-width: 710px;
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
}

.banner-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.banner-value-card {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.banner-value-card span {
  display: block;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.banner-value-card p {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.banner-actions {
  /*display: flex;*/
  flex-wrap: wrap;
  gap: 12px;
}

.banner-actions .btn {
  font-size: 1.18rem;
  font-weight: 800;
}

.banner-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 640px;
  margin-top: 14px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.banner-note i {
  color: #ffd7ad;
  font-size: 1.08rem;
}

.banner-pass {
  max-width: 520px;
  margin-left: auto;
}

.banner-image-frame {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  border: 2px solid rgba(245, 137, 31, 0.72);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(245, 137, 31, 0.16);
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--sunny-orange), var(--sunny-orange-dark));
}

.banner-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(245, 137, 31, 0.36), rgba(245, 137, 31, 0.08) 48%, rgba(15, 39, 69, 0.16));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.banner-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-image-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  gap: 2px;
  min-width: 116px;
  padding: 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(15, 39, 69, 0.18);
  backdrop-filter: blur(12px);
}

.banner-image-badge strong {
  color: var(--sunny-orange-dark);
  font-size: 1.85rem;
  line-height: 1;
}

.banner-image-badge span {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.pass-card {
  position: relative;
  margin: 0;
  padding: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.pass-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.pass-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
}

.seat-badge,
.highlight-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffffff;
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.pass-meta {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.pass-meta div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.pass-meta i {
  color: var(--sunny-orange-dark);
  font-size: 1rem;
}

.seat-progress {
  padding: 14px;
  background: var(--light-bg);
  border: 1px solid rgba(245, 137, 31, 0.22);
  border-radius: 18px;
}

.seat-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
}

.seat-progress-bar {
  overflow: hidden;
  height: 9px;
  background: #ffe0bd;
  border-radius: 999px;
}

.seat-progress-bar span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--sunny-orange), var(--sunny-orange-dark));
  border-radius: inherit;
}

.section-overlap {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}

.stat-card,
.feature-card,
.step-card,
.form-card,
.detail-box,
.schedule-note,
.timeline {
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--card-shadow);
}

.stat-card,
.feature-card,
.step-card {
  height: 100%;
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.stat-card:hover,
.feature-card:hover,
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 137, 31, 0.28);
  box-shadow: 0 22px 52px rgba(15, 39, 69, 0.13);
}

.stat-card h2 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
}

.stat-card p,
.feature-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-card h3,
.step-card h3,
.timeline-content h3,
.site-footer h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.reasons-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(245, 137, 31, 0.08), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(30, 91, 150, 0.1), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #fff9f3 100%);
}

.reasons-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(15, 39, 69, 0.03) 0 1px, transparent 1px 72px);
  pointer-events: none;
}

.reasons-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.reasons-heading > div {
  max-width: 760px;
}

.reasons-heading h2 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.reasons-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.reasons-heading-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  color: #ffffff;
  background: var(--navy);
  border: 1px solid rgba(15, 39, 69, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(15, 39, 69, 0.16);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.reasons-heading-cta:hover,
.reasons-heading-cta:focus {
  color: #ffffff;
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 39, 69, 0.2);
}

.reasons-grid {
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.reason-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  height: 100%;
  overflow: hidden;
  padding: 26px 24px 22px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 26px;
  box-shadow:
    0 18px 40px rgba(15, 39, 69, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.reason-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--sunny-orange), var(--blue));
  opacity: 0.92;
}

.reason-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 91, 150, 0.12), transparent 70%);
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.reasons-grid > div:nth-child(1) .reason-card::before {
  background: linear-gradient(90deg, var(--sunny-orange), #ff9f43);
}

.reasons-grid > div:nth-child(2) .reason-card::before {
  background: linear-gradient(90deg, var(--blue), #3b82c4);
}

.reasons-grid > div:nth-child(3) .reason-card::before {
  background: linear-gradient(90deg, var(--navy), var(--blue));
}

.reasons-grid > div:nth-child(4) .reason-card::before {
  background: linear-gradient(90deg, var(--sunny-orange), var(--blue));
}

.reason-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 91, 150, 0.22);
  box-shadow:
    0 28px 56px rgba(15, 39, 69, 0.14),
    0 0 0 1px rgba(30, 91, 150, 0.06);
}

.reason-card:hover::after {
  transform: scale(1.15);
  opacity: 1;
}

.reason-watermark {
  position: absolute;
  top: 10px;
  right: 14px;
  color: rgba(15, 39, 69, 0.06);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.reason-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.reason-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 39, 69, 0.18);
  font-size: 1.35rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.reason-card:hover .reason-icon {
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 16px 28px rgba(15, 39, 69, 0.22);
}

.reason-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--navy);
  background: rgba(15, 39, 69, 0.05);
  border: 1px solid rgba(15, 39, 69, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.reason-metric {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.reason-metric span {
  font-size: 1.15rem;
  color: var(--sunny-orange-dark);
  font-weight: 800;
}

.reason-metric--amount {
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.reason-metric--amount span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.reason-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.34;
}

.reason-card p {
  margin: 0;
  color: #5b6472;
  font-size: 0.88rem;
  line-height: 1.65;
}

.reason-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
}

.reason-card-foot i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: rgba(15, 39, 69, 0.05);
  border-radius: 50%;
  font-size: 0.9rem;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.reason-card:hover .reason-card-foot i {
  transform: translate(2px, -2px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--sunny-orange), var(--sunny-orange-dark));
}

.department-section {
  background: var(--section-alt-bg);
}

.department-section .reasons-heading {
  margin-bottom: 36px;
}

.department-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.department-info p {
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.68;
}

.department-info p:last-of-type {
  margin-bottom: 22px;
}

.department-media {
  height: 100%;
}

.department-photo {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  background: #eef2f7;
  box-shadow: 0 22px 50px rgba(15, 39, 69, 0.12);
}

.department-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.department-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 39, 69, 0.48), transparent 58%);
  pointer-events: none;
}

.department-photo-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  max-width: 260px;
  padding: 14px;
  color: #ffffff;
  background: rgba(15, 39, 69, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.department-photo-badge strong,
.department-photo-badge span {
  display: block;
}

.department-photo-badge strong {
  font-size: 1rem;
  font-weight: 800;
}

.department-photo-badge span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.department-meta {
  display: grid;
  gap: 10px;
}

.department-meta div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  background: var(--light-bg);
  border: 1px solid rgba(245, 137, 31, 0.18);
  border-radius: 16px;
}

.department-meta i {
  color: var(--sunny-orange-dark);
  font-size: 1.05rem;
}

.department-meta span {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.48;
}

.scholarship-section,
.schedule-section {
  background: #ffffff;
}

.scholarship-cards {
  display: grid;
  gap: 22px;
}

.scholarship-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(15, 39, 69, 0.08);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.scholarship-card.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.scholarship-card.reveal:nth-child(1) { transition-delay: 0s; }
.scholarship-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.scholarship-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.scholarship-card.reveal:nth-child(4) { transition-delay: 0.3s; }

.scholarship-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  background-size: 200% 100%;
}

.scholarship-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--sunny-orange), var(--sunny-orange-dark), #ff9f43);
  background-size: 200% 100%;
}

.scholarship-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--blue), #3b82c4, #5a9fd4);
  background-size: 200% 100%;
}

.scholarship-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--navy), var(--blue), #2f74b5);
  background-size: 200% 100%;
}

.scholarship-card:nth-child(4)::before {
  background: linear-gradient(90deg, #6b7280, #9ca3af, #6b7280);
  background-size: 200% 100%;
}

.scholarship-card:hover::before {
  animation: scholarshipBarShift 2.2s ease infinite;
}

.scholarship-card-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  pointer-events: none;
}

.scholarship-card:hover .scholarship-card-shine {
  animation: scholarshipShine 0.85s ease;
}

.scholarship-card-watermark {
  position: absolute;
  right: 20px;
  bottom: 16px;
  z-index: 0;
  color: rgba(15, 39, 69, 0.05);
  font-size: 4.8rem;
  line-height: 1;
  pointer-events: none;
  transition: transform 0.45s ease, color 0.45s ease;
}

.scholarship-card:nth-child(1) .scholarship-card-watermark {
  color: rgba(245, 137, 31, 0.08);
}

.scholarship-card:nth-child(2) .scholarship-card-watermark {
  color: rgba(30, 91, 150, 0.08);
}

.scholarship-card:hover .scholarship-card-watermark {
  transform: scale(1.06) rotate(-6deg);
}

.scholarship-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 91, 150, 0.22);
  box-shadow: 0 28px 58px rgba(15, 39, 69, 0.14);
}

.scholarship-card > *:not(.scholarship-card-shine):not(.scholarship-card-watermark) {
  position: relative;
  z-index: 3;
}

.scholarship-card .highlight-pill {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #1a4d7c);
  box-shadow: 0 8px 20px rgba(15, 39, 69, 0.18);
  animation: scholarshipPillPulse 3.5s ease-in-out infinite;
}

.scholarship-card:nth-child(1) .highlight-pill {
  background: linear-gradient(135deg, var(--sunny-orange-dark), var(--sunny-orange));
  box-shadow: 0 8px 20px rgba(217, 111, 0, 0.22);
}

.scholarship-card:nth-child(2) .highlight-pill {
  background: linear-gradient(135deg, #174f82, var(--blue));
  box-shadow: 0 8px 20px rgba(30, 91, 150, 0.22);
}

.scholarship-card .highlight-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-120%);
  animation: scholarshipPillShimmer 4s ease-in-out infinite;
}

.scholarship-card.reveal.is-visible .tab-title-row,
.scholarship-card.reveal.is-visible .tab-intro,
.scholarship-card.reveal.is-visible .scholarship-table-wrap,
.scholarship-card.reveal.is-visible .scholarship-undergraduate-body,
.scholarship-card.reveal.is-visible .scholarship-note,
.scholarship-card.reveal.is-visible .partner-block {
  animation: scholarshipContentIn 0.6s ease both;
}

.scholarship-card.reveal.is-visible .tab-title-row { animation-delay: 0.12s; }
.scholarship-card.reveal.is-visible .tab-intro { animation-delay: 0.2s; }

.scholarship-card.reveal.is-visible .detail-box,
.scholarship-card.reveal.is-visible .scholarship-followup-box {
  animation: scholarshipContentIn 0.55s ease both;
}

.scholarship-card.reveal.is-visible .row .col-lg-6:nth-child(1) .detail-box { animation-delay: 0.22s; }
.scholarship-card.reveal.is-visible .row .col-lg-6:nth-child(2) .detail-box { animation-delay: 0.34s; }
.scholarship-card.reveal.is-visible .scholarship-table-wrap { animation-delay: 0.22s; }
.scholarship-card.reveal.is-visible .scholarship-followup-box { animation-delay: 0.34s; }
.scholarship-card.reveal.is-visible .partner-block { animation-delay: 0.4s; }
.scholarship-card.reveal.is-visible .scholarship-note { animation-delay: 0.46s; }

.scholarship-card .detail-box {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.scholarship-card .detail-box:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 137, 31, 0.28);
  box-shadow: 0 16px 34px rgba(15, 39, 69, 0.08);
}

.scholarship-card .check-list li {
  opacity: 0;
  transform: translateX(-8px);
}

.scholarship-card.reveal.is-visible .check-list li {
  animation: scholarshipListIn 0.45s ease both;
}

.scholarship-card.reveal.is-visible .check-list li:nth-child(1) { animation-delay: 0.3s; }
.scholarship-card.reveal.is-visible .check-list li:nth-child(2) { animation-delay: 0.36s; }
.scholarship-card.reveal.is-visible .check-list li:nth-child(3) { animation-delay: 0.42s; }
.scholarship-card.reveal.is-visible .check-list li:nth-child(4) { animation-delay: 0.48s; }
.scholarship-card.reveal.is-visible .check-list li:nth-child(5) { animation-delay: 0.54s; }
.scholarship-card.reveal.is-visible .check-list li:nth-child(6) { animation-delay: 0.6s; }

.scholarship-card .partner-tags span {
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.scholarship-card .partner-tags span:hover {
  transform: translateY(-3px);
  background: #fff8f1;
  border-color: rgba(245, 137, 31, 0.28);
}

.scholarship-table tbody tr {
  opacity: 0;
  transform: translateY(8px);
}

.scholarship-card.reveal.is-visible .scholarship-table tbody tr {
  animation: scholarshipContentIn 0.45s ease both;
}

.scholarship-card.reveal.is-visible .scholarship-table tbody tr:nth-child(1) { animation-delay: 0.28s; }
.scholarship-card.reveal.is-visible .scholarship-table tbody tr:nth-child(2) { animation-delay: 0.36s; }
.scholarship-card.reveal.is-visible .scholarship-table tbody tr:nth-child(3) { animation-delay: 0.44s; }

.scholarship-table tbody tr {
  transition: background 0.2s ease;
}

.scholarship-table tbody tr:hover td {
  background: #fff8f1;
}

@keyframes scholarshipBarShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes scholarshipShine {
  0% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(130%);
  }
}

@keyframes scholarshipPillPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

@keyframes scholarshipPillShimmer {
  0%,
  70%,
  100% {
    transform: translateX(-120%);
  }

  85% {
    transform: translateX(120%);
  }
}

@keyframes scholarshipContentIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes scholarshipListIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

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

.tab-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.scholarship-card .tab-title-row {
  margin-top: 4px;
}

.tab-title-row h3 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.24;
}

.tab-intro {
  max-width: 850px;
  margin: 0 0 24px;
  color: var(--muted);
}

.detail-box {
  height: 100%;
  padding: 24px;
  background: #f8fafc;
  border: 1px solid #e6edf5;
  border-radius: 20px;
  box-shadow: none;
}

.detail-box-accent {
  background: var(--light-bg);
  border-color: rgba(245, 137, 31, 0.2);
}

.detail-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 800;
}

.detail-box h4 i {
  color: var(--sunny-orange-dark);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-size: 0.94rem;
}

.check-list li::before {
  content: "\F26E";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--sunny-orange-dark);
  font-family: "bootstrap-icons";
  font-weight: 400;
}

.check-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.partner-block h4 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--navy);
  background: #f3f6fa;
  border: 1px solid #e3e9f1;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.scholarship-card .scholarship-table-wrap {
  margin-top: 8px;
}

.scholarship-undergraduate-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scholarship-followup-box,
#scholarship-undergraduate .detail-box {
  height: auto;
  margin: 0;
}

#scholarship-undergraduate .scholarship-card-watermark {
  top: 72px;
  right: 18px;
  bottom: auto;
}

#scholarship-undergraduate .scholarship-note {
  margin-top: 20px;
}

.scholarship-table-wrap {
  padding: 10px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.scholarship-table {
  margin: 0;
  min-width: 860px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
}

.scholarship-table th,
.scholarship-table td {
  padding: 14px 18px;
  vertical-align: middle;
}

.scholarship-table th {
  color: #ffffff;
  background: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  border: none;
}

.scholarship-table td {
  color: #334155;
  font-size: 0.92rem;
  border-color: #e8eef5;
}

.scholarship-table tbody tr:last-child td {
  border-bottom: none;
}

.scholarship-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.audience-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 137, 31, 0.07), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(30, 91, 150, 0.08), transparent 34%),
    linear-gradient(180deg, #fff9f3 0%, #ffffff 48%, #f8fbff 100%);
}

.audience-section .reasons-heading {
  margin-bottom: 36px;
}

.audience-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 18px;
  margin-bottom: 22px;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 10%, rgba(245, 137, 31, 0.32), transparent 36%),
    linear-gradient(135deg, var(--navy), #143f68);
  border: 1px solid rgba(15, 39, 69, 0.1);
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(15, 39, 69, 0.16);
}

.audience-feature-main {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.audience-feature-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #ffd7ad;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  font-size: 1.45rem;
}

.audience-feature-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffd7ad;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audience-feature-main h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
}

.audience-feature-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.65;
}

.audience-feature-stats {
  display: grid;
  gap: 10px;
  align-content: center;
}

.audience-stat {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}

.audience-stat strong,
.audience-stat span {
  display: block;
}

.audience-stat strong {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.audience-stat span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 650;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.audience-item:nth-child(-n + 3) {
  grid-column: span 2;
}

.audience-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(15, 39, 69, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.audience-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sunny-orange), var(--blue));
}

.audience-item:nth-child(1)::before {
  background: linear-gradient(90deg, var(--sunny-orange), #ff9f43);
}

.audience-item:nth-child(2)::before {
  background: linear-gradient(90deg, var(--blue), #3b82c4);
}

.audience-item:nth-child(3)::before {
  background: linear-gradient(90deg, var(--navy), var(--blue));
}

.audience-item:nth-child(4)::before {
  background: linear-gradient(90deg, var(--sunny-orange), var(--blue));
}

.audience-item:nth-child(5)::before {
  background: linear-gradient(90deg, #6b7280, #9ca3af);
}

.audience-item:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 91, 150, 0.2);
  box-shadow: 0 24px 52px rgba(15, 39, 69, 0.12);
}

.audience-item:nth-child(4),
.audience-item-wide {
  grid-column: span 3;
  min-height: auto;
}

.audience-watermark {
  position: absolute;
  top: 8px;
  right: 14px;
  color: rgba(15, 39, 69, 0.06);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.audience-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.audience-item-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(15, 39, 69, 0.16);
  font-size: 1.25rem;
}

.audience-item-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--navy);
  background: rgba(15, 39, 69, 0.05);
  border: 1px solid rgba(15, 39, 69, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.audience-item h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.34;
}

.audience-item p {
  margin: 0;
  color: #5b6472;
  font-size: 0.88rem;
  line-height: 1.62;
}

.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 192px;
  width: 2px;
  background: linear-gradient(180deg, var(--sunny-orange), var(--blue));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 42px;
  padding: 18px 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 158px;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--sunny-orange);
  box-shadow: 0 0 0 5px rgba(245, 137, 31, 0.16);
}

.timeline-time {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.timeline-content {
  padding: 18px 20px;
  border: 1px solid #e6edf5;
  border-radius: 16px;
  background: #f8fafc;
}

.timeline-content h3 {
  margin-top: 0;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
}

.schedule-note {
  max-width: 920px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px auto 0;
  padding: 18px;
  background: var(--navy);
  border-color: rgba(15, 39, 69, 0.2);
  color: #ffffff;
}

.schedule-note i {
  color: #ffd7ad;
  font-size: 1.4rem;
}

.schedule-note p {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.step-card {
  position: relative;
  overflow: hidden;
}

#process {
  background: var(--section-alt-bg);
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sunny-orange), var(--blue));
  border-radius: 999px 999px 0 0;
}

.step-number {
  display: inline-flex;
  color: var(--sunny-orange-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.registration-section {
  background:
    linear-gradient(135deg, rgba(255, 247, 239, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(237, 244, 252, 0.94) 100%);
}

.registration-copy h2 {
  margin: 12px 0 14px;
  color: var(--navy);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.registration-copy p {
  color: var(--muted);
}

.registration-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.registration-points div {
  display: flex;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
}

.registration-points i {
  color: var(--sunny-orange-dark);
}

.form-card {
  padding: 30px;
}

.form-card h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 800;
}

.form-label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-label span {
  color: var(--sunny-orange-dark);
}

.form-control,
.form-select {
  min-height: 52px;
  color: var(--text);
  border-color: #d8e0ea;
  border-radius: 12px;
  font-size: 0.95rem;
}

textarea.form-control {
  min-height: 118px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--sunny-orange);
  box-shadow: 0 0 0 4px rgba(245, 137, 31, 0.16);
}

.form-microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.form-alert .alert {
  border-radius: 14px;
}

.sunny-proof {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(245, 137, 31, 0.07), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(30, 91, 150, 0.08), transparent 34%),
    linear-gradient(180deg, #fff9f3 0%, #ffffff 52%, #f8fbff 100%);
}

.sunny-proof .reasons-heading {
  margin-bottom: 36px;
}

.sunny-assurance-panel {
  display: grid;
  gap: 22px;
}

.sunny-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.85fr);
  gap: 18px;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.22), transparent 36%),
    radial-gradient(circle at 88% 88%, rgba(217, 111, 0, 0.35), transparent 40%),
    linear-gradient(135deg, #ff9a3d 0%, var(--sunny-orange) 48%, var(--sunny-orange-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(217, 111, 0, 0.24);
}

.sunny-hero-main {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.sunny-hero-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--sunny-orange-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  font-size: 1.45rem;
}

.sunny-hero-label {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sunny-hero-main h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
}

.sunny-hero-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.65;
}

.sunny-hero-badges {
  display: grid;
  gap: 10px;
  align-content: center;
}

.sunny-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  font-size: 0.86rem;
  font-weight: 750;
}

.sunny-hero-badges i {
  color: var(--sunny-orange-dark);
  font-size: 1rem;
}

.sunny-workflow-block {
  padding: 26px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(15, 39, 69, 0.08);
}

.sunny-workflow-head {
  margin-bottom: 18px;
  text-align: center;
}

.sunny-workflow-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--sunny-orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sunny-workflow-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.24;
}

.sunny-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sunny-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 128px;
  padding: 16px;
  background: #f9fbfd;
  border: 1px solid #e6edf5;
  border-radius: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sunny-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 137, 31, 0.28);
  box-shadow: 0 14px 30px rgba(15, 39, 69, 0.08);
}

.sunny-card-num {
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(15, 39, 69, 0.1);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.sunny-card-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sunny-orange-dark);
  background: #fff0df;
  border: 1px solid rgba(245, 137, 31, 0.2);
  border-radius: 12px;
  font-size: 1rem;
}

.sunny-card:nth-child(4) .sunny-card-icon {
  color: var(--blue);
  background: #eaf3fb;
  border-color: rgba(30, 91, 150, 0.2);
}

.sunny-card:nth-child(5) .sunny-card-icon,
.sunny-card:nth-child(6) .sunny-card-icon {
  color: var(--navy);
  background: #edf2f8;
  border-color: rgba(15, 39, 69, 0.14);
}

.sunny-card p {
  margin: 0;
  padding-right: 28px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.sunny-card-phase {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 24px;
  margin-top: auto;
  padding: 3px 8px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid #e6edf5;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}

.sunny-card:nth-child(-n + 3) .sunny-card-phase {
  color: var(--sunny-orange-dark);
  border-color: rgba(245, 137, 31, 0.2);
  background: #fff8f1;
}

.sunny-card:nth-child(4) .sunny-card-phase {
  color: var(--blue);
  border-color: rgba(30, 91, 150, 0.2);
  background: #f3f8fd;
}

.sunny-card:nth-child(n + 5) .sunny-card-phase {
  color: var(--navy);
  border-color: rgba(15, 39, 69, 0.12);
  background: #f5f7fa;
}

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

.sunny-metric {
  position: relative;
  padding: 22px 18px;
  text-align: center;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(15, 39, 69, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sunny-metric::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sunny-orange), var(--sunny-orange-dark));
}

.sunny-metric:nth-child(2)::before {
  background: linear-gradient(90deg, var(--blue), #3b82c4);
}

.sunny-metric:nth-child(3)::before {
  background: linear-gradient(90deg, var(--navy), var(--blue));
}

.sunny-metric:nth-child(4)::before {
  background: linear-gradient(90deg, #6b7280, #9ca3af);
}

.sunny-metric:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 137, 31, 0.24);
  box-shadow: 0 22px 46px rgba(15, 39, 69, 0.11);
}

.sunny-metric-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--sunny-orange-dark);
  background: #fff0df;
  border: 1px solid rgba(245, 137, 31, 0.2);
  border-radius: 14px;
  font-size: 1.1rem;
}

.sunny-metric:nth-child(2) .sunny-metric-icon {
  color: var(--blue);
  background: #eaf3fb;
  border-color: rgba(30, 91, 150, 0.2);
}

.sunny-metric:nth-child(3) .sunny-metric-icon {
  color: var(--navy);
  background: #edf2f8;
  border-color: rgba(15, 39, 69, 0.14);
}

.sunny-metric:nth-child(4) .sunny-metric-icon {
  color: #4b5563;
  background: #f3f4f6;
  border-color: rgba(107, 114, 128, 0.2);
}

.sunny-metric strong {
  display: block;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.sunny-metric p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 52px 0 92px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 137, 31, 0.24), transparent 32%),
    linear-gradient(135deg, #081a30 0%, var(--navy) 54%, #102f53 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 86px);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
  padding: 30px;
  color: var(--navy);
  background: linear-gradient(135deg, #ffffff 0%, #fff7ef 100%);
  border: 1px solid rgba(245, 137, 31, 0.22);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  transform: none;
}

.footer-cta-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--sunny-orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-cta h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.25;
}

.footer-cta p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.65fr);
  gap: 24px;
  margin-top: -6px;
}

.footer-brand-panel,
.footer-contact-card,
.footer-branch {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.footer-brand-panel {
  padding: 28px;
}

.site-footer .brand-chip,
.site-footer .brand-x {
  color: #ffffff;
}

.footer-brand-panel p {
  max-width: 600px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
}

.footer-trust strong {
  color: #ffd7ad;
  font-weight: 800;
}

.footer-contact-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
}

.footer-card-label {
  color: #ffd7ad;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-hotline,
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  border-radius: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-hotline {
  padding: 16px;
  background: rgba(245, 137, 31, 0.18);
  border: 1px solid rgba(245, 137, 31, 0.34);
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-contact-link {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-hotline:hover,
.footer-contact-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
  background: rgba(245, 137, 31, 0.24);
}

.footer-hotline i,
.footer-contact-link i {
  color: #ffd7ad;
}

.footer-branches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.footer-branch {
  min-height: 234px;
  padding: 20px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.footer-branch:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 137, 31, 0.32);
  background: rgba(255, 255, 255, 0.11);
}

.footer-branch-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffd7ad;
  background: rgba(245, 137, 31, 0.16);
  border: 1px solid rgba(245, 137, 31, 0.24);
  border-radius: 14px;
  font-size: 1.1rem;
}

.footer-branch h3 {
  margin: 16px 0 10px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.footer-branch p,
.footer-branch span {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.58;
}

.footer-branch a {
  display: inline-flex;
  margin-top: 14px;
  color: #ffd7ad;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
}

.footer-legal p {
  max-width: 900px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  color: #ffffff;
  background: var(--sunny-orange);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-policy-links a:hover {
  color: #ffd7ad;
}

.floating-actions {
  position: fixed;
  z-index: 1050;
  pointer-events: none;
}

.floating-call-ring,
.floating-consult-btn {
  position: fixed;
  bottom: 24px;
  pointer-events: auto;
  border: 0;
  text-decoration: none;
  cursor: pointer;
}

.floating-call-ring {
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--sunny-orange-dark);
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(15, 39, 69, 0.2);
  isolation: isolate;
  animation: ctaWiggle 2.4s ease-in-out infinite;
}

.floating-call-ring::before,
.floating-call-ring::after {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border: 2px solid rgba(245, 137, 31, 0.45);
  border-radius: 50%;
  opacity: 0;
  animation: ctaRing 2.4s ease-out infinite;
}

.floating-call-ring::after {
  animation-delay: 1.2s;
}

.floating-call-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sunny-orange), var(--sunny-orange-dark));
  border-radius: 50%;
  font-size: 1.05rem;
  animation: phoneTilt 1.7s ease-in-out infinite;
}

.floating-consult-btn {
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 18px 0 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sunny-orange), var(--sunny-orange-dark));
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(217, 111, 0, 0.32);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-consult-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(217, 111, 0, 0.38);
}

.floating-consult-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sunny-orange-dark);
  background: #ffffff;
  border-radius: 50%;
  font-size: 1rem;
}

.floating-consult-text {
  padding-right: 4px;
  white-space: nowrap;
}

.registration-modal .modal-dialog {
  max-width: 920px;
}

.registration-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: transparent;
  box-shadow: none;
}

.registration-modal .modal-body {
  padding: 0;
}

.registration-modal .modal-form-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(15, 39, 69, 0.28);
}

.registration-modal .modal-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--sunny-orange), var(--sunny-orange-dark));
  border-radius: 26px 26px 0 0;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
}

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

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

.scholarship-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .scholarship-card .highlight-pill,
  .scholarship-card .highlight-pill::after,
  .scholarship-card:hover::before {
    animation: none;
  }

  .scholarship-card:hover .scholarship-card-shine {
    animation: none;
  }

  .scholarship-card .check-list li,
  .scholarship-table tbody tr {
    opacity: 1;
    transform: none;
  }

  .scholarship-card.reveal.is-visible .tab-title-row,
  .scholarship-card.reveal.is-visible .tab-intro,
  .scholarship-card.reveal.is-visible .detail-box,
  .scholarship-card.reveal.is-visible .scholarship-table-wrap,
  .scholarship-card.reveal.is-visible .scholarship-note,
  .scholarship-card.reveal.is-visible .partner-block,
  .scholarship-card.reveal.is-visible .check-list li,
  .scholarship-card.reveal.is-visible .scholarship-table tbody tr {
    animation: none;
  }
}

@media (max-width: 1199.98px) {
  .banner-copy h1 {
    font-size: 2.55rem;
  }
}

@media (max-width: 991.98px) {
  :root {
    --nav-height: 70px;
  }

  body {
    padding-top: var(--nav-height);
  }

  .site-navbar-collapse {
    margin-top: 14px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--card-shadow);
  }

  .site-navbar-menu-wrap {
    position: static;
    transform: none;
    width: 100%;
  }

  .site-navbar-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0;
    gap: 4px;
  }

  .site-navbar-menu .nav-link {
    text-align: center;
    font-size: 1.08rem;
    padding: 14px 18px;
  }

  .site-navbar-menu .nav-link::after {
    left: 18px;
    right: 18px;
    bottom: 8px;
  }

  .site-navbar-cta {
    width: 100%;
    margin-top: 10px;
  }

  .nav-cta-ring {
    justify-content: center;
    width: 100%;
  }

  .banner-section {
    min-height: calc(100svh - var(--nav-height));
    align-items: flex-start;
  }

  .banner-container {
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .banner-copy {
    margin: 0 auto;
    text-align: center;
  }

  .banner-label-row,
  .banner-actions {
    justify-content: center;
  }

  .banner-value-grid {
    text-align: left;
  }

  .banner-pass {
    margin: 0 auto;
  }

  .section-padding {
    padding: 58px 0;
  }

  .section-heading h2,
  .reasons-heading h2,
  .registration-copy h2 {
    font-size: 1.65rem;
  }

  .reasons-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .tab-title-row,
  .schedule-note {
    flex-direction: column;
  }

  .footer-cta,
  .footer-legal,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-policy-links {
    justify-content: flex-start;
  }

  .sunny-hero {
    grid-template-columns: 1fr;
  }

  .sunny-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sunny-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-feature {
    grid-template-columns: 1fr;
  }

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

  .audience-item:nth-child(-n + 3),
  .audience-item:nth-child(4),
  .audience-item-wide {
    grid-column: auto;
  }

  .department-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline::before {
    left: 31px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 44px;
  }

  .timeline-item::before {
    left: -3px;
  }

  .timeline-time {
    padding-top: 2px;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 76px;
  }

  .section-padding {
    padding: 46px 0;
  }

  .brand-text {
    display: none;
  }

  .banner-copy h1 {
    font-size: 2rem;
  }

  .banner-subtitle {
    font-size: 0.94rem;
  }

  .banner-value-grid,
  .audience-grid,
  .check-list-grid {
    grid-template-columns: 1fr;
  }

  .audience-item:nth-child(-n + 3),
  .audience-item:nth-child(4),
  .audience-item-wide {
    grid-column: auto;
  }

  .audience-feature {
    padding: 22px;
    border-radius: 22px;
  }

  .audience-feature-main {
    flex-direction: column;
    gap: 14px;
  }

  .audience-feature-main h3 {
    font-size: 1.2rem;
  }

  .banner-value-card {
    min-height: auto;
  }

  .pass-card {
    margin: 0;
    padding: 18px;
  }

  .pass-card-head {
    flex-direction: column;
  }

  .section-overlap {
    margin-top: -38px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: 1.72rem;
  }

  .audience-section .reasons-heading {
    margin-bottom: 28px;
  }

  .department-photo {
    border-radius: 18px;
  }

  .department-section .reasons-heading {
    margin-bottom: 28px;
  }

  .reasons-heading {
    margin-bottom: 28px;
  }

  .reasons-heading h2 {
    font-size: 1.72rem;
  }

  .reasons-heading-cta {
    width: 100%;
  }

  .reason-card {
    min-height: auto;
    padding: 22px 20px 20px;
  }

  .reason-watermark {
    font-size: 3.6rem;
  }

  .reason-metric {
    font-size: 1.85rem;
  }

  .scholarship-card,
  .form-card {
    padding: 20px;
  }

  .scholarship-table-wrap {
    padding: 8px;
  }

  .scholarship-table th,
  .scholarship-table td {
    padding: 12px 14px;
  }

  .tab-title-row h3 {
    font-size: 1.42rem;
  }

  .timeline {
    padding: 16px;
  }

  .sunny-proof .reasons-heading {
    margin-bottom: 28px;
  }

  .sunny-hero {
    padding: 22px;
    border-radius: 22px;
  }

  .sunny-hero-main {
    flex-direction: column;
    gap: 14px;
  }

  .sunny-hero-main h3 {
    font-size: 1.18rem;
  }

  .sunny-workflow-block {
    padding: 20px;
    border-radius: 22px;
  }

  .sunny-workflow-head h3 {
    font-size: 1.2rem;
  }

  .sunny-cards,
  .sunny-metrics {
    grid-template-columns: 1fr;
  }

  .sunny-card {
    min-height: auto;
  }

  .schedule-note .btn {
    width: 100%;
  }

  .floating-call-ring,
  .floating-consult-btn {
    bottom: 18px;
  }

  .floating-call-ring {
    left: 16px;
  }

  .floating-consult-btn {
    right: 16px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .footer-cta {
    padding: 22px;
    border-radius: 22px;
  }

  .footer-cta h2 {
    font-size: 1.38rem;
  }

  .footer-cta .btn {
    width: 100%;
  }

  .footer-brand-panel,
  .footer-contact-card,
  .footer-branch {
    border-radius: 20px;
  }

  .footer-branches {
    grid-template-columns: 1fr;
  }

  .footer-branch {
    min-height: auto;
  }

  .footer-social {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .banner-copy h1 {
    font-size: 1.85rem;
  }

  .banner-actions .btn {
    width: 100%;
  }

  .banner-image-badge {
    right: 12px;
    bottom: 12px;
  }

  .floating-call-ring {
    left: 12px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .floating-consult-btn {
    right: 12px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 14px 0 12px;
    font-size: 0.86rem;
  }
}
