/* ============================================
   MSMgrad × Davis University MSM Page
   Global Standards CSS — v2
   ============================================ */

:root {
  --red: #E31E24;
  --red-dark: #c41a1f;
  --red-light: #ffeaea;
  --dark: #1a1a1a;
  --dark-2: #2d2d2d;
  --dark-3: #3c3c3c;
  --mid: #555555;
  --muted: #888888;
  --light: #f7f7f7;
  --white: #ffffff;
  --border: #e5e5e5;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-red { color: var(--red); }
.text-white { color: var(--white); }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }
.mt-4 { margin-top: 1.5rem; }
.section { padding: 90px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex!important; align-items: center!important; gap: 8px!important;
  padding: 12px 28px!important; border-radius: 6px!important;
  font-weight: 600!important; font-size: 0.95rem!important;
  transition: all var(--transition)!important; cursor: pointer!important;
  border: 2px solid transparent!important;
}
.btn-primary {
    background: var(--red) !important;
    color: var(--white) !important;
    border-color: var(--red) !important;
    background-color: var(--red) !important;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(227,30,36,0.35); }
.btn-outline { background: transparent!important; color: var(--white)!important; border-color: rgba(255,255,255,0.6)!important; }
.btn-outline:hover { background: rgba(255,255,255,0.12)!important; border-color: var(--white)!important; }
.btn-lg { padding: 15px 36px!important; font-size: 1.05rem!important; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Section header ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--red-light); color: var(--red);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 14px;
}
.section-tag.light { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--mid); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-desc.light { color: rgba(255,255,255,0.7); }

/* ---- Check list ---- */
.check-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.97rem; }
.check-list li i { color: var(--red); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ============================================
   SCHOLARSHIP BANNER
============================================ */
.scholarship-banner {
  position: relative;
  background: linear-gradient(90deg, #B22222 0%, var(--red) 50%, #B22222 100%);
  color: var(--white);
  padding: 10px 24px;
  text-align: center;
  z-index: 1001;
  animation: pulse-bg 3s infinite;
}
@keyframes pulse-bg {
  0%, 100% { background: linear-gradient(90deg, #B22222 0%, var(--red) 50%, #B22222 100%); }
  50% { background: linear-gradient(90deg, var(--red) 0%, #B22222 50%, var(--red) 100%); }
}
.scholarship-inner {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.scholarship-inner i { font-size: 1rem; }
.scholarship-inner span { font-size: 0.9rem; }
.scholarship-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); color: var(--red);
  padding: 5px 16px; border-radius: 20px;
  font-size: 0.82rem; font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}
.scholarship-btn:hover { background: var(--dark); color: var(--white); }
.scholarship-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.9rem; padding: 4px;
  transition: color var(--transition);
}
.scholarship-close:hover { color: var(--white); }
.scholarship-banner.hidden { display: none; }

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 52px!important; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    color: var(--dark-3) !important;
    transition: color var(--transition) !important;
    font-family: 'Inter', sans-serif;
}
.nav-links a:hover { color: var(--red)!important; }
.nav-cta { padding: 9px 22px; font-size: 0.88rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; flex-direction: column; background: var(--white); padding: 16px 24px 24px; border-top: 1px solid var(--border); gap: 4px; }
.mobile-menu a { padding: 10px 0; font-weight: 500; color: var(--dark); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; margin-top: 10px; }
.mobile-menu.open { display: flex; }

/* ============================================
   HERO — TWO COLUMN
============================================ */
.hero {
  position: relative; min-height: 92vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  overflow: hidden; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(227,30,36,0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(227,30,36,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-split {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: 1180px; margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}

/* Hero Left */
.hero-left { display: flex; flex-direction: column; gap: 0; }

/* Partner row */
.hero-partner-row {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
  padding: 8px 20px 8px 8px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  width: fit-content;
}
.hero-partner-logo { display: flex; align-items: center; }
.hero-davis-img { height: 36px!important; width: auto; background: white; padding: 5px 10px; border-radius: 6px!important; object-fit: contain; display: block; }
.davis-logo-fallback {
  display: flex; align-items: center; gap: 8px;
  background: white; padding: 4px 8px; border-radius: 4px;
}
.davis-svg { height: 30px; width: auto; }
.davis-text-logo strong { font-size: 0.8rem; color: #1B3A6B; display: block; font-weight: 800; }
.davis-text-logo small { font-size: 0.65rem; color: #666; }
.hero-partner-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.2); }
.hero-partner-label { color: rgba(255,255,255,0.85); font-size: 0.84rem; font-weight: 500; }

/* Hero title */
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 18px; letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem); color: rgba(255,255,255,0.72);
  max-width: 520px; margin-bottom: 24px; line-height: 1.7;
}
.hero-subtitle strong { color: var(--white); }

/* Accreditation badges */
.hero-badges-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px;
}
.accred-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; padding: 8px 14px;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.accred-badge:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.25); }
.accred-icon { width: 40px; height: 40px; flex-shrink: 0; }
.accred-icon svg { width: 40px; height: 40px; }
.accred-text strong { display: block; color: var(--white); font-size: 0.82rem; font-weight: 700; }
.accred-text span { font-size: 0.72rem; color: rgba(255,255,255,0.55); }

/* Hero chips */
.hero-meta-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.88); padding: 6px 14px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500; backdrop-filter: blur(6px);
}
.chip i { color: var(--red); }

