/* =====================================================
   TOPPER'S CHOICE — PREMIUM LANDING PAGE STYLESHEET
   Design System: Dark Academic + Modern EdTech 2026
   ===================================================== */

/* ─── DESIGN TOKENS ─── */
:root {
  --brand-purple: #5B24E9;
  --brand-purple-dark: #4318C8;
  --brand-purple-light: #7C4DF0;
  --brand-orange: #FF6700;
  --brand-orange-light: #FF8533;

  --dark-bg: #0A0E1A;
  --dark-surface: #111827;
  --dark-card: #151E2D;
  --dark-border: rgba(255,255,255,0.07);

  --neutral-900: #0D0D0D;
  --neutral-800: #1A1A2E;
  --neutral-100: #F7F8FC;
  --neutral-50: #FAFBFE;
  --white: #ffffff;

  --text-primary: #0D0D0D;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;

  --section-pad: clamp(5rem, 8vw, 8rem);
  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.15);
  --shadow-purple: 0 8px 32px rgba(91,36,233,0.3);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0F172A;
  background: #F8FAFC;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay { transition-delay: 0.15s; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-purple);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: var(--shadow-purple);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--brand-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(91,36,233,0.4);
}
.btn-primary:active { transform: scale(0.98); }
.btn-primary.btn-large { font-size: 1.05rem; padding: 1rem 2.25rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-md); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(91,36,233,0.25);
  color: var(--brand-purple);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  transition: var(--transition);
  background: transparent;
}
.btn-secondary:hover {
  border-color: var(--brand-purple);
  background: rgba(91,36,233,0.06);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--brand-purple);
  color: var(--brand-purple);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  transition: var(--transition);
  background: transparent;
}
.btn-outline:hover {
  background: var(--brand-purple);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline--light {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline--light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-purple);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid rgba(91,36,233,0.25);
  border-radius: 100px;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--brand-purple);
  background: rgba(91,36,233,0.05);
}

/* ─── SECTION LABELS ─── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--brand-purple);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-label-wrap { margin-bottom: clamp(3rem, 5vw, 4rem); }
.section-label-wrap h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  color: var(--neutral-900);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 52ch;
  line-height: 1.65;
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--dark-border);
  transition: all 0.4s ease;
}
.site-header.scrolled {
  background: rgba(10,14,26,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.header-logo img { width: 38px; height: auto; }
.logo-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.logo-text strong {
  font-weight: 800;
  color: var(--brand-purple-light);
}

.header-nav {
  display: flex;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #25D366;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 100px;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: rgba(37,211,102,0.1);
  border-color: #25D366;
}
.header-actions .btn-demo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  background: var(--brand-orange);
  padding: 0.6rem 1.35rem;
  border-radius: 100px;
  transition: var(--transition);
}
.header-actions .btn-demo:hover {
  background: var(--brand-orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,103,0,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 2rem);
  border-top: 1px solid var(--dark-border);
  background: rgba(10,14,26,0.98);
}
.mobile-menu.open { display: flex; }
.mob-link {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mob-link:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.mob-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-border);
}
.mob-call {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
}
.mob-demo {
  flex: 1;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--white);
  background: var(--brand-orange);
  padding: 0.75rem;
  border-radius: 100px;
}

/* ══════════════════════════════════
   HERO SECTION
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  padding: calc(72px + 4rem) 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(91,36,233,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,36,233,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
}
.glow-1 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, var(--brand-purple) 0%, transparent 70%);
}
.glow-2 {
  width: 350px; height: 350px;
  bottom: 0; left: -80px;
  background: radial-gradient(circle, var(--brand-orange) 0%, transparent 70%);
  opacity: 0.15;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.headline-gradient {
  background: linear-gradient(135deg, var(--brand-purple-light) 0%, var(--brand-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Path Cards in Hero */
