/* ═══════════════════════════════════════════════════════════════
   PHARMASCHEMES — Refined Pharmaceutical Luxury
   Typography: Outfit (display) + DM Sans (body)
   Palette: #EF156B / #37475E / #14B8A6
   ═══════════════════════════════════════════════════════════════ */

:root {
  --primary: #EF156B;
  --primary-light: #FF4D8D;
  --primary-dark: #D10054;
  --primary-soft: #FFE4ED;
  --primary-glow: rgba(239, 21, 107, 0.25);
  --secondary: #37475E;
  --secondary-light: #4A5D78;
  --secondary-dark: #252F3E;
  --secondary-deep: #1A212D;
  --teal: #14B8A6;
  --teal-light: #5EEAD4;
  --teal-dark: #0D9488;
  --bg: #F8FAFC;
  --bg-alt: #F1F5F9;
  --surface: #FFFFFF;
  --text-primary: #1A212D;
  --text-secondary: #5C6D85;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  --feature-blue: #3B82F6;
  --feature-purple: #8B5CF6;
  --feature-green: #10B981;
  --feature-orange: #F97316;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(26,33,45,0.06);
  --shadow-md: 0 8px 32px rgba(26,33,45,0.08);
  --shadow-lg: 0 16px 48px rgba(26,33,45,0.12);
  --shadow-glow: 0 0 60px var(--primary-glow);
}

/* ═══ Global Reset ═══ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ═══ Floating Background Shapes ═══ */
.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.04;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -200px; right: -200px;
  animation: float-shape 20s ease-in-out infinite;
}
.shape-2 {
  width: 500px; height: 500px;
  background: var(--teal);
  bottom: 20%; left: -150px;
  animation: float-shape 25s ease-in-out infinite reverse;
}
.shape-3 {
  width: 400px; height: 400px;
  background: var(--feature-purple);
  top: 50%; right: 10%;
  animation: float-shape 22s ease-in-out infinite 5s;
}
@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ═══ Scroll Animations ═══ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up[data-delay="1"] { transition-delay: 0.12s; }
.fade-up[data-delay="2"] { transition-delay: 0.24s; }
.fade-up[data-delay="3"] { transition-delay: 0.36s; }
.fade-up[data-delay="4"] { transition-delay: 0.5s; }
.fade-up[data-delay="5"] { transition-delay: 0.62s; }

/* ═══ Shared Components ═══ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label--light {
  background: rgba(239,21,107,0.15);
  color: var(--primary-light);
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.text-gradient-accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══ Buttons ═══ */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px var(--primary-glow);
  text-decoration: none;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--primary-glow);
  color: #fff;
}
.btn-hero-primary svg, .btn-hero-primary i { transition: transform 0.3s; }
.btn-hero-primary:hover svg, .btn-hero-primary:hover i { transform: translateX(4px); }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-elegant {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-outline-elegant:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

/* ═══ 1. HEADER ═══ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}
.site-header.header-solid {
  background: rgba(15,20,28,0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 40px rgba(0,0,0,0.2);
  padding: 10px 0;
}
.site-header.menu-open {
  background: rgba(15,20,28,0.97) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.site-header .navbar-collapse { padding: 16px 0 8px; }
@media (min-width: 992px) { .site-header .navbar-collapse { padding: 0; } }

/* ═══ Mobile Menu Styles ═══ */
@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    padding: 20px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 12px;
  }
  .site-header .navbar-nav {
    gap: 2px !important;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 16px;
  }
  .site-header .nav-link {
    font-size: 1rem !important;
    padding: 14px 18px !important;
    border-radius: 12px;
    width: 100%;
    display: flex !important;
    background: rgba(255,255,255,0.03);
    margin-bottom: 2px;
  }
  .site-header .nav-link:hover,
  .site-header .nav-link:active {
    background: rgba(255,255,255,0.08) !important;
  }
  .site-header .nav-link::after {
    display: none;
  }
  .nav-icon {
    opacity: 0.5;
    margin-right: 10px;
  }
  #header-auth {
    flex-direction: column !important;
    gap: 10px !important;
    padding-top: 4px;
  }
  .header-cta-login {
    width: 100%;
    justify-content: center !important;
    padding: 14px 24px !important;
    font-size: 0.95rem;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.04) !important;
  }
  .header-cta-start {
    width: 100%;
    justify-content: center !important;
    padding: 14px 24px !important;
    font-size: 0.95rem;
    border-radius: 14px !important;
  }
  .header-divider { display: none !important; }

  /* Hamburger button */
  .navbar-toggler {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1) !important;
    transition: all 0.2s;
    padding: 0;
  }
  .navbar-toggler:hover,
  .navbar-toggler:focus {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2) !important;
    box-shadow: none;
  }
  .navbar-toggler[aria-expanded="true"] {
    background: rgba(239,21,107,0.12);
    border-color: rgba(239,21,107,0.25) !important;
  }
  .navbar-toggler[aria-expanded="true"] .hamburger-icon {
    color: var(--primary-light);
  }
}

