/* ================================================================
   NEXTGEN IMMUNO THERAPEUTICS
   EXACT ORIGINAL THEME + PROFESSIONAL ANIMATIONS
   Font: Inter (original) | Colors: #0A2540, #00C2CB, #6C63FF (original)
   Background: #F7FAFC light (original)
================================================================ */

/* ── ORIGINAL TOKENS (unchanged) ── */
:root {
  --primary:  #0A2540;
  --accent:   #00C2CB;
  --violet:   #6C63FF;
  --gradient: linear-gradient(135deg, #0A2540 0%, #00C2CB 50%, #6C63FF 100%);
  --text-dark: #0A2540;
  --text-muted: #4a5568;
  --text-light: #718096;
  --bg-light:  #F7FAFC;
  --bg-white:  #ffffff;
  --radius-card: 20px;
  --transition: 0.3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ── GLOBAL (original) ── */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  padding-top: 90px;
}

section {
  padding: 120px 0;
  scroll-margin-top: 90px;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

img { display: block; max-width: 100%; }

/* ── FADE-IN (original + enhanced) ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside sections */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }


/* ════════════════════════════════════════════
   HEADER (original styles + scroll shrink animation)
════════════════════════════════════════════ */
.elite-header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.95);
  z-index: 999;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: padding 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  padding: 0;
}

.elite-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.elite-header.scrolled .nav-container { height: 60px; }

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: height 0.4s ease;
}

/* LOGO */
.logo img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.menu a {
  margin-left: 36px;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  position: relative;
  transition: color 0.3s;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent);
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}
.menu a:hover::after,
.menu a.active::after { width: 100%; }
.menu a:hover,
.menu a.active { color: var(--accent); }

/* Contact CTA in nav */
.menu-cta {
  background: var(--gradient);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  margin-left: 36px;
  font-weight: 700 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.menu-cta::after { display: none !important; }
.menu-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(0,194,203,0.3) !important;
  color: white !important;
}

/* HAMBURGER — hidden on desktop, shown on mobile via media query */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1300;
  position: relative;
}
.hamburger-btn span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}
.hamburger-btn.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay — always in DOM, hidden via pointer-events + opacity */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,37,64,0.55);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 85vw);
  height: 100%;
  height: 100dvh;
  background: #ffffff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  box-shadow: -20px 0 60px rgba(0,0,0,0.18);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-shrink: 0;
}
.mobile-close-btn {
  background: rgba(10,37,64,0.06);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #0A2540;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
}
.mobile-close-btn:hover {
  background: rgba(0,194,203,0.12);
  color: #00C2CB;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A2540 !important;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease, background 0.25s ease;
  border-radius: 0;
}
.mobile-nav-link:hover {
  color: #00C2CB !important;
  padding-left: 10px;
  background: rgba(0,194,203,0.05);
  border-radius: 8px;
}
.mobile-nav-link:last-of-type {
  border-bottom: none;
}