.hero-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.path-card {
  border-radius: var(--radius-md);
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  cursor: pointer;
}
.path-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91,36,233,0.4);
}
.path-medical {
  background: linear-gradient(135deg, rgba(91,36,233,0.12) 0%, rgba(91,36,233,0.06) 100%);
}
.path-nonmed {
  background: linear-gradient(135deg, rgba(255,103,0,0.12) 0%, rgba(255,103,0,0.06) 100%);
}
.path-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.path-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-purple-light);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.path-nonmed .path-label { color: var(--brand-orange); }
.path-subjects {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.35rem;
}
.path-target {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.85rem;
}
.path-cta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-purple-light);
  transition: var(--transition);
}
.path-nonmed .path-cta { color: var(--brand-orange); }
.path-cta:hover { letter-spacing: 0.03em; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.6s ease;
}
.hero-img:hover { transform: scale(1.01); }

/* Floating Cards */
.float-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 0.7rem 1.1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 10;
}

.float-1 { top: -1rem; left: -1rem; }
.float-2 { top: calc(50% - 35px); right: -1.5rem; }
.float-3 { bottom: 1rem; left: -1.5rem; }

.fc-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--brand-purple);
  line-height: 1;
}
.fc-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.15rem;
}

/* ══════════════════════════════════
   TRUST STRIP
══════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 2.5rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 3rem;
  gap: 0.3rem;
}
.trust-icon {
  width: 28px; height: 28px;
  stroke: var(--brand-purple);
  margin-bottom: 0.4rem;
}
.trust-item strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neutral-900);
  line-height: 1;
}
.trust-item span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.trust-divider {
  width: 1px;
  height: 50px;
  background: rgba(0,0,0,0.1);
}

/* ══════════════════════════════════
   CHOOSE YOUR PATH
══════════════════════════════════ */
.choose-path {
  padding: var(--section-pad) 0;
  background: var(--neutral-50);
}

.big-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.big-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.07);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.big-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bc-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.bc-pattern {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  top: -100px; right: -100px;
  opacity: 0.06;
}
.bc-pattern--med {
  background: radial-gradient(circle, var(--brand-purple) 0%, transparent 70%);
}
.bc-pattern--nonmed {
  background: radial-gradient(circle, var(--brand-orange) 0%, transparent 70%);
}

.bc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.bc-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-purple);
  background: rgba(91,36,233,0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}
.big-card--nonmed .bc-tag {
  color: var(--brand-orange);
  background: rgba(255,103,0,0.08);
}
.bc-exam-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  border: 1.5px solid rgba(0,0,0,0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}
.bc-exam-badge--alt { }

.bc-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.bc-class h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 0.85rem;
}
.bc-subjects {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}
.bc-subjects li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bc-subjects li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-purple);
  flex-shrink: 0;
}
.big-card--nonmed .bc-subjects li::before { background: var(--brand-orange); }

.bc-goal {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.bc-divider {
  width: 1px;
  background: rgba(0,0,0,0.08);
  align-self: stretch;
}

.bc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  background: var(--brand-purple);
  padding: 0.9rem 1.85rem;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: var(--shadow-purple);
}
.bc-cta:hover {
  background: var(--brand-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(91,36,233,0.4);
  letter-spacing: 0.01em;
}
.bc-cta--alt {
  background: var(--brand-orange);
  box-shadow: 0 8px 32px rgba(255,103,0,0.3);
}
.bc-cta--alt:hover {
  background: var(--brand-orange-light);
  box-shadow: 0 12px 36px rgba(255,103,0,0.4);
}

/* ══════════════════════════════════
   LEARNING MODE
══════════════════════════════════ */
.learning-mode {
  background: var(--dark-surface);
  padding: 6rem 0;
}
.lm-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}
.lm-image-col {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  height: 600px;
  border: 1px solid var(--dark-border);
}
.lm-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lm-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.4) 0%, transparent 100%);
}
.lm-text-col {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.lm-mode-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lm-divider {
  height: 1px;
  background: var(--dark-border);
  width: 100%;
}
.lm-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-purple-light);
  background: rgba(91,36,233,0.15);
  border: 1px solid rgba(91,36,233,0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.8rem;
}
.lm-tag--online {
  color: var(--brand-orange);
  background: rgba(255,103,0,0.12);
  border-color: rgba(255,103,0,0.3);
}
.lm-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  padding: 0;
  list-style: none;
}
.lm-list li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.lm-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-purple-light);
  font-size: 0.8rem;
}
.lm-list--online li::before {
  color: var(--brand-orange);
}

