﻿:root {
  
  --sovereign-night:  #0B0618;
  --sovereign-night2: #130E24;
  --sovereign-night3: #1C1532;
  --sovereign-gold:   #C9A84C;
  --sovereign-gold-l: #E2C87A;
  --sovereign-ivory:  #FAFAF8;

  
  --clay-bg:    #F5F2FC;
  --clay-card:  rgba(255, 255, 255, 0.96);
  --clay-fg:    #1E1830;
  --clay-muted: #5C5670;

  
  --violet:       #6D28D9;
  --violet-light: #8B5CF6;
  --violet-glow:  rgba(109, 40, 217, 0.18);
  --pink:         #DB2777;
  --sky:          #0EA5E9;
  --emerald:      #10B981;
  --amber:        #F59E0B;

  
  --r-xs:  10px;
  --r-sm:  18px;
  --r-md:  24px;
  --r-lg:  32px;
  --r-xl:  48px;
  --r-2xl: 64px;

  
  --shadow-card:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(109, 40, 217, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);

  --shadow-card-hover:
    0 4px 16px rgba(0, 0, 0, 0.09),
    0 20px 48px rgba(109, 40, 217, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);

  --shadow-btn:
    0 4px 16px rgba(109, 40, 217, 0.38),
    0 2px 4px rgba(0, 0, 0, 0.08);

  --shadow-gold:
    0 4px 20px rgba(201, 168, 76, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.10);

  --shadow-pressed:
    inset 0 2px 8px rgba(0, 0, 0, 0.12),
    inset 0 1px 3px rgba(0, 0, 0, 0.06);

  --shadow-deep:
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 20px 48px rgba(109, 40, 217, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);

  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Nunito', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: light; scrollbar-width: thin; scrollbar-color: var(--violet) transparent; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 15% 8%, rgba(139, 92, 246, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 88% 92%, rgba(14, 165, 233, 0.04) 0%, transparent 55%),
    var(--clay-bg);
  color: var(--clay-fg);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--clay-fg);
}
h1, h2 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.clay-blobs { display: none; }
@keyframes clay-breathe {
  
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}
@keyframes pulse-ring {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
                0 0 0 0 rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
                0 0 0 12px rgba(37, 211, 102, 0);
  }
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #C9A84C 0%, #E2C87A 50%, #F0D98A 75%, #C9A84C 100%);
  z-index: 2147483647;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.12s linear;
  will-change: transform;
}
.clinic-banner-wrap {
  padding: 40px 5% 0;
  margin-bottom: -8px;
}
.clinic-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(124,58,237,0.10) 0%, rgba(124,58,237,0.04) 100%);
  border: 1.5px solid rgba(124,58,237,0.22);
  border-radius: var(--r-lg);
  padding: 18px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.clinic-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(124,58,237,0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.clinic-banner:hover { border-color: var(--violet); box-shadow: 0 4px 32px rgba(124,58,237,0.16); transform: translateY(-2px); }
.clinic-banner:hover::before { opacity: 1; }
.clinic-banner-pill {
  background: var(--violet);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  flex-shrink: 0;
  white-space: nowrap;
}
.clinic-banner-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(124,58,237,0.18));
}
.clinic-banner-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.clinic-banner-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--clay-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.clinic-banner-sub {
  font-size: 0.82rem;
  color: var(--clay-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.clinic-banner-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--violet);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 9999px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(124,58,237,0.30);
}
.clinic-banner:hover .clinic-banner-cta { background: #5B21B6; box-shadow: 0 6px 20px rgba(124,58,237,0.40); }
@media (max-width: 640px) {
  .clinic-banner-wrap { padding: 24px 4% 0; }
  .clinic-banner { flex-wrap: nowrap; gap: 10px; padding: 12px 14px; align-items: center; }
  .clinic-banner-pill { display: none; }
  .clinic-banner-logo { height: 40px; }
  .clinic-banner-title { font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .clinic-banner-sub { display: none; }
  .clinic-banner-cta {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 0.78rem;
    gap: 4px;
    white-space: nowrap;
  }
  .clinic-banner-cta svg { width: 13px; height: 13px; }
}
html { scrollbar-width: thin; scrollbar-color: var(--violet) transparent; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--violet-light), var(--violet));
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--violet); }
.marquee-section {
  overflow: hidden;
  padding: 14px 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(167,139,250,0.03));
  border-top: 1px solid rgba(124,58,237,0.10);
  border-bottom: 1px solid rgba(124,58,237,0.10);
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  white-space: nowrap;
  font-size: 0.76rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--clay-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.marquee-item strong { color: var(--violet); font-weight: 900; }
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--violet-light);
  flex-shrink: 0;
  opacity: 0.7;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float-up-down {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-12px); }
}
@keyframes float-down-up {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(12px); }
}
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in-view    { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.10s; }
.stagger-2 { transition-delay: 0.20s; }
.stagger-3 { transition-delay: 0.30s; }
.stagger-4 { transition-delay: 0.40s; }
.stagger-5 { transition-delay: 0.50s; }
section { padding: 120px 5%; position: relative; }

.section-max { max-width: 1320px; margin: 0 auto; }

.section-header {
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.section-header.in-view   { opacity: 1; transform: translateY(0); }
.section-header.center    { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-desc  { margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.14);
  padding: 6px 14px 6px 10px;
  border-radius: 9999px;
}
.section-label::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--violet);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--clay-muted);
  line-height: 1.75;
  max-width: 580px;
}

.text-gradient-clay {
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--violet) 60%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--r-sm);
  height: 54px;
  padding: 0 28px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn svg { transition: transform 0.25s ease; }

.btn-primary {
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--violet) 100%);
  color: white;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.42), 0 2px 6px rgba(0, 0, 0, 0.10);
}
.btn-primary:hover svg  { transform: translateX(4px); }
.btn-primary:active     { transform: scale(0.97); box-shadow: var(--shadow-pressed); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.90);
  color: var(--clay-fg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(124, 58, 237, 0.10);
}
.btn-secondary:hover  { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.btn-secondary:active { transform: scale(0.97); box-shadow: var(--shadow-pressed); }
.navbar {
  position: sticky;
  top: 8px;
  margin: 8px auto 0;
  z-index: 1000;
  height: 68px;
  width: 90%;
  max-width: 1060px;
  padding: 0 8px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.60);
  border-radius: 9999px;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(109, 40, 217, 0.06);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow  0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.08),
    0 12px 32px rgba(109, 40, 217, 0.09);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo {
  width: 50px; height: 50px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  padding: 1px;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.12), 0 4px 10px rgba(124, 58, 237, 0.10);
  flex-shrink: 0;
}
.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.1;
}
.nav-brand-tail {
  font-weight: 800;
  opacity: 0.78;
  color: var(--clay-fg);
}
.nav-brand-text .accent { color: var(--violet); }
@media (max-width: 980px) {
  .nav-brand-tail { display: none; }
}

@media (max-width: 560px) {
  .nav-brand-text { font-size: 0.66rem; line-height: 1.2; }
  .nav-brand-tail { font-size: 0.60rem !important; opacity: 0.75; }
  .nav-cta-pill { font-size: 0.74rem !important; padding: 6px 11px !important; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clay-muted);
  padding: 8px 14px;
  border-radius: 9999px;
  transition: all 0.25s ease;
}
.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active {
  color: var(--clay-fg);
  background: rgba(124, 58, 237, 0.07);
}

.nav-cta {
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--violet) 100%) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 9999px !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.28) !important;
  transition: all 0.2s ease !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.38) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 12px;
  transition: background 0.2s, border-color 0.4s;
}
.nav-toggle:hover { background: rgba(124, 58, 237, 0.10); }
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--clay-fg);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.dark-hero .hero {
  margin-top: -76px; 
}
body.dark-hero .navbar:not(.scrolled) {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}
body.dark-hero .navbar:not(.scrolled) .nav-brand-tail {
  color: rgba(255, 255, 255, 0.85);
}
body.dark-hero .navbar:not(.scrolled) .nav-links a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.80);
}
body.dark-hero .navbar:not(.scrolled) .nav-links a:not(.nav-cta):hover,
body.dark-hero .navbar:not(.scrolled) .nav-links a:not(.nav-cta).active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
body.dark-hero .navbar:not(.scrolled) .nav-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
body.dark-hero .navbar:not(.scrolled) .nav-toggle span {
  background: rgba(255, 255, 255, 0.90);
}
footer {
  background: linear-gradient(180deg, var(--clay-bg) 0%, rgba(255, 255, 255, 0.5) 100%);
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  padding: 80px 5% 40px;
  position: relative;
  z-index: 10;
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}
.footer-brand p {
  color: var(--clay-muted);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  max-width: 280px;
  line-height: 1.7;
}
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay-muted);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.social-btn:hover {
  background: var(--violet);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
  border-color: var(--violet);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--clay-fg);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--clay-muted);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--violet); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-icon {
  width: 34px; height: 34px;
  background: rgba(124, 58, 237, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  flex-shrink: 0;
  border: 1px solid rgba(124, 58, 237, 0.11);
}
.contact-item p {
  color: var(--clay-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1320px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: var(--clay-muted); font-size: 0.82rem; }
.legal-links { display: flex; gap: 24px; }
.legal-links a {
  color: var(--clay-muted);
  font-size: 0.82rem;
  transition: color 0.25s;
}
.legal-links a:hover { color: var(--violet); }
.nav-cta-pill { display: none; }
@media (max-width: 768px) {
  .navbar { width: 94%; padding: 0 12px 0 14px; gap: 8px; }
  .nav-logo { width: 52px; height: 52px; }
  .nav-brand-tail { display: inline !important; }

  .nav-cta-pill { display: none !important; }

  .nav-contact-li { display: block; }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    transform: translateY(-10px);
    width: min(62vw, 240px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 8px;
    gap: 2px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(80, 40, 160, 0.20), 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(124, 58, 237, 0.10);
    opacity: 0;
    pointer-events: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a:not(.nav-cta) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--clay-fg);
  }
  .nav-links a:not(.nav-cta).active {
    background: rgba(124, 58, 237, 0.09);
    color: var(--violet);
  }
  .nav-toggle { display: flex; flex-shrink: 0; }

  .nav-links .nav-cta {
    background: transparent !important;
    color: var(--clay-fg) !important;
    font-weight: 600 !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    transform: none !important;
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
  }
  .nav-links .nav-cta:hover,
  .nav-links .nav-cta.active {
    background: rgba(124, 58, 237, 0.09) !important;
    color: var(--violet) !important;
    transform: none !important;
    box-shadow: none !important;
  }

  body.dark-hero .navbar:not(.scrolled) .nav-links .nav-cta {
    color: rgba(255,255,255,0.82) !important;
    background: transparent !important;
  }
  body.dark-hero .navbar:not(.scrolled) .nav-links .nav-cta:hover,
  body.dark-hero .navbar:not(.scrolled) .nav-links .nav-cta.active {
    background: rgba(255,255,255,0.09) !important;
    color: #fff !important;
  }

  body.dark-hero .navbar:not(.scrolled) .nav-links {
    background: rgba(10, 5, 26, 0.98) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-color: rgba(255,255,255,0.12) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45) !important;
  }
  body.dark-hero .navbar:not(.scrolled) .nav-links a:not(.nav-cta) {
    color: rgba(255,255,255,0.82) !important;
  }
  body.dark-hero .navbar:not(.scrolled) .nav-links a:not(.nav-cta):hover,
  body.dark-hero .navbar:not(.scrolled) .nav-links a:not(.nav-cta).active {
    background: rgba(255,255,255,0.09) !important;
    color: #fff !important;
  }

  footer { padding: 32px 5% 20px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { display: none; }
  .footer-brand .social-links { margin-top: 10px; }
  .footer-col h4 { font-size: 0.88rem; margin-bottom: 12px; }
  .footer-links { gap: 8px; }
  .footer-links a { font-size: 0.84rem; }
  .footer-col:last-child { grid-column: 1 / -1; }
  .contact-item { gap: 8px; margin-bottom: 10px; }
  .contact-item p { font-size: 0.82rem; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.divx-badge {
  display: inline-flex;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
}
.divx-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--violet-light), var(--violet));
  color: #fff;
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-body);
  box-shadow: 0 3px 12px rgba(124,58,237,0.32);
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: opacity 0.25s, transform 0.25s;
}
.divx-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 14px;
  padding: 14px 20px;
  min-width: 200px;
  text-align: center;
  box-shadow: var(--shadow-card-hover);
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.90);
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
}
.divx-card-sub {
  font-size: 0.76rem;
  color: var(--clay-muted);
  font-family: var(--font-body);
  line-height: 1.6;
  display: block;
}
.divx-card-name {
  font-size: 0.92rem;
  color: var(--violet);
  font-weight: 800;
  font-family: var(--font-heading);
  display: block;
}
.divx-badge:hover .divx-pill {
  opacity: 0;
  transform: scale(0.88);
}
.divx-badge:hover .divx-card {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFadeIn 0.4s ease both; }
@keyframes waPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}
.countdown-wrap {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: var(--r-md);
  padding: 14px 24px; margin-bottom: 28px;
}
.cd-unit { text-align: center; }
.cd-num {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 900;
  color: var(--violet); line-height: 1; display: block;
}
.cd-lbl {
  font-size: 0.6rem; color: var(--clay-muted);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 3px; display: block;
}
.cd-sep {
  font-size: 1.5rem; font-weight: 900;
  color: var(--violet-light); padding-bottom: 14px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 990;
  animation: pulse-ring 2.2s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.08) translateY(-2px);
  animation-play-state: paused;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}