.mobile-nav-cta {
  margin-top: 20px;
  background: linear-gradient(135deg, #0A2540 0%, #00C2CB 50%, #6C63FF 100%);
  color: white !important;
  border-radius: 50px;
  text-align: center;
  padding: 15px 20px;
  border-bottom: none !important;
  justify-content: center;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.mobile-nav-cta:hover {
  opacity: 0.92;
  padding-left: 20px;
  color: white !important;
}

.mobile-drawer-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 0.8rem;
  color: #718096;
  line-height: 2;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════
   HERO (original gradient + particle canvas + orbs)
════════════════════════════════════════════ */
.hero-section {
  background: var(--gradient);
  color: white;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Original glow */
.hero-section::before {
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent);
  top: -300px; left: -300px;
  filter: blur(120px);
  pointer-events: none;
}

/* Original hero bg image */
.hero-bg {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover;
  top: 0; left: 0;
  opacity: 0.25;
  mix-blend-mode: overlay;
  z-index: 1;
  animation: heroImgPulse 8s ease-in-out infinite alternate;
}
@keyframes heroImgPulse {
  from { transform: scale(1); opacity: 0.2; }
  to   { transform: scale(1.04); opacity: 0.3; }
}

/* Particle canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
  animation: orbFloat 10s ease-in-out infinite alternate;
}
.hero-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,194,203,0.25), transparent 70%);
  top: -200px; right: -100px;
  animation-duration: 12s;
}
.hero-orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(108,99,255,0.2), transparent 70%);
  bottom: -100px; left: -80px;
  animation-duration: 9s;
  animation-delay: -3s;
}
.hero-orb--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
  top: 40%; right: 20%;
  animation-duration: 7s;
  animation-delay: -1.5s;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.1); }
}

.hero-inner { position: relative; z-index: 10; }

/* Hero live badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7CFFCB;
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,255,203,0.6); }
  50%       { box-shadow: 0 0 0 7px rgba(124,255,203,0); }
}

.animate-badge {
  animation: badgeSlideIn 0.8s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes badgeSlideIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hero headline */
.hero-section h1,
.hero-animated-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  animation: heroTitleIn 1s 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Typewriter */
.hero-typed-wrapper { display: block; margin-top: 8px; }
.hero-typed {
  color: #7CFFCB;
  border-right: 3px solid #7CFFCB;
  animation: blink 0.75s step-end infinite;
  padding-right: 3px;
}
@keyframes blink { 50% { border-color: transparent; } }

.hero-section p,
.hero-sub-animated {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 15px;
  position: relative;
  z-index: 2;
  animation: heroTitleIn 1s 0.5s both;
}

.hero-btns {
  position: relative;
  z-index: 2;
  animation: heroTitleIn 1s 0.7s both;
}

/* BUTTONS (original) */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.btn-premium:hover {
  transform: translateY(-4px);
  background: var(--accent);
  color: white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.btn-premium .btn-arrow {
  transition: transform 0.3s ease;
}
.btn-premium:hover .btn-arrow { transform: translateX(4px); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  margin-left: 10px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-outline-light:hover {
  background: white;
  color: var(--primary);
}

/* Magnetic button */
.btn-animated { transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease; }

/* Scroll mouse indicator */
.hero-scroll-cue {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  opacity: 0.7;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  animation: heroTitleIn 1s 1.2s both;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: white;
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}


/* ════════════════════════════════════════════
   GRIDS (original)
════════════════════════════════════════════ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}


/* ════════════════════════════════════════════
   ABOUT (original colors + enhanced image block)
════════════════════════════════════════════ */
.about-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  padding: 140px 0;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(0,194,203,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  top: 0; left: 0;
  pointer-events: none;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #0A2540, #00C2CB, #6C63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-title span { display: block; }

.about-desc {
  font-size: 1.05rem;
  color: #4a5568;
  margin-top: 16px;
  line-height: 1.75;
}
.about-desc strong { color: var(--primary); font-weight: 700; }

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
  max-width: 550px;
}

/* About list (original + hover) */
.about-list { margin-top: 20px; }
.about-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 14px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  border: 1px solid rgba(0,194,203,0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0,194,203,0.18);
}
.about-list li::before {
  content: "";
  width: 32px; height: 32px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.about-list li:nth-child(1)::before { content: "🧬"; background: linear-gradient(135deg, #00C2CB, #00E0FF); }
.about-list li:nth-child(2)::before { content: "🧠"; background: linear-gradient(135deg, #6C63FF, #9D7BFF); }
.about-list li:nth-child(3)::before { content: "❤️"; background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.about-list li:nth-child(4)::before { content: "🔬"; background: linear-gradient(135deg, #00C853, #69F0AE); }

/* About image enhanced */
.about-image { height: 100%; display: flex; align-items: stretch; }
.about-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
}
.about-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.12), 0 10px 40px rgba(0,194,203,0.15);
  transition: transform 0.5s ease;
}
.about-img-wrapper:hover img { transform: scale(1.03); }

.about-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,194,203,0.15), rgba(108,99,255,0.1), transparent 60%);
  border-radius: 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.about-img-wrapper:hover .about-img-glow { opacity: 1; }

.about-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0,194,203,0.2);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: badgeFloat 4s ease-in-out infinite alternate;
}
@keyframes badgeFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}
.about-img-badge i { font-size: 1.4rem; color: var(--accent); }
.about-img-badge strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.about-img-badge span  { display: block; font-size: 0.75rem; color: var(--text-muted); }


/* ════════════════════════════════════════════
   PLATFORM (original colors + spotlight effect)
════════════════════════════════════════════ */
.platform-section {
  position: relative;
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f8 100%);
}
.platform-section::before {
  content: "";
  position: absolute;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(0,194,203,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  top: 0; left: 0;
  pointer-events: none;
}

.platform-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #0A2540, #00C2CB, #6C63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowFade 3s ease-in-out infinite alternate;
}
@keyframes glowFade {
  from { filter: drop-shadow(0 5px 15px rgba(0,194,203,0.2)); }
  to   { filter: drop-shadow(0 10px 35px rgba(108,99,255,0.4)); }
}

.platform-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* Futuristic cards (original + spotlight) */
.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-card);
  padding: 35px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.glass-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.futuristic-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: none;
  --mx: 50%; --my: 50%;
}

