* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
:root {
  --bg: #ffffff;
  --surface: rgba(11,27,57,0.04);
  --surface-soft: rgba(11,27,57,0.06);
  --text: #071430;
  --muted: #6b7280;
  --accent: #4e6cff;
  --accent-strong: #7b5dff;
  --accent-soft: rgba(78,108,255,0.12);
  --border: rgba(11,27,57,0.06);
  --shadow: 0 18px 50px rgba(2,12,40,0.06);
}
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
.page-shell {
  width: 100%;
  min-height: 100vh;
}
.navbar {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(11,27,57,0.06);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  height: 100px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.14);
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
}
.navbar-menu {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0 auto;
}
.menu-item {
  position: relative;
}
.menu-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(7,20,48,0.9);
  transition: background 0.18s ease, color 0.18s ease;
}
.menu-item a { text-decoration: none; }
.menu-item a:hover,
.menu-item a:focus {
  background: rgba(78,108,255,0.08);
  color: var(--accent);
}

.menu-item.active a {
  background: linear-gradient(135deg, #5561ff, #4e6cff);
  color: #ffffff;
  box-shadow: 0 12px 36px rgba(78,108,255,0.18);
  padding: 12px 18px;
}

.menu-item.active::after { display: none; }
.navbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
  filter: brightness(1.08);
}
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at, rgba(255,255,255,0.35), transparent 42%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease, transform 0.24s ease;
  pointer-events: none;
}
.btn:hover::after {
  opacity: 1;
  transform: scale(1);
}
.btn:active::after {
  opacity: 0.55;
  transform: scale(1.1);
}
.btn-ghost {
  background: rgba(78,108,255,0.08);
  color: #3958d9;
  border: 1px solid rgba(78,108,255,0.24);
}
.btn-ghost:hover,
.btn-ghost:focus {
  background: rgba(78,108,255,0.16);
  color: #2d4dc4;
}
.btn-login {
  background: linear-gradient(135deg, #4f6cff, #2d4ef2);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 16px 40px rgba(78,108,255,0.25);
}
.btn-login:hover,
.btn-login:focus {
  background: linear-gradient(135deg, #5d7dff, #3b5dff);
  box-shadow: 0 22px 56px rgba(78,108,255,0.3);
}
.btn-login:active {
  transform: translateY(0);
  box-shadow: 0 12px 28px rgba(78,108,255,0.2);
}
.btn-primary {
  background: linear-gradient(135deg, #4f6cff, #2d4ef2);
  color: #ffffff;
  box-shadow: 0 18px 60px rgba(78,108,255,0.22);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #3f5bff, #1d3ed2);
  box-shadow: 0 26px 80px rgba(78,108,255,0.35);
  transform: translateY(-2px);
}
.hero {
  width: calc(100% - 120px);
  max-width: 1380px;
  margin: 0 auto;
  padding: 36px 0 140px; 
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr; 
  gap: 36px;
  z-index: 1;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.eyebrow {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(78,108,255,0.12);
  color: #3f5bff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  max-width: fit-content;
}
.hero h1 {
  font-size: clamp(3rem, 4vw, 4.8rem);
  line-height: 0.95;
  max-width: 640px;
  color: var(--text);
}
.highlight {
  background: linear-gradient(90deg, #6c5dff, #42b7ff, #8c58ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-description {
  max-width: 560px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 22px 50px rgba(2,6,30,0.45);
}
.feature-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(78,108,255,0.18);
  color: #3554d4;
  font-size: 1.1rem;
}
.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #12204d;
}
.feature-card p {
  color: #4765d4;
  font-size: 0.92rem;
  line-height: 1.7;
}
.hero-scene {
  position: relative;
  min-height: 620px;
  border-radius: 0; 
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}
.scene-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(70, 110, 255, 0.12), transparent 14%),
              radial-gradient(circle at 80% 20%, rgba(125, 70, 255, 0.08), transparent 14%);
}

.scene-bg { display: none; }
.scene-map {
  position: absolute;
  inset: 0;
  display: none;
}
.emblem-ring {
  position: absolute;
  left: 50%;
  top: 36%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 4px solid rgba(78, 110, 255, 0.65);
  box-shadow: 0 0 100px rgba(78,110,255,0.42), inset 0 0 30px rgba(78,110,255,0.2), 0 0 60px rgba(78,110,255,0.3);
}

.emblem-inner {
   position: absolute;
   left: 50%;
   top: 36%;
   width: 285px;
   height: 285px;
   transform: translate(-50%, -50%);
   border-radius: 50%;
   background: radial-gradient(circle at center, rgba(20,32,72,0.98), rgba(10,18,40,0.95));
   box-shadow: inset 0 0 80px rgba(60,110,255,0.18), 0 0 50px rgba(78,110,255,0.35), 0 16px 50px rgba(6,18,50,0.5);
}

.emblem-icon {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 360px;
  transform: translate(-50%, -50%);
  z-index: 22;
  filter: drop-shadow(0 0 34px rgba(70,110,255,0.85));
}
.orbit-path,
.orbit-path-second {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.14);
  display: none;
}
.orbit-path {
  left: 70%;
  top: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
}
.orbit-path-second {
  left: 50%;
  top: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
}
.orbit-node {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: none;
  place-items: center;
  background: radial-gradient(circle, rgba(10,24,60,0.98), rgba(6,12,30,0.95));
  border: 1px solid rgba(100,130,255,0.22);
  box-shadow: 0 24px 46px rgba(4,12,40,0.6);
  color: #ffffff;
  font-size: 1.1rem;
}
.node-1 { top: 8%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 22%; right: 10%; }
.node-3 { top: 52%; right: 8%; }
.node-4 { bottom: 18%; right: 18%; }
.node-5 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.node-6 { top: 52%; left: 8%; }
.search-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 8;
  pointer-events: auto;
}
.search-card {
  width: calc(200% - 360px);
  max-width: 1400px;
  margin: 10 auto;
  padding: 24px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 22px 54px rgba(11,27,57,0.12);
  border: 1px solid rgba(13,34,93,0.08);
}
.search-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.tab {
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  color: #4b5e86;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.tab:hover,
.tab:focus {
  color: #2447d3;
  transform: translateY(-1px);
}
.tab.active {
  background: #ffffff;
  color: #2447d3;
  box-shadow: inset 0 -3px 0 0 #2447d3;
}
.search-fields {
  display: grid;
  grid-template-columns: 1.7fr minmax(170px,1fr) minmax(170px,1fr) auto;
  gap: 14px;
  align-items: center;
}
.search-label {
  display: block;
  font-size: 0.88rem;
  color: #49629e;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  min-height: 56px;
  min-width: 150px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(74,96,190,0.12);
  box-shadow: inset 0 1px 4px rgba(15,24,58,0.05);
}
.input-group i {
  color: #2447d3;
  font-size: 1rem;
}
.search-fields input,
.search-fields select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #16203c;
  font-size: 0.96rem;
  font-weight: 500;
}
.search-fields select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 32px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%233f6cff' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.search-fields select option {
  background: #ffffff;
  color: #101839;
}
.input-group::after {
  content: none;
}
.btn-action {
  min-width: 150px;
  padding: 14px 24px;
  background: #0f214f;
  color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(15,34,80,0.2);
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
}
.btn-action:hover,
.btn-action:focus {
  background: #162f78;
}
main {
  width: calc(100% - 120px);
  max-width: 1380px;
  margin: 0 auto;
  padding: 16px 0 80px;
}
.section {
  margin-top: 40px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 24px;
}
.section-label {
  display: inline-block;
  color: #3f5bff;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
}
.section-heading h2,
.jobs-table-card h3,
.resume-card h3,
.extra-card h4,
.footer h4 {
  margin: 0;
}
.section-heading h2 {
  font-size: 2.2rem;
  line-height: 1.1;
  color: #0f1f48;
  font-weight: 800;
}
.view-all-link {
  color: #3f5bff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  animation: pulse-glow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(63, 91, 255, 0.3));
}
.view-all-link:hover {
  color: #2447d3;
  filter: drop-shadow(0 0 12px rgba(36, 71, 211, 0.5));
  transform: translateX(4px);
  animation: pulse-glow 1s ease-in-out infinite;
}
.view-all-link i {
  transition: transform 0.3s ease;
}
.view-all-link:hover i {
  transform: translateX(3px);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
}
.category-card,
.stat-block,
.jobs-table-card,
.resume-card,
.extra-card,
.newsletter-card,
.footer-links > div {
  background: rgba(255,255,255,0.98);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(2, 14, 56, 0.08);
  border: 1px solid rgba(255,255,255,0.75);
}
.category-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 32px 28px;
  border-radius: 32px;
  background: rgba(255,255,255,0.99);
  box-shadow: 0 24px 70px rgba(11,27,57,0.14), 0 0 1px rgba(11,27,57,0.06);
  border: 1px solid rgba(11,27,57,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(78,108,255,0.18), 0 0 1px rgba(78,108,255,0.1);
  border-color: rgba(78,108,255,0.15);
}
.category-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  font-size: 1.4rem;
}
.bg-violet { background: linear-gradient(135deg, #8d68ff, #5e4cff); }
.bg-blue { background: linear-gradient(135deg, #3a67ff, #0071ff); }
.bg-cyan { background: linear-gradient(135deg, #38d1ff, #006df2); }
.bg-gold { background: linear-gradient(135deg, #f4ae48, #ff7b2d); }
.bg-red { background: linear-gradient(135deg, #ff5f78, #d436ff); }
.bg-purple { background: linear-gradient(135deg, #874cff, #5d6aff); }
.bg-slate { background: linear-gradient(135deg, #8ca2ff, #e7ecff); color: #1d2f57; }
.category-card h3 {
  font-size: 1.1rem;
  color: #0f1f48;
  line-height: 1.5;
  font-weight: 700;
}
.stats-strip {
  width: 100%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.stat-block {
  padding: 32px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15,33,80,0.96), rgba(8,18,50,0.94));
  color: #ffffff;
  border: 1px solid rgba(78,108,255,0.12);
  box-shadow: 0 20px 60px rgba(11,27,57,0.18), inset 0 0 20px rgba(78,108,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(78,108,255,0.2), inset 0 0 25px rgba(78,108,255,0.12);
}
.stat-block strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 800;
  color: #ffffff;
}
.stat-block span {
  color: rgba(255,255,255,0.8);
  font-size: 0.98rem;
  font-weight: 500;
}
.jobs-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 24px;
}
.jobs-table-card,
.resume-card {
  padding: 32px;
  border-radius: 28px;
}
.jobs-table-card {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 24px 70px rgba(11,27,57,0.14), 0 0 1px rgba(11,27,57,0.06);
  border: 1px solid rgba(11,27,57,0.05);
}
.card-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}
.jobs-table .table-head,
.jobs-table .table-row {
  display: grid;
  grid-template-columns: 2.3fr 1.2fr 1fr 0.9fr 0.9fr;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
}
.table-head {
  color: #3f5bff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  border-bottom: 2px solid rgba(63, 91, 255, 0.15);
}
.table-row {
  border-bottom: 1px solid rgba(14, 24, 60, 0.08);
  padding: 18px 0 !important;
}
.table-row:last-child {
  border-bottom: none;
}
.table-row.alternate {
  background: rgba(78,108,255,0.04);
  border-radius: 16px;
  margin: 4px 0;
}
.table-row span {
  color: #0f1f48;
  font-weight: 500;
}
.btn-ghost-purple {
  background: linear-gradient(135deg, rgba(63, 91, 255, 0.12), rgba(36, 71, 211, 0.08));
  color: #3f5bff;
  border: 1.5px solid rgba(63, 91, 255, 0.3);
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(63, 91, 255, 0.1);
}
.btn-ghost-purple:hover {
  background: linear-gradient(135deg, rgba(63, 91, 255, 0.2), rgba(36, 71, 211, 0.15));
  color: #2447d3;
  border-color: rgba(36, 71, 211, 0.4);
  box-shadow: 0 8px 20px rgba(63, 91, 255, 0.2);
  transform: translateY(-2px);
}
.resume-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: linear-gradient(135deg, rgba(15,33,80,0.96), rgba(8,18,50,0.94));
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(11,27,57,0.2), inset 0 0 20px rgba(78,108,255,0.08);
  border: 1px solid rgba(78,108,255,0.12);
}
.aside-card {
  min-height: 380px;
}
.aside-top {
  display: flex;
  gap: 18px;
  align-items: center;
}
.aside-top img {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(78,108,255,0.15), rgba(63,91,255,0.1));
  padding: 12px;
  border: 1px solid rgba(78,108,255,0.2);
  box-shadow: 0 8px 24px rgba(78,108,255,0.15);
}
.resume-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}
.resume-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.resume-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.82);
}
.resume-list i {
  color: #4e6cff;
  font-size: 1.1rem;
}
.btn-full {
  width: 100%;
  border-radius: 16px;
}
.extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.extra-card {
  padding: 24px;
}
.extra-card .extra-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(78, 108, 255, 0.14);
  color: #5d75ff;
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.extra-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.extra-card p {
  color: #5d6f98;
  line-height: 1.8;
}
.result-admit-grid,
.resources-grid,
.promo-bar-grid,
.why-grid {
  display: grid;
  gap: 18px;
}
.result-admit-grid {
  grid-template-columns: 1.1fr 0.9fr;
}
.info-card,
.resource-card,
.promo-card,
.why-card,
.cta-card {
  background: rgba(255,255,255,0.95);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 28px 80px rgba(2, 14, 56, 0.08);
  padding: 28px;
}
.info-card-header,
.promo-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}
.result-list,
.admit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.result-list li,
.admit-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(14, 24, 60, 0.09);
  background: rgba(255,255,255,0.9);
}
.result-list li strong,
.admit-list li strong {
  display: block;
  color: #101839;
  font-size: 0.97rem;
}
.result-list li span,
.admit-list li span {
  display: block;
  color: #3e5bff;
  font-size: 0.92rem;
  margin-top: 4px;
  font-weight: 600;
}
.result-list li button,
.admit-list li button {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #6453ff, #2c6cff);
  cursor: pointer;
}
.resources-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.resource-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #ffffff;
  min-height: 220px;
}
.resource-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.16);
  color: #ffffff;
  font-size: 1.3rem;
}
.resource-card h4 {
  font-size: 1.1rem;
}
.resource-card p {
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
}
.resource-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
}
.bg-gradient-blue { background: linear-gradient(135deg, #3553ff, #3749ff); }
.bg-gradient-purple { background: linear-gradient(135deg, #7b5dff, #4e6cff); }
.bg-gradient-green { background: linear-gradient(135deg, #00c6b7, #2f96ff); }
.bg-gradient-orange { background: linear-gradient(135deg, #ff8b4e, #ff5f7f); }
.promo-bar-grid {
  grid-template-columns: 1.3fr 0.9fr;
}
.promo-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.9));
  color: #101839;
}
.promo-youtube h3 {
  margin-top: 12px;
  font-size: 1.55rem;
  line-height: 1.25;
}
.promo-card-top button {
  min-width: 150px;
}
.promo-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.promo-stats div {
  padding: 20px;
  border-radius: 24px;
  background: rgba(17, 32, 85, 0.08);
  text-align: center;
}
.promo-stats strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: #101839;
}
.promo-stats span {
  color: #5c6d9a;
}
.promo-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.metric-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(11, 23, 63, 0.1);
}
.metric-card div:first-child {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(78,108,255,0.16);
  color: #4e6cff;
  font-size: 1.3rem;
}
.metric-card h4 {
  margin: 0;
  font-size: 1rem;
}
.metric-card p {
  margin: 0;
  color: #5d6f98;
  font-size: 0.92rem;
}
.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.why-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  background: rgba(255,255,255,0.95);
  color: #101839;
}
.why-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(78,108,255,0.16);
  color: #4e6cff;
  font-size: 1.2rem;
}
.why-card h4 {
  font-size: 1rem;
  margin: 0;
}
.why-card p {
  color: #5d6f98;
  margin: 0;
}
.cta-banner {
  margin-top: 44px;
}
.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 42px 48px;
  border-radius: 48px;
  background: linear-gradient(135deg, #081239, #101a4d 95%);
  color: #ffffff;
  box-shadow: 0 32px 100px rgba(13, 29, 85, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 24%, rgba(255,255,255,0.18), transparent 22%),
              radial-gradient(circle at 82% 50%, rgba(255,255,255,0.08), transparent 16%),
              linear-gradient(180deg, rgba(255,255,255,0.04), transparent 45%);
  pointer-events: none;
}
.cta-card > div {
  position: relative;
  z-index: 1;
}
.cta-card .section-label {
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}
.cta-card h3 {
  font-size: 40px;
  max-width: 660px;
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.cta-card .btn-primary {
  padding: 18px 42px;
  min-width: 220px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6c84ff, #3864ff);
  box-shadow: 0 22px 50px rgba(81, 108, 255, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cta-card .btn-primary:hover,
.cta-card .btn-primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 28px 62px rgba(43, 83, 255, 0.35);
}
.footer {
  width: calc(100% - 120px);
  max-width: 1380px;
  margin: 0 auto 40px;
  padding: 42px 0 28px;
  border-radius: 40px;
  background: linear-gradient(135deg, #081239, #101a4d 95%);
  box-shadow: 0 36px 110px rgba(6, 17, 64, 0.35);
  color: #d2dbff;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(240px, 1fr));
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.footer-brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-logo {
  width: 100px;
  margin-left: 30px;
  margin-top: -60px;
  border-radius: 22px;
  background: #ffffff;
  padding: 1px;
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 18px 30px rgba(0,0,0,0.08);
}
.footer-brand strong {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.footer-brand p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  color: #dbe3ff;
  transition: transform 0.2s ease, background 0.2s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(78,108,255,0.22);
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-column h4 {
  font-size: 1.05rem;
  margin: 0;
  color: #ffffff;
  letter-spacing: 0.025em;
}
.footer-column p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}
.footer-column a {
  display: block;
  color: rgba(255,255,255,0.76);
  margin-bottom: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-column a:hover {
  color: #f8fbff;
  transform: translateX(2px);
}
.footer-newsletter-column {
  max-width: 320px;
}
.footer-newsletter-column .newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}
.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.55);
}
.footer-whatsapp {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 18px;
}
.footer-whatsapp:hover {
  background: rgba(78,108,255,0.22);
}
.footer-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 34px;
  padding-top: 24px;
  color: rgba(255,255,255,0.66);
}
.footer-bottom-links {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

@media (max-width: 1200px) {
  .navbar {
    padding: 16px 20px;
  }

  .hero,
  main,
  .footer {
    width: calc(100% - 40px);
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
  }

  .hero-scene {
    min-height: 520px;
  }

  .search-card {
    width: 100%;
    max-width: 100%;
  }

  .jobs-layout {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .result-admit-grid,
  .resources-grid,
  .promo-bar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1.3fr repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  .navbar-menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .menu-item a {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .navbar-actions {
    order: 2;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo {
    max-width: 160px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-scene {
    min-height: 420px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
  }

  .search-panel {
    position: static;
    transform: none;
    bottom: auto;
    margin-top: -30px;
    padding-bottom: 26px;
  }

  .search-card {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
  }

  .search-fields {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .btn-action {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jobs-layout {
    grid-template-columns: 1fr;
  }

  .result-admit-grid,
  .promo-bar-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .extra-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card .btn-primary {
    width: 100%;
    min-width: auto;
  }

  .footer {
    border-radius: 24px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .navbar {
    padding: 14px 16px;
  }

  .brand-text {
    display: none;
  }

  .navbar-menu {
    gap: 8px;
  }

  .menu-item a {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .navbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .btn {
    padding: 10px 18px;
  }

  .hero {
    padding-top: 26px;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-scene {
    min-height: 360px;
  }

  .emblem-ring {
    width: 300px;
    height: 300px;
    top: 38%;
  }

  .emblem-inner {
    width: 220px;
    height: 220px;
    top: 38%;
  }

  .emblem-icon {
    width: 260px;
    top: 38%;
  }

  .search-card {
    padding: 18px;
  }

  .search-fields .input-group,
  .search-fields .btn-action {
    width: 100%;
  }

  .search-fields {
    gap: 12px;
  }

  .category-card {
    padding: 26px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .jobs-table .table-head {
    display: none;
  }

  .jobs-table .table-row {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .jobs-table .table-row span {
    display: block;
    line-height: 1.5;
  }

  .jobs-table .table-row button {
    width: 100%;
    justify-content: center;
  }

  .result-list li,
  .admit-list li {
    grid-template-columns: 1fr;
  }

  .promo-stats {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-logo {
    margin-left: 0;
    margin-top: 0;
    width: 84px;
  }
}
.footer-bottom-links a:hover {
  color: #ffffff;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease;
}
.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(78,108,255,0.22);
}

@keyframes pulse-glow {
  0% {
    filter: drop-shadow(0 0 6px rgba(63, 91, 255, 0.3));
    opacity: 1;
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(63, 91, 255, 0.6));
    opacity: 0.9;
  }
  100% {
    filter: drop-shadow(0 0 6px rgba(63, 91, 255, 0.3));
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .navbar,
  .hero,
  .search-card,
  main,
  .footer {
    width: calc(100% - 64px);
  }
  .navbar-menu {
    gap: 10px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .search-fields {
    grid-template-columns: 1fr;
  }
  .category-grid,
  .stats-grid,
  .extra-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .jobs-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
  }
  .navbar-actions {
    justify-content: center;
    width: 100%;
  }
  .navbar-menu {
    justify-content: center;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .navbar {
    width: calc(100% - 32px);
  }
  .hero {
    padding-top: 32px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-features {
    display: grid;
    grid-template-columns: 1fr;
  }
  .search-card {
    padding: 22px;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .jobs-table .table-head,
  .jobs-table .table-row {
    grid-template-columns: 1fr;
  }
  .table-head,
  .table-row {
    padding: 12px 0;
  }
  .jobs-layout {
    display: block;
  }
  .footer-top {
    display: block;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
