*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
iframe {
  height: 32em;
}

/* ── CHATBOT WIDGET ── */
.chatbot {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 300 !important;
  max-width: 400px !important;
  top: auto !important;
  left: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  pointer-events: auto !important;
}

.subtitle {
  font-size: 18px !important;
  font-weight: 800 !important;
}
.capt {
  text-transform: capitalize !important;
}
:root {
  --red: #df1919;
  --red-dark: #b91212;
  --navy: #1a1a1a;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --gray: #555;
  --light-gray: #eee;
  --border: rgba(0, 0, 0, 0.1);
  --font-sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;
  --header-h: 78px;
}

html,
body {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-sans);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
         HEADER
      ══════════════════════════════════ */
.site-header {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  height: var(--header-h);
  max-width: 1400px;
  margin: 0 auto;
}
.header-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 20%;
  text-decoration: none;
  color: var(--red);
  height: 100%;
}
.logo-block img {
  height: clamp(36px, 9vh, 52px);
  width: auto;
  object-fit: contain;
  /* background-color: red; */
}
.logo-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.35);
}
.logo-shield {
  width: 36px;
  height: 40px;
  flex-shrink: 0;
}
.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #fff;
}
.logo-sub {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}
.logo-icon-small {
  width: 32px;
  height: 36px;
  flex-shrink: 0;
}
.logo-text-small {
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
  max-width: 100px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  white-space: nowrap;
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}
.header-nav a.active {
  background: rgba(255, 255, 255, 0.22);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 12px 0;
}
.mobile-menu a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
}
.mobile-menu.open {
  display: flex;
}

/* ══════════════════════════════════
         HERO — 3-PANEL: Content | Portrait | Form
      ══════════════════════════════════ */
.hero {
  margin-top: var(--header-h);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
  background: #111;
  border-bottom: 1px solid #ff000090;
}

/* Panel A — Content */
.panel-a {
  background: #111;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 580px;
  position: relative;
}
.panel-a-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 20px;
  width: 40%;
}
.panel-a-headline {
  margin-bottom: 20px;
}
.panel-a-headline .line1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  line-height: 1.1;
}
.panel-a-headline .line2 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 4.8vw, 88px);
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -2px;
}
.panel-a-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 48px;
}
.panel-a-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 340px;
}

/* Decorative moving outline shapes removed */
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    rgba(223, 25, 25, 1),
    rgba(223, 25, 25, 0.15)
  );
}
.stat-item:hover {
  border-color: rgba(223, 25, 25, 0.28);
  transform: translateY(-2px);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}
.stat-num {
  font-size: clamp(36px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.stat-divider {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(223, 25, 25, 0.18));
  margin-top: 4px;
}

/* Panel B — Portrait */
.panel-b {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #0e0e18;
  min-height: 580px;
}
.portrait-bg {
  position: absolute;
  inset: 0;
  background: #0e0e18;
}
.portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.portrait-placeholder-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-placeholder-icon svg {
  opacity: 0.3;
}
.portrait-placeholder-text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 1.6;
}

/* Panel C — Application Form */
.panel-c {
  background: #fff;
  padding: 2%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}
.form-eyebrow {
  font-size: 21px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
  margin: 10px 0 0;
  text-align: center;
}
@media (max-width: 480px) {
  .form-eyebrow {
    margin-bottom: 10px;
  }
}
.form-headline {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
  flex: 0 0 auto;
}

.npf_wgts {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.panel-c-footer {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  padding: 14px 14px;
  border: 1px solid rgba(223, 25, 25, 0.2);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff6f6 0%, #f8f8f8 100%);
}
.panel-c-note {
  margin: 0;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.6;
  color: #3f3f3f;
  display: grid;
  gap: 8px;
  text-align: center;
}
.panel-c-note-title {
  display: block;
  width: auto;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(223, 25, 25, 0.06);
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 auto 6px;
}
.panel-c-note-body {
  display: block;
}
.panel-c-note-accent {
  color: var(--red);
  font-weight: 700;
}
.panel-c-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(223, 25, 25, 0.18);
  align-self: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  margin-top: 8px;
}
.panel-c-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 12px 22px rgba(223, 25, 25, 0.22);
}
.panel-c-desktop-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.form-subline {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.5;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
}
.form-input {
  height: 44px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #fafafa;
  padding: 0 12px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.form-input:focus {
  border-color: var(--red);
  background: #fff;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-submit {
  width: 100%;
  height: 46px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
  font-family: var(--font-sans);
}
.form-submit:hover {
  background: var(--red-dark);
}
.form-note {
  font-size: 10px;
  color: #bbb;
  text-align: center;
  margin-top: 10px;
}

/* ── TICKER ── */
.ticker {
  background: var(--red);
  color: #fff;
  padding: 13px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0 40px;
  opacity: 0.85;
}
.ticker-item span {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 40px;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── INFO STRIP ── Fixed Bottom */
.info-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: #fff;
  z-index: 100;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  transform: translateY(14px);
}

.info-strip.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* display: none; */
}

.info-strip-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 48px;
  min-height: 56px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  flex: 1;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.info-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.info-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}

/* ══════════════════════════════════
         VIDEO SECTION (below hero)
      ══════════════════════════════════ */
.video-section {
  background: #0d0d0d;
  min-height: 100vh;
  display: flex;
}
.video-section-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  min-height: 100vh;
  align-items: stretch;
}
.video-left {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.video-wrapper-inner {
  position: absolute;
  inset: 0;
}
.video-wrapper-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-overlay-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}
.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px 28px;
}
.video-caption-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 8px;
}
.video-caption-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  font-style: italic;
  line-height: 1.15;
}
.video-caption-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  line-height: 1.6;
  max-width: 360px;
}
.video-right {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  min-height: 100%;
}
.vr-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
  margin-bottom: 2px;
}
.vr-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.vr-num {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
}
.vr-unit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.vr-divider {
  width: 100%;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.08);
}
.vr-quote {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  font-style: italic;
}
.vr-quote strong {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}
.vr-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.vr-cta-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}

/* ══════════════════════════════════
         PLACEMENT INFOGRAPHIC SECTION
      ══════════════════════════════════ */
.placement-infographic {
  background: linear-gradient(135deg, #fbfbf8 0%, #f5f5f1 50%, #fafaf7 100%);
  border-top: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}

.placement-infographic::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(223, 25, 25, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.placement-infographic > * {
  position: relative;
  z-index: 1;
}

.pi-header {
  background: linear-gradient(180deg, #fff 0%, #fafaf8 100%);
  padding: 80px 48px 60px;
  border-bottom: 1px solid #ece8e2;
}

.pi-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #df1919, transparent);
}

.pi-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
  opacity: 0;
  animation: slideDown 0.8s ease forwards;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pi-eyebrow::before {
  content: "";
  width: 2px;
  height: 2px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.pi-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 68px);
  font-style: italic;
  color: var(--navy);
  line-height: 1.1;
  opacity: 0;
  animation: slideDown 0.8s ease 0.2s forwards;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.pi-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(223, 25, 25, 0.15));
  border-radius: 2px;
}