/* Custom SVG icons in nav */
.nav-icon { margin-right: 6px; vertical-align: -2px; opacity: 0.7; transition: opacity 0.2s; }
.nav-link:hover .nav-icon { opacity: 1; }
.hamburger-icon { color: #fff; }

.site-header .nav-link {
  color: rgba(255,255,255,0.65) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  padding: 9px 16px !important;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  position: relative;
}
.site-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.05);
}
.site-header .nav-link:hover::after {
  transform: scaleX(1);
}

.header-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
  margin: 0 20px;
}

.header-cta-login {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 100px !important;
  padding: 9px 24px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
}
.header-cta-login:hover {
  border-color: rgba(255,255,255,0.4) !important;
  background: rgba(255,255,255,0.08) !important;
  transform: translateY(-1px);
}
.header-cta-start {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  padding: 9px 24px !important;
  border: none !important;
  box-shadow: 0 4px 16px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
}
.header-cta-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Header user menu (logged-in state) */
.header-user-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #fff !important;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  transition: all 0.3s;
}
.header-user-btn:hover,
.header-user-btn.show {
  background: rgba(255,255,255,0.22) !important;
  border-color: rgba(255,255,255,0.3) !important;
}
.header-user-btn::after { display: none; } /* hide default dropdown caret */
.header-solid .header-user-btn {
  background: rgba(239,21,107,0.1) !important;
  border-color: rgba(239,21,107,0.2) !important;
  color: var(--primary) !important;
}
.header-solid .header-user-btn:hover,
.header-solid .header-user-btn.show {
  background: rgba(239,21,107,0.18) !important;
}
.header-user-dropdown {
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 220px;
  margin-top: 8px !important;
}
.header-user-dropdown .dropdown-header {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 8px 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-user-dropdown .dropdown-item {
  font-size: 0.88rem;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  border-radius: 0;
  transition: background 0.2s;
}
.header-user-dropdown .dropdown-item:hover {
  background: var(--bg-alt);
}
.header-user-dropdown .dropdown-item i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* ═══ 2. HERO ═══ */
.hero-section {
  background: linear-gradient(160deg, #0f141c 0%, var(--secondary-deep) 30%, var(--secondary-dark) 70%, var(--secondary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(239,21,107,0.2), transparent 70%);
  top: -10%; right: -5%;
  animation: orb-float 15s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(20,184,166,0.15), transparent 70%);
  bottom: -5%; left: -5%;
  animation: orb-float 18s ease-in-out infinite 3s reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(139,92,246,0.1), transparent 70%);
  top: 40%; left: 30%;
  animation: orb-float 20s ease-in-out infinite 6s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

/* ═══ Animated Chemical Structure ═══ */
.chem-structure {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.chem-svg {
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: chem-fade-in 2s ease-out 0.5s forwards;
}
@keyframes chem-fade-in {
  to { opacity: 1; }
}
.chem-bond {
  stroke: rgba(239,21,107,0.06);
  stroke-width: 1.2;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: chem-draw 2.5s ease-out forwards;
}
.cb-1 { animation-delay: 0.3s; }
.cb-2 { animation-delay: 0.4s; }
.cb-3 { animation-delay: 0.5s; }
.cb-4 { animation-delay: 0.6s; }
.cb-5 { animation-delay: 0.7s; }
.cb-6 { animation-delay: 0.8s; }
.cb-7 { animation-delay: 0.6s; stroke: rgba(20,184,166,0.06); }
.cb-8 { animation-delay: 0.7s; stroke: rgba(20,184,166,0.06); }
.cb-9 { animation-delay: 0.8s; stroke: rgba(20,184,166,0.06); }
.cb-10 { animation-delay: 0.9s; stroke: rgba(139,92,246,0.06); }
.cb-11 { animation-delay: 1.0s; stroke: rgba(139,92,246,0.06); }
.cb-12 { animation-delay: 0.5s; }
.cb-13 { animation-delay: 0.9s; }
.cb-14 { animation-delay: 1.0s; }
.cb-15 { animation-delay: 1.1s; stroke: rgba(20,184,166,0.06); }
.cb-16 { animation-delay: 0.7s; }
.cb-17 { animation-delay: 1.0s; }
.cb-18 { animation-delay: 0.8s; stroke: rgba(139,92,246,0.06); }
.cb-19 { animation-delay: 1.1s; stroke: rgba(139,92,246,0.06); }
.cb-20 { animation-delay: 1.2s; stroke: rgba(139,92,246,0.06); }
@keyframes chem-draw {
  to { stroke-dashoffset: 0; }
}
.chem-atom {
  fill: rgba(239,21,107,0.12);
  opacity: 0;
  animation: chem-atom-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.ca-1 { animation-delay: 0.6s; }
.ca-2 { animation-delay: 0.7s; }
.ca-3 { animation-delay: 0.8s; }
.ca-4 { animation-delay: 0.9s; fill: rgba(20,184,166,0.15); }
.ca-5 { animation-delay: 1.0s; }
.ca-6 { animation-delay: 1.1s; }
.ca-7 { animation-delay: 1.0s; fill: rgba(20,184,166,0.15); }
.ca-8 { animation-delay: 1.1s; fill: rgba(20,184,166,0.12); }
.ca-9 { animation-delay: 1.2s; fill: rgba(20,184,166,0.15); }
.ca-10 { animation-delay: 1.3s; fill: rgba(139,92,246,0.15); }
.ca-11 { animation-delay: 1.4s; fill: rgba(139,92,246,0.18); }
.ca-12 { animation-delay: 0.8s; }
.ca-13 { animation-delay: 1.2s; }
.ca-14 { animation-delay: 1.3s; }
.ca-15 { animation-delay: 1.1s; }
.ca-16 { animation-delay: 1.1s; fill: rgba(139,92,246,0.12); }
.ca-17 { animation-delay: 1.4s; fill: rgba(139,92,246,0.12); }
.ca-18 { animation-delay: 1.5s; fill: rgba(139,92,246,0.12); }
@keyframes chem-atom-pop {
  0% { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1); }
}
.chem-pulse {
  fill: rgba(239,21,107,0.35);
  opacity: 0;
  animation: chem-pulse-glow 3s ease-in-out infinite;
}
.cp-1 { animation-delay: 1.5s; }
.cp-2 { animation-delay: 2s; fill: rgba(20,184,166,0.35); }
.cp-3 { animation-delay: 2.5s; fill: rgba(139,92,246,0.35); }
@keyframes chem-pulse-glow {
  0%, 100% { opacity: 0; }
  30%, 70% { opacity: 0.8; }
}
@media (max-width: 767.98px) {
  .chem-structure { opacity: 0.5; }
}

/* ═══ Hero Capsule Shape ═══ */
.capsule-wrap {
  position: relative;
  display: inline-block;
}
.capsule-wrap::before {
  content: '';
  position: absolute;
  inset: -8px -28px;
  background: linear-gradient(135deg, rgba(239,21,107,0.12), rgba(255,77,141,0.08), rgba(20,184,166,0.06));
  border-radius: 100px;
  z-index: -1;
  border: 1.5px solid rgba(239,21,107,0.15);
  opacity: 0;
  transform: scaleX(0.7);
  animation: capsule-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.capsule-wrap::after {
  content: '';
  position: absolute;
  inset: -8px -28px;
  background: linear-gradient(135deg, rgba(239,21,107,0.06), transparent);
  border-radius: 100px;
  z-index: -1;
  filter: blur(20px);
  opacity: 0;
  animation: capsule-glow 0.8s ease-out 0.8s forwards, capsule-breathe 4s ease-in-out 1.6s infinite;
}
@keyframes capsule-reveal {
  to { opacity: 1; transform: scaleX(1); }
}
@keyframes capsule-glow {
  to { opacity: 1; }
}
@keyframes capsule-breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.04); opacity: 1; }
}