/* Hero pricing */
.hero-pricing {
  margin-bottom: 24px;
}
.pricing-inner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; padding: 12px 20px;
  width: fit-content;
}
.price-old { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.price-old span { text-decoration: line-through; font-weight: 700; }
.price-new { font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.price-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 400; }
.scholarship-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: var(--white);
  padding: 4px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
  animation: pulse-pill 2s infinite;
}
button#wpforms-submit-11446:hover {
    background: var(--red-dark) !important;
    border-color: var(--red-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.35);
}
@keyframes pulse-pill {
  0%, 100% { box-shadow: 0 0 0 0 rgba(227,30,36,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(227,30,36,0); }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero Right — Video */
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-video-wrap { width: 100%; max-width: 500px; }
.video-thumbnail {
  position: relative; border-radius: 16px; overflow: hidden;
  cursor: pointer; aspect-ratio: 16/9;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  transition: transform var(--transition);
}
.video-thumbnail:hover { transform: scale(1.02); }
.video-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.play-btn {
  width: 68px; height: 68px; background: var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem;
  box-shadow: 0 0 0 12px rgba(227,30,36,0.25);
  transition: all var(--transition);
  margin-bottom: 16px;
}
.video-thumbnail:hover .play-btn {
  background: var(--red-dark); transform: scale(1.1);
  box-shadow: 0 0 0 16px rgba(227,30,36,0.2);
}
.play-btn i { margin-left: 4px; }
.video-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
}
.vcap-tag {
  display: inline-block; background: var(--red); color: var(--white);
  font-size: 0.7rem; font-weight: 700; padding: 2px 10px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.video-caption p { color: var(--white); font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.vcap-sub { color: rgba(255,255,255,0.65); font-size: 0.78rem; }
.video-iframe-wrap { position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.video-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-stats {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 8px;
  margin-top: 14px;
}
.video-stats span {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.65); font-size: 0.8rem; font-weight: 500;
}
.video-stats span i { color: var(--red); }

.hero-scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.3); font-size: 1rem; animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   TRUST BAR
============================================ */
.trust-bar { background: var(--dark); padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.trust-grid { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.trust-num { font-size: 2rem; font-weight: 900; color: var(--red); line-height: 1; }
.trust-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; font-weight: 500; }
.trust-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.1); }

/* ============================================
   UNIVERSITY CARDS
============================================ */
.univ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.univ-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all var(--transition); box-shadow: var(--shadow); }
.univ-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.univ-icon { width: 58px; height: 58px; background: var(--red-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.4rem; color: var(--red); }
.univ-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.univ-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.6; }

/* ============================================
   PROGRAM OVERVIEW
============================================ */
.overview-split { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.overview-text p { font-size: 1.02rem; color: var(--dark-3); line-height: 1.75; margin-bottom: 16px; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 24px; display: flex; align-items: center; gap: 18px; margin-bottom: 16px; transition: all var(--transition); box-shadow: var(--shadow); }
.stat-card:hover { box-shadow: var(--shadow-lg); border-color: var(--red); }
.stat-card.highlight-card { background: var(--red); border-color: var(--red); }
.stat-card.highlight-card .stat-val,
.stat-card.highlight-card .stat-unit,
.stat-card.highlight-card .stat-icon { color: var(--white); }
.stat-icon { font-size: 1.6rem; color: var(--red); }
.stat-val { font-size: 2rem; font-weight: 900; color: var(--dark); line-height: 1; }
.stat-unit { font-size: 0.82rem; color: var(--muted); font-weight: 500; margin-top: 4px; }

/* ============================================
   PRICING SECTION
============================================ */
.pricing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.pricing-card {
  background: var(--white); border: 2px solid var(--red);
  border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), #ff6b6b, var(--red));
}
.scholarship-flag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); color: var(--white);
  font-size: 0.8rem; font-weight: 700; padding: 5px 16px; border-radius: 20px;
  margin-bottom: 24px;
}
.price-display { margin-bottom: 28px; }
.price-was { font-size: 1rem; color: var(--muted); margin-bottom: 6px; }
.price-was span { text-decoration: line-through; color: var(--mid); font-weight: 700; }
.price-now { font-size: 3.5rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 8px; }
.price-save {
  display: inline-flex; align-items: center; gap: 6px;
  background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7;
  padding: 5px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
}
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-feature { display: flex; align-items: center; gap: 10px; font-size: 0.93rem; color: var(--dark-3); }
.price-feature i { color: #2e7d32; flex-shrink: 0; }
.scholarship-notice {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fff8e1; border: 1px solid #ffe082; border-radius: var(--radius-sm);
  padding: 14px 16px; margin-bottom: 20px; font-size: 0.88rem;
}
.scholarship-notice i { color: #f57c00; margin-top: 2px; flex-shrink: 0; }
.seats-left { color: var(--red); font-weight: 700; }
.price-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 10px; }
.pricing-compare { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.pricing-compare h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; color: var(--dark); }
.compare-table { display: flex; flex-direction: column; gap: 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); }
.compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 0; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.compare-row:last-child { border-bottom: none; }
.compare-head { background: var(--dark); color: rgba(255,255,255,0.7); font-weight: 700; font-size: 0.8rem; }
.compare-highlight { background: var(--red-light); font-weight: 600; }
.badge-us {
  display: inline-block; background: var(--red); color: var(--white);
  font-size: 0.65rem; font-weight: 700; padding: 1px 6px; border-radius: 3px; margin-left: 5px; vertical-align: middle;
}
.compare-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; display: flex; align-items: flex-start; gap: 6px; line-height: 1.5; }
.compare-note i { color: var(--red); margin-top: 2px; flex-shrink: 0; }

