/* Vishnu Global University — Online Degree Programs */
:root {
  --primary: #0a2540;
  --primary-mid: #1e3a5f;
  --secondary: #38bdf8;
  --secondary-soft: #e0f2fe;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.35);
  --text: #475569;
  --text-muted: #64748b;
  --heading: #0f172a;
  --white: #fff;
  --bg: #f8fafc;
  --bg-alt: #fff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;
  --header-h: 88px;
  --vgu-navy: #0c1f4a;
  --vgu-gold: #c9a227;
  --urgency-h: 40px;
  --transition: 0.25s ease;
  --course-mba: #1d4ed8;
  --course-bba: #0369a1;
  --course-bca: #7c3aed;
  --course-bcom: #0d9488;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + var(--urgency-h) + 12px); }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--heading); line-height: 1.2; font-weight: 700; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), #2563eb 50%, var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; font-family: var(--font); font-size: 15px; font-weight: 600;
  border-radius: 10px; border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  color: var(--primary); box-shadow: 0 4px 14px var(--accent-glow);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 22px var(--accent-glow); color: var(--primary); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-mid); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-light { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: var(--white); color: var(--primary); }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* Urgency */
.urgency-bar {
  background: linear-gradient(90deg, var(--primary), #1e40af);
  color: var(--white); text-align: center; padding: 10px 16px; font-size: 13px; z-index: 1001; position: relative;
}
.urgency-bar strong { color: #fbbf24; }
.pulse-dot {
  display: inline-block; width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
  margin-right: 6px; animation: pulse 1.5s infinite; vertical-align: middle;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; transform: scale(1.15); } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--primary); line-height: 1.2; }
@media (min-width: 768px) { .logo { font-size: 1.15rem; } }
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; letter-spacing: -0.5px;
}
.logo-text span { color: var(--secondary); }

/* VGU logo — transparent SVG on white header (no black box) */
.logo-img-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: transparent;
  padding: 4px 0;
  transition: opacity 0.25s ease;
}
.logo-img-link:hover { opacity: 0.9; }
.logo-img {
  display: block;
  height: 60px;
  width: auto;
  min-width: 220px;
  max-width: min(340px, 70vw);
  object-fit: contain;
  object-position: left center;
}
/* Legacy PNG fallback — hide black box via blend on white only */
.logo-img.logo-png {
  mix-blend-mode: screen;
  filter: contrast(1.05);
}
.footer-logo-wrap {
  display: inline-flex;
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
}
.footer-logo-img {
  display: block;
  height: 70px;
  width: auto;
  min-width: 220px;
  max-width: 100%;
  object-fit: contain;
}
.main-nav .nav-link.active,
.nav-dropdown-menu a.active {
  color: var(--vgu-navy);
  background: var(--secondary-soft);
  font-weight: 600;
}
@media (max-width: 575px) {
  .logo-img { height: 44px; min-width: 170px; max-width: 72vw; }
  .logo-img-link { padding: 2px 0; }
  :root { --header-h: 80px; }
}

.main-nav { display: none; gap: 6px; align-items: center; }
.main-nav > a, .nav-dropdown > button {
  font-size: 14px; font-weight: 500; color: var(--text); padding: 8px 12px; border-radius: 8px;
  background: none; border: none; cursor: pointer; font-family: var(--font);
}
.main-nav > a:hover, .nav-dropdown > button:hover { color: var(--primary); background: var(--secondary-soft); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(4px); }
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; font-size: 14px; color: var(--text); border-radius: 8px;
}
.nav-dropdown-menu a:hover { background: var(--secondary-soft); color: var(--primary); }
.nav-dropdown-menu a.active { background: var(--secondary-soft); color: var(--primary); font-weight: 600; }
.header-cta { display: none; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; }
.mobile-nav {
  display: flex; flex-direction: column; gap: 4px; padding: 16px 20px 24px;
  background: var(--white); border-top: 1px solid var(--border);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { font-weight: 500; padding: 12px 0; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-nav .mobile-nav-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); padding-top: 12px; }