.pi-title strong {
  font-style: normal;
  color: var(--red);
  font-weight: 900;
}

.pi-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #666;
  margin-top: 12px;
  opacity: 0;
  animation: slideDown 0.8s ease 0.4s forwards;
}

/* Hero stat strip */
.pi-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background: linear-gradient(180deg, #fff 0%, #fafaf8 100%);
  border-top: 1px solid #ece8e2;
}

.pi-hs {
  padding: 32px 32px;
  border-right: 1px solid #ece8e2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.pi-hs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(223, 25, 25, 0.04) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pi-hs:hover {
  background: #fafaf8;
}

.pi-hs:hover::before {
  opacity: 1;
}

.pi-hs:last-child {
  border-right: none;
}

.pi-hs-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 1;
  animation: scaleUp 0.8s ease-out;
}

.pi-hs-num sup {
  font-size: 20px;
  color: var(--red);
  vertical-align: super;
}

.pi-hs-label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6f6f6f;
  line-height: 1.5;
  font-weight: 600;
}

.pi-hs-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(223, 25, 25, 0.4));
  margin-top: 12px;
  transition: width 1.2s ease;
  border-radius: 999px;
}

/* Placement trend body */
.pi-body {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 2px solid #ece8e2;
}

.pi-left {
  padding: 48px 48px;
  border-right: 2px solid #ece8e2;
  background: linear-gradient(135deg, #fff 0%, #fafaf8 100%);
}

.pi-right {
  padding: 36px 36px 40px;
  background: linear-gradient(135deg, #fff 0%, #fafaf8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pi-right::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at top right,
      rgba(223, 25, 25, 0.08) 0%,
      rgba(223, 25, 25, 0) 50%
    ),
    linear-gradient(180deg, rgba(251, 254, 252, 0.95) 0%, #fff 100%);
  border: 1.5px solid #f0ebe3;
  pointer-events: none;
  z-index: 0;
}

.pi-right > * {
  position: relative;
  z-index: 1;
}

.pi-col-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 28px;
  display: block;
}

.pi-trend-summary .pi-col-label {
  margin-bottom: 0;
}
.pi-trend-summary {
  padding: 28px 24px 24px;
  margin: 0 4px 24px;
  border: 1px solid #ece8e2;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #fcfbf8 100%);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(2px);
}

.pi-trend-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.pi-live-pill {
  display: none;
}

.pi-trend-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pi-trend-summary-card {
  padding: 20px 18px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid #f0ebe3;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pi-trend-summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pi-trend-summary-card:hover {
  border-color: var(--red);
  box-shadow: 0 12px 32px rgba(223, 25, 25, 0.12);
  transform: translateY(-2px);
}

.pi-trend-summary-card:hover::before {
  transform: scaleX(1);
}

.pi-trend-summary-value {
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1.6px;
  line-height: 1;
  animation: countUp 1s ease-out;
}

.pi-trend-summary-label {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
}

.pi-trend-summary-note {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.5;
  color: #777;
}
.pi-trend-summary-value {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1.6px;
  line-height: 1;
}
.pi-trend-summary-label {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
}
.pi-trend-summary-note {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.5;
  color: #666;
}

.pi-spotlight {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid #ece8e2;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    #fcfbf8 100%
  );
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.05);
  overflow: hidden;
  --spotlight-accent: #df1919;
}
.pi-spotlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--spotlight-accent);
}
.pi-spotlight-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.pi-spotlight-kicker {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  font-weight: 700;
}
.pi-spotlight-pill {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--spotlight-accent);
  background: rgba(223, 25, 25, 0.08);
  border: 1px solid rgba(223, 25, 25, 0.16);
  padding: 6px 9px;
  border-radius: 999px;
}
.pi-spotlight-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  font-weight: 700;
}
.pi-spotlight-value {
  margin-top: 6px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 0.95;
  letter-spacing: -2px;
  font-weight: 900;
  color: var(--navy);
}
.pi-spotlight-copy {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: #5f5f5f;
  max-width: 34ch;
}

.count-up {
  display: inline-block;
}

/* Salary bands */
.salary-bands {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.band-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid #f0ebe3;
  transition: all 0.3s ease;
}

.band-row:last-child {
  border-bottom: none;
}

.band-row:hover {
  padding: 16px 12px;
  margin: 0 -12px;
  background: rgba(223, 25, 25, 0.02);
  border-radius: 8px;
}

.band-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.band-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.band-count {
  font-size: 15px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.3px;
}

.band-track {
  height: 12px;
  background: #f3f1ec;
  overflow: hidden;
  border-radius: 999px;
}

.band-fill {
  height: 100%;
  transition: width 1.2s ease 0.3s;
  border-radius: 999px;
}

.band-sub {
  font-size: 11px;
  color: #777;
  line-height: 1.5;
  font-weight: 500;
}

.avg-callout {
  margin-top: 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #fff 0%, #fafaf8 100%);
  border: 2px solid var(--red);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.avg-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(223, 25, 25, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.avg-callout > * {
  position: relative;
  z-index: 1;
}

.avg-callout-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1.5px;
  white-space: nowrap;
  line-height: 1;
}

.avg-callout-num em {
  font-style: normal;
  font-size: 18px;
  color: var(--navy);
}

.avg-callout-text {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  font-weight: 500;
}

/* Donut chart (placement rate) */
.pi-donut {
  margin-top: 32px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #fff 0%, #fafaf8 100%);
  border: 2px solid #f0ebe3;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.06);
}

.pi-donut .donut {
  width: 140px;
  height: 140px;
  flex: 0 0 140px;
  transform: rotate(-90deg);
}

.donut-track {
  stroke: #f3f1ec;
  stroke-width: 14;
  fill: none;
}

.donut-fill {
  stroke: #df1919;
  stroke-width: 14;
  fill: none;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.2, 0.9, 0.2, 1) 0.2s;
  filter: drop-shadow(0 4px 12px rgba(223, 25, 25, 0.2));
}