/* ═══ Floating Pharma Icons Background ═══ */
.pharma-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.pharma-icon {
  position: absolute;
  color: rgba(255,255,255,0.07);
  will-change: transform, opacity;
}

/* — Capsule 1: top-left, large, slow drift — */
.pi-1 {
  width: 90px;
  top: 12%; left: 4%;
  animation: pharma-drift-1 22s ease-in-out infinite, pharma-spin-slow 30s linear infinite;
}
/* — Pill (circle): top-right area — */
.pi-2 {
  width: 40px;
  top: 8%; right: 12%;
  color: rgba(239,21,107,0.10);
  animation: pharma-drift-2 18s ease-in-out infinite 2s, pharma-spin-slow 25s linear infinite reverse;
}
/* — Benzene molecule: mid-left — */
.pi-3 {
  width: 55px;
  top: 42%; left: 2%;
  color: rgba(20,184,166,0.09);
  animation: pharma-drift-3 20s ease-in-out infinite 1s, pharma-spin-slow 35s linear infinite;
}
/* — DNA Helix: right side, tall — */
.pi-4 {
  width: 32px;
  top: 15%; right: 5%;
  color: rgba(139,92,246,0.09);
  animation: pharma-drift-4 24s ease-in-out infinite 3s;
}
/* — Mortar & Pestle: lower-left — */
.pi-5 {
  width: 52px;
  bottom: 22%; left: 8%;
  color: rgba(239,21,107,0.08);
  animation: pharma-drift-5 19s ease-in-out infinite 4s, pharma-spin-gentle 28s linear infinite reverse;
}
/* — Rx Symbol: center-right — */
.pi-6 {
  width: 48px;
  top: 30%; right: 8%;
  color: rgba(255,255,255,0.06);
  animation: pharma-drift-6 21s ease-in-out infinite 2.5s;
}
/* — Beaker: bottom-right — */
.pi-7 {
  width: 42px;
  bottom: 14%; right: 10%;
  color: rgba(20,184,166,0.08);
  animation: pharma-drift-7 23s ease-in-out infinite 1.5s, pharma-spin-gentle 32s linear infinite;
}
/* — Syringe: far left, vertical — */
.pi-8 {
  width: 18px;
  top: 60%; left: 6%;
  color: rgba(255,255,255,0.06);
  animation: pharma-drift-8 20s ease-in-out infinite 5s;
}
/* — Stethoscope: upper-center-left — */
.pi-9 {
  width: 46px;
  top: 18%; left: 20%;
  color: rgba(239,21,107,0.07);
  animation: pharma-drift-9 26s ease-in-out infinite 3.5s, pharma-spin-gentle 40s linear infinite reverse;
}
/* — Capsule 2: lower-right — */
.pi-10 {
  width: 68px;
  bottom: 28%; right: 3%;
  color: rgba(255,255,255,0.06);
  animation: pharma-drift-10 22s ease-in-out infinite 6s, pharma-spin-slow 28s linear infinite;
}
/* — Atom orbits: center-left-lower — */
.pi-11 {
  width: 56px;
  bottom: 35%; left: 15%;
  color: rgba(139,92,246,0.08);
  animation: pharma-drift-11 25s ease-in-out infinite 2s, pharma-spin-slow 20s linear infinite;
}
/* — Oblong pill: top-center — */
.pi-12 {
  width: 54px;
  top: 6%; left: 42%;
  color: rgba(20,184,166,0.07);
  animation: pharma-drift-12 19s ease-in-out infinite 4.5s, pharma-spin-gentle 34s linear infinite reverse;
}
/* — Heart pulse: right-center — */
.pi-13 {
  width: 70px;
  top: 55%; right: 6%;
  color: rgba(239,21,107,0.07);
  animation: pharma-drift-13 21s ease-in-out infinite 1s;
}
/* — Test tube: mid-far-right — */
.pi-14 {
  width: 18px;
  top: 70%; right: 18%;
  color: rgba(255,255,255,0.06);
  animation: pharma-drift-14 24s ease-in-out infinite 3s, pharma-spin-gentle 26s linear infinite;
}