/* Original gradient border */
.futuristic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  padding: 1px;
  background: linear-gradient(135deg, #00C2CB, #6C63FF);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Spotlight mouse-follow effect */
.futuristic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  background: radial-gradient(circle 180px at var(--mx) var(--my), rgba(255,255,255,0.07), transparent 80%);
  pointer-events: none;
  transition: opacity 0.3s;
}

.futuristic-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,194,203,0.35);
}

/* Card background images (original) */
.diagnostics-card {
  background: url('assets/images/ai-diagnostics.png') center/cover no-repeat;
}
.drug-card {
  background: url('assets/images/ai-drug.png') center/cover no-repeat;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.93), rgba(0,194,203,0.76));
  border-radius: var(--radius-card);
}

.card-content { position: relative; z-index: 2; }

/* Card icon circle */
.card-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.futuristic-card:hover .card-icon-wrap {
  transform: rotate(10deg) scale(1.1);
  background: rgba(255,255,255,0.2);
}
.card-icon-fa { font-size: 1.3rem; color: #7CFFCB; }

.card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.card-sub {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.card-section {
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00E0FF;
}
.card-section.impact { color: #7CFFCB; }

/* Feature list (original + animated) */
.feature-list { padding: 0; margin-top: 10px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 0.92rem;
  transition: transform 0.3s ease;
}
.futuristic-card:hover .feature-list li { transform: translateX(4px); }

.feature-list i {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.futuristic-card:hover .feature-list i { transform: scale(1.15); }

/* Icon colors (original) */
.diagnostics-card .feature-list li:nth-child(1) i { background: linear-gradient(135deg,#00C2CB,#00E0FF); }
.diagnostics-card .feature-list li:nth-child(2) i { background: linear-gradient(135deg,#6C63FF,#9D7BFF); }
.diagnostics-card .feature-list li:nth-child(3) i { background: linear-gradient(135deg,#00C853,#69F0AE); }
.diagnostics-card .feature-list li:nth-child(4) i { background: linear-gradient(135deg,#FF6B6B,#FF8E53); }
.diagnostics-card .feature-list li:nth-child(5) i { background: linear-gradient(135deg,#FFD166,#FCA311); }
.drug-card .feature-list li:nth-child(1) i { background: linear-gradient(135deg,#6C63FF,#00C2CB); }
.drug-card .feature-list li:nth-child(2) i { background: linear-gradient(135deg,#FF4D6D,#FF758F); }
.drug-card .feature-list li:nth-child(3) i { background: linear-gradient(135deg,#00C853,#B2FF59); }
.drug-card .feature-list li:nth-child(4) i { background: linear-gradient(135deg,#00C2CB,#4FACFE); }
.drug-card .feature-list li:nth-child(5) i { background: linear-gradient(135deg,#FFA726,#FF7043); }

/* Card impact row */
.card-impact-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.card-impact-stat {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  transition: background 0.3s ease;
}
.futuristic-card:hover .card-impact-stat { background: rgba(255,255,255,0.14); }
.card-impact-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #7CFFCB;
  line-height: 1;
  margin-bottom: 4px;
}
.card-impact-stat span:not(.card-impact-num) {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ════════════════════════════════════════════
   IMPACT (original background image + overlay + scanline)
════════════════════════════════════════════ */
.impact-section {
  position: relative;
  background: url('assets/images/dashboard-ai.jpg') center/cover no-repeat;
  color: white;
  overflow: hidden;
  padding: 120px 0;
}
/* Original overlay */
.impact-overlay {
  position: absolute;
  width: 100%; height: 100%;
  background: rgba(10,37,64,0.78);
  top: 0; left: 0;
  z-index: 1;
}

/* Animated scan line */
.impact-scanline {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,194,203,0.5), transparent);
  z-index: 2;
  animation: scanlineMove 5s linear infinite;
}
@keyframes scanlineMove {
  0%   { top: 0%; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.impact-section .container { position: relative; z-index: 3; }

.impact-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.impact-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.impact-block {
  text-align: center;
  margin-top: 40px;
}
.impact-block + .impact-block {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 60px;
  margin-top: 60px;
}

.impact-block-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00C2CB;
  margin-bottom: 36px;
}

.impact-metrics {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.impact-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 36px 40px;
  min-width: 200px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.impact-item:hover {
  background: rgba(0,194,203,0.1);
  border-color: rgba(0,194,203,0.3);
  transform: translateY(-6px);
}

.impact-item h2 {
  font-size: 3.2rem;
  color: #00C2CB;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1;
}

.impact-item p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.impact-item p i {
  margin-right: 6px;
  color: #6C63FF;
}


/* ════════════════════════════════════════════
   TEAM (original + tilt)
════════════════════════════════════════════ */
.team-section {
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f8 100%);
}

.team-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #0A2540, #00C2CB, #6C63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team-sub {
  max-width: 700px;
  margin: 15px auto 50px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,194,203,0.06);
  will-change: transform;
}
.team-card:hover {
  box-shadow: 0 30px 70px rgba(0,194,203,0.2);
}

/* Team image with glow ring */
.team-img {
  width: 100px; height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: visible;
  position: relative;
}
.team-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}
.team-card:hover .team-img img { transform: scale(1.08); }

.team-img-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C2CB, #6C63FF);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-card:hover .team-img-ring { opacity: 1; }

.team-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.role { color: var(--accent); font-weight: 600; font-size: 0.88rem; }
.org  { color: var(--text-light); font-size: 0.82rem; margin-top: 4px; }


/* ════════════════════════════════════════════
   ADVISORY (original)
════════════════════════════════════════════ */
.advisory-section {
  background: linear-gradient(180deg, #eef3f8 0%, #ffffff 100%);
}

.advisory-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #0A2540, #00C2CB, #6C63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.advisory-sub {
  max-width: 700px;
  margin: 15px auto 50px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.advisor-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,194,203,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
  will-change: transform;
}
.advisor-card:hover {
  box-shadow: 0 30px 70px rgba(0,194,203,0.18);
}

.advisor-img {
  width: 86px; height: 86px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #00C2CB, #6C63FF) border-box;
  transition: transform 0.3s ease;
}
.advisor-card:hover .advisor-img { transform: scale(1.06); }
.advisor-img img { width: 100%; height: 100%; object-fit: cover; }

.advisor-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 5px;
}
.advisor-role { color: var(--accent); font-weight: 600; font-size: 0.88rem; text-align: center; }
.advisor-org  { color: var(--text-light); font-size: 0.82rem; text-align: center; margin-bottom: 12px; }
.advisor-exp {
  display: block;
  background: rgba(0,194,203,0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}


/* ════════════════════════════════════════════
   PARTNERS (original)
════════════════════════════════════════════ */
.partners-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}
.partners-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #0A2540, #00C2CB, #6C63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.partners-sub {
  max-width: 700px;
  margin: 12px auto 50px;
  color: var(--text-muted);
}

.partners-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.partner-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,194,203,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.partner-card:hover {
  box-shadow: 0 30px 80px rgba(0,194,203,0.18);
}

.partner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.partner-header img { height: 40px; width: auto; }
.partner-header a {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  transition: gap 0.3s ease;
}
.partner-header a:hover { text-decoration: underline; }

.partner-card h4 { font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.partner-card p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }

.partner-card ul { padding: 0; }
.partner-card ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
  padding: 5px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.partner-card:hover ul li { transform: translateX(3px); }
.partner-card ul li:first-child { border-top: none; }
.partner-card ul li i { color: var(--accent); font-size: 0.8rem; width: 14px; }


/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner { padding: 100px 0 !important; }
.cta-banner h2 { font-size: 2.6rem; font-weight: 800; }
.cta-banner p  { font-size: 1.1rem; opacity: 0.88; }


/* ════════════════════════════════════════════
   CONTACT (original dark gradient)
════════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(135deg, #0A2540, #0f3b5c);
  padding: 120px 0;
  color: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left */
.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00C2CB, #6C63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-title span { display: block; }

.contact-desc {
  margin: 18px 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-size: 1rem;
}

.contact-details div {
  margin-top: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-details i { color: var(--accent); font-size: 1rem; }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-icon-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.social-icon-btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
}

/* Form */
.contact-form-box {
  background: rgba(255,255,255,0.06);
  padding: 40px;
  border-radius: var(--radius-card);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-form-box h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Floating inputs (original + bar animation) */
.input-group {
  position: relative;
  margin-bottom: 22px;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 14px 14px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  color: white;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.input-group textarea { height: 110px; resize: vertical; }
.input-group input:focus,
.input-group textarea:focus {
  border-color: rgba(0,194,203,0.5);
  background: rgba(0,194,203,0.06);
}

.input-group label {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: 0.3s ease;
  pointer-events: none;
}
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -9px; left: 10px;
  font-size: 11px;
  background: #0d2f4d;
  padding: 0 6px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* Animated bottom bar */
.input-bar {
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #00C2CB, #6C63FF);
  border-radius: 0 0 10px 10px;
  transition: width 0.3s ease, left 0.3s ease;
}
.input-group input:focus ~ .input-bar,
.input-group textarea:focus ~ .input-bar {
  width: 100%;
  left: 0;
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #00C2CB, #6C63FF);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,194,203,0.4);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit-icon { transition: transform 0.3s ease; }
.btn-submit:hover .btn-submit-icon { transform: translateX(4px) rotate(15deg); }

#formStatus {
  margin-top: 12px;
  font-size: 0.88rem;
  text-align: center;
  padding: 6px 0;
  min-height: 20px;
}
.status-ok  { color: #7CFFCB; }
.status-err { color: #ff6b6b; }


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--primary);
  color: white;
  padding: 80px 0 0;
}

.footer-inner { max-width: 1300px; margin: auto; padding: 0 20px; }

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { height: 44px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.footer-social-btn:hover { background: var(--accent); color: white; }

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 18px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--accent); }

.footer-divider { height: 1px; background: rgba(255,255,255,0.08); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-credit { font-style: italic; }


/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .advisory-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-wrapper { grid-template-columns: repeat(2, 1fr); }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .menu a { margin-left: 28px; font-size: 14px; }
}


/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
════════════════════════════════════════════ */
@media (max-width: 768px) {

  body { padding-top: 70px; }
  section { padding: 80px 0; }

  /* Header */
  .nav-container { height: 70px; padding: 0 20px; }
  .menu { display: none !important; }
  .hamburger-btn { display: flex !important; }

  /* Hero */
  .hero-section { padding: 100px 0 80px; }
  .hero-section h1, .hero-animated-title { font-size: 2.2rem; }
  .hero-section p { font-size: 1rem; }
  .hero-btns { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .btn-premium, .btn-outline-light { width: 100%; max-width: 300px; justify-content: center; margin: 0; }

  /* About */
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .about-text { padding-right: 0; max-width: 100%; }

  /* Platform */
  .about-title, .platform-title, .team-title, .advisory-title, .partners-title {
    font-size: 2rem;
  }

  /* Impact */
  .impact-metrics { flex-direction: column; align-items: center; }
  .impact-item { width: 100%; max-width: 340px; }
  .impact-title { font-size: 2rem; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-card { padding: 20px 14px; }

  /* Advisory */
  .advisory-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Partners */
  .partners-wrapper { grid-template-columns: 1fr; }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-box { padding: 28px 20px; }
  .contact-title { font-size: 2rem; }

  /* Footer */
  .footer-top-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 20px 0; }

  .card-impact-row { flex-direction: column; gap: 8px; }
}


/* ════════════════════════════════════════════
   RESPONSIVE — SMALL (≤ 480px)
════════════════════════════════════════════ */
@media (max-width: 480px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .advisory-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-item h2 { font-size: 2.5rem; }
}