.donut-center {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.donut-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.donut-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.donut-note {
  font-size: 11px;
  color: #777;
  line-height: 1.5;
}

/* Placement trend chart container */
.trend-chart-container {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: center;
  padding: 20px 0;
}

/* Left: Data list - compact year/number cards */
.trend-data-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trend-data-point {
  padding: 14px 16px;
  border: 1.5px solid #f0ebe3;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff 0%, #fcfbf8 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.trend-data-point:hover,
.trend-data-point.is-active {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(223, 25, 25, 0.12);
  transform: translateX(4px);
}

.tdp-year {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tdp-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1;
  margin-bottom: 2px;
}

.tdp-meta {
  font-size: 12px;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Right: Bar chart */
.trend-chart {
  background: linear-gradient(135deg, #fff 0%, #fcfbf8 100%);
  border: 1.5px solid #f0ebe3;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chart-bar-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  align-items: center;
}

.chart-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.chart-bar-wrapper {
  position: relative;
  height: 36px;
  background: #f3f1ec;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.chart-bar {
  height: 100%;
  background: linear-gradient(90deg, #8d8d8d 0%, #a4a4a4 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.chart-bar-current {
  background: linear-gradient(90deg, #df1919 0%, #ff5b5b 100%);
}

.chart-bar-record {
  background: linear-gradient(90deg, #222 0%, #555 100%);
}

.chart-value {
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.chart-bar:hover {
  filter: brightness(1.15);
}

/* Tablet breakpoint */
@media (max-width: 1200px) {
  .trend-chart-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trend-data-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trend-chart {
    padding: 28px;
  }

  .chart-bars {
    gap: 20px;
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .trend-chart-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trend-data-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .trend-data-point {
    padding: 12px 14px;
  }

  .tdp-year {
    font-size: 10px;
  }

  .tdp-number {
    font-size: 24px;
  }

  .tdp-meta {
    font-size: 8px;
  }

  .trend-chart {
    padding: 20px;
  }

  .chart-bars {
    gap: 16px;
  }

  .chart-bar-row {
    grid-template-columns: 50px 1fr;
    gap: 10px;
  }

  .chart-year {
    font-size: 10px;
  }

  .chart-bar-wrapper {
    height: 32px;
  }

  .chart-value {
    font-size: 11px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .trend-chart-container {
    gap: 16px;
  }

  .trend-data-list {
    grid-template-columns: 1fr;
  }

  .trend-data-point {
    padding: 10px 12px;
  }

  .tdp-year {
    font-size: 9px;
  }

  .tdp-number {
    font-size: 20px;
  }

  .trend-chart {
    padding: 16px;
  }

  .chart-bars {
    gap: 14px;
  }

  .chart-bar-row {
    grid-template-columns: 45px 1fr;
    gap: 8px;
  }

  .chart-year {
    font-size: 9px;
  }

  .chart-bar-wrapper {
    height: 28px;
  }

  .chart-value {
    font-size: 10px;
  }
}

/* Additional responsive tweaks for Placement Trend alignment */
@media (max-width: 992px) {
  .trend-chart-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Make data list stack vertically for narrow screens */
  .trend-data-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trend-chart {
    padding: 20px;
  }

  .pi-right {
    padding: 20px;
  }

  .total-badge {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 20px;
  }

  .total-badge-rail {
    width: auto;
    min-height: auto;
    border-left: none;
    border-top: 1px solid rgba(223, 25, 25, 0.12);
    padding-left: 0;
    padding-top: 16px;
    justify-content: flex-end;
  }

  .total-badge-arrow {
    width: 54px;
    height: 54px;
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  /* Keep the trend data compact on small phones */
  .trend-data-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trend-data-point {
    padding: 10px 12px;
  }

  .trend-chart {
    padding: 14px;
  }

  .chart-bar-row {
    grid-template-columns: 48px 1fr;
    gap: 8px;
  }

  .chart-bar-wrapper {
    height: 28px;
  }

  .total-badge {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px;
  }

  .total-badge-copy {
    gap: 6px;
  }

  .total-badge-num {
    font-size: clamp(40px, 9vw, 56px);
  }

  .total-badge-stat {
    border-left: none;
    border-top: 1.5px solid rgba(223, 25, 25, 0.12);
    padding-left: 0;
    padding-top: 14px;
    min-height: auto;
  }

  .total-badge-stat-num {
    font-size: clamp(32px, 8vw, 46px);
  }
}

.total-badge {
  margin-top: 36px;
  padding: 28px 28px 26px;
  border: 1.5px solid rgba(223, 25, 25, 0.22);
  display: grid;
  /* left content | stat | large image */
  grid-template-columns: minmax(0, 1fr) 180px 420px;
  gap: 24px;
  align-items: center;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at top right,
      rgba(223, 25, 25, 0.12) 0%,
      transparent 34%
    ),
    linear-gradient(135deg, #fff 0%, #fff8f6 52%, #fff 100%);
  box-shadow:
    0 18px 42px rgba(223, 25, 25, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.total-badge::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(223, 25, 25, 0.08) 0%,
    rgba(223, 25, 25, 0) 68%
  );
  pointer-events: none;
}

.total-badge > * {
  position: relative;
  z-index: 1;
}

/* Right side placement rate stat */
.total-badge-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 90px;
  border-left: 1.5px solid rgba(223, 25, 25, 0.12);
  padding-left: 24px;
}

.total-badge-stat-num {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 950;
  color: var(--red);
  line-height: 1;
  letter-spacing: -1px;
}

.total-badge-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #888;
}

/* Rightmost image block inside the badge */
.total-badge-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 18px;
}
.total-badge-media img {
  width: 100%;
  max-width: 420px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 320ms ease;
}

.total-badge-media img:hover {
  transform: translateY(-4px) scale(1.02);
}

/* soft glow layer and hover interaction */
.total-badge::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  background: linear-gradient(
    90deg,
    rgba(223, 25, 25, 0.06),
    rgba(255, 255, 255, 0)
  );
  filter: blur(12px);
  opacity: 0.6;
  pointer-events: none;
  transition:
    opacity 350ms ease,
    filter 350ms ease,
    transform 350ms ease;
  z-index: 0;
}

.total-badge {
  transition:
    transform 300ms cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 300ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform, box-shadow;
}

.total-badge:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 60px rgba(17, 17, 17, 0.12),
    0 8px 30px rgba(223, 25, 25, 0.08);
}

.total-badge:hover::after {
  opacity: 0.9;
  filter: blur(18px);
}

.total-badge:hover .total-badge-stat {
  opacity: 1;
}

.total-badge-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.total-badge-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(223, 25, 25, 0.7);
  margin-bottom: 4px;
}

.total-badge-num {
  font-size: clamp(52px, 5.8vw, 72px);
  font-weight: 950;
  color: var(--navy);
  letter-spacing: -2.2px;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(223, 25, 25, 0.08);
}

.total-badge-label {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #555;
  font-weight: 800;
  line-height: 1.4;
}

.total-badge-mini-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.total-badge-mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(223, 25, 25, 0.08);
  border: 1px solid rgba(223, 25, 25, 0.14);
  color: #8f1515;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.total-badge-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  min-height: 90px;
  border-left: 1px solid rgba(223, 25, 25, 0.12);
  padding-left: 24px;
}

.total-badge-arrow {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--red);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #ffeceb 100%);
  box-shadow:
    0 10px 24px rgba(223, 25, 25, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: slideRight 1.2s ease infinite;
}

@keyframes slideRight {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

.trend-note {
  margin-top: 16px;
  padding: 16px 18px;
  background: #fff8f8;
  border: 1px solid #f1dada;
  border-left: 4px solid var(--red);
  border-radius: 14px;
}
.trend-note p {
  font-size: 11px;
  color: #7f2a2a;
  line-height: 1.6;
}
.trend-note strong {
  color: #5a1b1b;
}

/* Key Recruiters */
.pi-recruiters {
  padding: 36px 40px 40px;
  border-top: 1px solid #ece8e2;
  background: #fff;
}
.recruiter-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: #ece8e2;
  margin-top: 20px;
}
.recruiter-cell {
  background: var(--white);
  padding: 12px 10px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #444;
  text-align: center;
  letter-spacing: 0.3px;
  transition:
    background 0.2s,
    color 0.2s;
  cursor: default;
  position: relative;
  flex-direction: column;
  gap: 0;
}
.recruiter-logo {
  width: 100%;
  max-width: 100%;
  /* height: 50px; */
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.recruiter-cell:hover .recruiter-logo {
  filter: grayscale(0%);
}
.recruiter-name {
  display: none;
}

.recruiter-cell:hover .f500-tag {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.f500-tag {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #fde8e8;
  color: var(--red);
  padding: 2px 5px;
  border-radius: 2px;
}

.f500-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #fff8f8;
}
.f500-note-bar {
  width: 16px;
  height: 3px;
  background: var(--red);
  flex-shrink: 0;
}
.f500-note-text {
  font-size: 11px;
  color: #7f2a2a;
  line-height: 1.5;
}
.f500-note-text strong {
  color: #5a1b1b;
}

/* ── SECTION COMMONS ── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: slideDown 0.8s ease forwards;
}

.section-label::before {
  content: "";
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.1;
  color: var(--navy);
  font-weight: 700;
  opacity: 0;
  animation: slideDown 0.8s ease 0.15s forwards;
  position: relative;
  padding-bottom: 14px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(223, 25, 25, 0.2));
  border-radius: 2px;
}

.section-title em {
  font-style: italic;
  color: var(--red);
}

/* ── COURSES SECTION ── */
.courses-section {
  padding: clamp(72px, 9vw, 75px) clamp(20px, 4vw, 48px);
  background:
    linear-gradient(180deg, #fff 0%, #fff 72%, #fcfcfc 100%), var(--white);
  position: relative;
  overflow: hidden;
}
.courses-section::before {
  content: "";
  position: absolute;
  inset: -120px -140px auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(223, 25, 25, 0.07) 0%,
    rgba(223, 25, 25, 0) 72%
  );
  pointer-events: none;
}
.courses-section > * {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.courses-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(34px, 5vw, 60px);
  gap: 32px;
}
.courses-header-left {
  max-width: 680px;
}
.courses-header-desc {
  font-size: clamp(16px, 1.55vw, 18px);
  font-weight: 300;
  color: #555;
  line-height: 1.72;
  margin-top: 18px;
  max-width: 62ch;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  background: transparent;
  align-items: stretch;
}
.course-card {
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  padding: 0;
  perspective: 1600px;
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.28s ease,
    background 0.28s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #f1e8de;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(184, 123, 66, 0.08);
  min-height: 340px;
  height: 100%;
}
.course-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.course-card.is-flipped .course-card-inner {
  transform: rotateY(180deg);
}
.course-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 244, 0.98) 0%,
    #ffffff 100%
  );
  padding: 28px 28px;
  box-sizing: border-box;
}
.course-card-front {
  justify-content: flex-start;
}
.course-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(
    180deg,
    rgba(248, 244, 255, 0.95) 0%,
    #ffffff 100%
  );
  justify-content: center;
}
.course-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.3s ease;
}
.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(223, 25, 25, 0.12),
    rgba(223, 25, 25, 0)
  );
  opacity: 0;
  transition: opacity 0.28s ease;
}
.course-card:hover {
  background: linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
  border-color: #e7cfba;
  box-shadow: 0 8px 24px rgba(184, 123, 66, 0.14);
  transform: translateY(-2px);
}
.course-card:focus-within {
  border-color: #e1c3a9;
  box-shadow: 0 8px 24px rgba(184, 123, 66, 0.14);
}
.course-card:focus-visible {
  outline: 2px solid rgba(223, 25, 25, 0.35);
  outline-offset: 3px;
}
.course-card:hover::before {
  opacity: 1;
}
.course-card:hover::after {
  width: 100%;
}
.course-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(184, 123, 66, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
  box-shadow: 0 8px 18px rgba(184, 123, 66, 0.08);
  transition:
    background 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    color 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin: 0 auto;
  color: #888888;
  position: relative;
  overflow: hidden;
  animation: courseIconFloat 5.5s ease-in-out infinite;
}
.course-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(223, 25, 25, 0.16) 0%,
    rgba(223, 25, 25, 0) 70%
  );
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
  pointer-events: none;
}
.course-icon svg {
  width: 72%;
  height: 72%;
  stroke: currentColor;
  position: relative;
  z-index: 1;
}
.course-icon-img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.course-card:hover .course-icon {
  background: linear-gradient(180deg, #fff1e3 0%, #ffffff 100%);
  border-color: rgba(184, 123, 66, 0.22);
  color: var(--navy);
  transform: translateY(-4px) scale(1.1) rotate(-4deg);
  box-shadow: 0 14px 26px rgba(184, 123, 66, 0.14);
}
.course-card:hover .course-icon::before,
.course-card:focus-within .course-icon::before {
  opacity: 1;
  transform: scale(1);
}
.course-card:hover .course-icon-img,
.course-card:focus-within .course-icon-img {
  transform: rotate(8deg) scale(1.08);
}
.course-card:active .course-icon {
  transform: translateY(-1px) scale(1.04) rotate(0deg);
}
.course-card:active .course-icon-img {
  transform: scale(0.96);
}
@keyframes courseIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .course-icon {
    animation: none;
  }
  .course-icon,
  .course-icon::before,
  .course-icon-img {
    transition: none;
  }
  .course-card:hover .course-icon,
  .course-card:focus-within .course-icon,
  .course-card:active .course-icon {
    transform: none;
  }
  .course-card:hover .course-icon-img,
  .course-card:focus-within .course-icon-img,
  .course-card:active .course-icon-img {
    transform: none;
  }
}
.course-name {
  font-size: clamp(17px, 1.3vw, 19px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.32;
  text-align: center;
}
.course-degrees {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  margin: 14px 0 20px 0;
  padding: 16px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.degree-tag {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: transparent;
  color: #555555;
  padding: 10px 0;
  border-radius: 0;
  text-align: center;
  cursor: default;
  transition: color 0.28s ease;
  box-shadow: none;
  position: relative;
  overflow: visible;
  border: none;
}
.degree-tag:not(:last-child) {
  border-bottom: 1px solid #f5f5f5;
}
.degree-tag::before {
  content: none;
}
.degree-tag:nth-child(2) {
  background: transparent;
}
.degree-tag:nth-child(3) {
  background: transparent;
}
.degree-tag:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
  color: var(--navy);
}
.degree-tag:hover::before {
  left: 100%;
}
.course-specializations-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #888888;
  text-decoration: none;
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.28s ease;
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 4px;
}
.course-specializations-link:hover {
  color: var(--navy);
  text-decoration: none;
}
.course-desc {
  font-size: 15px;
  font-weight: 400;
  color: #5c5c5c;
  line-height: 1.68;
}
.course-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 1;
  transform: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    letter-spacing 0.22s ease;
}
.course-card-front .course-link {
  margin-top: auto;
}
.course-card:hover .course-link {
  letter-spacing: 1.2px;
}
.course-back-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.course-back-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.course-back-list li {
  font-size: 15px;
  line-height: 1.45;
  color: #444;
  padding-left: 14px;
  position: relative;
}
.course-back-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.course-card-front > :nth-child(1) {
  margin-bottom: 2px;
}
.course-card-front > :nth-child(2) {
  margin-bottom: 2px;
}
.course-card-front > :nth-child(3) {
  margin-bottom: 0;
}
.course-card-front > :nth-child(4) {
  flex: 1 1 auto;
}