/* ============================================
   WHY CHOOSE
============================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 22px; transition: all var(--transition); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: transform var(--transition); }
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon { width: 52px; height: 52px; background: var(--red-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--red); margin-bottom: 16px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

/* ============================================
   CURRICULUM
============================================ */
.curriculum-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { padding: 10px 28px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; color: var(--mid); border: 2px solid var(--border); transition: all var(--transition); }
.tab-btn.active, .tab-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.course-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.course-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; position: relative; transition: all var(--transition); box-shadow: var(--shadow); }
.course-card:hover { border-color: var(--red); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.course-num { font-size: 2.5rem; font-weight: 900; color: rgba(227,30,36,0.1); line-height: 1; margin-bottom: 10px; }
.course-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.course-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.6; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.spec-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all var(--transition); box-shadow: var(--shadow); }
.spec-card:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.spec-icon { width: 56px; height: 56px; background: var(--red-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--red); margin: 0 auto 18px; }
.spec-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.spec-card p { font-size: 0.88rem; color: var(--mid); }
.capstone-wrap { max-width: 680px; margin: 0 auto; text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px 40px; box-shadow: var(--shadow); }
.capstone-icon { width: 72px; height: 72px; background: var(--red-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--red); margin: 0 auto 24px; }
.capstone-wrap h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; }
.capstone-wrap p { color: var(--mid); margin-bottom: 24px; }
.capstone-wrap .check-list { text-align: left; display: inline-flex; }

/* ============================================
   FACULTY SECTION
============================================ */
/* ============================================
   FACULTY SECTION — CIRCULAR PHOTO REDESIGN
============================================ */
.faculty-section { background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%); }

/* Row layouts */
.faculty-row { display: grid; gap: 32px; margin-bottom: 32px; }
.faculty-row-3 { grid-template-columns: repeat(3, 1fr); }
.faculty-row-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; margin-bottom: 36px; }

/* Individual card */
.fcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.fcard::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.fcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(227,30,36,0.12);
  border-color: rgba(227,30,36,0.2);
}
.fcard:hover::after { transform: scaleX(1); }

/* Avatar ring — circular photo */
.fcard-top { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 20px; }
.fcard-avatar-ring {
  width: 140px; height: 140px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--red) 0%, #ff6b6b 100%);
  box-shadow: 0 8px 28px rgba(227,30,36,0.22);
  flex-shrink: 0;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background-clip: padding-box;
}
.fcard-photo {
  width: 134px; height: 134px!important;
  border-radius: 50%!important;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #fff;
  flex-shrink: 0;
}
.fcard-initials {
  width: 112px; height: 112px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid #fff;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fcard-avatar-ring--initials {
  padding: 0;
  background: linear-gradient(135deg, #c0392b 0%, var(--red) 100%);
}

/* Role badge */
.fcard-role-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red-light); color: var(--red);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.fcard-role-badge i { font-size: 0.68rem; }

/* Card body */
.fcard-body { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.fcard-name { font-size: 1.15rem; font-weight: 900; color: var(--dark); }
.fcard-dept { font-size: 0.8rem; font-weight: 600; color: var(--mid); letter-spacing: 0.02em; }
.fcard-bio { font-size: 0.875rem; color: var(--mid); line-height: 1.65; margin-top: 4px; max-width: 340px; }
.fcard-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 4px; }
.fcard-tags span {
  background: var(--light); color: var(--dark-3);
  font-size: 0.7rem; font-weight: 600; padding: 4px 12px; border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.fcard:hover .fcard-tags span { background: var(--red-light); color: var(--red); border-color: rgba(227,30,36,0.2); }

/* Footer note */
.faculty-footer-note {
  text-align: center; font-size: 0.88rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.faculty-footer-note i { color: var(--red); }
.faculty-footer-note a { color: var(--red); font-weight: 600; text-decoration: underline; }

/* ============================================
   CAREERS
============================================ */
.careers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.career-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all var(--transition); box-shadow: var(--shadow); }
.career-card:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.career-icon { width: 52px; height: 52px; background: var(--red-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--red); margin: 0 auto 16px; }
.career-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.career-card p { font-size: 0.85rem; color: var(--mid); }
.industries-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.ind-tag { display: inline-flex; align-items: center; gap: 7px; background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 8px 18px; font-size: 0.85rem; font-weight: 600; color: var(--dark-3); transition: all var(--transition); }
.ind-tag:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.ind-tag i { color: var(--red); font-size: 0.8rem; }
.ind-tag:hover i { color: var(--white); }

/* ============================================
   WHO IS IT FOR
============================================ */
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.who-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 24px; text-align: center; transition: all var(--transition); box-shadow: var(--shadow); }
.who-card:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.who-icon-img { width: 64px; height: 64px; margin: 0 auto 20px; }
.who-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.who-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