/* ══════════════════════════════════
   WHY US
══════════════════════════════════ */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--neutral-50);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.why-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}
.why-left h2 em {
  font-style: normal;
  color: var(--brand-purple);
}
.why-left p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
}
.why-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.why-item:hover { padding-left: 0.5rem; }
.why-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-purple);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 0.25rem;
  opacity: 0.7;
}
.why-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.4rem;
}
.why-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════
   RESULTS
══════════════════════════════════ */
.results {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--dark-bg);
  overflow: hidden;
}
.results-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.results-glow {
  position: absolute;
  width: 600px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(91,36,233,0.2) 0%, transparent 70%);
  filter: blur(60px);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 3rem;
  position: relative;
}

.result-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.result-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(91,36,233,0.3);
  transform: translateY(-4px);
}
.result-card:hover::before { opacity: 1; }

.rc-highlight {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.rc-exam {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-purple-light);
  margin-bottom: 1rem;
}
.rc-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.rc-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.results-cta { text-align: center; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.testi-featured {
  background: linear-gradient(135deg, rgba(91,36,233,0.04) 0%, rgba(255,103,0,0.03) 100%);
  border: 1px solid rgba(91,36,233,0.1);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.testi-quote-mark {
  position: absolute;
  top: 1rem; left: 2rem;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: var(--brand-purple);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.testi-big {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--neutral-900);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}
.testi-author-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.testi-avatar-big {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testi-name-big {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
}
.testi-journey {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.testi-stars {
  margin-left: auto;
  color: #FBBF24;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--neutral-50);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(91,36,233,0.15);
}
.tc-stars {
  color: #FBBF24;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}
.testi-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.tc-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-orange));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.tc-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--neutral-900);
}
.tc-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════
   FACULTY
══════════════════════════════════ */
.faculty {
  padding: var(--section-pad) 0;
  background: var(--neutral-50);
}
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.faculty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(91,36,233,0.15);
}
.fc-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--neutral-100);
}
.fc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  filter: grayscale(10%) contrast(1.05);
}
.faculty-card:hover .fc-img-wrap img { transform: scale(1.04); }
.fc-info {
  padding: 1.25rem;
  text-align: center;
}
.fc-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.25rem;
}
.fc-subject {
  font-size: 0.8rem;
  color: var(--brand-purple);
  font-weight: 600;
}

/* ══════════════════════════════════
   JOURNEY / STEPS
══════════════════════════════════ */
.journey {
  padding: var(--section-pad) 0;
  background: var(--dark-bg);
  position: relative;
}
.journey .section-eyebrow { color: var(--brand-orange); }
.journey #journey-heading { color: var(--white); }

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  text-align: center;
}
.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-purple);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.step-arrow {
  color: var(--brand-purple);
  font-size: 1.5rem;
  opacity: 0.4;
  padding-top: 1.5rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════
   LOCATION
══════════════════════════════════ */
.location {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.loc-info .section-eyebrow { margin-bottom: 0.75rem; display: block; }
.loc-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}
.loc-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.loc-details {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
  padding: 1.75rem;
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.07);
}
.loc-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.loc-row svg { flex-shrink: 0; stroke: var(--brand-purple); margin-top: 2px; }
.loc-row a { color: var(--brand-purple); font-weight: 500; }
.loc-row a:hover { text-decoration: underline; }
.loc-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.loc-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.loc-map iframe { display: block; }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--neutral-50);
}
.faq-inner { max-width: 860px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(91,36,233,0.2);
  box-shadow: 0 4px 16px rgba(91,36,233,0.06);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--neutral-900);
  text-align: left;
  gap: 1rem;
  transition: var(--transition);
}
.faq-q:hover { background: rgba(91,36,233,0.02); }
.faq-icon {
  font-size: 1.25rem;
  color: var(--brand-purple);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-a a { color: var(--brand-purple); font-weight: 500; }
.faq-a a:hover { text-decoration: underline; }

/* ══════════════════════════════════
   FINAL CTA
══════════════════════════════════ */
.final-cta {
  position: relative;
  padding: clamp(5rem, 8vw, 9rem) 0;
  background: var(--dark-bg);
  overflow: hidden;
  text-align: center;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fcta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(91,36,233,0.3) 0%, transparent 65%);
  filter: blur(60px);
}