/* ── WHY JECRC ── */
.why-section {
  background: var(--navy);
  color: #fff;
  padding: 100px 48px;
}
.why-section .section-label {
  color: rgba(223, 25, 25, 0.9);
}
.why-section .section-title {
  color: #fff;
}
.why-section .section-title em {
  color: var(--red);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-top: 64px;
  align-items: start;
}
.why-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 44px 36px 1fr;
  gap: 18px;
  align-items: start;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.why-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.why-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--red);
  line-height: 1;
  padding-top: 2px;
}
.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 10px;
}
.why-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.why-item-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 90px;
}
.big-stat-block {
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 18px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
}
.why-right .big-stat-block {
  border-radius: 12px;
}
.big-stat-num {
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -4px;
  color: #fff;
  line-height: 1;
}
.big-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.why-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
}
.why-stat-cell {
  background: var(--navy);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why-stat-val {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
}
.why-stat-lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ── NAAC STRIP ── */
.naac-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
  flex-wrap: wrap;
}
.naac-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}
.naac-badge-box {
  width: 38px;
  height: 38px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: var(--navy);
}
.naac-grade {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
}
.dot-sep {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════
      INSTITUTIONAL HIGHLIGHTS
   ══════════════════════════════════ */
.institutional-highlights {
  background: linear-gradient(180deg, #fff 0%, #fafaf8 100%);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

/* New: Placement showcase with larger image */
.placement-showcase {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 28px;
  align-items: center;
  padding: 22px;
  border-radius: 18px;
  border: 1.5px solid rgba(223, 25, 25, 0.12);
  background: linear-gradient(180deg, #fff 0%, #fff9f6 100%);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.04);
}

.placement-showcase-content {
  padding: 18px 12px;
}
.placement-eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
  margin-bottom: 8px;
}
.placement-number {
  font-size: clamp(56px, 6.6vw, 92px);
  font-weight: 950;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 0.95;
}
.placement-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.placement-showcase-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.placement-showcase-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 320ms ease;
}
.placement-showcase-media img:hover {
  transform: scale(1.02) translateY(-6px);
}

.placement-media-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  pointer-events: none;
}
.placement-rate-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.placement-rate-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
}
.placement-rate-text {
  font-size: 11px;
  color: #444;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1100px) {
  .placement-showcase {
    grid-template-columns: 1fr 420px;
  }
  .placement-showcase-media img {
    height: 280px;
  }
}