/* Drift keyframes — each unique path for organic movement */
@keyframes pharma-drift-1 {
  0%,100% { transform: translate(0,0); opacity: 0.7; }
  25% { transform: translate(18px,-22px); opacity: 1; }
  50% { transform: translate(-10px,-40px); opacity: 0.8; }
  75% { transform: translate(25px,-15px); opacity: 0.6; }
}
@keyframes pharma-drift-2 {
  0%,100% { transform: translate(0,0); opacity: 0.6; }
  33% { transform: translate(-20px,15px); opacity: 1; }
  66% { transform: translate(12px,30px); opacity: 0.7; }
}
@keyframes pharma-drift-3 {
  0%,100% { transform: translate(0,0); opacity: 0.7; }
  40% { transform: translate(30px,-18px); opacity: 1; }
  70% { transform: translate(10px,20px); opacity: 0.5; }
}
@keyframes pharma-drift-4 {
  0%,100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-35px); opacity: 1; }
}
@keyframes pharma-drift-5 {
  0%,100% { transform: translate(0,0); opacity: 0.6; }
  30% { transform: translate(20px,-25px); opacity: 1; }
  60% { transform: translate(-15px,-10px); opacity: 0.8; }
}
@keyframes pharma-drift-6 {
  0%,100% { transform: translate(0,0); opacity: 0.5; }
  50% { transform: translate(-25px,20px); opacity: 1; }
}
@keyframes pharma-drift-7 {
  0%,100% { transform: translate(0,0); opacity: 0.6; }
  35% { transform: translate(-15px,-20px); opacity: 1; }
  70% { transform: translate(10px,-35px); opacity: 0.7; }
}
@keyframes pharma-drift-8 {
  0%,100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-28px); opacity: 1; }
}
@keyframes pharma-drift-9 {
  0%,100% { transform: translate(0,0); opacity: 0.5; }
  40% { transform: translate(15px,25px); opacity: 0.9; }
  80% { transform: translate(-10px,10px); opacity: 0.6; }
}
@keyframes pharma-drift-10 {
  0%,100% { transform: translate(0,0); opacity: 0.5; }
  50% { transform: translate(-20px,-18px); opacity: 0.9; }
}
@keyframes pharma-drift-11 {
  0%,100% { transform: translate(0,0); opacity: 0.6; }
  33% { transform: translate(22px,-15px); opacity: 1; }
  66% { transform: translate(-12px,18px); opacity: 0.7; }
}
@keyframes pharma-drift-12 {
  0%,100% { transform: translate(0,0); opacity: 0.6; }
  50% { transform: translate(20px,15px); opacity: 1; }
}
@keyframes pharma-drift-13 {
  0%,100% { transform: translate(0,0); opacity: 0.5; }
  40% { transform: translate(-18px,-12px); opacity: 0.9; }
  80% { transform: translate(8px,10px); opacity: 0.6; }
}
@keyframes pharma-drift-14 {
  0%,100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-22px); opacity: 1; }
}