.final-cta h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
  position: relative;
}
.final-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  margin: 0 auto 3rem;
  line-height: 1.7;
  position: relative;
}
.fcta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  background: #25D366;
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: var(--transition);
}
.btn-wa-large:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}
.btn-call-large {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: var(--transition);
}
.btn-call-large:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,0.6);
  padding: clamp(3.5rem, 6vw, 5rem) 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-brand img { opacity: 0.9; }
.footer-brand span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.footer-brand strong { color: var(--brand-purple-light); }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--brand-purple-light);
  color: var(--brand-purple-light);
  background: rgba(91,36,233,0.1);
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.footer-contact a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════
   MODAL
══════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
  max-height: 90svh;
  overflow-y: auto;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--neutral-100);
  color: var(--text-secondary);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(91,36,233,0.1); color: var(--brand-purple); }
.modal-header { margin-bottom: 2rem; }
.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 0.4rem;
}
.modal-header p { font-size: 0.9rem; color: var(--text-secondary); }
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.4rem;
}
.form-group label span { color: var(--brand-orange); }
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--neutral-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(91,36,233,0.1);
}
.form-group input::placeholder { color: var(--text-muted); }

.radio-group {
  display: flex;
  gap: 1rem;
  margin-top: 0.4rem;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.6rem 1.25rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  transition: var(--transition);
}
.radio-label:has(input:checked) {
  border-color: var(--brand-purple);
  background: rgba(91,36,233,0.06);
  color: var(--brand-purple);
}
.radio-label input { display: none; }
.modal-alt {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.modal-alt a { color: var(--brand-purple); font-weight: 600; }

/* ══════════════════════════════════
   MOBILE STICKY BAR
══════════════════════════════════ */
.mob-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.6rem 1rem;
  gap: 0.5rem;
}
.mob-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
}
.mob-sticky-call {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.mob-sticky-call:hover { background: rgba(255,255,255,0.07); }
.mob-sticky-wa {
  color: #25D366;
  border: 1.5px solid rgba(37,211,102,0.25);
  background: transparent;
}
.mob-sticky-wa:hover { background: rgba(37,211,102,0.08); }
.mob-sticky-demo {
  color: var(--white);
  background: var(--brand-orange);
  font-family: 'Outfit', sans-serif;
}
.mob-sticky-demo:hover { background: var(--brand-orange-light); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .header-nav { display: none; }
  .header-actions .btn-whatsapp span { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-visual { order: 2; display: none; }
  .hero-badge { justify-content: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-paths { max-width: 480px; margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }

  .trust-inner { justify-content: space-around; }
  .trust-divider { display: none; }
  .trust-item { padding: 0.75rem 1.5rem; }

  .big-cards { grid-template-columns: 1fr; }
  .bc-content { grid-template-columns: 1fr; }
  .bc-divider { width: 100%; height: 1px; }

  .lm-grid { grid-template-columns: 1fr; gap: 3rem; }
  .lm-image-col { height: 350px; }

  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  
  .testi-grid { grid-template-columns: 1fr; }

  .results-grid { grid-template-columns: repeat(2, 1fr); }

  .faculty-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-row {
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    gap: 0.25rem;
  }
  .step-arrow { transform: rotate(90deg); }

  .location-inner { grid-template-columns: 1fr; }
  .loc-map { order: -1; }
  .loc-map iframe { height: 320px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; }

  .mob-sticky { display: flex; }
  body { padding-bottom: 68px; }
}

@media (max-width: 540px) {
  .hero-paths { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .fcta-btns { flex-direction: column; align-items: center; }
  .trust-inner { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-secondary, .btn-primary { width: 100%; justify-content: center; }
}

/* ─── Print / A11y ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus-visible styles */
:focus-visible {
  outline: 2px solid var(--brand-purple);
  outline-offset: 3px;
}

/* ─── Selection ─── */
::selection { background: rgba(91,36,233,0.2); color: var(--neutral-900); }

/* ══════════════════════════════════════════════════════════════════════════
   PREMIUM LIGHT MODE REDESIGN (REMOVING BLACKS & HARSH DARKS)
   ══════════════════════════════════════════════════════════════════════════ */
:root {
  --dark-bg: #F6F5FF;         /* Soft violet-tinted light background */
  --dark-surface: #FAF9FF;    /* Extremely clean, soft surface */
  --dark-card: #ffffff;       /* Pure white card backgrounds */
  --dark-border: rgba(91,36,233,0.08); /* Soft purple borders */
}

/* 1. Navigation Header overrides */
.site-header {
  background: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid rgba(91, 36, 233, 0.08) !important;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 24px rgba(91, 36, 233, 0.06) !important;
}
.logo-text {
  color: var(--neutral-900) !important;
}
.logo-text strong {
  color: var(--brand-purple) !important;
}
.nav-link {
  color: var(--text-secondary) !important;
}
.nav-link:hover {
  color: var(--brand-purple) !important;
  background: rgba(91, 36, 233, 0.05) !important;
}
.mobile-nav-toggle {
  color: var(--neutral-900) !important;
}

/* 2. Hero Banner Section */
.hero {
  background: #F6F5FF !important;
}
.hero-headline {
  color: var(--neutral-900) !important;
}
.hero-sub {
  color: var(--text-secondary) !important;
}
.hero-badge {
  background: rgba(91, 36, 233, 0.06) !important;
  border: 1px solid rgba(91, 36, 233, 0.15) !important;
  color: var(--brand-purple) !important;
}
.hero-badge .badge-dot {
  background: var(--brand-purple) !important;
}
.path-card {
  background: var(--white) !important;
  border: 1px solid rgba(91, 36, 233, 0.08) !important;
  box-shadow: var(--shadow-sm) !important;
}
.path-card:hover {
  border-color: var(--brand-purple) !important;
  box-shadow: var(--shadow-md) !important;
}
.path-target {
  color: var(--neutral-900) !important;
}
.path-subjects {
  color: var(--text-secondary) !important;
}
.path-medical {
  background: linear-gradient(135deg, rgba(91, 36, 233, 0.06) 0%, rgba(91, 36, 233, 0.02) 100%) !important;
}
.path-nonmed {
  background: linear-gradient(135deg, rgba(255, 103, 0, 0.06) 0%, rgba(255, 103, 0, 0.02) 100%) !important;
}

/* 3. Classroom Learning Modes Section */
.learning-mode {
  background: #ffffff !important;
  border-top: 1px solid rgba(91, 36, 233, 0.08) !important;
  border-bottom: 1px solid rgba(91, 36, 233, 0.08) !important;
}
.learning-mode h2 {
  color: var(--neutral-900) !important;
}
.lm-list li {
  color: var(--text-secondary) !important;
}
.btn-outline {
  border-color: var(--brand-purple) !important;
  color: var(--brand-purple) !important;
}
.btn-outline:hover {
  background: var(--brand-purple) !important;
  color: var(--white) !important;
}
.btn-outline--light {
  border-color: var(--brand-orange) !important;
  color: var(--brand-orange) !important;
}
.btn-outline--light:hover {
  background: var(--brand-orange) !important;
  color: var(--white) !important;
}

/* 4. Student Results Scorecard */
.results {
  background: #F6F5FF !important;
}
.results h2 {
  color: var(--neutral-900) !important;
}
.results-sub {
  color: var(--text-secondary) !important;
}
.result-card {
  background: var(--white) !important;
  border: 1px solid rgba(91, 36, 233, 0.08) !important;
  box-shadow: var(--shadow-sm) !important;
}
.rc-name, .rc-score {
  color: var(--neutral-900) !important;
}
.rc-detail {
  color: var(--text-secondary) !important;
}

/* 5. Process Steps and Final Action Panel */
.journey {
  background: #f8fafc !important;
}
#journey-heading {
  color: var(--neutral-900) !important;
}
.step h3 {
  color: var(--neutral-900) !important;
}
.step p {
  color: var(--text-secondary) !important;
}
.final-cta {
  background: #FAF9FF !important;
  border-top: 1px solid rgba(91, 36, 233, 0.08) !important;
  border-bottom: 1px solid rgba(91, 36, 233, 0.08) !important;
}
.final-cta h2 {
  color: var(--neutral-900) !important;
}
.final-cta p {
  color: var(--text-secondary) !important;
}

/* 6. Footer Layout styling overrides */
.site-footer {
  background: #FAF9FF !important;
  color: var(--text-secondary) !important;
  border-top: 1px solid rgba(91, 36, 233, 0.08) !important;
}
.footer-brand span {
  color: var(--neutral-900) !important;
}
.footer-brand p {
  color: var(--text-secondary) !important;
}
.footer-links h4, .footer-contact h4 {
  color: var(--neutral-900) !important;
}
.footer-links a {
  color: var(--text-secondary) !important;
}
.footer-links a:hover {
  color: var(--brand-purple) !important;
}
.footer-contact p {
  color: var(--text-secondary) !important;
}
.footer-contact a {
  color: var(--brand-purple) !important;
}
.footer-inner {
  border-bottom: 1px solid rgba(91, 36, 233, 0.08) !important;
}
.footer-bottom {
  color: var(--text-muted) !important;
  border-top: 1px solid rgba(91, 36, 233, 0.05) !important;
}
.footer-bottom a {
  color: var(--text-secondary) !important;
}
.footer-social a {
  border-color: rgba(91, 36, 233, 0.15) !important;
  color: var(--text-secondary) !important;
}
.footer-social a:hover {
  border-color: var(--brand-purple) !important;
  color: var(--brand-purple) !important;
  background: rgba(91, 36, 233, 0.05) !important;
}

/* Mobile responsive sticky footer shortcuts */
.mob-sticky {
  background: rgba(255,255,255,0.9) !important;
  border-top: 1px solid rgba(91, 36, 233, 0.1) !important;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06) !important;
}
.mob-sticky-btn {
  color: var(--neutral-900) !important;
}
.mob-sticky-call {
  color: var(--brand-purple) !important;
}
.mob-sticky-wa {
  color: #25d366 !important;
}

/* Modal boxes form styling overrides */
.modal {
  background: var(--white) !important;
  border: 1px solid rgba(91, 36, 233, 0.1) !important;
  color: var(--neutral-900) !important;
}
.modal-header h2 {
  color: var(--neutral-900) !important;
}
.modal-header p {
  color: var(--text-secondary) !important;
}
.form-group label {
  color: var(--neutral-900) !important;
}

/* Select options dropdown color overrides */
select option {
  background-color: #ffffff !important;
  color: var(--neutral-900) !important;
}