@media (max-width: 820px) {
  .placement-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .placement-showcase-media img {
    height: 260px;
    border-radius: 10px;
  }
  .placement-media-overlay {
    left: 12px;
    bottom: 12px;
  }
}

.institutional-highlights::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(223, 25, 25, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.highlights-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.highlights-header {
  text-align: center;
  margin-bottom: 60px;
}

.highlights-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  opacity: 0;
  animation: slideDown 0.8s ease forwards;
  position: relative;
  padding-bottom: 12px;
  line-height: 1.1;
}

.highlights-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.highlights-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
  opacity: 0;
  animation: slideDown 0.8s ease 0.2s forwards;
  line-height: 1.5;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 60px;
  align-items: stretch;
}

.highlight-card {
  padding: 32px 24px;
  background: #fff;
  border: 2px solid #f0ebe3;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
  min-height: 210px;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  border-color: var(--red);
  box-shadow: 0 16px 40px rgba(223, 25, 25, 0.12);
  transform: translateY(-4px);
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-icon {
  font-size: 32px;
  line-height: 1;
  font-family:
    "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.highlight-number {
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1;
}

.highlight-kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #666;
  line-height: 1.35;
}

.highlight-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

.highlights-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.highlight-badge {
  padding: 28px 32px;
  background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
  border: 2px solid var(--red);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.highlight-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at bottom left,
    rgba(223, 25, 25, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.highlight-badge > * {
  position: relative;
  z-index: 1;
}

.badge-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.badge-text {
  font-size: 17px;
  color: var(--navy);
  line-height: 1.6;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-card {
    min-height: 190px;
  }
}

/* ══════════════════════════════════
         INSTRUCTIONS & STEPS
      ══════════════════════════════════ */
.instructions-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
  padding: 100px 48px;
}

.instructions-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.instructions-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.instructions-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 8px;
  opacity: 0;
  animation: slideDown 0.8s ease forwards;
}

.instructions-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 1px;
}

.instructions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.instructions-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  padding-left: 0;
}

.instructions-list li::before {
  content: "•";
  color: var(--red);
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  margin-right: 12px;
}

.instruction-label {
  font-weight: 600;
  color: #fff;
}

.instruction-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--red);
  transition: all 0.28s ease;

  .footer-social a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
  }
}

.instruction-link:hover {
  opacity: 0.75;
  color: #ff4444;
}

.instructions-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-diagram {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.steps-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.1);
  transition: transform 0.3s ease;
}

.steps-image:hover {
  transform: scale(1.02);
}

.steps-title {
  display: none;
}

.steps-flow {
  display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .institutional-highlights {
    padding: 80px 36px;
  }

  .highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .highlights-footer {
    grid-template-columns: 1fr;
  }

  .instructions-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .instructions-title {
    font-size: clamp(24px, 2.5vw, 32px);
  }
}