@media (max-width: 768px) {
  .whatsapp-fab { width: 52px; height: 52px; bottom: 18px; left: 18px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--clay-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(124, 58, 237, 0.18);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.92);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 990;
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top-btn:hover {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.35);
}
@media (max-width: 768px) {
  .scroll-top-btn { width: 46px; height: 46px; bottom: 18px; right: 18px; }
}
    
    .nav-brand-text { line-height: 1.18; }
    .nav-brand-sub {
      display: block;
      margin-top: 4px;
      font-family: var(--font-body, "DM Sans", sans-serif);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: none;
      color: var(--clay-muted);
      max-width: 220px;
      white-space: normal;
    }
    footer .nav-brand-sub { color: rgba(255,255,255,0.55); }
  
    
    .page-hero {
      padding: 120px 5% 100px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .page-hero-inner {
      max-width: 760px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--clay-muted);
      margin-bottom: 24px;
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(124,58,237,0.10);
      padding: 6px 14px;
      border-radius: 9999px;
      box-shadow: 3px 3px 8px rgba(160,150,180,0.12), -2px -2px 6px rgba(255,255,255,0.9);
    }
    .breadcrumb a {
      color: var(--clay-muted);
      transition: color 0.25s;
    }
    .breadcrumb a:hover { color: var(--violet); }
    .breadcrumb-sep { opacity: 0.4; }

    .page-hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 900;
      line-height: 1.06;
      letter-spacing: -0.025em;
      margin-bottom: 24px;
    }
    .page-hero p {
      font-size: 1.1rem;
      color: var(--clay-muted);
      line-height: 1.78;
      max-width: 600px;
      margin: 0 auto 40px;
    }
    .hero-pills {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.80);
      border: 1px solid rgba(255,255,255,0.65);
      border-radius: 9999px;
      padding: 10px 20px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--clay-fg);
      box-shadow: var(--shadow-card);
    }
    .hero-pill-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    
    .hero-shape, .hs-1, .hs-2, .hs-3, .hs-4, .hs-5 { display: none; }

    
    .glance-section { padding: 20px 5% 80px; }
    .glance-band {
      display: flex;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(124,58,237,0.10);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      backdrop-filter: blur(16px);
    }
    .glance-stat {
      flex: 1;
      padding: 36px 20px;
      text-align: center;
      border-right: 1px solid rgba(124,58,237,0.08);
      transition: background 0.25s;
    }
    .glance-stat:last-child { border-right: none; }
    .glance-stat:hover { background: rgba(124,58,237,0.025); }
    .glance-num {
      font-family: var(--font-heading);
      font-size: 2.6rem;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 8px;
    }
    .glance-label {
      font-size: 0.78rem;
      color: var(--clay-muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.09em;
    }

    
    .mission-panels {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid rgba(124,58,237,0.10);
      border-radius: var(--r-lg);
      overflow: hidden;
      background: rgba(255,255,255,0.60);
      box-shadow: var(--shadow-card);
      backdrop-filter: blur(20px);
    }
    .mission-panel {
      padding: 44px 36px;
      border-right: 1px solid rgba(124,58,237,0.08);
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }
    .mission-panel:last-child { border-right: none; }
    .mission-panel:hover { background: rgba(124,58,237,0.025); }
    .mission-panel-bar {
      height: 3px;
      border-radius: 9999px;
      margin-bottom: 32px;
      width: 48px;
    }
    .mission-panel::after {
      content: attr(data-letter);
      position: absolute;
      bottom: -20px; right: 12px;
      font-family: var(--font-heading);
      font-size: 9rem;
      font-weight: 900;
      color: rgba(124,58,237,0.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }
    .mission-icon-orb {
      width: 52px; height: 52px;
      border-radius: var(--r-xs);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }
    .mission-panel h3 {
      font-size: 1.4rem;
      font-weight: 900;
      margin-bottom: 14px;
      color: var(--clay-fg);
    }
    .mission-panel p {
      color: var(--clay-muted);
      line-height: 1.80;
      font-size: 0.95rem;
      position: relative;
      z-index: 1;
    }

    
    .values-section {
      background: rgba(255,255,255,0.18);
      border-top: 1px solid rgba(124,58,237,0.06);
      border-bottom: 1px solid rgba(124,58,237,0.06);
    }
    .values-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 1px solid rgba(124,58,237,0.10);
      border-radius: var(--r-lg);
      overflow: hidden;
      background: rgba(255,255,255,0.65);
      box-shadow: var(--shadow-card);
      backdrop-filter: blur(16px);
    }
    .value-row {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 34px 32px;
      border-bottom: 1px solid rgba(124,58,237,0.07);
      border-right: 1px solid rgba(124,58,237,0.07);
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
    }
    .value-row:hover { background: rgba(124,58,237,0.025); }
    .value-row:nth-child(2n) { border-right: none; }
    .value-row:nth-last-child(-n+2) { border-bottom: none; }
    .value-row-ghost {
      position: absolute;
      bottom: -14px; right: 14px;
      font-family: var(--font-heading);
      font-size: 5rem;
      font-weight: 900;
      color: rgba(124,58,237,0.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      transition: color 0.3s;
    }
    .value-row:hover .value-row-ghost { color: rgba(124,58,237,0.07); }
    .value-row-icon {
      width: 48px; height: 48px;
      border-radius: var(--r-xs);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .value-row-body { flex: 1; min-width: 0; position: relative; z-index: 1; }
    .value-row-body h3 {
      font-size: 1.08rem;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--clay-fg);
    }
    .value-row-body p {
      font-size: 0.88rem;
      color: var(--clay-muted);
      line-height: 1.72;
    }

    
    .faculty-section {
      background: rgba(255,255,255,0.18);
      border-top: 1px solid rgba(124,58,237,0.06);
      border-bottom: 1px solid rgba(124,58,237,0.06);
    }
    .faculty-grid {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .faculty-card {
      background: var(--clay-card);
      border-radius: var(--r-lg);
      overflow: hidden;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.65);
      box-shadow: var(--shadow-card);
      transition: all 0.45s ease;
      display: flex;
      flex-direction: row;
    }
    .faculty-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-card-hover);
    }
    .faculty-avatar {
      width: 320px;
      flex-shrink: 0;
      position: relative;
      border-radius: var(--r-lg) 0 0 var(--r-lg);
      overflow: hidden;
    }
    .faculty-photo {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 15%;
      display: block;
    }
    .faculty-body {
      padding: 36px 40px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .faculty-role {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 8px;
    }
    .faculty-name {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 900;
      margin-bottom: 16px;
      color: var(--clay-fg);
    }
    .faculty-creds {
      display: flex; gap: 6px; flex-wrap: wrap;
      margin-bottom: 18px;
    }
    .faculty-cred {
      font-size: 0.7rem; font-weight: 700;
      padding: 4px 11px; border-radius: 9999px;
      background: rgba(124,58,237,0.08);
      color: var(--violet);
      border: 1px solid rgba(124,58,237,0.16);
    }
    .faculty-desc {
      font-size: 0.92rem;
      color: var(--clay-muted);
      line-height: 1.78;
      margin-bottom: 16px;
      max-width: 600px;
    }
    .faculty-quote {
      font-size: 0.92rem; color: var(--clay-muted);
      line-height: 1.7; font-style: italic;
      border-left: 3px solid var(--violet-light);
      padding: 4px 0 4px 14px; margin: 0 0 20px;
    }
    .faculty-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .faculty-tag {
      font-size: 0.72rem;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 9999px;
    }
    .faculty-stats {
      display: flex; gap: 32px;
      border-top: 1px solid rgba(124,58,237,0.08);
      padding-top: 20px;
      margin-top: auto;
    }
    .faculty-stat { text-align: left; }
    .faculty-stat-num {
      font-size: 1.3rem; font-weight: 900;
      color: var(--violet); font-family: var(--font-heading);
      line-height: 1;
    }
    .faculty-stat-lbl {
      font-size: 0.65rem; color: var(--clay-muted);
      font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.07em; margin-top: 4px;
    }

    
    @media (max-width: 860px) {
      .faculty-card { flex-direction: column; }
      .faculty-avatar { width: 100%; height: 280px; border-radius: var(--r-lg) var(--r-lg) 0 0; }
      .faculty-body { padding: 28px; }
      .faculty-name { font-size: 1.6rem; }
    }

    
    .facilities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .facility-card {
      background: var(--clay-card);
      border-radius: var(--r-lg);
      overflow: hidden;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.65);
      box-shadow: var(--shadow-card);
      transition: all 0.45s ease;
      display: flex;
      flex-direction: column;
    }
    .facility-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-card-hover);
    }
    .fac-img-wrap {
      position: relative;
      height: 240px;
      overflow: hidden;
      border-radius: var(--r-md) var(--r-md) 0 0;
    }
    .fac-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .facility-card:hover .fac-img-wrap img { transform: scale(1.05); }
    .fac-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(30,10,60,0.35), transparent 60%);
    }
    .facility-body {
      padding: 32px;
      flex-grow: 1;
    }
    .facility-body h3 {
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--clay-fg);
    }
    .facility-body p {
      font-size: 0.93rem;
      color: var(--clay-muted);
      line-height: 1.75;
    }

    
    .cta-section { padding: 80px 5% 120px; }
    .cta-box {
      max-width: 960px;
      margin: 0 auto;
      background: linear-gradient(135deg,
        rgba(124,58,237,0.10) 0%,
        rgba(167,139,250,0.08) 50%,
        rgba(219,39,119,0.06) 100%);
      border: 1px solid rgba(124,58,237,0.16);
      border-radius: var(--r-xl);
      padding: 80px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: var(--shadow-card);
    }
    .cta-box::before {
      content: '';
      position: absolute;
      top: -60%; left: -20%;
      width: 140%; height: 200%;
      background: radial-gradient(ellipse at center, rgba(124,58,237,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-box h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .cta-box .cta-sub {
      font-size: 1.05rem;
      color: var(--clay-muted);
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.75;
      position: relative; z-index: 1;
    }
    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      position: relative; z-index: 1;
    }

    
    .timeline-list {
      position: relative;
      max-width: 720px;
      margin: 0 auto;
    }
    .timeline-list::before {
      content: '';
      position: absolute;
      left: 31px;
      top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--violet-light), var(--violet), rgba(124,58,237,0.1));
    }
    .timeline-item {
      display: flex;
      gap: 24px;
      margin-bottom: 36px;
      position: relative;
    }
    .timeline-dot {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--clay-card);
      border: 2px solid rgba(124,58,237,0.20);
      box-shadow: var(--shadow-card);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-family: var(--font-heading);
      font-weight: 900;
      font-size: 0.78rem;
      color: var(--violet);
      backdrop-filter: blur(16px);
      z-index: 1;
    }
    .timeline-body {
      background: var(--clay-card);
      border-radius: var(--r-lg);
      padding: 24px 28px;
      flex: 1;
      border: 1px solid rgba(255,255,255,0.65);
      box-shadow: var(--shadow-card);
      backdrop-filter: blur(16px);
      transition: all 0.4s ease;
    }
    .timeline-body:hover { transform: translateX(6px); box-shadow: var(--shadow-card-hover); }
    .timeline-year {
      font-size: 0.68rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--violet); margin-bottom: 4px;
    }
    .timeline-title {
      font-family: var(--font-heading);
      font-size: 1.15rem; font-weight: 800;
      color: var(--clay-fg); margin-bottom: 6px;
    }
    .timeline-desc { font-size: 0.9rem; color: var(--clay-muted); line-height: 1.7; }

    
    .tl-track {
      position: relative;
      padding-bottom: 20px;
      margin-top: 56px;
    }
    .tl-line {
      position: absolute;
      left: 50%; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom,
        rgba(201,168,76,0.0) 0%,
        rgba(201,168,76,0.65) 10%,
        rgba(139,92,246,0.50) 60%,
        rgba(201,168,76,0.10) 100%);
      transform: translateX(-50%);
      border-radius: 2px;
    }
    .tl-item {
      display: grid;
      grid-template-columns: 1fr 56px 1fr;
      align-items: center;
      gap: 0;
      margin-bottom: 44px;
      position: relative;
      z-index: 1;
    }
    .tl-spacer {}
    .tl-card-wrap { padding: 0 24px; }
    .tl-dot-wrap {
      display: flex; align-items: center; justify-content: center;
    }
    .tl-dot {
      width: 14px; height: 14px;
      border-radius: 50%;
      background: var(--sovereign-gold, #C9A84C);
      border: 3px solid var(--sovereign-night, #0B0618);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.30), 0 0 14px rgba(201,168,76,0.45);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .tl-item:hover .tl-dot {
      transform: scale(1.3);
      box-shadow: 0 0 0 5px rgba(201,168,76,0.20), 0 0 20px rgba(201,168,76,0.55);
    }
    .tl-card {
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 20px;
      padding: 28px 26px 24px;
      position: relative;
      overflow: hidden;
      transition: background 0.32s ease, border-color 0.32s ease, transform 0.32s ease;
    }
    .tl-card:hover {
      background: rgba(255,255,255,0.075);
      border-color: rgba(201,168,76,0.28);
      transform: translateY(-4px);
    }
    .tl-card-bar {
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--sovereign-gold-l,#E2C87A), var(--sovereign-gold,#C9A84C));
      opacity: 0.80;
    }
    .tl-year {
      display: block;
      font-size: 0.65rem; font-weight: 900;
      text-transform: uppercase; letter-spacing: 0.16em;
      color: var(--sovereign-gold, #C9A84C);
      margin-bottom: 10px;
    }
    .tl-icon {
      width: 40px; height: 40px;
      border-radius: 11px;
      background: rgba(201,168,76,0.10);
      border: 1px solid rgba(201,168,76,0.20);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
      color: var(--sovereign-gold, #C9A84C);
      transition: transform 0.28s ease;
    }
    .tl-card:hover .tl-icon { transform: scale(1.08) rotate(-3deg); }
    .tl-title {
      font-family: var(--font-heading, 'Nunito', sans-serif);
      font-size: 1.0rem; font-weight: 800;
      color: rgba(255,255,255,0.93);
      margin-bottom: 8px; line-height: 1.28;
    }
    .tl-desc {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.52);
      line-height: 1.72; margin: 0;
    }
    @media (max-width: 860px) {
      .tl-line { left: 26px; transform: none; }
      .tl-item {
        grid-template-columns: 56px 1fr;
        margin-bottom: 28px;
      }
      .tl-item.tl-left  { grid-template-areas: "dot card"; }
      .tl-item.tl-right { grid-template-areas: "dot card"; }
      .tl-left  .tl-dot-wrap { grid-area: dot; justify-content: center; }
      .tl-left  .tl-card-wrap { grid-area: card; padding: 0 0 0 4px; }
      .tl-right .tl-dot-wrap { grid-area: dot; justify-content: center; }
      .tl-right .tl-card-wrap { grid-area: card; padding: 0 0 0 4px; }
      .tl-spacer { display: none; }
    }

    
    @media (max-width: 1024px) {
      .mission-panels { grid-template-columns: 1fr 1fr; }
      .mission-panel:nth-child(2) { border-right: none; }
      .mission-panel:nth-child(3) { border-right: none; border-top: 1px solid rgba(124,58,237,0.08); grid-column: span 2; }
      .glance-band { flex-wrap: wrap; }
      .glance-stat { flex: 1 1 40%; border-bottom: 1px solid rgba(124,58,237,0.08); }
      .glance-stat:nth-child(2n) { border-right: none; }
      .glance-stat:nth-last-child(-n+2) { border-bottom: none; }
      .values-list { grid-template-columns: 1fr; }
      .value-row { border-right: none !important; }
      .value-row:last-child { border-bottom: none; }
    }
    @media (max-width: 768px) {
      .page-hero { padding: 130px 5% 60px; }
      section { padding: 80px 5%; }
      .glance-section { padding: 0 5% 60px; }
      .mission-panels { grid-template-columns: 1fr; }
      .mission-panel { border-right: none !important; border-top: 1px solid rgba(124,58,237,0.08); }
      .mission-panel:first-child { border-top: none; }
      .mission-panel:nth-child(3) { grid-column: span 1; }
      .glance-band { flex-direction: column; }
      .glance-stat { border-right: none; border-bottom: 1px solid rgba(124,58,237,0.08); }
      .glance-stat:last-child { border-bottom: none; }
      .facilities-grid { grid-template-columns: 1fr; }
      .cta-box { padding: 48px 24px; border-radius: var(--r-lg); }
      .cta-actions .btn { width: 100%; justify-content: center; }
      .hs-1, .hs-2, .hs-3, .hs-4, .hs-5 { display: none; }
      .value-row { padding: 24px 22px; }
    }
  
    
    .page-hero { padding: 120px 5% 80px; text-align: center; position: relative; overflow: hidden; }
    .page-hero-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
    .hs-1,.hs-2,.hs-3,.hs-4,.hs-5 { display: none; }
    .breadcrumb {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.82rem; color: var(--clay-muted);
      background: rgba(255,255,255,0.72); padding: 6px 16px;
      border-radius: 9999px;
      box-shadow: 4px 4px 12px rgba(160,150,180,0.14),-3px -3px 8px rgba(255,255,255,0.9);
      margin-bottom: 28px;
    }
    .breadcrumb a { color: var(--clay-muted); transition: color 0.25s; }
    .breadcrumb a:hover { color: var(--violet); }
    .page-hero h1 { font-size: clamp(2.2rem,4.5vw,3.4rem); font-weight: 900; margin-bottom: 16px; line-height: 1.08; }
    .page-hero p { color: var(--clay-muted); font-size: 1rem; line-height: 1.8; max-width: 560px; margin: 0 auto; }

    .apply-section {
      padding: 60px 5% 120px;
      background: linear-gradient(180deg, rgba(109,40,217,0.07) 0%, rgba(109,40,217,0.02) 35%, transparent 70%);
    }
    .apply-wrap { max-width: 860px; margin: 0 auto; }

    
    .form-card {
      background: rgba(255,255,255,0.82);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-deep);
      padding: 40px 44px;
      margin-bottom: 24px;
    }
    .form-card:last-child { margin-bottom: 0; }

    .form-section-title {
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--clay-fg);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(124,58,237,0.08);
    }
    .form-section-title .fsn-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(124,58,237,0.08);
      display: flex; align-items: center; justify-content: center;
      color: var(--violet);
      flex-shrink: 0;
    }
    .form-section-num {
      width: 26px; height: 26px;
      border-radius: 50%;
      background: var(--violet);
      color: white;
      font-family: var(--font-heading);
      font-size: 0.78rem;
      font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .section-opt { font-size: 0.78rem; font-weight: 600; color: var(--clay-muted); margin-left: 6px; }

    
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
    .form-row:last-child { margin-bottom: 0; }
    .form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
    .form-group:last-child { margin-bottom: 0; }

    label {
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--clay-fg);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    label svg { color: var(--violet); flex-shrink: 0; }
    .required { color: var(--pink); margin-left: 2px; }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea {
      width: 100%;
      padding: 12px 16px;
      border-radius: var(--r-xs);
      border: 1.5px solid rgba(124,58,237,0.14);
      background: rgba(255,255,255,0.90);
      font-family: var(--font-body);
      font-size: 0.92rem;
      color: var(--clay-fg);
      box-shadow: inset 0 1px 4px rgba(0,0,0,0.04);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    input[type="date"]:focus,
    select:focus,
    textarea:focus {
      border-color: var(--violet);
      box-shadow: 0 0 0 3px rgba(124,58,237,0.10), inset 0 1px 4px rgba(0,0,0,0.04);
    }
    input::placeholder, textarea::placeholder { color: rgba(99,95,105,0.55); }
    select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
    textarea { resize: vertical; min-height: 100px; line-height: 1.7; }

    
    .prog-selector { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 24px; }
    .prog-option { display: none; }
    .prog-option-label {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 18px 14px;
      border-radius: var(--r-md);
      border: 2px solid rgba(124,58,237,0.14);
      background: rgba(255,255,255,0.70);
      cursor: pointer;
      transition: all 0.2s;
      text-align: center;
    }
    .prog-option:checked + .prog-option-label {
      border-color: var(--violet);
      background: rgba(124,58,237,0.06);
      box-shadow: 0 0 0 3px rgba(124,58,237,0.10);
    }
    .prog-option-label .pol-icon {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(124,58,237,0.08);
      display: flex; align-items: center; justify-content: center;
      color: var(--violet);
    }
    .prog-option-label strong { font-size: 0.88rem; font-weight: 800; color: var(--clay-fg); }
    .prog-option-label span { font-size: 0.74rem; color: var(--clay-muted); font-weight: 600; }
    .prog-option[value="fellowship"]:checked + .prog-option-label .pol-icon { background: rgba(16,185,129,0.08); color: var(--emerald); }
    .prog-option[value="fellowship"]:checked + .prog-option-label { border-color: var(--emerald); background: rgba(16,185,129,0.05); box-shadow: 0 0 0 3px rgba(16,185,129,0.10); }
    .prog-option[value="observership"]:checked + .prog-option-label .pol-icon { background: rgba(14,165,233,0.08); color: var(--sky); }
    .prog-option[value="observership"]:checked + .prog-option-label { border-color: var(--sky); background: rgba(14,165,233,0.05); box-shadow: 0 0 0 3px rgba(14,165,233,0.10); }

    
    .dynamic-table-wrapper { overflow-x: auto; margin-bottom: 16px; border-radius: var(--r-xs); border: 1px solid rgba(124,58,237,0.10); }
    .dynamic-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
    .dynamic-table thead tr { background: rgba(124,58,237,0.05); }
    .dynamic-table th {
      padding: 12px 14px;
      text-align: left;
      font-size: 0.76rem;
      font-weight: 700;
      color: var(--violet);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      border-bottom: 1px solid rgba(124,58,237,0.10);
      white-space: nowrap;
    }
    .dynamic-table td { padding: 8px 10px; border-bottom: 1px solid rgba(124,58,237,0.06); }
    .dynamic-table tbody tr:last-child td { border-bottom: none; }
    .dynamic-table input[type="text"] { padding: 8px 12px; font-size: 0.86rem; border-radius: 8px; }
    .remove-row-btn {
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 1.5px solid rgba(219,39,119,0.25);
      background: rgba(219,39,119,0.06);
      color: var(--pink);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
    }
    .remove-row-btn:hover { background: rgba(219,39,119,0.15); }

    .add-row-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 9999px;
      border: 1.5px dashed rgba(124,58,237,0.30);
      background: rgba(124,58,237,0.04);
      color: var(--violet);
      font-size: 0.84rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
    }
    .add-row-btn:hover { background: rgba(124,58,237,0.10); border-color: var(--violet); }

    
    .file-upload-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .file-upload-item { display: flex; flex-direction: column; gap: 7px; }
    .file-upload-label { font-size: 0.84rem; font-weight: 700; color: var(--clay-fg); display: flex; align-items: center; gap: 6px; }
    .file-upload-label svg { color: var(--violet); }
    input[type="file"] {
      padding: 10px 14px;
      border-radius: var(--r-xs);
      border: 1.5px dashed rgba(124,58,237,0.25);
      background: rgba(124,58,237,0.03);
      font-family: var(--font-body);
      font-size: 0.84rem;
      color: var(--clay-muted);
      cursor: pointer;
      width: 100%;
      transition: border-color 0.2s, background 0.2s;
    }
    input[type="file"]:hover { border-color: var(--violet); background: rgba(124,58,237,0.06); }

    
    .declaration-box {
      background: rgba(124,58,237,0.04);
      border: 1px solid rgba(124,58,237,0.12);
      border-radius: var(--r-xs);
      padding: 20px 22px;
      font-size: 0.92rem;
      color: var(--clay-muted);
      line-height: 1.8;
      margin-bottom: 22px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
    }
    .decl-name-input {
      display: inline-block;
      width: 200px;
      padding: 6px 12px;
      border-radius: 8px;
      border: 1.5px solid rgba(124,58,237,0.20);
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--clay-fg);
      background: rgba(255,255,255,0.90);
      outline: none;
    }
    .decl-name-input:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,58,237,0.10); }
    .decl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

    
    .apply-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 8px;
    }
    .btn-print {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0 24px;
      height: 54px;
      border-radius: var(--r-sm);
      border: 1.5px solid rgba(124,58,237,0.18);
      background: rgba(255,255,255,0.90);
      color: var(--clay-fg);
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: var(--shadow-card);
      transition: all 0.2s;
    }
    .btn-print:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
    .form-note {
      width: 100%;
      font-size: 0.82rem;
      color: var(--clay-muted);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.65;
      margin-top: 8px;
    }
    .form-note svg { color: var(--sky); flex-shrink: 0; margin-top: 2px; }

    
    .submit-success {
      display: none;
      background: rgba(16,185,129,0.07);
      border: 1px solid rgba(16,185,129,0.20);
      border-radius: var(--r-md);
      padding: 28px 32px;
      margin-top: 24px;
      text-align: center;
    }
    .submit-success .ss-icon {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: rgba(16,185,129,0.12);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      color: var(--emerald);
    }
    .submit-success h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 8px; }
    .submit-success p { font-size: 0.92rem; color: var(--clay-muted); line-height: 1.75; }

    
    @media (max-width: 768px) {
      .page-hero { padding: 140px 5% 60px; }
      .form-card { padding: 28px 22px; }
      .form-row { grid-template-columns: 1fr; }
      .prog-selector { grid-template-columns: 1fr; }
      .file-upload-grid { grid-template-columns: 1fr; }
      .decl-row { grid-template-columns: 1fr; }
      .apply-actions { flex-direction: column; align-items: stretch; }
      .btn-print { justify-content: center; }
    }
    @media print {
      .navbar, footer, .scroll-top-btn, .apply-actions { display: none !important; }
      .form-card { box-shadow: none; border: 1px solid #ddd; }
      body { background: white !important; }
    }
  
    
    .page-hero {
      padding: 120px 5% 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero-inner {
      max-width: 680px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    
    .hs-1,.hs-2,.hs-3,.hs-4,.hs-5 { display: none; }

    .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--clay-muted);
      background: rgba(255,255,255,0.72);
      padding: 6px 16px;
      border-radius: 9999px;
      box-shadow: 4px 4px 12px rgba(160,150,180,0.14), -3px -3px 8px rgba(255,255,255,0.9);
      margin-bottom: 28px;
    }
    .breadcrumb a { color: var(--clay-muted); transition: color 0.25s; }
    .breadcrumb a:hover { color: var(--violet); }

    .page-hero h1 {
      font-size: clamp(2.6rem, 5.5vw, 4rem);
      font-weight: 900;
      margin-bottom: 20px;
      line-height: 1.05;
    }
    .page-hero p {
      color: var(--clay-muted);
      font-size: 1.1rem;
      line-height: 1.8;
      max-width: 560px;
      margin: 0 auto;
    }

    
    .contact-section { padding: 100px 5% 120px; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.55fr;
      gap: 56px;
      align-items: start;
    }

    
    .info-col-label {
      margin-bottom: 20px;
    }
    .info-col-heading {
      font-size: clamp(1.6rem, 2.8vw, 2.2rem);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 14px;
    }
    .info-col-desc {
      color: var(--clay-muted);
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .response-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: rgba(16,185,129,0.08);
      border: 1px solid rgba(16,185,129,0.18);
      border-radius: 9999px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--emerald);
      margin-bottom: 32px;
    }
    .response-badge-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--emerald);
      box-shadow: 0 0 6px rgba(16,185,129,0.7);
    }

    .info-card {
      background: rgba(255,255,255,0.80);
      border-radius: var(--r-md);
      padding: 22px 24px;
      margin-bottom: 14px;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      box-shadow: var(--shadow-card);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .info-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-card-hover);
    }

    .info-icon-orb {
      width: 48px; height: 48px;
      border-radius: var(--r-xs);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .orb-violet {
      background: linear-gradient(135deg, rgba(167,139,250,0.25), rgba(124,58,237,0.15));
      color: var(--violet);
      box-shadow: 4px 4px 10px rgba(124,58,237,0.14), -3px -3px 8px rgba(255,255,255,0.9);
    }
    .orb-emerald {
      background: linear-gradient(135deg, rgba(52,211,153,0.22), rgba(16,185,129,0.12));
      color: var(--emerald);
      box-shadow: 4px 4px 10px rgba(16,185,129,0.14), -3px -3px 8px rgba(255,255,255,0.9);
    }
    .orb-sky {
      background: linear-gradient(135deg, rgba(56,189,248,0.22), rgba(14,165,233,0.12));
      color: var(--sky);
      box-shadow: 4px 4px 10px rgba(14,165,233,0.14), -3px -3px 8px rgba(255,255,255,0.9);
    }

    .info-content h3 {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--clay-muted);
      text-transform: uppercase;
      letter-spacing: 0.10em;
      margin-bottom: 5px;
    }
    .info-content p,
    .info-content a {
      font-size: 1rem;
      font-weight: 600;
      color: var(--clay-fg);
      line-height: 1.4;
      font-family: var(--font-heading);
    }
    .info-content a { transition: color 0.25s; }
    .info-content a:hover { color: var(--violet); }
    .info-content small {
      display: block;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 400;
      color: var(--clay-muted);
      margin-top: 3px;
    }

    .social-col {
      margin-top: 28px;
    }
    .social-col h3 {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--clay-muted);
      text-transform: uppercase;
      letter-spacing: 0.10em;
      margin-bottom: 14px;
    }
    .social-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .social-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.80);
      border-radius: var(--r-sm);
      padding: 10px 18px;
      color: var(--clay-fg);
      font-size: 0.88rem;
      font-weight: 600;
      font-family: var(--font-body);
      box-shadow: var(--shadow-card);
      transition: all 0.25s ease;
    }
    .social-link:hover {
      background: var(--violet);
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-btn);
    }

    
    .form-card {
      background: rgba(255,255,255,0.82);
      border-radius: var(--r-lg);
      padding: 52px;
      box-shadow: var(--shadow-deep);
    }

    .form-card-heading {
      font-size: 1.8rem;
      font-weight: 900;
      margin-bottom: 8px;
    }
    .form-card-sub {
      color: var(--clay-muted);
      font-size: 0.92rem;
      line-height: 1.7;
      margin-bottom: 36px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--violet);
      text-transform: uppercase;
      letter-spacing: 0.10em;
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 13px 16px;
      border: none;
      border-radius: var(--r-xs);
      font-family: var(--font-body);
      font-size: 0.92rem;
      color: var(--clay-fg);
      background: rgba(244,241,250,0.90);
      box-shadow: var(--shadow-pressed);
      outline: none;
      appearance: none;
      transition: box-shadow 0.3s, background 0.3s;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--clay-muted);
      opacity: 0.7;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      background: rgba(255,255,255,0.95);
      box-shadow:
        inset 8px 8px 16px rgba(160,150,180,0.12),
        inset -8px -8px 16px rgba(255,255,255,0.9),
        0 0 0 2px rgba(124,58,237,0.30);
    }
    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }
    .form-group select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }

    .btn-submit {
      width: 100%;
      height: 56px;
      background: linear-gradient(135deg, var(--violet-light) 0%, var(--violet) 100%);
      color: white;
      border: none;
      border-radius: var(--r-sm);
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      letter-spacing: 0.01em;
      box-shadow: var(--shadow-btn);
      transition: all 0.2s ease;
      margin-top: 8px;
    }
    .btn-submit:hover {
      transform: translateY(-3px);
      box-shadow:
        16px 16px 32px rgba(139,92,246,0.35),
        -8px -8px 16px rgba(255,255,255,0.40),
        inset 4px 4px 8px rgba(255,255,255,0.40),
        inset -4px -4px 8px rgba(0,0,0,0.10);
    }
    .btn-submit:active {
      transform: scale(0.97);
      box-shadow: var(--shadow-pressed);
    }
    .btn-submit:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }

    .form-privacy {
      text-align: center;
      margin-top: 14px;
      font-size: 0.80rem;
      color: var(--clay-muted);
      line-height: 1.5;
    }

    .success-msg {
      display: none;
      text-align: center;
      padding: 18px 20px;
      background: rgba(16,185,129,0.08);
      border: 1px solid rgba(16,185,129,0.22);
      border-radius: var(--r-xs);
      color: var(--emerald);
      font-weight: 600;
      font-size: 0.92rem;
      margin-top: 18px;
      box-shadow: inset 4px 4px 10px rgba(16,185,129,0.06), inset -4px -4px 8px rgba(255,255,255,0.7);
    }
    .success-msg.show { display: block; }

    .form-group.has-error input,
    .form-group.has-error select,
    .form-group.has-error textarea {
      background: rgba(255,245,245,0.95);
      box-shadow:
        inset 8px 8px 16px rgba(160,150,180,0.12),
        inset -8px -8px 16px rgba(255,255,255,0.9),
        0 0 0 2px rgba(239,68,68,0.40);
    }
    .field-error {
      display: none;
      font-size: 0.75rem;
      color: #dc2626;
      font-weight: 600;
      margin-top: 5px;
    }
    .form-group.has-error .field-error { display: block; }

    .error-msg {
      display: none;
      text-align: center;
      padding: 14px 20px;
      background: rgba(239,68,68,0.07);
      border: 1px solid rgba(239,68,68,0.22);
      border-radius: var(--r-xs);
      color: #dc2626;
      font-weight: 600;
      font-size: 0.88rem;
      margin-top: 14px;
    }
    .error-msg.show { display: block; }

    
    .map-section { padding: 0 5% 120px; }

    .map-card {
      max-width: 1320px;
      margin: 0 auto;
      background: rgba(255,255,255,0.80);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    .map-placeholder {
      height: 380px;
      background: linear-gradient(135deg, rgba(244,241,250,1) 0%, rgba(235,230,248,0.8) 100%);
      box-shadow: var(--shadow-pressed);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 16px;
    }
    .map-placeholder-orb {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(167,139,250,0.25), rgba(124,58,237,0.15));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--violet);
      box-shadow: var(--shadow-card);
    }
    .map-placeholder p {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 1.05rem;
      color: var(--clay-fg);
      text-align: center;
      line-height: 1.5;
    }
    .map-placeholder small {
      color: var(--clay-muted);
      font-size: 0.88rem;
    }
    .map-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--violet);
      font-weight: 700;
      font-size: 0.88rem;
      padding: 8px 20px;
      background: rgba(255,255,255,0.80);
      border-radius: 9999px;
      box-shadow: var(--shadow-card);
      transition: all 0.25s;
    }
    .map-link:hover {
      background: var(--violet);
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-btn);
    }

    
    @media (max-width: 1024px) {
      .contact-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .page-hero { padding: 140px 5% 80px; }
      .hs-1,.hs-2,.hs-3,.hs-4,.hs-5 { display: none; }
      .contact-section { padding: 80px 5% 100px; }
      .form-card { padding: 32px 24px; }
      .form-row { grid-template-columns: 1fr; }
      .map-section { padding: 0 5% 80px; }
    }
  
    
    .page-hero {
      padding: 120px 5% 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero-inner {
      max-width: 760px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    
    .hs-1,.hs-2,.hs-3,.hs-4,.hs-5 { display: none; }

    .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--clay-muted);
      background: rgba(255,255,255,0.72);
      padding: 6px 16px;
      border-radius: 9999px;
      box-shadow: 4px 4px 12px rgba(160,150,180,0.14), -3px -3px 8px rgba(255,255,255,0.9);
      margin-bottom: 28px;
    }
    .breadcrumb a { color: var(--clay-muted); transition: color 0.25s; }
    .breadcrumb a:hover { color: var(--violet); }

    .page-hero h1 {
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      font-weight: 900;
      margin-bottom: 20px;
      line-height: 1.05;
    }
    .page-hero p {
      color: var(--clay-muted);
      font-size: 1.1rem;
      line-height: 1.8;
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .hero-pills {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: rgba(255,255,255,0.80);
      border-radius: 9999px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--clay-fg);
      box-shadow: 5px 5px 14px rgba(160,150,180,0.14), -4px -4px 10px rgba(255,255,255,0.9);
    }
    .hero-pill-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .dot-violet  { background: var(--violet);  box-shadow: 0 0 6px rgba(124,58,237,0.6); }
    .dot-emerald { background: var(--emerald); box-shadow: 0 0 6px rgba(16,185,129,0.6); }
    .dot-sky     { background: var(--sky);     box-shadow: 0 0 6px rgba(14,165,233,0.6); }
    .dot-amber   { background: var(--amber);   box-shadow: 0 0 6px rgba(245,158,11,0.6); }

    
    .programs-section { padding: 100px 5% 120px; }

    .program-card {
      background: rgba(255,255,255,0.80);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-deep);
      overflow: hidden;
      margin-bottom: 48px;
      transition: box-shadow 0.35s ease, transform 0.35s ease;
    }
    .program-card:last-child { margin-bottom: 0; }
    .program-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-card-hover);
    }

    .program-card-inner {
      display: grid;
      grid-template-columns: 360px 1fr;
      min-height: 360px;
    }

    .prog-img-wrap {
      position: relative;
      overflow: hidden;
    }
    .prog-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .program-card:hover .prog-img-wrap img { transform: scale(1.06); }

    .prog-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(44,18,84,0.45) 0%, transparent 60%);
    }

    .prog-badge {
      position: absolute;
      top: 20px; left: 20px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 16px;
      border-radius: 9999px;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: white;
      backdrop-filter: blur(12px);
    }
    .badge-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: white;
      opacity: 0.9;
    }
    .badge-violet  { background: rgba(124,58,237,0.82); border: 1px solid rgba(167,139,250,0.40); }
    .badge-emerald { background: rgba(16,185,129,0.82);  border: 1px solid rgba(52,211,153,0.40); }
    .badge-sky     { background: rgba(14,165,233,0.82);  border: 1px solid rgba(56,189,248,0.40); }
    .badge-amber   { background: rgba(245,158,11,0.82);  border: 1px solid rgba(251,191,36,0.40); }

    .prog-body {
      padding: 48px;
      display: flex;
      flex-direction: column;
    }

    .prog-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .prog-title {
      font-size: clamp(1.5rem, 2.5vw, 1.9rem);
      font-weight: 900;
    }
    .prog-meta-pills {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
      align-items: center;
    }
    .prog-pill {
      font-size: 0.75rem;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 9999px;
      font-family: var(--font-body);
    }
    .prog-pill-duration {
      background: rgba(124,58,237,0.08);
      color: var(--violet);
      border: 1px solid rgba(124,58,237,0.16);
    }
    .prog-pill-fee {
      background: rgba(16,185,129,0.08);
      color: var(--emerald);
      border: 1px solid rgba(16,185,129,0.16);
    }

    .prog-desc {
      color: var(--clay-muted);
      line-height: 1.8;
      margin-bottom: 24px;
      font-size: 0.95rem;
    }

    
    .prog-outcomes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: rgba(244,241,250,0.95);
      border-radius: var(--r-xs);
      box-shadow: var(--shadow-pressed);
      padding: 16px 20px;
      margin-bottom: 28px;
    }
    .outcome-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 0 16px;
      border-right: 1px solid rgba(124,58,237,0.08);
    }
    .outcome-item:first-child { padding-left: 0; }
    .outcome-item:last-child { border-right: none; }
    .outcome-label {
      font-size: 0.66rem;
      font-weight: 700;
      color: var(--violet);
      text-transform: uppercase;
      letter-spacing: 0.10em;
    }
    .outcome-value {
      font-size: 0.82rem;
      color: var(--clay-fg);
      font-weight: 500;
      line-height: 1.4;
    }

    .highlights-title {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--clay-fg);
      text-transform: uppercase;
      letter-spacing: 0.10em;
      margin-bottom: 14px;
    }
    .highlights-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 16px;
      margin-bottom: 32px;
      flex: 1;
    }
    .highlight-item {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 0.88rem;
      color: var(--clay-muted);
      line-height: 1.5;
    }
    .check-orb {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: rgba(16,185,129,0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
      color: var(--emerald);
    }

    .prog-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 24px;
      border-top: 1px solid rgba(124,58,237,0.08);
      flex-wrap: wrap;
      gap: 16px;
      margin-top: auto;
    }
    .prog-fee {
      font-family: var(--font-heading);
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--clay-fg);
    }
    .prog-fee span {
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 400;
      color: var(--clay-muted);
      margin-left: 4px;
    }

    
    .process-section {
      padding: 100px 5%;
      background: rgba(255,255,255,0.30);
    }

    .process-timeline {
      max-width: 760px;
      margin: 64px auto 0;
      position: relative;
      padding-left: 52px;
    }
    .process-timeline::before {
      content: '';
      position: absolute;
      left: 19px; top: 20px; bottom: 20px;
      width: 2px;
      background: linear-gradient(to bottom, var(--violet), rgba(124,58,237,0.06));
      border-radius: 2px;
    }

    .process-step {
      position: relative;
      margin-bottom: 44px;
    }
    .process-step:last-child { margin-bottom: 0; }

    .step-dot {
      position: absolute;
      left: -52px; top: 0;
      width: 40px; height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-size: 0.9rem;
      font-weight: 900;
      color: white;
      z-index: 1;
      box-shadow: 6px 6px 14px rgba(0,0,0,0.12), -4px -4px 10px rgba(255,255,255,0.9);
    }
    .step-dot-1 { background: linear-gradient(135deg, var(--violet-light), var(--violet)); }
    .step-dot-2 { background: linear-gradient(135deg, #38bdf8, var(--sky)); }
    .step-dot-3 { background: linear-gradient(135deg, #34d399, var(--emerald)); }
    .step-dot-4 { background: linear-gradient(135deg, #fbbf24, var(--amber)); }
    .step-dot-5 { background: linear-gradient(135deg, #f472b6, var(--pink)); }

    .step-content {
      background: rgba(255,255,255,0.80);
      border-radius: var(--r-md);
      padding: 24px 28px;
      box-shadow: var(--shadow-card);
    }
    .step-content h3 {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .step-content p {
      color: var(--clay-muted);
      font-size: 0.92rem;
      line-height: 1.75;
    }

    .process-cta {
      text-align: center;
      margin-top: 56px;
    }

    
    .faq-section { padding: 100px 5%; }

    .faq-list {
      max-width: 820px;
      margin: 64px auto 0;
    }

    .faq-item {
      background: rgba(255,255,255,0.80);
      border-radius: var(--r-md);
      margin-bottom: 14px;
      box-shadow: var(--shadow-card);
      overflow: hidden;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .faq-item.open { box-shadow: var(--shadow-deep); }

    .faq-question {
      padding: 24px 28px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      user-select: none;
    }
    .faq-question h3 {
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.4;
    }
    .faq-icon {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(124,58,237,0.08);
      border: 1px solid rgba(124,58,237,0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--violet);
      flex-shrink: 0;
      transition: all 0.3s;
      box-shadow: 3px 3px 8px rgba(160,150,180,0.12), -2px -2px 6px rgba(255,255,255,0.9);
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--violet);
      color: white;
      border-color: var(--violet);
    }
    .faq-answer {
      padding: 0 28px 24px;
      color: var(--clay-muted);
      font-size: 0.92rem;
      line-height: 1.8;
      display: none;
    }
    .faq-item.open .faq-answer { display: block; }

    
    .cta-section { padding: 100px 5%; }

    .cta-box {
      max-width: 860px;
      margin: 0 auto;
      background: rgba(255,255,255,0.80);
      border-radius: var(--r-xl);
      box-shadow: var(--shadow-deep);
      padding: 72px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-box::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-box::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 240px; height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(16,185,129,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(16,185,129,0.10);
      border: 1px solid rgba(16,185,129,0.20);
      border-radius: 9999px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--emerald);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .cta-tag-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--emerald);
      box-shadow: 0 0 6px rgba(16,185,129,0.7);
    }
    .cta-box h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      margin-bottom: 16px;
    }
    .cta-box p {
      color: var(--clay-muted);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 540px;
      margin: 0 auto 40px;
    }
    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    
    .prog-quicknav {
      position: sticky;
      top: 72px;
      z-index: 90;
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(124,58,237,0.08);
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .prog-quicknav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
      display: flex;
      align-items: center;
      gap: 4px;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .prog-quicknav-inner::-webkit-scrollbar { display: none; }
    .prog-qlink {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 14px 18px;
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--clay-muted);
      white-space: nowrap;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
      text-decoration: none;
    }
    .prog-qlink:hover { color: var(--violet); border-bottom-color: var(--violet); }
    .prog-qlink-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
    .prog-qlink.qv:hover { color: var(--violet); border-bottom-color: var(--violet); }
    .prog-qlink.qe:hover { color: var(--emerald); border-bottom-color: var(--emerald); }
    .prog-qlink.qs:hover { color: var(--sky); border-bottom-color: var(--sky); }

    
    .why-section { padding: 100px 5%; background: rgba(255,255,255,0.30); }
    .why-features {
      margin-top: 56px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: rgba(255,255,255,0.70);
      border: 1px solid rgba(124,58,237,0.10);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }
    .why-feat {
      padding: 32px 28px;
      border-right: 1px solid rgba(124,58,237,0.08);
      border-bottom: 1px solid rgba(124,58,237,0.08);
      transition: background 0.25s;
      position: relative;
    }
    .why-feat:hover { background: rgba(124,58,237,0.03); }
    .why-feat:nth-child(3n) { border-right: none; }
    .why-feat:nth-child(n+7) { border-bottom: none; }
    .why-feat-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .why-feat-num {
      font-family: var(--font-heading);
      font-size: 0.70rem;
      font-weight: 900;
      color: var(--violet);
      opacity: 0.35;
      letter-spacing: 0.05em;
    }
    .why-feat-icon {
      width: 38px; height: 38px;
      border-radius: var(--r-xs);
      background: rgba(124,58,237,0.08);
      display: flex; align-items: center; justify-content: center;
      color: var(--violet);
      flex-shrink: 0;
    }
    .why-feat h3 { font-size: 0.97rem; font-weight: 800; margin-bottom: 7px; }
    .why-feat p { font-size: 0.84rem; color: var(--clay-muted); line-height: 1.68; }

    
    .programs-full-section { padding: 80px 5% 100px; }
    .prog-article { margin-bottom: 72px; scroll-margin-top: 136px; }
    .prog-article:last-child { margin-bottom: 0; }

    .prog-art-head {
      padding: 40px 44px;
      border-radius: var(--r-lg) var(--r-lg) 0 0;
    }
    .pah-violet { background: linear-gradient(135deg,rgba(124,58,237,0.10) 0%,rgba(167,139,250,0.05) 100%); border: 1px solid rgba(124,58,237,0.12); border-bottom: none; }
    .pah-emerald { background: linear-gradient(135deg,rgba(16,185,129,0.09) 0%,rgba(52,211,153,0.04) 100%); border: 1px solid rgba(16,185,129,0.10); border-bottom: none; }
    .pah-sky { background: linear-gradient(135deg,rgba(14,165,233,0.09) 0%,rgba(56,189,248,0.04) 100%); border: 1px solid rgba(14,165,233,0.10); border-bottom: none; }

    .pah-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
    .pah-label { font-size: 0.70rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; display: block; }
    .lv { color: var(--violet); } .le { color: var(--emerald); } .ls { color: var(--sky); }
    .pah-title { font-size: clamp(1.5rem,2.8vw,2.1rem); font-weight: 900; line-height: 1.15; }
    .pah-desc { color: var(--clay-muted); font-size: 0.95rem; line-height: 1.8; max-width: 820px; margin-bottom: 24px; }
    .pah-metrics {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 14px;
    }
    .pah-metric {
      background: rgba(255,255,255,0.72);
      border-radius: var(--r-xs);
      padding: 14px 16px;
      text-align: center;
      box-shadow: var(--shadow-card);
    }
    .pah-metric-val { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; display: block; margin-bottom: 3px; }
    .mv { color: var(--violet); } .me { color: var(--emerald); } .ms { color: var(--sky); }
    .pah-metric-lbl { font-size: 0.68rem; font-weight: 600; color: var(--clay-muted); text-transform: uppercase; letter-spacing: 0.07em; }

    .prog-art-body {
      background: rgba(255,255,255,0.55);
      border: 1px solid rgba(124,58,237,0.07);
      border-top: none;
      border-radius: 0 0 var(--r-lg) var(--r-lg);
      padding: 44px;
    }
    .pab-em { border-color: rgba(16,185,129,0.07); }
    .pab-sky { border-color: rgba(14,165,233,0.07); }

    .prog-sub { margin-bottom: 44px; }
    .prog-sub:last-child { margin-bottom: 0; }
    .prog-sub-title {
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .prog-sub-title::before {
      content: '';
      display: block;
      width: 4px; height: 18px;
      border-radius: 2px;
      background: var(--violet);
      flex-shrink: 0;
    }
    .prog-sub-title.te::before { background: var(--emerald); }
    .prog-sub-title.ts::before { background: var(--sky); }

    
    .objectives-table {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 1px solid rgba(124,58,237,0.09);
      border-radius: var(--r-md);
      overflow: hidden;
      background: rgba(255,255,255,0.60);
    }
    .obj-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 13px 20px;
      border-bottom: 1px solid rgba(124,58,237,0.07);
      border-right: 1px solid rgba(124,58,237,0.07);
      transition: background 0.2s;
    }
    .obj-row:hover { background: rgba(124,58,237,0.025); }
    .obj-row:nth-child(2n) { border-right: none; }
    .obj-row-num {
      font-family: var(--font-heading);
      font-size: 0.68rem;
      font-weight: 900;
      color: var(--violet);
      opacity: 0.50;
      flex-shrink: 0;
      margin-top: 2px;
      min-width: 20px;
    }
    .obj-row-num.on-em { color: var(--emerald); }
    .obj-row-num.on-sky { color: var(--sky); }
    .obj-row-text { font-size: 0.87rem; color: var(--clay-muted); line-height: 1.55; }

    
    .module-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 1px solid rgba(124,58,237,0.09);
      border-radius: var(--r-md);
      overflow: hidden;
      background: rgba(255,255,255,0.60);
      list-style: none;
      counter-reset: modcount;
    }
    .module-list li {
      counter-increment: modcount;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 20px;
      border-bottom: 1px solid rgba(124,58,237,0.07);
      border-right: 1px solid rgba(124,58,237,0.07);
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--clay-fg);
      line-height: 1.5;
      transition: background 0.2s;
    }
    .module-list li:hover { background: rgba(124,58,237,0.025); }
    .module-list li:nth-child(2n) { border-right: none; }
    .module-list li::before {
      content: counter(modcount, decimal-leading-zero);
      font-family: var(--font-heading);
      font-size: 0.68rem;
      font-weight: 900;
      color: var(--violet);
      opacity: 0.45;
      flex-shrink: 0;
      margin-top: 2px;
      min-width: 20px;
    }
    .module-list.em-list li::before { color: var(--emerald); }
    .module-list.sky-list li::before { color: var(--sky); }

    
    .on-em { color: var(--emerald); }
    .on-sky { color: var(--sky); }

    
    .conditions-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
    .cond-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 15px;
      background: rgba(255,255,255,0.85);
      border-radius: 9999px;
      font-size: 0.84rem;
      font-weight: 600;
      color: var(--clay-fg);
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(124,58,237,0.08);
    }
    .cd { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

    
    .assessment-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
    .assess-card {
      background: rgba(255,255,255,0.85);
      border-radius: var(--r-sm);
      padding: 18px 14px;
      box-shadow: var(--shadow-card);
      text-align: center;
    }
    .assess-icon {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(124,58,237,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      color: var(--violet);
    }
    .assess-card p { font-size: 0.84rem; font-weight: 600; color: var(--clay-fg); line-height: 1.4; }

    
    .activity-phases { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .act-phase {
      background: rgba(255,255,255,0.85);
      border-radius: var(--r-md);
      box-shadow: var(--shadow-card);
      overflow: hidden;
    }
    .act-phase-head {
      padding: 16px 20px;
      background: rgba(16,185,129,0.07);
      border-bottom: 1px solid rgba(16,185,129,0.10);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .act-badge {
      padding: 3px 10px;
      background: var(--emerald);
      color: white;
      border-radius: 9999px;
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .act-phase-head h3 { font-size: 0.94rem; font-weight: 800; }
    .act-phase-items { padding: 18px 20px; display: flex; flex-direction: column; gap: 9px; }
    .act-item {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 0.86rem;
      color: var(--clay-muted);
      line-height: 1.5;
    }
    .act-check {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(16,185,129,0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--emerald);
      margin-top: 1px;
    }

    
    .obs-exp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
    .obs-exp-item {
      background: rgba(255,255,255,0.85);
      border-radius: var(--r-sm);
      padding: 14px 16px;
      box-shadow: var(--shadow-card);
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.86rem;
      color: var(--clay-muted);
      line-height: 1.5;
      transition: box-shadow 0.25s, transform 0.25s;
      cursor: default;
    }
    .obs-exp-item:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
    .obs-dot-orb {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: rgba(14,165,233,0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--sky);
      margin-top: 1px;
    }
    .audience-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
    .aud-tag {
      padding: 7px 16px;
      background: rgba(14,165,233,0.08);
      color: var(--sky);
      border: 1px solid rgba(14,165,233,0.15);
      border-radius: 9999px;
      font-size: 0.84rem;
      font-weight: 700;
    }

    
    .prog-cta-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      background: rgba(255,255,255,0.85);
      border-radius: var(--r-md);
      padding: 22px 28px;
      box-shadow: var(--shadow-card);
      margin-top: 24px;
      flex-wrap: wrap;
    }
    .pcs-text h3 { font-size: 0.97rem; font-weight: 800; margin-bottom: 3px; }
    .pcs-text p { font-size: 0.84rem; color: var(--clay-muted); }

    
    .careers-section { padding: 100px 5%; }
    .career-list {
      margin-top: 56px;
      border: 1px solid rgba(124,58,237,0.10);
      border-radius: var(--r-lg);
      overflow: hidden;
      background: rgba(255,255,255,0.70);
      box-shadow: var(--shadow-card);
    }
    .career-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px 28px;
      border-bottom: 1px solid rgba(124,58,237,0.07);
      transition: background 0.2s;
    }
    .career-item:last-child { border-bottom: none; }
    .career-item:hover { background: rgba(124,58,237,0.02); }
    .career-item-idx {
      font-family: var(--font-heading);
      font-size: 0.72rem;
      font-weight: 900;
      color: var(--clay-muted);
      opacity: 0.45;
      width: 22px;
      flex-shrink: 0;
    }
    .career-icon-orb {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(124,58,237,0.08);
      display: flex; align-items: center; justify-content: center;
      color: var(--violet);
      flex-shrink: 0;
    }
    .career-item-body { flex: 1; min-width: 0; }
    .career-item-body h3 { font-size: 0.97rem; font-weight: 800; color: var(--clay-fg); margin-bottom: 3px; }
    .career-item-body p { font-size: 0.82rem; color: var(--clay-muted); line-height: 1.5; }
    .career-item-tag {
      font-size: 0.70rem; font-weight: 700;
      padding: 4px 12px; border-radius: 9999px;
      background: rgba(124,58,237,0.07);
      color: var(--violet);
      border: 1px solid rgba(124,58,237,0.13);
      white-space: nowrap;
      flex-shrink: 0;
    }

    
    @media (max-width: 1024px) {
      .why-features { grid-template-columns: repeat(2,1fr); }
      .why-feat:nth-child(3n) { border-right: 1px solid rgba(124,58,237,0.08); }
      .why-feat:nth-child(2n) { border-right: none; }
      .why-feat:nth-child(n+7) { border-bottom: 1px solid rgba(124,58,237,0.08); }
      .why-feat:nth-child(n+9) { border-bottom: none; }
      .pah-metrics { grid-template-columns: repeat(2,1fr); }
      .assessment-grid { grid-template-columns: repeat(2,1fr); }
    }

    @media (max-width: 768px) {
      .page-hero { padding: 140px 5% 80px; }
      .hs-1,.hs-2,.hs-3,.hs-4,.hs-5 { display: none; }
      .why-features { grid-template-columns: 1fr; }
      .why-feat { border-right: none !important; }
      .prog-art-head { padding: 28px 22px; }
      .prog-art-body { padding: 28px 22px; }
      .pah-metrics { grid-template-columns: repeat(2,1fr); }
      .objectives-table { grid-template-columns: 1fr; }
      .obj-row { border-right: none; }
      .module-list { grid-template-columns: 1fr; }
      .module-list li { border-right: none; }
      .assessment-grid { grid-template-columns: repeat(2,1fr); }
      .activity-phases { grid-template-columns: 1fr; }
      .obs-exp-grid { grid-template-columns: 1fr; }
      .career-item { padding: 16px 18px; gap: 14px; }
      .career-item-tag { display: none; }
      .program-card-inner { grid-template-columns: 1fr; }
      .prog-img-wrap { height: 240px; }
      .prog-body { padding: 28px; }
      .prog-outcomes { grid-template-columns: 1fr; }
      .outcome-item { border-right: none; border-bottom: 1px solid rgba(124,58,237,0.08); padding: 10px 0; }
      .outcome-item:last-child { border-bottom: none; }
      .highlights-grid { grid-template-columns: 1fr; }
      .process-section, .faq-section, .cta-section { padding: 80px 5%; }
      .process-timeline { padding-left: 40px; }
      .step-dot { left: -40px; }
      .cta-box { padding: 48px 28px; }
    }

    @media (max-width: 480px) {
      .pah-metrics { grid-template-columns: 1fr 1fr; }
      .assessment-grid { grid-template-columns: 1fr 1fr; }
      .prog-cta-strip { flex-direction: column; align-items: flex-start; }
    }
  
    
    .page-hero {
      padding: 120px 5% 90px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .page-hero-inner {
      max-width: 720px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--clay-muted);
      margin-bottom: 24px;
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(124,58,237,0.10);
      padding: 6px 14px;
      border-radius: 9999px;
      box-shadow: 3px 3px 8px rgba(160,150,180,0.12), -2px -2px 6px rgba(255,255,255,0.9);
    }
    .breadcrumb a { color: var(--clay-muted); transition: color 0.25s; }
    .breadcrumb a:hover { color: var(--violet); }
    .breadcrumb-sep { opacity: 0.4; }
    .page-hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.6rem, 5vw, 4rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.025em;
      margin-bottom: 20px;
    }
    .page-hero p {
      font-size: 1.05rem;
      color: var(--clay-muted);
      line-height: 1.78;
      max-width: 580px;
      margin: 0 auto 36px;
    }
    .hero-pills {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--clay-muted);
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(124,58,237,0.10);
      padding: 8px 16px;
      border-radius: 9999px;
      box-shadow: 3px 3px 10px rgba(160,150,180,0.13), -2px -2px 8px rgba(255,255,255,0.95);
    }
    .hero-pill-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

    
    .hero-shape {
      position: absolute;
      border-radius: 50%;
      filter: blur(50px);
      opacity: 0.35;
      pointer-events: none;
    }
    .hs-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(124,58,237,0.28), transparent); top: -80px; left: -100px; }
    .hs-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(14,165,233,0.22), transparent); top: 40px; right: -60px; }
    .hs-3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(16,185,129,0.20), transparent); bottom: 20px; left: 30%; }

    
    .gallery-section { padding: 0 5% 100px; }
    .gallery-max { max-width: 1320px; margin: 0 auto; }

    .filter-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 40px;
      padding: 18px 22px;
      background: var(--clay-card);
      border-radius: var(--r-lg);
      border: 1px solid rgba(255,255,255,0.65);
      box-shadow: var(--shadow-card);
    }
    .filter-label {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--clay-muted);
      margin-right: 4px;
    }
    .filter-btn {
      background: transparent;
      border: 1.5px solid rgba(124,58,237,0.18);
      color: var(--clay-muted);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 700;
      padding: 7px 16px;
      border-radius: 9999px;
      cursor: pointer;
      transition: all 0.22s;
    }
    .filter-btn:hover {
      background: rgba(124,58,237,0.06);
      color: var(--violet);
      border-color: rgba(124,58,237,0.35);
    }
    .filter-btn.active {
      background: linear-gradient(135deg, var(--violet-light), var(--violet));
      color: #fff;
      border-color: transparent;
      box-shadow: 0 4px 14px rgba(124,58,237,0.30);
    }

    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .gallery-item {
      position: relative;
      border-radius: var(--r-md);
      overflow: hidden;
      background: var(--clay-card);
      border: 1px solid rgba(255,255,255,0.65);
      box-shadow: var(--shadow-card);
      cursor: pointer;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      aspect-ratio: 4/3;
    }
    .gallery-item:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: var(--shadow-card-hover);
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20,14,40,0.72) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 18px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-caption {
      color: #fff;
      font-size: 0.82rem;
      font-weight: 700;
      line-height: 1.4;
    }
    .gallery-caption span {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 600;
      opacity: 0.75;
      margin-top: 3px;
    }
    .gallery-zoom-icon {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 34px; height: 34px;
      background: rgba(255,255,255,0.88);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
      box-shadow: 0 2px 10px rgba(0,0,0,0.18);
    }
    .gallery-item:hover .gallery-zoom-icon { opacity: 1; }

    
    .gallery-item.hidden {
      display: none;
    }

    
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(10,6,28,0.92);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .lightbox.open { opacity: 1; pointer-events: auto; }
    .lightbox-inner {
      position: relative;
      max-width: min(92vw, 1100px);
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .lightbox-img-wrap {
      max-height: 80vh;
      border-radius: var(--r-md);
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    }
    .lightbox-img-wrap img {
      max-width: min(88vw, 1060px);
      max-height: 78vh;
      object-fit: contain;
      display: block;
    }
    .lightbox-meta {
      margin-top: 16px;
      text-align: center;
      color: rgba(255,255,255,0.9);
    }
    .lightbox-title {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 800;
    }
    .lightbox-category {
      font-size: 0.78rem;
      color: rgba(167,139,250,0.9);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 4px;
    }
    .lightbox-counter {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.45);
      margin-top: 6px;
    }
    .lb-close {
      position: fixed;
      top: 20px; right: 24px;
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.1);
      border: 1.5px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      color: #fff;
      font-size: 1.3rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
      line-height: 1;
    }
    .lb-close:hover { background: rgba(255,255,255,0.2); }
    .lb-nav {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      width: 48px; height: 48px;
      background: rgba(255,255,255,0.1);
      border: 1.5px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      color: #fff;
      font-size: 1.4rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .lb-nav:hover { background: rgba(255,255,255,0.22); }
    .lb-prev { left: 20px; }
    .lb-next { right: 20px; }

    
    .cta-section { padding: 60px 5% 100px; }
    .cta-box {
      max-width: 860px;
      margin: 0 auto;
      background: var(--clay-card);
      border-radius: var(--r-xl);
      border: 1px solid rgba(255,255,255,0.65);
      box-shadow: var(--shadow-deep);
      padding: 60px 56px;
      text-align: center;
    }
    .cta-box h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 900;
      margin-bottom: 16px;
    }
    .cta-sub {
      font-size: 1rem;
      color: var(--clay-muted);
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    
    @media (max-width: 900px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .gallery-overlay { opacity: 1; }
      .gallery-zoom-icon { opacity: 1; }
      .filter-bar { gap: 7px; padding: 14px 16px; }
      .cta-box { padding: 40px 28px; }
      .lb-nav { display: none; }
    }
    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .page-hero { padding: 130px 5% 60px; }
    }
  
    

    
    .hero {
      position: relative;
      min-height: 100vh;
      height: 100vh;
      max-height: 900px;
      overflow: hidden;
      isolation: isolate;
      padding: 0;
      background: #080214;
      color: #fff;
    }

    
    .hero-bgs { position: absolute; inset: 0; z-index: 0; }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center 32%;
      opacity: 0;
      transform: scale(1.06);
      transition: opacity 1.4s cubic-bezier(.4,0,.2,1), transform 9s ease-out;
      filter: saturate(1.05);
    }
    .hero-bg.active {
      opacity: 1;
      transform: scale(1.14);
    }

    
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        radial-gradient(ellipse 70% 55% at 50% 35%, rgba(124, 58, 237, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 95% 75% at 50% 50%, transparent 0%, rgba(6, 1, 16, 0.55) 100%),
        linear-gradient(180deg, rgba(8, 2, 20, 0.55) 0%, rgba(8, 2, 20, 0.20) 30%, rgba(8, 2, 20, 0.55) 70%, rgba(8, 2, 20, 0.95) 100%);
    }
    .hero-overlay::after {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
      mix-blend-mode: overlay;
      opacity: 0.14;
      pointer-events: none;
    }

    
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 130px 5% 150px;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      text-align: center;
    }

    
    .hero-slides {
      position: relative;
      width: 100%;
      max-width: 1080px;
      display: grid;
    }
    .hero-slide {
      grid-column: 1;
      grid-row: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transform: translateY(14px);
      transition:
        opacity 0.7s cubic-bezier(.4,0,.2,1),
        transform 0.7s cubic-bezier(.4,0,.2,1),
        visibility 0s linear 0.7s;
      pointer-events: none;
    }
    .hero-slide.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
      transition:
        opacity 0.7s cubic-bezier(.4,0,.2,1),
        transform 0.7s cubic-bezier(.4,0,.2,1);
    }

    
    .hero-affiliation {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 9px 22px 9px 14px;
      border-radius: 9999px;
      background: linear-gradient(135deg, rgba(167, 139, 250, 0.18) 0%, rgba(236, 72, 153, 0.10) 100%);
      border: 1px solid rgba(196, 181, 253, 0.45);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      color: rgba(255, 255, 255, 0.92);
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      margin-bottom: 96px;
      box-shadow:
        0 0 0 1px rgba(196, 181, 253, 0.18),
        0 0 28px rgba(167, 139, 250, 0.32),
        0 0 70px rgba(167, 139, 250, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
      animation: heroAffGlow 3.8s ease-in-out infinite;
      isolation: isolate;
    }
    .hero-affiliation::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 9999px;
      padding: 1px;
      background: linear-gradient(120deg,
        rgba(196, 181, 253, 0.0) 0%,
        rgba(196, 181, 253, 0.85) 30%,
        rgba(236, 72, 153, 0.65) 55%,
        rgba(196, 181, 253, 0.85) 80%,
        rgba(196, 181, 253, 0.0) 100%);
      background-size: 200% 100%;
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
              mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude;
      pointer-events: none;
      animation: heroAffSheen 6s linear infinite;
      z-index: -1;
    }
    .hero-affiliation strong {
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.01em;
      background: linear-gradient(120deg, #fff 0%, #E9D5FF 50%, #fff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-aff-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #E9D5FF;
      box-shadow:
        0 0 8px rgba(233, 213, 255, 0.95),
        0 0 18px rgba(167, 139, 250, 0.7),
        0 0 36px rgba(167, 139, 250, 0.5);
      animation: clay-breathe 2.4s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes heroAffGlow {
      0%, 100% {
        box-shadow:
          0 0 0 1px rgba(196, 181, 253, 0.18),
          0 0 24px rgba(167, 139, 250, 0.28),
          0 0 60px rgba(167, 139, 250, 0.14),
          inset 0 1px 0 rgba(255, 255, 255, 0.18);
      }
      50% {
        box-shadow:
          0 0 0 1px rgba(196, 181, 253, 0.38),
          0 0 38px rgba(167, 139, 250, 0.55),
          0 0 90px rgba(167, 139, 250, 0.32),
          inset 0 1px 0 rgba(255, 255, 255, 0.30);
      }
    }
    @keyframes heroAffSheen {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    @media (max-width: 768px) {
      .hero-affiliation {
        font-size: 0.7rem;
        padding: 7px 16px 7px 10px;
        gap: 9px;
        margin-bottom: 56px;
      }
      .hero-aff-dot { width: 6px; height: 6px; }
    }

    
    .hs-tag {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 8px 18px 8px 12px;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(20px) saturate(140%);
      -webkit-backdrop-filter: blur(20px) saturate(140%);
      color: rgba(255, 255, 255, 0.92);
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .hs-tag::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #C4B5FD;
      box-shadow: 0 0 10px rgba(167, 139, 250, 0.9), 0 0 20px rgba(167, 139, 250, 0.5);
      animation: clay-breathe 2.6s ease-in-out infinite;
    }
    .hero-slide[data-slide="2"] .hs-tag::before { background: #6EE7B7; box-shadow: 0 0 10px rgba(110, 231, 183, 0.9), 0 0 20px rgba(110, 231, 183, 0.45); }
    .hero-slide[data-slide="3"] .hs-tag::before { background: #7DD3FC; box-shadow: 0 0 10px rgba(125, 211, 252, 0.9), 0 0 20px rgba(125, 211, 252, 0.45); }

    
    .hs-title {
      font-family: var(--font-heading);
      font-size: clamp(2.6rem, 6.8vw, 5.8rem);
      font-weight: 800;
      line-height: 0.94;
      letter-spacing: -0.035em;
      color: #fff;
      margin: 0 0 22px;
      text-wrap: balance;
      text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
    }
    .hs-accent {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-weight: 400;
      letter-spacing: -0.015em;
      background: linear-gradient(120deg, #F9A8D4 0%, #C4B5FD 50%, #93C5FD 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 2px 18px rgba(196, 181, 253, 0.45)) drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
    }
    .hero-slide[data-slide="2"] .hs-accent {
      background: linear-gradient(120deg, #A7F3D0 0%, #5EEAD4 45%, #7DD3FC 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 2px 18px rgba(94, 234, 212, 0.45)) drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
    }
    .hero-slide[data-slide="3"] .hs-accent {
      background: linear-gradient(120deg, #BAE6FD 0%, #7DD3FC 45%, #DDD6FE 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 2px 18px rgba(125, 211, 252, 0.45)) drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
    }

    
    .hs-desc {
      max-width: 620px;
      font-size: clamp(1rem, 1.2vw, 1.1rem);
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.78);
      margin: 0 0 36px;
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
      font-weight: 400;
    }

    
    .hs-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      margin: 0 0 28px;
    }
    .hs-actions .btn-primary {
      background: #fff;
      color: #0A0218;
      border: 0;
      box-shadow: 0 4px 24px rgba(255, 255, 255, 0.18), 0 2px 6px rgba(0, 0, 0, 0.18);
      padding: 16px 28px;
      font-weight: 700;
      font-size: 0.95rem;
    }
    .hs-actions .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255, 255, 255, 0.24), 0 4px 10px rgba(0, 0, 0, 0.22);
      background: #fff;
      color: #0A0218;
    }
    .hs-actions .btn-secondary {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: none;
      padding: 16px 26px;
      font-weight: 600;
      font-size: 0.95rem;
    }
    .hs-actions .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.45);
      color: #fff;
    }

    
    .hs-trust {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .hs-trust-item {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
      letter-spacing: 0.01em;
    }
    .hs-trust-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #C4B5FD;
      flex-shrink: 0;
      box-shadow: 0 0 8px rgba(196, 181, 253, 0.7);
    }
    .hero-slide[data-slide="2"] .hs-trust-dot { background: #6EE7B7; box-shadow: 0 0 8px rgba(110, 231, 183, 0.7); }
    .hero-slide[data-slide="3"] .hs-trust-dot { background: #7DD3FC; box-shadow: 0 0 8px rgba(125, 211, 252, 0.7); }

    
    .hero-slide .hs-tag,
    .hero-slide .hs-title,
    .hero-slide .hs-desc,
    .hero-slide .hs-actions,
    .hero-slide .hs-trust {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .hero-slide.active .hs-tag      { opacity: 1; transform: translateY(0); transition-delay: 0.10s; }
    .hero-slide.active .hs-title    { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
    .hero-slide.active .hs-desc     { opacity: 1; transform: translateY(0); transition-delay: 0.34s; }
    .hero-slide.active .hs-actions  { opacity: 1; transform: translateY(0); transition-delay: 0.44s; }
    .hero-slide.active .hs-trust    { opacity: 1; transform: translateY(0); transition-delay: 0.54s; }

    
    .hero-controls {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      z-index: 4;
      padding: 22px max(5%, 32px) 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      background: linear-gradient(180deg, transparent 0%, rgba(6, 1, 16, 0.55) 100%);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    .hero-progress {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      flex: 1;
    }
    .hero-progress-item {
      display: flex;
      flex-direction: column;
      gap: 12px;
      cursor: pointer;
      text-align: left;
      background: none;
      border: 0;
      padding: 0;
      font-family: inherit;
      color: inherit;
      transition: opacity 0.25s ease;
      opacity: 0.45;
    }
    .hero-progress-item:hover { opacity: 0.8; }
    .hero-progress-item.active { opacity: 1; }
    .hero-progress-bar {
      height: 2px;
      background: rgba(255, 255, 255, 0.14);
      border-radius: 2px;
      overflow: hidden;
      position: relative;
    }
    .hero-progress-fill {
      position: absolute;
      top: 0; bottom: 0; left: 0;
      width: 0%;
      background: linear-gradient(90deg, #E9D5FF, #C4B5FD);
      border-radius: 2px;
    }
    .hero-progress-item[data-slide="2"] .hero-progress-fill { background: linear-gradient(90deg, #BBF7D0, #6EE7B7); }
    .hero-progress-item[data-slide="3"] .hero-progress-fill { background: linear-gradient(90deg, #BAE6FD, #7DD3FC); }
    .hero-progress-meta {
      display: flex;
      align-items: baseline;
      gap: 12px;
      color: rgba(255, 255, 255, 0.9);
    }
    .hero-progress-num {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 0.7rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.18em;
    }
    .hero-progress-item.active .hero-progress-num { color: #fff; }
    .hero-progress-label {
      font-family: var(--font-heading);
      font-size: 0.92rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.92);
      letter-spacing: -0.005em;
    }
    .hero-arrows {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }
    .hero-arrow {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.20);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      transition: all 0.25s ease;
      padding: 0;
    }
    .hero-arrow:hover {
      background: #fff;
      color: #0A0218;
      border-color: #fff;
      transform: translateY(-2px);
    }
    .hero-arrow svg { width: 16px; height: 16px; }

    
    .hero::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: 0;
      height: 220px;
      z-index: 1;
      background: linear-gradient(180deg, transparent 0%, rgba(6, 1, 16, 0.65) 100%);
      pointer-events: none;
    }

    
    @media (max-height: 880px) {
      .hs-title { font-size: clamp(2.2rem, 5.2vw, 4.4rem); margin-bottom: 18px; }
      .hs-desc { margin-bottom: 26px; font-size: 0.98rem; }
      .hs-actions { margin-bottom: 22px; }
      .hero-affiliation { margin-bottom: 72px; }
      .hs-tag { margin-bottom: 20px; }
      .hero-content { padding-top: 120px; padding-bottom: 140px; }
    }
    @media (max-height: 760px) {
      .hs-title { font-size: clamp(2rem, 4.6vw, 3.4rem); }
      .hs-desc { font-size: 0.92rem; margin-bottom: 22px; }
      .hs-trust { display: none; }
      .hero-affiliation { margin-bottom: 56px; }
      .hero-content { padding-top: 110px; padding-bottom: 130px; }
    }
    @media (max-height: 680px) {
      .hs-desc { display: none; }
      .hs-actions { margin-bottom: 16px; }
      .hero-affiliation { margin-bottom: 40px; }
      .hs-tag { margin-bottom: 16px; }
    }
    @media (max-width: 1024px) {
      .hero { height: auto; min-height: 100vh; max-height: none; }
      .hero-content { padding: 140px 5% 160px; }
    }
    @media (max-width: 768px) {
      .hero { min-height: 100svh; }
      .hero-content { padding: 130px 5% 180px; }
      .hs-title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
      .hs-tag { font-size: 0.66rem; letter-spacing: 0.14em; padding: 7px 14px 7px 10px; margin-bottom: 22px; }
      .hs-desc { font-size: 0.95rem; margin-bottom: 28px; }
      .hs-actions { flex-direction: column; width: 100%; gap: 10px; }
      .hs-actions .btn { width: 100%; justify-content: center; }
      .hs-trust { gap: 14px 18px; font-size: 0.78rem; }
      .hero-controls { flex-direction: column; align-items: stretch; gap: 16px; padding: 18px 5% 22px; }
      .hero-progress { gap: 14px; }
      .hero-progress-label { font-size: 0.82rem; }
      .hero-progress-num { font-size: 0.66rem; }
      .hero-arrows { justify-content: center; }
    }
    @media (max-width: 480px) {
      .hero-progress { grid-template-columns: 1fr; gap: 8px; }
      .hero-progress-item:not(.active) { display: none; }
    }

        
    .stats-section { padding: 40px 5% 80px; }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .stat-orb {
      background: var(--clay-card);
      border-radius: var(--r-lg);
      padding: 36px 20px;
      text-align: center;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(255,255,255,0.65);
      transition: all 0.4s ease;
    }
    .stat-orb:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: var(--shadow-card-hover);
    }
    .stat-icon-wrap {
      width: 52px; height: 52px;
      border-radius: var(--r-sm);
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .stat-num {
      font-family: var(--font-heading);
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-num .unit {
      font-size: 1.5rem;
      font-weight: 700;
      opacity: 0.65;
    }
    .stat-label {
      font-size: 0.8rem;
      color: var(--clay-muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    
    .why-section { padding-top: 80px; }
    .why-bento {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }
    .why-card {
      background: var(--clay-card);
      border-radius: var(--r-lg);
      padding: 40px 36px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.65);
      box-shadow: var(--shadow-card);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-card-hover);
    }
    .why-card.card-wide {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .why-icon-orb {
      width: 64px; height: 64px;
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }
    .why-card h3 {
      font-size: 1.35rem;
      font-weight: 800;
      margin-bottom: 12px;
      color: var(--clay-fg);
    }
    .why-card p {
      color: var(--clay-muted);
      font-size: 0.95rem;
      line-height: 1.75;
    }
    .why-metric-box {
      background: rgba(244, 241, 250, 0.8);
      border-radius: var(--r-md);
      padding: 28px 24px;
      text-align: center;
      box-shadow: var(--shadow-pressed);
      border: 1px solid rgba(255,255,255,0.5);
    }
    .why-metric-val {
      font-family: var(--font-heading);
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--violet);
      line-height: 1;
      margin-bottom: 6px;
    }
    .why-metric-val .unit { font-size: 2rem; }
    .why-metric-label {
      font-size: 0.82rem;
      color: var(--clay-muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      line-height: 1.4;
    }
    .why-metric-inline {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(124, 58, 237, 0.08);
    }
    .why-metric-inline .val {
      font-family: var(--font-heading);
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--violet);
      line-height: 1;
    }
    .why-metric-inline .lbl {
      font-size: 0.82rem;
      color: var(--clay-muted);
      font-weight: 500;
      line-height: 1.4;
    }
    .why-card.card-wide:last-child .why-metric-box { text-align: left; padding: 28px 28px; }

    
    .programs-section {
      background: rgba(255,255,255,0.20);
      border-top: 1px solid rgba(124, 58, 237, 0.06);
      border-bottom: 1px solid rgba(124, 58, 237, 0.06);
    }
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }
    .program-card {
      background: var(--clay-card);
      border-radius: var(--r-lg);
      overflow: hidden;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.65);
      box-shadow: var(--shadow-card);
      transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .program-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-card-hover);
    }
    .prog-img-wrap {
      position: relative;
      height: 200px;
      overflow: hidden;
      border-radius: var(--r-md) var(--r-md) 0 0;
    }
    .prog-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .program-card:hover .prog-img-wrap img { transform: scale(1.06); }
    .prog-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(30,10,60,0.45), transparent 60%);
    }
    .prog-badge {
      position: absolute;
      top: 14px; right: 14px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(8px);
      padding: 5px 14px;
      border-radius: 9999px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--clay-fg);
      box-shadow: 3px 3px 8px rgba(160,150,180,0.18), -2px -2px 6px rgba(255,255,255,0.9);
    }
    .prog-color-tag {
      position: absolute;
      bottom: 14px; left: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      color: white;
      opacity: 0.9;
    }
    .prog-dot { width: 8px; height: 8px; border-radius: 50%; }
    .program-body {
      padding: 28px 28px 24px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .program-body h3 {
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--clay-fg);
    }
    .program-body p {
      color: var(--clay-muted);
      font-size: 0.92rem;
      line-height: 1.7;
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .prog-highlights {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 20px;
    }
    .prog-highlight {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--clay-muted);
      font-weight: 500;
    }
    .prog-check {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--emerald);
      flex-shrink: 0;
    }
    .prog-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(124, 58, 237, 0.08);
      padding-top: 18px;
    }
    .prog-fee {
      font-family: var(--font-heading);
      font-weight: 900;
      color: var(--violet);
      font-size: 1.15rem;
    }
    .prog-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--violet);
      background: rgba(124, 58, 237, 0.08);
      padding: 8px 14px;
      border-radius: 9999px;
      transition: all 0.25s ease;
      border: 1px solid rgba(124, 58, 237, 0.14);
    }
    .prog-link:hover {
      background: var(--violet);
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-btn);
    }

    
    .journey-section { padding: 100px 5%; }
    .journey-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      position: relative;
    }
    .journey-steps::before {
      content: '';
      position: absolute;
      top: 44px;
      left: calc(16.66% + 20px);
      right: calc(16.66% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--violet) 0%, var(--emerald) 50%, var(--sky) 100%);
      opacity: 0.18;
      z-index: 0;
    }
    .journey-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .step-num {
      width: 88px; height: 88px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 900;
      color: white;
    }
    .step-1-bg {
      background: linear-gradient(135deg, var(--violet-light) 0%, var(--violet) 100%);
      box-shadow: var(--shadow-btn);
    }
    .step-2-bg {
      background: linear-gradient(135deg, #34D399 0%, var(--emerald) 100%);
      box-shadow:
        12px 12px 24px rgba(16,185,129,0.28),
        -8px -8px 16px rgba(255,255,255,0.40),
        inset 4px 4px 8px rgba(255,255,255,0.40),
        inset -4px -4px 8px rgba(0,0,0,0.10);
      animation-delay: -2.33s;
    }
    .step-3-bg {
      background: linear-gradient(135deg, #38BDF8 0%, var(--sky) 100%);
      box-shadow:
        12px 12px 24px rgba(14,165,233,0.28),
        -8px -8px 16px rgba(255,255,255,0.40),
        inset 4px 4px 8px rgba(255,255,255,0.40),
        inset -4px -4px 8px rgba(0,0,0,0.10);
      animation-delay: -4.66s;
    }
    .step-card {
      background: var(--clay-card);
      border-radius: var(--r-lg);
      padding: 32px 28px;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(255,255,255,0.65);
      backdrop-filter: blur(16px);
      transition: all 0.4s ease;
    }
    .step-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-card-hover);
    }
    .step-card h3 {
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--clay-fg);
    }
    .step-card p {
      font-size: 0.92rem;
      color: var(--clay-muted);
      line-height: 1.72;
    }

    
    
    .testimonials-carousel { position: relative; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .testimonial-card {
      background: var(--clay-card);
      border-radius: var(--r-lg);
      padding: 36px 32px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.65);
      box-shadow: var(--shadow-card);
      transition: all 0.45s ease;
      position: relative;
      display: none;
      flex-direction: column;
    }
    .testimonial-card.t-active {
      display: flex;
      box-shadow: var(--shadow-card-hover);
    }
    .testimonial-card:hover { transform: translateY(-6px) scale(1); box-shadow: var(--shadow-card-hover); }
    .t-carousel-controls {
      display: flex; align-items: center; justify-content: center;
      gap: 16px; margin-top: 32px;
    }
    .t-nav-btn {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--clay-card);
      border: 1px solid rgba(124,58,237,0.18);
      box-shadow: var(--shadow-card);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.25s; color: var(--clay-muted);
      font-size: 1.1rem;
    }
    .t-nav-btn:hover { background: var(--violet); color: #fff; border-color: var(--violet); }
    .t-dots { display: flex; gap: 8px; }
    .t-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(124,58,237,0.2); cursor: pointer;
      transition: all 0.3s; border: none; padding: 0;
    }
    .t-dot.t-dot-active { background: var(--violet); width: 22px; border-radius: 4px; }

    
    .glimpse-section { padding: 0 5% 100px; }
    .glimpse-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 16px;
    }
    .glimpse-main { grid-row: span 2; }
    .glimpse-item {
      display: block;
      border-radius: var(--r-md);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-card);
      transition: transform 0.35s, box-shadow 0.35s;
    }
    .glimpse-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
    .glimpse-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
    .glimpse-main img { min-height: 420px; }
    .glimpse-side .glimpse-item img { height: 180px; }
    .glimpse-item:hover img { transform: scale(1.05); }
    .glimpse-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(20,10,50,0.65), transparent 50%);
      display: flex; align-items: flex-end; padding: 20px;
      opacity: 0; transition: opacity 0.3s;
    }
    .glimpse-item:hover .glimpse-overlay { opacity: 1; }
    .glimpse-main .glimpse-overlay { opacity: 1; }
    .glimpse-overlay span {
      color: #fff; font-weight: 800; font-size: 0.9rem;
      font-family: var(--font-heading);
    }
    @media (max-width: 768px) {
      .glimpse-grid { grid-template-columns: 1fr; }
      .glimpse-main { grid-row: span 1; }
      .glimpse-main img { min-height: 240px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonial-card { display: none; }
      .testimonial-card.t-active { display: flex; }
    }
    .t-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 20px;
    }
    .t-stars svg { color: var(--amber); }
    .t-quote-mark {
      font-family: var(--font-heading);
      font-size: 5rem;
      line-height: 0.7;
      color: var(--violet);
      opacity: 0.12;
      margin-bottom: 12px;
      user-select: none;
    }
    .t-text {
      font-size: 0.95rem;
      color: var(--clay-muted);
      line-height: 1.8;
      font-style: italic;
      flex-grow: 1;
      margin-bottom: 28px;
    }
    .t-author {
      display: flex;
      align-items: center;
      gap: 14px;
      border-top: 1px solid rgba(124, 58, 237, 0.08);
      padding-top: 20px;
    }
    .t-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 0.9rem;
      color: white;
      flex-shrink: 0;
      box-shadow: var(--shadow-btn);
    }
    .t-name  { font-weight: 700; font-size: 0.9rem; color: var(--clay-fg); margin-bottom: 2px; }
    .t-role  { font-size: 0.78rem; color: var(--clay-muted); }

    
    .cta-section { padding: 80px 5% 120px; }
    .cta-box {
      max-width: 960px;
      margin: 0 auto;
      background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.10) 0%,
        rgba(167, 139, 250, 0.08) 50%,
        rgba(219, 39, 119, 0.06) 100%);
      border: 1px solid rgba(124, 58, 237, 0.16);
      border-radius: var(--r-xl);
      padding: 80px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: var(--shadow-card);
    }
    .cta-box::before {
      content: '';
      position: absolute;
      top: -60%; left: -20%;
      width: 140%; height: 200%;
      background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-box h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
    .cta-box .cta-sub {
      font-size: 1.05rem;
      color: var(--clay-muted);
      max-width: 540px;
      margin: 0 auto 16px;
      line-height: 1.75;
      position: relative;
      z-index: 1;
    }
    .cta-batch-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(16, 185, 129, 0.10);
      border: 1px solid rgba(16, 185, 129, 0.20);
      color: var(--emerald);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 6px 16px 6px 10px;
      border-radius: 9999px;
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
    }
    .cta-batch-tag::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--emerald);
      box-shadow: 0 0 6px rgba(16,185,129,0.7);
      animation: clay-breathe 2.5s ease-in-out infinite;
    }
    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    
    @media (max-width: 1024px) {
      .hero-inner      { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual     { display: none; }
      .hero-title      { font-size: clamp(2.4rem, 6vw, 3.5rem); }
      .hero-desc       { max-width: 100%; }
      .hero-trust      { flex-wrap: wrap; gap: 12px; }
      .stats-grid      { grid-template-columns: repeat(2, 1fr); }
      .why-card.card-wide {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .programs-grid   { grid-template-columns: 1fr 1fr; }
      .journey-steps   { grid-template-columns: 1fr; gap: 24px; }
      .journey-steps::before { display: none; }
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .hero { padding-top: 80px; }
      .hero-inner { padding: 40px 5%; }
      .hero-trust { display: none; }
      section { padding: 80px 5%; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .why-bento  { grid-template-columns: 1fr; }
      .why-card.card-wide { grid-column: auto; grid-template-columns: 1fr; }
      .programs-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .cta-box { padding: 48px 24px; border-radius: var(--r-lg); }
      .hero-actions .btn { width: 100%; justify-content: center; }
      .cta-actions  .btn { width: 100%; justify-content: center; }
      .stat-num { font-size: 2.2rem; }
    }
  
    
    .nav-brand-text { line-height: 1.18; }
    .nav-brand-sub {
      display: block;
      margin-top: 4px;
      font-family: var(--font-body, "DM Sans", sans-serif);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: none;
      color: var(--clay-muted);
      max-width: 220px;
      white-space: normal;
    }
    footer .nav-brand-sub { color: rgba(255,255,255,0.55); }
  
    .page-hero {
      padding: 120px 5% 80px;
      text-align: center;
      position: relative;
    }
    .page-hero-inner { max-width: 680px; margin: 0 auto; }
    .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--clay-muted);
      background: rgba(255,255,255,0.72);
      padding: 6px 16px;
      border-radius: 9999px;
      box-shadow: 4px 4px 12px rgba(160,150,180,0.14), -3px -3px 8px rgba(255,255,255,0.9);
      margin-bottom: 28px;
    }
    .breadcrumb a { color: var(--clay-muted); transition: color 0.25s; }
    .breadcrumb a:hover { color: var(--violet); }
    .page-hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 900;
      margin-bottom: 16px;
      line-height: 1.1;
    }
    .page-hero p {
      color: var(--clay-muted);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 540px;
      margin: 0 auto;
    }

    
    .policy-section { padding: 20px 5% 100px; }
    .policy-wrap {
      max-width: 860px;
      margin: 0 auto;
    }
    .policy-card {
      background: rgba(255,255,255,0.82);
      border-radius: var(--r-lg);
      padding: 52px 56px;
      box-shadow: var(--shadow-deep);
    }
    .policy-updated {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.80rem;
      font-weight: 600;
      color: var(--emerald);
      background: rgba(16,185,129,0.08);
      border: 1px solid rgba(16,185,129,0.18);
      border-radius: 9999px;
      padding: 5px 14px;
      margin-bottom: 32px;
    }
    .policy-updated-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--emerald);
    }
    .policy-intro {
      font-size: 1rem;
      color: var(--clay-muted);
      line-height: 1.9;
      margin-bottom: 40px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(124,58,237,0.08);
    }
    .policy-toc {
      background: rgba(124,58,237,0.04);
      border: 1px solid rgba(124,58,237,0.10);
      border-radius: var(--r-sm);
      padding: 22px 28px;
      margin-bottom: 40px;
    }
    .policy-toc h3 {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--violet);
      text-transform: uppercase;
      letter-spacing: 0.10em;
      margin-bottom: 14px;
    }
    .policy-toc ol {
      padding-left: 18px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 24px;
    }
    .policy-toc li a {
      font-size: 0.86rem;
      color: var(--clay-muted);
      transition: color 0.2s;
    }
    .policy-toc li a:hover { color: var(--violet); }

    .policy-block { margin-bottom: 40px; }
    .policy-block:last-child { margin-bottom: 0; }
    .policy-block h2 {
      font-size: 1.15rem;
      font-weight: 900;
      color: var(--clay-fg);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .policy-num {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--violet-light), var(--violet));
      color: #fff;
      font-size: 0.70rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .policy-block p {
      font-size: 0.93rem;
      color: var(--clay-muted);
      line-height: 1.9;
      margin-bottom: 12px;
    }
    .policy-block ul {
      padding-left: 18px;
      margin: 10px 0 12px;
    }
    .policy-block ul li {
      font-size: 0.92rem;
      color: var(--clay-muted);
      line-height: 1.8;
      margin-bottom: 4px;
    }
    .policy-highlight {
      background: rgba(124,58,237,0.05);
      border-left: 3px solid var(--violet);
      border-radius: 0 var(--r-xs) var(--r-xs) 0;
      padding: 14px 18px;
      margin: 16px 0;
      font-size: 0.90rem;
      color: var(--clay-fg);
      line-height: 1.8;
    }
    .policy-contact-card {
      background: rgba(124,58,237,0.05);
      border: 1px solid rgba(124,58,237,0.12);
      border-radius: var(--r-sm);
      padding: 22px 24px;
      margin-top: 16px;
    }
    .policy-contact-card p { margin-bottom: 6px; }
    .policy-contact-card a { color: var(--violet); font-weight: 600; }
    .policy-divider {
      border: none;
      border-top: 1px solid rgba(124,58,237,0.08);
      margin: 36px 0;
    }

    @media (max-width: 768px) {
      .policy-card { padding: 32px 24px; }
      .policy-toc ol { grid-template-columns: 1fr; }
    }
  
    
    .nav-brand-text { line-height: 1.18; }
    .nav-brand-sub {
      display: block;
      margin-top: 4px;
      font-family: var(--font-body, "DM Sans", sans-serif);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: none;
      color: var(--clay-muted);
      max-width: 220px;
      white-space: normal;
    }
    footer .nav-brand-sub { color: rgba(255,255,255,0.55); }
  
    .page-hero {
      padding: 120px 5% 80px;
      text-align: center;
      position: relative;
    }
    .page-hero-inner { max-width: 680px; margin: 0 auto; }
    .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--clay-muted);
      background: rgba(255,255,255,0.72);
      padding: 6px 16px;
      border-radius: 9999px;
      box-shadow: 4px 4px 12px rgba(160,150,180,0.14), -3px -3px 8px rgba(255,255,255,0.9);
      margin-bottom: 28px;
    }
    .breadcrumb a { color: var(--clay-muted); transition: color 0.25s; }
    .breadcrumb a:hover { color: var(--violet); }
    .page-hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 900;
      margin-bottom: 16px;
      line-height: 1.1;
    }
    .page-hero p {
      color: var(--clay-muted);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 540px;
      margin: 0 auto;
    }

    .policy-section { padding: 20px 5% 100px; }
    .policy-wrap { max-width: 860px; margin: 0 auto; }
    .policy-card {
      background: rgba(255,255,255,0.82);
      border-radius: var(--r-lg);
      padding: 52px 56px;
      box-shadow: var(--shadow-deep);
    }
    .policy-updated {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.80rem;
      font-weight: 600;
      color: var(--emerald);
      background: rgba(16,185,129,0.08);
      border: 1px solid rgba(16,185,129,0.18);
      border-radius: 9999px;
      padding: 5px 14px;
      margin-bottom: 32px;
    }
    .policy-updated-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--emerald);
    }
    .policy-intro {
      font-size: 1rem;
      color: var(--clay-muted);
      line-height: 1.9;
      margin-bottom: 40px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(124,58,237,0.08);
    }
    .policy-toc {
      background: rgba(124,58,237,0.04);
      border: 1px solid rgba(124,58,237,0.10);
      border-radius: var(--r-sm);
      padding: 22px 28px;
      margin-bottom: 40px;
    }
    .policy-toc h3 {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--violet);
      text-transform: uppercase;
      letter-spacing: 0.10em;
      margin-bottom: 14px;
    }
    .policy-toc ol {
      padding-left: 18px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 24px;
    }
    .policy-toc li a {
      font-size: 0.86rem;
      color: var(--clay-muted);
      transition: color 0.2s;
    }
    .policy-toc li a:hover { color: var(--violet); }

    .policy-block { margin-bottom: 40px; }
    .policy-block:last-child { margin-bottom: 0; }
    .policy-block h2 {
      font-size: 1.15rem;
      font-weight: 900;
      color: var(--clay-fg);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .policy-num {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--violet-light), var(--violet));
      color: #fff;
      font-size: 0.70rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .policy-block p {
      font-size: 0.93rem;
      color: var(--clay-muted);
      line-height: 1.9;
      margin-bottom: 12px;
    }
    .policy-block ul, .policy-block ol.list {
      padding-left: 18px;
      margin: 10px 0 12px;
    }
    .policy-block ul li, .policy-block ol.list li {
      font-size: 0.92rem;
      color: var(--clay-muted);
      line-height: 1.8;
      margin-bottom: 4px;
    }
    .policy-highlight {
      background: rgba(124,58,237,0.05);
      border-left: 3px solid var(--violet);
      border-radius: 0 var(--r-xs) var(--r-xs) 0;
      padding: 14px 18px;
      margin: 16px 0;
      font-size: 0.90rem;
      color: var(--clay-fg);
      line-height: 1.8;
    }
    .policy-warn {
      background: rgba(245,158,11,0.06);
      border-left: 3px solid var(--amber);
      border-radius: 0 var(--r-xs) var(--r-xs) 0;
      padding: 14px 18px;
      margin: 16px 0;
      font-size: 0.90rem;
      color: var(--clay-fg);
      line-height: 1.8;
    }
    .policy-contact-card {
      background: rgba(124,58,237,0.05);
      border: 1px solid rgba(124,58,237,0.12);
      border-radius: var(--r-sm);
      padding: 22px 24px;
      margin-top: 16px;
    }
    .policy-contact-card p { margin-bottom: 6px; }
    .policy-contact-card a { color: var(--violet); font-weight: 600; }
    .policy-divider {
      border: none;
      border-top: 1px solid rgba(124,58,237,0.08);
      margin: 36px 0;
    }

    @media (max-width: 768px) {
      .policy-card { padding: 32px 24px; }
      .policy-toc ol { grid-template-columns: 1fr; }
    }
  