/* ===== NEURO 24/7 — NAADI ===== */
/* Google Fonts loaded in HTML */

:root {
  --navy: #1B2B5E;
  --navy-dark: #111D42;
  --purple: #7B5EA7;
  --purple-light: #A07DC5;
  --purple-pale: #F3EEFF;
  --teal: #0891B2;
  --teal-light: #E0F7FA;
  --red: #DC2626;
  --red-light: #FEE2E2;
  --green: #059669;
  --green-light: #D1FAE5;
  --orange: #D97706;
  --orange-light: #FEF3C7;
  --pink: #DB2777;
  --pink-light: #FCE7F3;
  --white: #FFFFFF;
  --bg: #F8FAFD;
  --bg-card: #FFFFFF;
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.10), 0 8px 20px rgba(0,0,0,.06);
  --shadow-xl: 0 32px 80px rgba(27,43,94,.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.22;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-secondary); line-height: 1.75; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-pale);
  color: var(--purple);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-header { margin-bottom: 56px; }
.section-header p { font-size: 1.1rem; max-width: 560px; margin-top: 14px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 14px auto 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(27,43,94,.28);
}
.btn-emergency {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  font-size: 1rem;
  padding: 15px 30px;
  animation: pulse-red 2.4s infinite;
}
.btn-emergency:hover {
  background: #B91C1C;
  border-color: #B91C1C;
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(220,38,38,.38);
}
.btn-appointment {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  font-size: 1rem;
  padding: 15px 30px;
}
.btn-appointment:hover {
  background: #0672A8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(8,145,178,.32);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--bg);
  border-color: var(--navy);
}
.btn-purple {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn-purple:hover {
  background: #6A4D94;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(123,94,167,.30);
}
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,.5); }
  50% { box-shadow: 0 0 0 12px rgba(220,38,38,0); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.navbar-logo .logo-badge {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  color: white;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.navbar-logo span.brand-name { line-height: 1.1; }
.navbar-logo .brand-sub { font-size: .65rem; color: var(--text-muted); font-weight: 500; display: block; letter-spacing: .04em; }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active {
  background: var(--purple-pale);
  color: var(--purple);
}
.navbar-actions { display: flex; align-items: center; gap: 10px; }
.navbar-emergency {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  color: var(--red);
  border: 1.5px solid rgba(220,38,38,.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 700;
  transition: all var(--transition);
}
.navbar-emergency:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.navbar-emergency .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.4s infinite;
}
.navbar-emergency:hover .dot { background: white; }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F0F4FF 0%, #F8FAFD 50%, #EEF9FF 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,94,167,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(8,145,178,.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.4s infinite;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.15rem; max-width: 500px; margin-bottom: 36px; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat { }
.hero-stat .num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  display: block;
}
.hero-stat .label { font-size: .8rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding-bottom: 48px;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.hero-card-emergency {
  position: absolute;
  bottom: -100px;
  right: -16px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(220,38,38,.15);
  width: 210px;
}
.hero-card-badge {
  position: absolute;
  top: -18px;
  right: 24px;
  background: var(--green);
  color: white;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.card-icon.emergency { background: var(--red-light); }
.card-icon.appt { background: var(--teal-light); }
.card-icon.purple { background: var(--purple-pale); }
.hero-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.hero-card p { font-size: .9rem; margin-bottom: 18px; }
.hero-card-emergency h4 { font-size: .95rem; color: var(--red); font-weight: 700; margin-bottom: 4px; }
.hero-card-emergency p { font-size: .82rem; margin-bottom: 12px; }
.phone-num {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  background: linear-gradient(135deg, var(--red) 0%, #B91C1C 100%);
  color: white;
  padding: 20px 0;
}
.emergency-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.emergency-text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.emergency-text .icon {
  font-size: 2.2rem;
  animation: shake 2s infinite;
}
@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-8deg); }
  20% { transform: rotate(8deg); }
  30% { transform: rotate(-5deg); }
  40% { transform: rotate(5deg); }
  50% { transform: rotate(0deg); }
}
.emergency-text strong { font-size: 1.1rem; display: block; }
.emergency-text span { font-size: .9rem; opacity: .88; }
.emergency-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.18);
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255,255,255,.3);
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
  transition: all var(--transition);
}
.emergency-phone:hover {
  background: rgba(255,255,255,.28);
  transform: scale(1.02);
}
.emergency-phone .ph-label { font-size: .72rem; font-weight: 600; opacity: .8; display: block; letter-spacing: .06em; margin-bottom: 2px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; }