/* ============================================
   ADMISSIONS
============================================ */
.admissions-layout { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }
.steps-col { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 24px; position: relative; padding-bottom: 36px; }
.step:last-child { padding-bottom: 0; }
.step::after { content: ''; position: absolute; left: 19px; top: 44px; bottom: 0; width: 2px; background: var(--border); }
.step:last-child::after { display: none; }
.step-num { width: 40px; height: 40px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; z-index: 1; }
.step-content h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 0.9rem; color: var(--mid); line-height: 1.6; }
.req-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.req-box h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.req-box h3 i { color: var(--red); }
.req-box ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.req-box ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--dark-3); }
.req-box ul li i { font-size: 0.85rem; margin-top: 3px; }
.req-box ul li i.fa-check { color: var(--red); }
.req-box ul li i.fa-times.optional { color: #28a745; }
.intakes-box { background: var(--light); border-radius: var(--radius-sm); padding: 18px; margin-top: 8px; }
.intakes-box h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.intakes-box h4 i { color: var(--red); }
.intake-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.intake-chip { background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 5px 14px; font-size: 0.82rem; font-weight: 600; color: var(--dark-3); }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section { background: var(--dark-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px; transition: all var(--transition); }
.testimonial-card:hover { background: rgba(255,255,255,0.08); border-color: var(--red); transform: translateY(-4px); }
.stars { color: #FFD700; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p { font-size: 0.95rem; color: rgba(255,255,255,0.82); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar { width: 44px; height: 44px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: var(--white); flex-shrink: 0; }
.test-author strong { display: block; color: var(--white); font-size: 0.95rem; }
.test-author span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ============================================
   PARTNERSHIP
============================================ */
.partnership-layout { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; }
.partner-text .section-tag { margin-bottom: 12px; }
.partner-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 20px; }
.partner-text p { font-size: 0.97rem; color: var(--mid); line-height: 1.75; margin-bottom: 20px; }
.partner-logos { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.partner-logo-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 36px; display: flex; align-items: center; justify-content: center; width: 100%; min-height: 90px; box-shadow: var(--shadow); }
.msmgrad-logo-svg-lg { width: 160px; height: auto; }
.univ-text-fallback { display: flex; flex-direction: column; align-items: center; text-align: center; }
.univ-text-fallback strong { font-size: 1.1rem; color: var(--dark); }
.univ-text-fallback small { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.partner-x { font-size: 2rem; font-weight: 900; color: var(--red); line-height: 1; }

/* ============================================
   FAQ
============================================ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.faq-item:hover { box-shadow: var(--shadow-lg); }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; font-size: 0.97rem; font-weight: 600; color: var(--dark); display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color var(--transition); }
.faq-q:hover { color: var(--red); background-color: #cc336600!important;}
.faq-q i { font-size: 0.85rem; color: var(--red); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.active .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.active .faq-a { max-height: 300px; }
.faq-a p { padding: 0 22px 18px; font-size: 0.92rem; color: var(--mid); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 14px; }
.whatsapp-btn i.fab.fa-whatsapp {
    color: #fff;
}
/* ============================================
   ENROLL CTA
============================================ */
.enroll-section { background: var(--dark); padding: 80px 0; }
.enroll-card { display: grid; grid-template-columns: 1fr 440px; gap: 56px; align-items: center; }
.enroll-text .section-tag { margin-bottom: 14px; }
.enroll-text h2 { font-size: clamp(1.7rem, 2.8vw, 2.5rem); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.enroll-text > p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; }
/* Pricing callout */
.enroll-pricing-callout {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 14px 20px; margin-bottom: 20px; width: fit-content;
}
.ep-old { font-size: 1.3rem; font-weight: 700; text-decoration: line-through; color: rgba(255,255,255,0.35); }
.ep-arrow { color: rgba(255,255,255,0.4); font-size: 1rem; }
.ep-new { font-size: 2rem; font-weight: 900; color: var(--white); }
.ep-save { background: #2e7d32; color: #a5d6a7; font-size: 0.8rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.enroll-benefits { display: flex; flex-wrap: wrap; gap: 14px; }
.enroll-benefits span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; }
.enroll-benefits span i { color: var(--red); }
.enroll-form-box { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.form-scholarship-tag {
  background: var(--red); color: var(--white);
  text-align: center; padding: 10px;
  font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.enroll-form { padding: 28px; }
.enroll-form h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; text-align: center; }
.enroll-form input, .enroll-form select {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font) !important;
    font-size: 0.92rem !important;
    color: var(--dark) !important;
    margin-bottom: 12px !important;
    transition: border-color var(--transition) !important;
    outline: none !important;
    appearance: none;
    background: var(--white) !important;
}
.enroll-form input:focus,
.enroll-form select:focus { border-color: var(--red)!important; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.enroll-success { text-align: center; padding: 40px 24px; }
.enroll-success i { font-size: 3rem; color: #28a745; margin-bottom: 16px; }
.enroll-success h3 { font-size: 1.3rem; margin-bottom: 10px; }
.enroll-success p { color: var(--mid); font-size: 0.92rem; }
button#wpforms-submit-11446 {
    background-color: #007bff;
    color: #fff;
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

/* Hover effect */
button#wpforms-submit-11446:hover {
    background-color: #0056b3;
}

/* Add arrow icon */
button#wpforms-submit-11446::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
/* ============================================
   FOOTER
============================================ */
.footer { background: var(--dark); padding: 64px 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo-img { height: 48px!important; width: auto; display: block; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all var(--transition); }
.social-links a:hover { background: var(--red); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.87rem; margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--red); }
.footer-col p { color: rgba(255,255,255,0.55); font-size: 0.87rem; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.footer-col p i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-small { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin-top: 10px; }
.footer-main-link { display: inline-block; color: var(--red) !important; font-weight: 600; margin-top: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--red); }

/* ============================================
   FLOATING CTA
============================================ */
.floating-cta { position: fixed; bottom: 28px; right: 28px; z-index: 500; opacity: 0; transform: translateY(20px); transition: all var(--transition); pointer-events: none; }
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-cta .btn { box-shadow: 0 8px 32px rgba(227,30,36,0.45); font-size: 0.85rem; padding: 12px 20px; }


/* ============================================
   CURRICULUM ENHANCEMENTS
============================================ */
.curriculum-credit-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow);
}
.ccb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}
.ccb-item i { color: var(--red); }
.ccb-item strong { font-size: 1.1rem; font-weight: 900; color: var(--red); }
.ccb-divider { width: 1px; height: 24px; background: var(--border); }
.tab-intro {
  font-size: 0.97rem;
  color: var(--mid);
  text-align: center;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Concentration cards */
.conc-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 20px; }
.conc-card { padding: 28px 24px; text-align: left; }
.conc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.data-icon { background: rgba(0,136,204,0.12); color: #0088CC; }
.pm-icon { background: rgba(227,30,36,0.1); color: var(--red); }
.mkt-icon { background: rgba(76,175,80,0.12); color: #4caf50; }
.conc-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 14px;
  margin-top: -4px;
}
.conc-course-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 10px;
}
.conc-course-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.4;
}
.conc-course-list li i { color: var(--red); margin-top: 2px; flex-shrink: 0; font-size: 0.78rem; }