/* Hero — Home */
.hero-home {
  position: relative; padding: 56px 0 72px; overflow: hidden;
}
.hero-home-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(56,189,248,0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(37,99,235,0.1), transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--secondary-soft) 100%);
}
.hero-home-grid { display: grid; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-block; background: var(--secondary-soft); color: #0369a1;
  font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 50px;
  border: 1px solid rgba(56,189,248,0.35); margin-bottom: 16px;
}
.hero-home h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); letter-spacing: -0.03em; margin-bottom: 16px; }
.hero-home .lead { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; margin-bottom: 28px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-stats-inline { display: flex; flex-wrap: wrap; gap: 24px; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--primary); }
.hero-stat span { font-size: 13px; color: var(--text-muted); }
.hero-visual {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.hero-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-course-pill {
  padding: 16px; border-radius: var(--radius); border: 1px solid var(--border);
  text-align: center; transition: all var(--transition);
}
.hero-course-pill:hover { border-color: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hero-course-pill .pill-icon { font-size: 1.75rem; margin-bottom: 6px; }
.hero-course-pill strong { display: block; font-size: 14px; color: var(--heading); }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-gradient {
  background: linear-gradient(180deg, var(--secondary-soft) 0%, var(--white) 100%);
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #0369a1; background: var(--secondary-soft);
  padding: 6px 14px; border-radius: 50px; margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* Program cards — Home */
.programs-grid { display: grid; gap: 24px; }
.program-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: all var(--transition); position: relative; overflow: hidden;
}
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.program-card[data-course="mba"]::before { background: var(--course-mba); }
.program-card[data-course="bba"]::before { background: var(--course-bba); }
.program-card[data-course="bca"]::before { background: var(--course-bca); }
.program-card[data-course="bcom"]::before { background: var(--course-bcom); }
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.program-card[data-course="mba"] .program-icon { background: #dbeafe; }
.program-card[data-course="bba"] .program-icon { background: #e0f2fe; }
.program-card[data-course="bca"] .program-icon { background: #ede9fe; }
.program-card[data-course="bcom"] .program-icon { background: #ccfbf1; }
.program-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.program-card .program-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; flex: 1; }
.program-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.program-meta span {
  font-size: 12px; font-weight: 600; color: var(--primary);
  background: var(--bg); padding: 6px 12px; border-radius: 8px;
}
.program-card .btn { margin-top: auto; align-self: flex-start; }

/* Why us */
.why-grid { display: grid; gap: 20px; }
.why-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
  transition: box-shadow var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: var(--secondary-soft); display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}
.why-card h3 { font-size: 1rem; margin-bottom: 4px; }
.why-card p { font-size: 14px; color: var(--text-muted); }

/* Partners */
.partners-section { background: var(--white); padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.partners-track {
  display: flex; gap: 56px; width: max-content; animation: marquee 28s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.partner-logo {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--text-muted); opacity: 0.55; white-space: nowrap;
}

/* Testimonials */
.testimonials-grid { display: grid; gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.testimonial-card .stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }
.testimonial-card blockquote, .testimonial-card > p { font-size: 15px; font-style: italic; margin-bottom: 20px; line-height: 1.65; }
.testimonial-footer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.testimonial-footer strong { display: block; font-size: 14px; color: var(--heading); }
.testimonial-footer span { font-size: 12px; color: var(--text-muted); }

/* Steps */
.steps-grid { display: grid; gap: 20px; counter-reset: step; }
.step-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; position: relative; padding-left: 72px;
}
.step-card .step-num {
  position: absolute; left: 20px; top: 24px;
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--secondary);
}
.step-card h3 { font-size: 1rem; margin-bottom: 6px; }
.step-card p { font-size: 14px; color: var(--text-muted); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden;
}
.faq-item[open] { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 18px 20px; font-weight: 600; color: var(--heading); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--secondary); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 18px; font-size: 14px; color: var(--text-muted); }

/* Final CTA (legacy — course pages) */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 70%, #0c4a6e 100%);
  padding: 72px 0;
  color: var(--white);
  text-align: center;
}
.final-cta h2 { color: var(--white); font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 12px; }
.final-cta p { opacity: 0.9; max-width: 560px; margin: 0 auto 24px; }
.final-cta .btn { margin: 0 6px 8px; }

/* Forms */
.lead-form-card, .form-sticky-wrap .lead-form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.form-card-header { text-align: center; margin-bottom: 18px; }
.form-card-header h2, .form-card-header h3 { font-size: 1.15rem; margin-bottom: 4px; }
.form-card-header p { font-size: 13px; color: var(--text-muted); }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--heading); margin-bottom: 5px; }
.form-group label span { color: #ef4444; }
.form-group input, .form-group select,
.lead-form input, .lead-form select {
  width: 100%; padding: 11px 14px; font-size: 15px; font-family: var(--font);
  border: 1px solid var(--border); border-radius: 10px; background: var(--bg); color: var(--heading);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus,
.lead-form input:focus, .lead-form select:focus {
  outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(56,189,248,0.2); background: var(--white);
}
.form-group input.error, .lead-form input.error { border-color: #ef4444; }
.form-disclaimer { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; }
.form-success { text-align: center; padding: 28px 12px; }
.form-success .success-icon {
  width: 56px; height: 56px; background: #dcfce7; color: #16a34a; font-size: 28px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}

/* Footer */
.site-footer { background: #0f172a; color: rgba(255,255,255,0.75); padding-top: 56px; }
.footer-grid { display: grid; gap: 32px; padding-bottom: 40px; }
.footer-brand p { font-size: 14px; margin-top: 12px; opacity: 0.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 14px; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,0.65); padding: 4px 0; }
.footer-col a:hover { color: var(--secondary); }
.social-links { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.social-links .social-icon {
  width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); padding: 0; transition: background 0.25s ease, transform 0.25s ease;
}
.social-links .social-icon:hover {
  background: var(--vgu-gold, #c9a227); color: var(--vgu-navy, #0c1f4a); transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center;
  font-size: 13px; opacity: 0.65;
}
.footer-bottom p { margin: 6px 0; }
.footer-credit { font-size: 12px; opacity: 0.75; }
.footer-credit a {
  color: var(--vgu-gold, #e8c547); font-weight: 600;
}
.footer-credit a:hover { color: var(--white); }

/* WhatsApp + Sticky CTA */
.whatsapp-float {
  position: fixed; bottom: 88px; right: 20px; width: 54px; height: 54px;
  background: #25d366; color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); z-index: 999;
  transition: transform var(--transition);
}
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float:hover { transform: scale(1.08); color: var(--white); }
.whatsapp-float .wa-label { display: none; }
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; display: flex; gap: 10px;
  padding: 12px 16px; background: var(--primary); box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 998; transform: translateY(100%); transition: transform 0.35s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; }

/* ========== COURSE PAGE LAYOUT ========== */
.course-hero {
  position: relative; padding: 48px 0 56px; overflow: hidden;
}
.course-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--white) 0%, var(--secondary-soft) 100%);
}
.course-hero.course-mba .course-hero-bg {
  background: linear-gradient(180deg, #eff6ff 0%, var(--white) 60%);
}
.course-hero.course-bba .course-hero-bg {
  background: linear-gradient(180deg, #f0f9ff 0%, var(--white) 60%);
}
.course-hero.course-bca .course-hero-bg {
  background: linear-gradient(180deg, #f5f3ff 0%, var(--white) 60%);
}
.course-hero.course-bcom .course-hero-bg {
  background: linear-gradient(180deg, #f0fdfa 0%, var(--white) 60%);
}
.course-layout {
  display: grid; gap: 32px; align-items: start;
}
.course-hero h1 { font-size: clamp(1.75rem, 4.5vw, 2.5rem); margin-bottom: 12px; }
.course-hero .lead { color: var(--text-muted); margin-bottom: 20px; max-width: 600px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.trust-chip {
  font-size: 11px; font-weight: 600; color: var(--primary);
  background: var(--white); border: 1px solid var(--border); padding: 6px 12px; border-radius: 50px;
}
.course-content section { padding: 56px 0; border-bottom: 1px solid var(--border); }
.course-content section:last-child { border-bottom: none; }
.content-block h2 { font-size: 1.5rem; margin-bottom: 16px; }
.content-block > p { color: var(--text-muted); margin-bottom: 20px; max-width: 720px; }
.spec-grid, .career-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.spec-item, .career-item {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; font-size: 14px;
}
.spec-item strong, .career-item strong { display: block; color: var(--heading); margin-bottom: 4px; font-size: 14px; }
.fee-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
}
.fee-table th, .fee-table td { padding: 14px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.fee-table th { background: var(--primary); color: var(--white); font-weight: 600; }
.fee-table tr:last-child td { border-bottom: none; }
.eligibility-box {
  background: var(--secondary-soft); border-radius: var(--radius); padding: 24px;
  border-left: 4px solid var(--secondary);
}
.eligibility-box ul { margin-top: 12px; padding-left: 20px; }
.eligibility-box li { margin-bottom: 8px; font-size: 14px; }
.placement-banner {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--primary); color: var(--white); border-radius: var(--radius-lg);
  padding: 28px; align-items: flex-start;
}
.placement-banner h3 { color: var(--white); }
.placement-banner p { opacity: 0.9; font-size: 14px; }

/* Sticky form — course pages */
.form-sticky-wrap { position: relative; }
@media (min-width: 1024px) {
  .course-layout { grid-template-columns: 1fr 360px; gap: 40px; }
  .form-sticky-wrap { position: sticky; top: calc(var(--header-h) + var(--urgency-h) + 20px); }
}

/* Stats bar */
.stats-bar {
  background: var(--primary); padding: 28px 0; margin-top: -20px; position: relative; z-index: 2;
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--secondary); }
.stat-label { display: block; font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 2px; }

/* Animations */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (min-width: 640px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .spec-grid, .career-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .hero-home-grid { grid-template-columns: 1.1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
  .placement-banner { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 88px 0; }
}
@media (max-width: 767px) {
  body { padding-bottom: 72px; }
}