/* Rotation — very slow for subtlety */
@keyframes pharma-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pharma-spin-gentle {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Reduce pharma icons on small screens */
@media (max-width: 767.98px) {
  .pharma-bg { display: none; }
}

/* Grid pattern overlay */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,21,107,0.12);
  color: var(--primary-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid rgba(239,21,107,0.2);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.hero-badge i { font-size: 0.7rem; }

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), #FF6B9D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

/* Stats bar — glassmorphic */
.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 72px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}
.hero-stat-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(239,21,107,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-light);
  flex-shrink: 0;
}
.hero-stat-content { text-align: left; }
.hero-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
  margin: 0 12px;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .hero-section { padding: 120px 0 60px; min-height: auto; }
  .hero-stats-bar {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    max-width: 100%;
  }
  .hero-stat-divider { width: 60%; height: 1px; margin: 0; }
  .hero-stat-item { width: 100%; justify-content: flex-start; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta-group .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ═══ 3. PURPOSE ═══ */
.purpose-section {
  background: linear-gradient(160deg, #0f141c, var(--secondary-deep), var(--secondary-dark));
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.glass-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}
.glass-card__glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.glass-card:hover .glass-card__glow { opacity: 1; }
.glass-card--pink .glass-card__glow {
  background: var(--primary);
  top: -80px; right: -80px;
}
.glass-card--teal .glass-card__glow {
  background: var(--teal);
  bottom: -80px; left: -80px;
}
.glass-card__icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.glass-card__icon.pink {
  background: rgba(239,21,107,0.15);
  color: var(--primary-light);
}
.glass-card__icon.teal {
  background: rgba(20,184,166,0.15);
  color: var(--teal-light);
}
.glass-card__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.4);
}
.glass-card--pink .glass-card__label { color: var(--primary-light); }
.glass-card--teal .glass-card__label { color: var(--teal-light); }
.glass-card__title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.glass-card__text {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.pillar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 56px;
}
.pillar-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.pillar-chip:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.pillar-chip i { color: var(--teal-light); font-size: 0.95rem; }