/* Admissions extras */
.active-chip {
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 700;
}
.admissions-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--mid);
  margin-top: 16px;
  padding: 10px 12px;
  background: #f0f7ff;
  border-radius: 6px;
  border-left: 3px solid #0088CC;
}
.admissions-note i { color: #0088CC; flex-shrink: 0; margin-top: 2px; }

/* ============================================
   CAREER SUPPORT — BOLD REDESIGN
============================================ */
.career-support-section { background: var(--white); padding: 0 0 80px; }

/* Dark hero banner at top */
.csupport-hero {
  position: relative;
  background: linear-gradient(135deg, #111111 0%, #1e1e1e 60%, #2a1010 100%);
  padding: 72px 0;
  margin-bottom: 0;
  overflow: hidden;
}
.csupport-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(227,30,36,0.18) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(227,30,36,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.csupport-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 2;
}
.csupport-hero-text { display: flex; flex-direction: column; gap: 16px; }
.csupport-hero-text .section-tag { align-self: flex-start; }
.csupport-hero-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.15; }
.csupport-hero-text p { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 540px; }

/* Animated stat ring */
.csupport-stat-ring {
  width: 160px; height: 160px; border-radius: 50%;
  background: conic-gradient(var(--red) 0deg 300deg, rgba(255,255,255,0.08) 300deg 360deg);
  padding: 6px;
  flex-shrink: 0;
  animation: ring-pulse 3s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(227,30,36,0.4); }
  50% { box-shadow: 0 0 0 16px rgba(227,30,36,0); }
}
.csupport-stat-inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: #1a1a1a;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
}
.csupport-stat-num { font-size: 2.8rem; font-weight: 900; color: var(--red); line-height: 1; }
.csupport-stat-unit { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.csupport-stat-label { font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; }

/* 3 Pillar cards */
.csupport-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 48px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.csupport-pillar {
  padding: 44px 36px;
  background: var(--white);
  border-right: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
  display: flex; flex-direction: column; gap: 14px;
}
.csupport-pillar:last-child { border-right: none; }
.csupport-pillar:hover { background: var(--light); }
.csupport-pillar--featured {
  background: linear-gradient(160deg, #1a1a1a 0%, #2d0808 100%);
  border-right-color: rgba(255,255,255,0.08);
}
.csupport-pillar--featured:hover { background: linear-gradient(160deg, #222222 0%, #3a0a0a 100%); }
.csupport-pillar-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(227,30,36,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.csupport-pillar-num {
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  color: var(--border); position: absolute; top: 20px; right: 24px;
}
.csupport-pillar--featured .csupport-pillar-num { color: rgba(255,255,255,0.06); }
.csupport-pillar-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.csupport-pillar--featured .csupport-pillar-icon {
  background: rgba(227,30,36,0.2); color: #ff7070;
}
.csupport-pillar h3 { font-size: 1.15rem; font-weight: 800; color: var(--dark); line-height: 1.3; }
.csupport-pillar--featured h3 { color: #fff; }
.csupport-pillar p { font-size: 0.875rem; color: var(--mid); line-height: 1.65; }
.csupport-pillar--featured p { color: rgba(255,255,255,0.6); }
.csupport-pillar-badge {
  display: inline-flex; align-items: center;
  background: var(--red); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 4px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.06em; align-self: flex-start;
}

/* Feature strips row */
.csupport-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.csupport-feature {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.csupport-feature:hover {
  border-color: rgba(227,30,36,0.25);
  box-shadow: 0 6px 24px rgba(227,30,36,0.07);
  transform: translateY(-3px);
}
.csupport-feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--red);
  transition: all 0.3s;
}
.csupport-feature:hover .csupport-feature-icon {
  background: var(--red); color: #fff; border-color: var(--red);
}
.csupport-feature-content h4 { font-size: 0.98rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.csupport-feature-content p { font-size: 0.85rem; color: var(--mid); line-height: 1.6; }

/* Disclaimer */
.csupport-disclaimer {
  display: flex; align-items: flex-start; gap: 14px;
  background: #f9f9f9; border: 1.5px solid #e0e0e0;
  border-left: 4px solid var(--muted);
  border-radius: var(--radius-sm); padding: 20px 24px;
}
.csupport-disclaimer i { color: var(--muted); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.csupport-disclaimer p { font-size: 0.78rem; color: var(--muted); line-height: 1.65; font-style: italic; }
}

/* ============================================
   FACULTY 5-column grid
============================================ */
.faculty-grid-5 {
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 18px;
}
.faculty-grid-5 .faculty-card { padding: 20px 16px; }
.faculty-grid-5 .faculty-photo { height: 100px; }
.faculty-grid-5 .faculty-img-wrap { height: 100px; }
.faculty-grid-5 .faculty-avatar-fallback { width: 80px; height: 80px; }
.faculty-grid-5 .faculty-bio { font-size: 0.8rem; -webkit-line-clamp: 4; }
.faculty-grid-5 .faculty-info h4 { font-size: 0.9rem; }
.faculty-grid-5 .faculty-title { font-size: 0.75rem; }


/* ============================================
   STUDENT JOURNEY — ENHANCED v3
============================================ */
.journey-section {
  background: #f9f9fb;
  position: relative;
  overflow: hidden;
}
.journey-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 10% 20%, rgba(227,30,36,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(227,30,36,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Progress Bar --- */
.journey-progress-bar {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}
.jpb-track {
  height: 8px;
  background: #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
.jpb-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), #ff6b6b);
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.jpb-fill::after {
  content: '🎓';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 4px rgba(227,30,36,0.5));
}
.jpb-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 2px;
}

/* --- Steps Grid: 2 columns with center spine --- */
.journey-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  max-width: 1080px;
  margin: 0 auto 60px;
  gap: 0;
}

/* Central spine line */
.journey-steps-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(227,30,36,0.3) 5%,
    rgba(227,30,36,0.3) 95%,
    transparent 100%
  );
  z-index: 0;
}

/* Each step: always a full-width row but content alternates sides */
.jstep {
  grid-column: 1;           /* default: left side */
  display: grid;
  grid-template-columns: 1fr 56px;  /* card | connector+node */
  align-items: center;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.jstep.right {
  grid-column: 2;            /* right side */
  display: grid;
  grid-template-columns: 56px 1fr;  /* connector+node | card */
}

/* Connector lines (top/bottom of node column) */
.jstep-connector {
  grid-row: 1;
  width: 3px;
  min-height: 40px;
  background: repeating-linear-gradient(
    to bottom, rgba(227,30,36,0.4) 0px, rgba(227,30,36,0.4) 6px,
    transparent 6px, transparent 12px
  );
  margin: 0 auto;
  flex: 1;
}
.jstep-connector.top-hide,
.jstep-connector.bottom-hide { visibility: hidden; }

/* Node column for left step: cols 2 */
.jstep:not(.right) .jstep-connector { grid-column: 2; }
.jstep:not(.right) .jstep-node      { grid-column: 2; }
.jstep:not(.right) .jstep-card      { grid-column: 1; grid-row: 1; padding-right: 28px; }

/* Node column for right step: col 1 */
.jstep.right .jstep-connector { grid-column: 1; }
.jstep.right .jstep-node      { grid-column: 1; }
.jstep.right .jstep-card      { grid-column: 2; grid-row: 1; padding-left: 28px; }

/* The circular icon node */
.jstep-node {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}
.jstep-icon-ring {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
  box-shadow: 0 0 0 6px rgba(227,30,36,0.1), 0 4px 16px rgba(227,30,36,0.2);
  transition: all 0.35s ease;
  flex-shrink: 0;
}
.jstep:hover .jstep-icon-ring {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 10px rgba(227,30,36,0.12), 0 6px 24px rgba(227,30,36,0.35);
  transform: scale(1.08);
}
.final-ring {
  width: 64px;
  height: 64px;
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  font-size: 1.4rem;
  box-shadow: 0 0 0 8px rgba(227,30,36,0.15), 0 8px 28px rgba(227,30,36,0.4);
}

/* --- Journey Card --- */
.jstep-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 24px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.jstep-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.jstep:hover .jstep-card,
.jstep-card:hover {
  border-color: rgba(227,30,36,0.3);
  box-shadow: 0 8px 36px rgba(227,30,36,0.1);
  transform: translateY(-3px);
}
.jstep:hover .jstep-card::before { transform: scaleX(1); }

/* Final card special styling */
.jstep-card-final {
  background: linear-gradient(135deg, #fff0f0, #fff8f8);
  border-color: rgba(227,30,36,0.35);
  box-shadow: 0 8px 36px rgba(227,30,36,0.12);
}
.jstep-card-final::before { transform: scaleX(1); }

/* Card elements */
.jstep-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.final-badge {
  background: var(--red);
  color: var(--white);
}
.jstep-duration {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.jstep-duration i { color: var(--red); }
.jstep-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.jstep-desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 14px;
}
.jstep-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.jstep-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.4;
}
.jstep-list li i {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.9;
}
.jstep-outcome {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
}
.jstep-outcome i { flex-shrink: 0; }
.final-outcome {
  background: rgba(227,30,36,0.1);
  font-size: 0.85rem;
}

/* Journey Stats Bar */
.journey-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px 40px;
  flex-wrap: wrap;
}
.jsb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  flex: 1;
  min-width: 160px;
}
.jsb-icon {
  font-size: 1.6rem;
  color: var(--red);
  opacity: 0.85;
  flex-shrink: 0;
}
.jsb-item div { display: flex; flex-direction: column; }
.jsb-item strong { font-size: 1.3rem; font-weight: 900; color: var(--dark); line-height: 1; }
.jsb-item span { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.jsb-divider {
  width: 1px; height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================
   SOCIAL SHARE SECTION — ENHANCED v3
============================================ */
.share-section {
  background: #0f1117;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.share-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(227,30,36,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(0,136,204,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 50% 100%, rgba(37,211,102,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.share-container { position: relative; z-index: 2; }

/* --- Share Header --- */
.share-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}
.share-header-text .section-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.share-header-text h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.share-header-text > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 540px;
}

/* Big circular share counter */
.share-big-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.sbc-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0deg, var(--red) 260deg, rgba(255,255,255,0.07) 260deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  position: relative;
  animation: sbc-rotate 8s linear infinite;
}
@keyframes sbc-rotate {
  from { filter: drop-shadow(0 0 12px rgba(227,30,36,0.3)); }
  50%  { filter: drop-shadow(0 0 22px rgba(227,30,36,0.5)); }
  to   { filter: drop-shadow(0 0 12px rgba(227,30,36,0.3)); }
}
.sbc-inner {
  width: 100%;
  height: 100%;
  background: #1a1a22;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sbc-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.sbc-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.sbc-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.sbc-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.sbc-meta-item strong { color: rgba(255,255,255,0.85); }
.sbc-meta-item i { width: 14px; text-align: center; }

/* --- Ticker Bar --- */
.share-ticker-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid #4caf50;
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 36px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  min-height: 46px;
}
.stb-dot-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4caf50;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.share-live-dot {
  font-size: 0.55rem;
  animation: live-pulse 1.5s infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.stb-messages {
  flex: 1;
  transition: opacity 0.4s ease;
}

/* --- Platform Cards Grid --- */
.share-platform-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.splatform-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.splatform-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.splatform-card:hover { transform: translateY(-5px); }

.splatform-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.splatform-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.splatform-card:hover .splatform-logo { transform: scale(1.1); }

.splatform-popular-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}
.splatform-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

/* Count bar */
.splatform-count-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.splatform-bar-bg {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.splatform-bar {
  height: 100%;
  border-radius: 2px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.splatform-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}
.splatform-card:hover .splatform-count { color: rgba(255,255,255,0.9); }

.splatform-cta {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: color 0.3s;
}
.splatform-card:hover .splatform-cta { color: rgba(255,255,255,0.85); }

/* Platform-specific styles */
.splatform-wa { border-color: rgba(37,211,102,0.15); }
.splatform-wa:hover { border-color: #25D366; box-shadow: 0 12px 40px rgba(37,211,102,0.15); }
.wa-logo { background: #25D366; }
.wa-bar { background: #25D366; }
.splatform-wa .splatform-popular-tag { background: rgba(37,211,102,0.15); color: #25D366; }

.splatform-li { border-color: rgba(10,102,194,0.15); }
.splatform-li:hover { border-color: #0A66C2; box-shadow: 0 12px 40px rgba(10,102,194,0.15); }
.li-logo { background: #0A66C2; }
.li-bar { background: #0A66C2; }
.splatform-li .splatform-popular-tag { background: rgba(10,102,194,0.15); color: #4d9de0; }

.splatform-fb { border-color: rgba(24,119,242,0.15); }
.splatform-fb:hover { border-color: #1877F2; box-shadow: 0 12px 40px rgba(24,119,242,0.15); }
.fb-logo { background: #1877F2; }
.fb-bar { background: #1877F2; }
.splatform-fb .splatform-popular-tag { background: rgba(24,119,242,0.15); color: #5ba4f5; }

.splatform-tw { border-color: rgba(255,255,255,0.08); }
.splatform-tw:hover { border-color: rgba(255,255,255,0.25); box-shadow: 0 12px 40px rgba(255,255,255,0.05); }
.tw-logo { background: #111; border: 1px solid rgba(255,255,255,0.2); }
.tw-bar { background: #aaa; }
.splatform-tw .splatform-popular-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }

.splatform-tg { border-color: rgba(0,136,204,0.15); }
.splatform-tg:hover { border-color: #0088CC; box-shadow: 0 12px 40px rgba(0,136,204,0.15); }
.tg-logo { background: #0088CC; }
.tg-bar { background: #0088CC; }
.splatform-tg .splatform-popular-tag { background: rgba(0,136,204,0.12); color: #4db8e8; }

.splatform-copy { border-color: rgba(255,255,255,0.08); }
.splatform-copy:hover { border-color: var(--red); box-shadow: 0 12px 40px rgba(227,30,36,0.12); }
.copy-logo { background: #2a2a2a; }
.copy-bar { background: var(--red); }
.splatform-copy .splatform-popular-tag { background: rgba(227,30,36,0.12); color: #ff7b7e; }
.splatform-copy.copied .copy-logo { background: #2e7d32; }
.splatform-copy.copied .copy-logo i::before { content: '\f00c'; }
.splatform-copy.copied .copy-cta { color: #4caf50; }

/* --- Bottom Prompt --- */
.share-bottom-prompt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.5;
}
.share-bottom-prompt i { flex-shrink: 0; opacity: 0.7; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; }
  .hero-right { order: -1; }
  .hero-video-wrap { max-width: 100%; }
  .univ-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-grid { grid-template-columns: repeat(2, 1fr); }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-split { grid-template-columns: 1fr; gap: 36px; }
  .overview-stats-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .overview-stats-col .stat-card { margin-bottom: 0; }
  .partnership-layout { grid-template-columns: 1fr; }
  .partner-logos { flex-direction: row; }
  .pricing-layout { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  /* Journey responsive */
  .journey-steps-grid { gap: 0; }
  /* Share responsive */
  .share-header { grid-template-columns: 1fr; gap: 28px; }
  .share-big-counter { flex-direction: row; justify-content: flex-start; align-items: center; }
  .share-platform-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .admissions-layout { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .enroll-card { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badges-row { gap: 8px; }
  /* Journey: single column on mobile */
  .journey-steps-grid {
    grid-template-columns: 56px 1fr;
    gap: 0;
  }
  .journey-steps-grid::before {
    left: 27px;
    transform: none;
  }
  .jstep,
  .jstep.right {
    grid-column: 1 / -1;
    grid-template-columns: 56px 1fr;
    display: grid;
    align-items: flex-start;
  }
  .jstep:not(.right) .jstep-connector,
  .jstep:not(.right) .jstep-node,
  .jstep.right .jstep-connector,
  .jstep.right .jstep-node {
    grid-column: 1;
  }
  .jstep:not(.right) .jstep-card,
  .jstep.right .jstep-card {
    grid-column: 2;
    grid-row: 1;
    padding-left: 20px;
    padding-right: 0;
  }
  .jstep-connector { margin: 0 auto; }
  .jstep-icon-ring { width: 44px; height: 44px; font-size: 1rem; }
  .final-ring { width: 50px; height: 50px; font-size: 1.1rem; }
  .journey-stats-bar { flex-direction: column; padding: 24px 20px; align-items: flex-start; }
  .jsb-item { padding: 10px 0; min-width: 0; width: 100%; }
  .jsb-divider { width: 100%; height: 1px; }
  /* Share */
  .share-platform-grid { grid-template-columns: repeat(2, 1fr); }
  .share-header { gap: 20px; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero-split { padding: 48px 20px; }
  .hero-title { font-size: 2rem; }
  .univ-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .partner-logos { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .floating-cta { bottom: 16px; right: 16px; left: 16px; }
  .floating-cta .btn { width: 100%; justify-content: center; font-size: 0.8rem; padding: 12px 16px; }
  .overview-stats-col { grid-template-columns: 1fr; }
  .hero-partner-row { flex-wrap: wrap; padding: 8px 14px; }
  .accred-badge { padding: 6px 10px; }
  .accred-icon { width: 32px; height: 32px; }
  .accred-icon svg { width: 32px; height: 32px; }
  .faculty-grid { grid-template-columns: 1fr; }
  .pricing-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .enroll-pricing-callout { flex-direction: column; align-items: flex-start; gap: 6px; }
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr; font-size: 0.78rem; }
  .scholarship-banner { padding: 8px 40px 8px 16px; }
  /* Journey mobile */
  .jstep-card { padding: 18px 16px; }
  .jstep-title { font-size: 0.95rem; }
  .jpb-labels { font-size: 0.62rem; }
  /* Share mobile */
  .share-platform-grid { grid-template-columns: repeat(2, 1fr); }
  .share-big-counter { flex-direction: column; align-items: flex-start; }
  .sbc-ring { width: 110px; height: 110px; }
  .sbc-num { font-size: 1.4rem; }
}

/* ============================================
   PARTNERSHIP SECTION
============================================ */
.partnership-logos {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.plogo-wrap { background: var(--white); padding: 20px 32px; border-radius: var(--radius); box-shadow: var(--shadow); }
.plogo-img { height: 48px!important; width: auto; }
.plogo-divider { font-size: 2rem; font-weight: 800; color: var(--red); }
.partnership-details { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.pd-card {
  background: var(--light); border-radius: var(--radius); padding: 32px;
  border-left: 4px solid var(--red);
}
.pd-card i { font-size: 1.8rem; color: var(--red); margin-bottom: 12px; }
.pd-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.pd-card p { font-size: 0.95rem; color: var(--mid); line-height: 1.65; }
@media (max-width: 768px) {
  .partnership-details { grid-template-columns: 1fr; }
  .partnership-logos { gap: 16px; }
}

/* ============================================
   WHATSAPP FLOATING WIDGET
============================================ */
.whatsapp-widget {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
}
.whatsapp-btn {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  font-size: 1.7rem; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all 0.3s ease; position: relative;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.wa-tooltip {
  position: absolute; left: 68px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--white); padding: 6px 14px;
  border-radius: 6px; font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.whatsapp-btn:hover .wa-tooltip { opacity: 1; }
@media (max-width: 768px) {
  .whatsapp-widget { bottom: 80px; left: 16px; }
  .whatsapp-btn { width: 50px; height: 50px; font-size: 1.5rem; }
}