@media (max-width: 768px) {
  .institutional-highlights {
    padding: 60px 24px;
  }

  .highlights-header {
    margin-bottom: 40px;
  }

  .highlights-title {
    font-size: 28px;
  }

  .highlights-subtitle {
    font-size: 14px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .highlight-card {
    padding: 24px 16px;
    min-height: 180px;
  }

  .highlight-icon {
    font-size: 24px;
  }

  .highlight-number {
    font-size: 24px;
  }

  .highlight-label {
    font-size: 12px;
  }

  .highlights-footer {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight-badge {
    padding: 20px 24px;
  }

  .badge-icon {
    font-size: 24px;
  }

  .badge-text {
    font-size: 12px;
  }

  .instructions-section {
    padding: 60px 24px;
  }

  .instructions-left {
    gap: 16px;
  }

  .instructions-title {
    font-size: 22px;
  }

  .instructions-list li {
    font-size: 13px;
  }

  .steps-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .institutional-highlights {
    padding: 40px 16px;
  }

  .highlights-title {
    font-size: 22px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    padding: 20px 12px;
    min-height: 0;
  }

  .highlight-number {
    font-size: 20px;
  }

  .highlight-kicker {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .highlight-label {
    font-size: 11px;
    max-width: 28ch;
    text-wrap: balance;
  }

  .highlight-badge {
    padding: 16px 16px;
    flex-direction: column;
    text-align: center;
  }

  .badge-icon {
    font-size: 20px;
  }

  .badge-text {
    font-size: 11px;
  }

  .instructions-section {
    padding: 40px 16px;
  }

  .instructions-list li {
    font-size: 12px;
    gap: 16px;
  }

  .instructions-title {
    font-size: 18px;
  }
}

/* ── FOOTER ── */
.footer {
  background: var(--white);
  color: var(--red);
  padding: 16px 28px 88px; /* Increased bottom padding for info-strip */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr 320px;
  gap: 28px;
  align-items: start;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 160px;
  height: auto;
  display: block;
}

.footer-col {
  min-width: 0;
}

.footer-middle .footer-desc {
  color: var(--red);
  margin: 6px 0 0 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.footer-right .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.footer-section-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  flex: 0 0 36px;
}

.footer-social a img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 4px;
}

.contact-value {
  display: block;
  font-size: 13px;
  color: var(--red-dark);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--border);

  max-width: 1400px;
  margin: 0 auto;

  justify-items: center;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-bottom-content p {
  font-size: 14px;
  color: var(--red-dark);
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.footer-bottom-links a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--red);
}

.divider {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 820px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-right {
    order: 3;
  }

  .footer-middle {
    order: 2;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── GO TO TOP BUTTON ── */
.go-to-top {
  position: fixed;
  bottom: 2%;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--red);
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(10px) scale(0.96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.go-to-top:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.go-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ══════════════════════════════════
         RESPONSIVE
      ══════════════════════════════════ */
@media (max-width: 1100px) {
  :root {
    --header-h: 64px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .header-nav a {
    font-size: 13px;
    padding: 8px 12px;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }
  .panel-b {
    display: none;
  }
  .pi-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .pi-hs:nth-child(2) {
    border-right: none;
  }
  .recruiter-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-right {
    position: static;
  }
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .courses-section {
    padding: 72px 24px;
  }
  .courses-header {
    gap: 20px;
  }
  .course-card {
    min-height: 272px;
  }
  .video-section-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .panel-c-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .video-left {
    min-height: 56vh;
  }
  .video-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 36px;
    justify-content: flex-start;
  }
  .vr-divider {
    display: none;
  }

  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .course-card {
    transform: none;
    min-height: 310px;
  }

  .course-link {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 56px;
  }

  .header-inner {
    padding: 0 20px;
    height: var(--header-h);
  }
  .header-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .logo-divider {
    display: none;
  }
  .logo-block img {
    height: 42px;
  }
  .logo-name {
    font-size: 15px;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }
  .panel-a {
    padding: clamp(240px, 68vw, 360px) 16px 24px;
    min-height: 640px;
    border-right: none;
    justify-content: flex-end;
    background:
      linear-gradient(
        180deg,
        rgba(14, 14, 24, 0.32) 0%,
        rgba(14, 14, 24, 0.55) 40%,
        rgba(14, 14, 24, 0.86) 100%
      ),
      url("../images/vikarant_massey/vikarant_banner.webp") center 10% / cover
        no-repeat,
      #111;
    position: relative;
    overflow: hidden;
  }
  .panel-b {
    display: none;
  }
  .panel-c {
    padding: 32px 24px;
    order: -1;
  }
  .panel-c-desktop-only {
    display: none;
  }

  .panel-a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(17, 17, 17, 0.2) 0%,
      rgba(17, 17, 17, 0.1) 35%,
      rgba(17, 17, 17, 0.75) 100%
    );
    pointer-events: none;
  }

  .panel-a > * {
    position: relative;
    z-index: 1;
  }

  .panel-a-sub {
    max-width: 260px;
  }

  .panel-a-headline .line1 {
    font-size: clamp(22px, 6.5vw, 32px);
  }

  .panel-a-headline .line2 {
    font-size: clamp(34px, 9vw, 50px);
  }

  .panel-a-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: none;
  }

  .stat-item {
    min-width: 0;
    padding: 14px 14px 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(17, 17, 17, 0.42);
    backdrop-filter: blur(5px);
  }

  .stat-num {
    font-size: 28px;
  }

  .stat-label {
    font-size: 9px;
    letter-spacing: 1.8px;
  }

  .stat-divider {
    width: 18px;
    background: rgba(223, 25, 25, 0.85);
  }

  .video-left {
    min-height: 48vh;
  }

  .video-caption {
    padding: 20px 24px 18px;
  }

  .video-caption-title {
    font-size: 20px;
  }

  .video-caption-sub {
    font-size: 11px;
    max-width: 280px;
  }

  .pi-header {
    padding: 40px 24px 28px;
  }
  .pi-trend-summary {
    margin: 0 0 16px;
    padding: 20px 18px 18px;
  }
  .pi-trend-summary-grid {
    grid-template-columns: 1fr;
  }
  .pi-trend-summary-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 14px;
  }
  .pi-body {
    grid-template-columns: 1fr;
  }
  .pi-left {
    border-right: none;
    border-bottom: 1px solid #ece8e2;
    padding: 32px 24px;
  }
  .pi-right {
    padding: 24px 18px 24px;
  }
  .pi-recruiters {
    padding: 28px 24px;
  }
  .pi-hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .recruiter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .courses-section,
  .why-section {
    padding: 56px 20px;
  }
  .courses-section {
    padding: 52px 16px;
  }
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .courses-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 14px;
  }
  .courses-header-desc {
    font-size: 14px;
    line-height: 1.65;
    max-width: 100%;
  }
  .course-card {
    border-radius: 14px;
    min-height: 340px;
  }
  .course-card-face {
    padding: 24px 18px;
  }
  .course-icon {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }
  .degree-tag {
    font-size: 9px;
    padding: 4px 9px;
  }
  .course-back-list li {
    font-size: 12px;
  }
  .info-strip-content {
    padding: 0 12px;
    min-height: 50px;
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .info-item {
    min-width: 0;
    gap: 2px;
  }
  .info-label {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .info-value {
    font-size: 12px;
  }
  .info-divider {
    display: none;
  }
  .naac-strip {
    gap: 16px;
    padding: 20px;
  }
  .footer {
    padding: 16px 20px 34px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-section:first-child {
    grid-column: 1;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-logo img {
    width: 132px;
    margin: 0 auto;
  }

  .footer-middle .footer-desc {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-right .footer-block {
    width: 100%;
  }

  .footer-right .footer-contact {
    width: 100%;
    margin-bottom: 16px;
  }

  .footer-contact li {
    margin-bottom: 14px;
  }

  .footer-social {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .footer-social a img {
    width: 17px;
    height: 17px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
  }

  .go-to-top {
    bottom: 80px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .why-stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .panel-a {
    min-height: 660px;
    padding: 260px 14px 24px;
  }

  .panel-a-headline .line2 {
    font-size: 38px;
  }

  .panel-a-sub {
    max-width: 260px;
  }

  .panel-a-stats {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 13px 13px 11px 14px;
  }

  .stat-num {
    font-size: 26px;
  }

  .stat-label {
    font-size: 8px;
    letter-spacing: 1.6px;
  }

  .info-strip-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 0 8px;
  }

  .info-value {
    font-size: 11px;
  }

  .pi-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .pi-trend-summary {
    padding: 16px 14px 14px;
  }
  .pi-trend-summary-card {
    padding: 14px 14px 12px;
  }
  .pi-trend-summary-value {
    font-size: 22px;
  }
  .pi-spotlight {
    padding: 16px 14px 14px;
  }
  .pi-spotlight-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .pi-spotlight-value {
    font-size: 30px;
  }
  .trend-rows {
    gap: 10px;
  }
  .trend-row {
    padding: 12px 12px 13px;
  }
  .trend-val {
    font-size: 16px;
    padding: 5px 9px;
  }
  .trend-track {
    height: 14px;
  }
  .courses-section {
    padding: 44px 14px;
  }
  .courses-header {
    margin-bottom: 20px;
  }
  .courses-header-desc {
    font-size: 13px;
    line-height: 1.62;
    margin-top: 12px;
  }
  .course-card {
    padding: 20px 14px;
    border-radius: 12px;
  }
  .course-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
  .course-desc {
    font-size: 13px;
    line-height: 1.62;
  }
  .recruiter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .recruiter-logo {
    height: 42px;
  }

  .footer-content {
    gap: 22px;
    margin-bottom: 2px;
  }

  .footer-logo img {
    width: 118px;
  }

  .footer-section-title {
    font-size: 11px;
    letter-spacing: 1.3px;
    margin-bottom: 8px;
  }

  .footer-middle .footer-desc {
    font-size: 12px;
    line-height: 1.55;
  }

  .footer-contact li {
    margin-bottom: 12px;
  }

  .footer-right .footer-block {
    width: 100%;
  }

  .contact-label {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .contact-value {
    font-size: 12px;
  }

  .footer-social {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .footer-social a img {
    width: 16px;
    height: 16px;
  }

  .footer-bottom-content p {
    font-size: 11px;
    line-height: 1.5;
  }

  .video-left {
    min-height: 42vh;
  }
  .video-caption {
    padding: 16px 18px 14px;
  }
  .video-caption-title {
    font-size: 16px;
  }
  .video-caption-sub {
    font-size: 10px;
    max-width: 100%;
  }
}

/* ── PROGRAM CATALOG (NEW) ── */
.program-catalog-shell {
  margin-top: 26px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 18px;
  background: linear-gradient(165deg, #ffffff 0%, #f8f8f8 100%);
  padding: 18px;
  box-shadow: 0 18px 38px rgba(20, 20, 20, 0.05);
}

.program-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.program-degree-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-degree-tab {
  border: 1px solid rgba(26, 26, 26, 0.16);
  background: #fff;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.program-degree-tab.is-active,
.program-degree-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.program-catalog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.program-school-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.program-school-card {
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-school-card:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 25, 25, 0.3);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.08);
}

.program-school-card.is-active {
  border-color: rgba(223, 25, 25, 0.55);
  box-shadow: 0 10px 20px rgba(223, 25, 25, 0.11);
}

.program-school-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(223, 25, 25, 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.program-school-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.program-school-name {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.15;
  color: var(--navy);
}

.program-school-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.68);
}

.program-school-preview {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.84);
}

.program-detail-panel {
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
}

.program-detail-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--red);
  font-weight: 800;
  margin-bottom: 6px;
}

.program-detail-title {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 8px;
}

.program-detail-meta {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 12px;
}

.program-family-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.program-family-tab {
  border: 1px solid rgba(26, 26, 26, 0.14);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  cursor: pointer;
  color: var(--navy);
}

.program-family-tab.is-active,
.program-family-tab:hover {
  border-color: rgba(223, 25, 25, 0.38);
  background: rgba(223, 25, 25, 0.08);
  color: var(--red-dark);
}

.program-detail-list {
  list-style: none;
  display: grid;
  gap: 8px;
  max-height: 420px;
  overflow: auto;
  padding-right: 6px;
}

.program-detail-item {
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 10px;
  padding: 9px 11px;
  background: #fff;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(26, 26, 26, 0.9);
}

.program-detail-empty {
  font-size: 13px;
  color: rgba(26, 26, 26, 0.68);
}

@media (max-width: 1100px) {
  .program-catalog-layout {
    grid-template-columns: 1fr;
  }

  .program-school-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .program-catalog-shell {
    padding: 14px;
    border-radius: 14px;
  }

  .program-catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .program-school-grid {
    grid-template-columns: 1fr;
  }

  .program-school-name {
    font-size: 20px;
  }

  .program-detail-title {
    font-size: 24px;
  }

  .program-detail-list {
    max-height: 320px;
  }
}

@media (max-width: 480px) {
  .program-degree-tab {
    width: 100%;
    text-align: center;
  }

  .program-detail-panel {
    padding: 12px;
  }

  .program-detail-item {
    font-size: 12px;
  }
}

/* ── VIEW ALL SPECIALIZATIONS BUTTON ── */
.view-all-specs-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.28s ease;
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 8px;
}

.view-all-specs-btn:hover {
  color: var(--red-dark);
  text-decoration: underline;
  letter-spacing: 0.7px;
}

/* ── SPECIALIZATIONS MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideUp 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 28px;
  border-bottom: 1px solid #f0f0f0;
  background: white;
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--navy);
}

.modal-filters {
  padding: 20px 28px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-search-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-sans);
  transition: all 0.2s ease;
}

.spec-search-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(223, 25, 25, 0.1);
}

.spec-search-input::placeholder {
  color: #999;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #666;
}

.filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fff5f5;
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

.spec-groups {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.spec-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-group-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
}

.spec-group-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.spec-group-list li {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  padding-left: 18px;
  position: relative;
}

.spec-group-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

.spec-no-results {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.spec-no-results p {
  margin: 0;
  font-size: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .modal-content {
    max-height: 90vh;
    max-width: 95%;
  }

  .modal-header {
    padding: 20px 20px;
  }

  .modal-header h2 {
    font-size: 18px;
  }

  .modal-filters {
    padding: 16px 20px;
  }

  .modal-body {
    padding: 20px;
  }

  .spec-search-input {
    padding: 10px 14px;
    font-size: 13px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  .spec-groups {
    gap: 20px;
  }

  .spec-group {
    gap: 10px;
  }

  .spec-group-list li {
    font-size: 13px;
  }
}

@keyframes livePillPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.16);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* -- MOBILE CATALOG COMPONENTS -- */

/* Unified: School cards grid for mobile and desktop */
.program-school-cards-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.program-school-card-item {
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: all 0.24s ease;
}

.program-school-card-item:hover {
  border-color: rgba(223, 25, 25, 0.3);
  box-shadow: 0 8px 20px rgba(20, 20, 20, 0.08);
}

.program-card-header {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

.program-card-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(223, 25, 25, 0.09);
  border-radius: 8px;
}

.program-card-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.program-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.program-card-count {
  font-size: 12px;
  font-weight: 600;
  color: rgb(26 26 26 / 78%);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.program-card-preview {
  padding: 0;
  font-size: 11px;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.4;
}

.program-card-preview-item {
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.program-card-more-indicator {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
}

/* Expandable content */
.program-card-expanded {
  display: none;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  animation: slideDown 0.2s ease;
}

.program-school-card-item.is-expanded .program-card-expanded {
  display: flex;
  flex-direction: column;
}

.program-card-programs {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 400px;
  overflow-y: auto;
}

.program-card-program-item {
  padding: 8px 10px;
  background: #f8f8f8;
  border-radius: 6px;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.85);
  line-height: 1.4;
}

/* View More/Less buttons */
.program-card-view-more-btn-initial {
  width: 100%;
  padding: 10px;
  background: rgba(223, 25, 25, 0.08);
  border: none;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0;
}

.program-card-view-more-btn-initial:hover {
  background: rgba(223, 25, 25, 0.15);
}

.program-school-card-item.is-expanded .program-card-view-more-btn-initial {
  display: none;
}

.program-card-view-more-btn {
  width: 100%;
  padding: 10px;
  background: rgba(223, 25, 25, 0.08);
  border: none;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0 0 12px 12px;
}

.program-card-view-more-btn:hover {
  background: rgba(223, 25, 25, 0.15);
}

/* Mobile responsive: show cards grid only */
@media (max-width: 768px) {
  .program-school-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .program-school-grid {
    display: none;
  }

  .program-catalog-layout {
    display: block;
  }

  .program-detail-panel {
    display: none;
  }

  .program-card-header {
    padding: 10px;
  }

  .program-card-name {
    font-size: 16px;
  }

  .program-card-programs {
    max-height: 200px;
    gap: 6px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .program-school-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .program-card-header {
    padding: 10px;
  }

  .program-card-name {
    font-size: 16px;
  }

  .program-card-programs {
    max-height: 200px;
    gap: 6px;
    padding: 10px;
  }
}

/* Desktop: override to use cards grid instead of old grid */
@media (min-width: 769px) {
  .program-school-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .program-school-grid {
    display: none;
  }

  .program-catalog-layout {
    display: block;
  }

  .program-detail-panel {
    display: none;
  }

  .program-school-card-item {
    display: flex;
    flex-direction: column;
  }

  .program-card-header {
    flex: 1;
    cursor: pointer;
  }

  .program-card-programs {
    max-height: 300px;
    gap: 8px;
    padding: 12px;
  }

  .program-card-name {
    font-size: 18px;
  }

  .program-card-preview-item {
    font-size: 14px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ===== CAMPUS TOUR ===== */
.campus-tour-section {
  padding: 80px 0 100px;
  background: #f8f5f2;
  position: relative;
  overflow: hidden;
}

/* Decorative background circles */
.campus-tour-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #f0e6e6;
  z-index: 0;
}
.campus-tour-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #e8f0ea;
  z-index: 0;
}

.ct-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Badge pill */
.ct-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #e8d5d5;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--red-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ct-dot {
  width: 7px;
  height: 7px;
  background: var(--red-dark);
  border-radius: 50%;
  display: inline-block;
}

/* Title */
.ct-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 16px;
}
.ct-title em {
  font-style: normal;
  color: var(--red);
}

/* Description */
.ct-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 420px;
}

/* Highlight rows */
.ct-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 34px;
}
.ct-hl {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
  border-left: 3px solid #b01e28;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.ct-hl:hover {
  transform: translateX(5px);
  box-shadow: 4px 0 12px rgba(176, 30, 40, 0.08);
}
.ct-hl i {
  font-size: 20px;
  color: #b01e28;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.ct-hl-text {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}
.ct-hl-sub {
  font-size: 15px;
  color: var(--red-dark);
  margin-top: 2px;
}

/* CTA Button */
.ct-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #b01e28;
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.ct-btn:hover {
  background: #8f1820;
  transform: translateY(-2px);
}
.ct-btn i {
  font-size: 16px;
}

/* Video column */
.ct-video-col {
  position: relative;
  padding-bottom: 30px;
}

.ct-video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.ct-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Floating info badge below video */
.ct-video-badge {
  position: absolute;
  bottom: 0;
  left: 24px;
  background: #1a1a2e;
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  min-width: 220px;
}
.ct-video-badge i {
  color: #b01e28;
  font-size: 22px;
  flex-shrink: 0;
}
.ct-video-badge-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.ct-video-badge-sub {
  font-size: 11px;
  color: #aaa;
  margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .ct-grid {
    gap: 40px;
  }
  .ct-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .campus-tour-section {
    padding: 50px 0 80px;
  }
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ct-video-col {
    order: -1;
  }
  .ct-title {
    font-size: 26px;
  }
  .ct-video-badge {
    left: 12px;
    right: 12px;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .ct-title {
    font-size: 22px;
  }
  .ct-desc {
    font-size: 14px;
  }
  .ct-hl {
    padding: 10px 12px;
  }
  .ct-hl-text {
    font-size: 12px;
  }
  .ct-btn {
    padding: 11px 22px;
    font-size: 12px;
  }
  .footer {
    margin-bottom: 10%;
  }
}

/* Ensure application form remains visible and usable on mobile widths */
@media (max-width: 768px) {
  .panel-c {
    display: block;
    width: 100%;
    padding: 22px 14px;
  }

  .form-headline {
    min-height: 0;
    align-items: flex-start;
  }

  .npf_wgts,
  .npf_wgts iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
  }

  .npf_wgts iframe {
    min-height: 540px;
  }
}
.icon {
  width: 30px;
}