/* ===== HOW IT WORKS ===== */
.how-bg {
  background: linear-gradient(160deg, #F0F4FF 0%, #F8FAFD 100%);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(16.66% + 16px); right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 100%);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.step-card:nth-child(2) .step-num { border-color: var(--teal); }
.step-card:nth-child(3) .step-num { border-color: var(--green); }
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: .9rem; }

/* ===== APPOINTMENT SECTION ===== */
.appt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.appt-info .feature-list { margin-top: 28px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-item h4 { margin-bottom: 4px; }
.feature-item p { font-size: .88rem; }

.appt-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-title { font-size: 1.3rem; margin-bottom: 28px; color: var(--navy); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,94,167,.12);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FELLOWSHIP / INTERNSHIP ===== */
.fellowship-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, #2D3FAA 100%);
  color: white;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.fellowship-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(123,94,167,.25) 0%, transparent 65%);
  pointer-events: none;
}
.fellowship-hero h1 { color: white; }
.fellowship-hero p { color: rgba(255,255,255,.8); }
.fellowship-hero .section-label {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
.brain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.brain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.brain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.brain-card .num {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 16px;
}
.brain-card:nth-child(1) .num { background: #7B5EA7; }
.brain-card:nth-child(2) .num { background: #0891B2; }
.brain-card:nth-child(3) .num { background: #D97706; }
.brain-card:nth-child(4) .num { background: #DB2777; }
.brain-card h4 { margin-bottom: 8px; font-size: .95rem; }
.brain-card p { font-size: .85rem; }

.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.role-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  transition: all var(--transition);
}
.role-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--purple);
}
.role-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.role-card h4 { margin-bottom: 6px; font-size: .95rem; }
.role-card p { font-size: .85rem; }

/* ===== GROWTH PYRAMID ===== */
.pyramid-section { background: var(--bg); }
.pyramid-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.pyramid-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.pyramid-step:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.pyramid-step .pnum {
  width: 44px; height: 44px;
  border-radius: 12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.pyramid-step:nth-child(1) .pnum { background: #7B5EA7; }
.pyramid-step:nth-child(2) .pnum { background: #0891B2; }
.pyramid-step:nth-child(3) .pnum { background: #059669; }
.pyramid-step:nth-child(4) .pnum { background: #D97706; }
.pyramid-step:nth-child(5) .pnum { background: #DB2777; }
.pyramid-step h4 { margin-bottom: 3px; }
.pyramid-step p { font-size: .88rem; }

/* ===== APPLICATION FORM ===== */
.apply-section { background: linear-gradient(160deg, #F0F4FF 0%, #F8FAFD 100%); }
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.apply-info h2 { margin-bottom: 18px; }
.apply-info p { margin-bottom: 28px; }
.perks-list { display: flex; flex-direction: column; gap: 12px; }
.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
}
.perk-item .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.apply-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.form-section-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 24px 0 16px;
}
.form-section-title:first-child { margin-top: 0; }
.role-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.role-checkbox {
  display: none;
}
.role-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-secondary);
}
.role-checkbox:checked + .role-label {
  border-color: var(--purple);
  background: var(--purple-pale);
  color: var(--purple);
}
.role-label:hover { border-color: var(--purple-light); }

/* ===== PLACEMENT OFFICER ===== */
.placement-hero {
  background: linear-gradient(160deg, #0F2027 0%, #1B2B5E 50%, #203A5C 100%);
  color: white;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.placement-hero::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(8,145,178,.2) 0%, transparent 65%);
}
.placement-hero h1 { color: white; }
.placement-hero p { color: rgba(255,255,255,.8); }
.placement-hero .section-label { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.why-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.partner-card .icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}
.partner-card h3 { margin-bottom: 10px; }

.placement-form-wrapper {
  background: linear-gradient(160deg, #F0F4FF 0%, #F8FAFD 100%);
  padding: 80px 0;
}
.placement-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.placement-info h2 { margin-bottom: 18px; }
.placement-info p { margin-bottom: 28px; }
.info-box {
  background: var(--teal-light);
  border: 1px solid rgba(8,145,178,.2);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.info-box h4 { color: var(--teal); margin-bottom: 10px; font-size: .95rem; }
.info-box ul { display: flex; flex-direction: column; gap: 8px; }
.info-box li {
  font-size: .88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-box li::before { content: '→'; color: var(--teal); font-weight: 700; }

.students-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.students-table th {
  text-align: left;
  padding: 10px 12px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
.students-table td {
  padding: 12px 12px;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.add-student-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: .88rem;
  font-weight: 600;
  background: none;
  border: 1.5px dashed rgba(8,145,178,.4);
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  justify-content: center;
  margin-top: 10px;
  transition: all var(--transition);
}
.add-student-btn:hover {
  background: var(--teal-light);
  border-color: var(--teal);
}

/* ===== ABOUT / NAADI ===== */
.about-section { }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.naadi-logo-block {
  background: linear-gradient(135deg, #F0F4FF 0%, #F8FAFD 100%);
  border-radius: var(--radius-xl);
  padding: 56px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}
.naadi-logo-block .logo-text {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.naadi-logo-block .tagline { font-size: .9rem; color: var(--text-muted); font-style: italic; }
.color-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.color-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.mission-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.mission-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mission-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-bg { background: var(--navy); }
.testimonials-bg .section-label { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.testimonials-bg h2 { color: white; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}
.testimonial-card .quote { font-size: .95rem; color: rgba(255,255,255,.82); line-height: 1.75; margin-bottom: 24px; }
.testimonial-card .stars { color: #FCD34D; font-size: .95rem; margin-bottom: 16px; }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  color: white;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; color: white; font-size: .9rem; }
.reviewer-role { font-size: .8rem; color: rgba(255,255,255,.55); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: .9rem; max-width: 280px; margin: 16px 0 24px; color: rgba(255,255,255,.6); }
.footer-col h5 {
  color: white;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }
.footer-emergency-box {
  background: rgba(220,38,38,.15);
  border: 1px solid rgba(220,38,38,.3);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: 8px;
}
.footer-emergency-box .label { font-size: .72rem; font-weight: 700; color: rgba(220,38,38,.9); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.footer-emergency-box .num { font-size: 1.3rem; font-weight: 800; color: white; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,.8); }

/* ===== FLOATING EMERGENCY ===== */
.floating-emergency {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition);
  border: none;
  color: white;
}
.floating-btn.emergency-float {
  background: var(--red);
  animation: pulse-red 2.4s infinite;
}
.floating-btn.emergency-float:hover {
  background: #B91C1C;
  animation: none;
  transform: scale(1.04);
}
.floating-btn.appt-float {
  background: var(--teal);
}
.floating-btn.appt-float:hover {
  background: #0672A8;
  transform: scale(1.04);
}

/* ===== PAGE HERO (sub pages) ===== */
.page-hero {
  padding: 130px 0 72px;
  background: linear-gradient(160deg, #F0F4FF 0%, #F8FAFD 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 16px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--purple); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--border); }

/* ===== TAGS ===== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.tag.green { background: var(--green-light); border-color: transparent; color: var(--green); }
.tag.teal { background: var(--teal-light); border-color: transparent; color: var(--teal); }
.tag.purple { background: var(--purple-pale); border-color: transparent; color: var(--purple); }
.tag.red { background: var(--red-light); border-color: transparent; color: var(--red); }

/* ===== SUCCESS STATE ===== */
.success-state {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.success-state.visible { display: block; }
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-state h3 { margin-bottom: 10px; }

/* ===== UTILITY ===== */
.divider {
  width: 48px; height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 100%);
  margin: 18px 0;
}
.divider.center { margin: 18px auto; }
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-purple { color: var(--purple); }
.text-red { color: var(--red); }
.text-teal { color: var(--teal); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.mobile-nav a:hover { background: var(--purple-pale); color: var(--purple); }
.mobile-nav-emergency {
  background: var(--red-light);
  color: var(--red);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-weight: 700;
  font-size: .95rem;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .brain-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 120px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .appt-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .why-partner-grid { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .placement-form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-emergency { bottom: 20px; right: 16px; }
  .floating-btn { padding: 12px 18px; font-size: .85rem; }
  .form-row { grid-template-columns: 1fr; }
  .role-select-grid { grid-template-columns: 1fr; }
  .emergency-banner-inner { flex-direction: column; text-align: center; }
  .navbar-actions .btn { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .brain-grid { grid-template-columns: 1fr; }
  .apply-form-card, .appt-form-card { padding: 24px; }
}