/* ═══ 4. VALUES ═══ */
.values-section {
  background: var(--bg);
  padding: 120px 0;
  position: relative;
}

.value-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.value-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.value-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.value-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}
.value-card:hover .value-card__accent { opacity: 1; }
[data-accent="blue"] .value-card__icon { background: rgba(59,130,246,0.1); color: var(--feature-blue); }
[data-accent="blue"] .value-card__accent { background: linear-gradient(to right, var(--feature-blue), transparent); }
[data-accent="slate"] .value-card__icon { background: rgba(55,71,94,0.1); color: var(--secondary); }
[data-accent="slate"] .value-card__accent { background: linear-gradient(to right, var(--secondary), transparent); }
[data-accent="teal"] .value-card__icon { background: rgba(20,184,166,0.1); color: var(--teal); }
[data-accent="teal"] .value-card__accent { background: linear-gradient(to right, var(--teal), transparent); }
[data-accent="purple"] .value-card__icon { background: rgba(139,92,246,0.1); color: var(--feature-purple); }
[data-accent="purple"] .value-card__accent { background: linear-gradient(to right, var(--feature-purple), transparent); }

/* ═══ 5. ACHIEVEMENTS ═══ */
.achievements-section {
  background: linear-gradient(160deg, #0f141c, var(--secondary-deep), var(--secondary-dark));
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .achievement-grid { grid-template-columns: repeat(2, 1fr); }
}

.achievement-item {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.achievement-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.achievement-item__ring {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(239,21,107,0.12), rgba(20,184,166,0.12));
  border: 2px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal-light);
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.achievement-item:hover .achievement-item__ring {
  border-color: var(--primary);
  box-shadow: 0 0 30px var(--primary-glow);
}
.achievement-item__number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.achievement-item__plus {
  font-size: 1.6rem;
  color: var(--primary-light);
  font-weight: 700;
}
.achievement-item__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.achievement-item__sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.achievement-cta {
  margin-top: 16px;
}
.achievement-cta__inner {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.achievement-cta__icon {
  font-size: 2.5rem;
  color: var(--primary-light);
  display: block;
  margin-bottom: 16px;
}
.achievement-cta h4 { color: #fff; margin-bottom: 8px; font-weight: 700; }
.achievement-cta p { color: rgba(255,255,255,0.5); margin-bottom: 28px; max-width: 400px; margin-left: auto; margin-right: auto; }

/* ═══ 6. PARTNERS ═══ */
.partners-section {
  background: linear-gradient(180deg, #FFFBF8, #FFF5EE, #FFF8F2);
  padding: 120px 0;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  margin: 48px 0;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #FFFBF8, transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #FFF8F2, transparent);
}
.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-logo-item {
  flex-shrink: 0;
  width: 150px; height: 72px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  transition: all 0.3s;
  gap: 4px;
}
.partner-logo-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px var(--primary-glow);
  transform: translateY(-2px);
}
.partner-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.partner-fallback-icon { font-size: 1.4rem; }

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.benefit-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.benefit-card h6 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0; line-height: 1.6; }

.partner-cta {
  margin-top: 56px;
}
.partner-cta__inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.partner-cta__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--teal), var(--feature-purple));
}
.partner-cta__icon {
  font-size: 3rem;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}
.partner-cta h4 { margin-bottom: 12px; font-weight: 800; }
.partner-cta p { color: var(--text-secondary); max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }

/* ═══ 7. AUDIENCE ═══ */
.audience-section {
  background: var(--bg);
  padding: 120px 0;
}

.audience-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.audience-card__number {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.04;
  line-height: 1;
}
.audience-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.audience-card h5 { font-size: 1.2rem; margin-bottom: 12px; }
.audience-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.audience-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}
.audience-card__link i { transition: transform 0.3s; }
.audience-card__link:hover i { transform: translateX(6px); }

.audience-card--blue .audience-card__icon { background: rgba(59,130,246,0.1); color: var(--feature-blue); }
.audience-card--blue .audience-card__link { color: var(--feature-blue); }
.audience-card--blue:hover { border-color: rgba(59,130,246,0.3); }
.audience-card--green .audience-card__icon { background: rgba(16,185,129,0.1); color: var(--feature-green); }
.audience-card--green .audience-card__link { color: var(--feature-green); }
.audience-card--green:hover { border-color: rgba(16,185,129,0.3); }
.audience-card--purple .audience-card__icon { background: rgba(139,92,246,0.1); color: var(--feature-purple); }
.audience-card--purple .audience-card__link { color: var(--feature-purple); }
.audience-card--purple:hover { border-color: rgba(139,92,246,0.3); }

/* ═══ 8. TABBED CONTENT ═══ */
.tabbed-section {
  background: var(--surface);
  padding: 120px 0;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: 'Outfit', sans-serif;
  padding: 12px 28px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px var(--primary-glow);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Course / Session / Event cards (generated by JS) */
.course-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.course-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 3rem;
  position: relative;
}
.course-card-thumb .badge-level {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.course-card-body { padding: 20px; }
.course-card-body h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.course-card-body .instructor {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.course-card-body .meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.course-card-body .meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.course-card-footer {
  padding: 0 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.course-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.btn-enrol {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-enrol:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--primary-glow);
  color: #fff;
}

.session-card, .event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}
.session-card:hover, .event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.session-card-thumb, .event-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 3rem;
  position: relative;
}
.badge-status, .badge-type {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 700;
  color: #fff;
}
.badge-live { background: var(--primary); animation: pulse-badge 1.5s ease-in-out infinite; }
@keyframes pulse-badge { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
.badge-upcoming { background: var(--secondary-light); }
.badge-date {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 700;
}
.session-card-body, .event-card-body { padding: 20px; }
.session-card-body h6, .event-card-body h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.session-card-body .meta, .event-card-body .meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.session-card-body .meta span, .event-card-body .meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.badge-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 4px;
}
.badge-online::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.tab-loading, .marquee-loading {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-light);
  font-size: 0.92rem;
}
.tab-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-secondary);
}
.tab-empty i { font-size: 3rem; color: var(--text-light); margin-bottom: 16px; display: block; }

.spin { display: inline-block; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══ 9. FEATURES ═══ */
.features-section {
  background: linear-gradient(180deg, var(--bg), var(--bg-alt));
  padding: 120px 0;
}

.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card__num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  opacity: 0.04;
  line-height: 1;
}
.feature-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.feature-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; margin-bottom: 0; }

/* Icon color helpers */
.bg-blue-soft { background: rgba(59,130,246,0.1); color: var(--feature-blue); }
.bg-secondary-soft { background: rgba(55,71,94,0.1); color: var(--secondary); }
.bg-teal-soft { background: rgba(20,184,166,0.1); color: var(--teal); }
.bg-purple-soft { background: rgba(139,92,246,0.1); color: var(--feature-purple); }
.bg-green-soft { background: rgba(16,185,129,0.1); color: var(--feature-green); }
.bg-pink-soft { background: rgba(239,21,107,0.1); color: var(--primary); }
.bg-gold-soft { background: rgba(245,158,11,0.1); color: var(--warning); }

/* ═══ 10. FOOTER ═══ */
.site-footer {
  background: linear-gradient(160deg, #0a0e14, var(--secondary-deep), var(--secondary-dark));
  padding: 96px 0 0;
  color: rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,21,107,0.06), transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}

.footer-logo-img {
  height: 38px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--primary-light); }

.footer-heading {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-links a i { font-size: 0.65rem; opacity: 0.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 56px;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
}
.social-icons a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

/* ═══ Responsive ═══ */
@media (max-width: 575.98px) {
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 0.92rem; }
  .achievement-item__number { font-size: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .glass-card { padding: 28px; }
  .achievement-cta__inner, .partner-cta__inner { padding: 32px 20px; }
}
