/* ═══════════════════════════════════════════════════════════
   NILANCHAL EDUCATION ACADEMY — Premium CSS v3.0
   Navy #1B3A6B | Sky #4A90D9 | Saffron #FF6B35
   Premium · Warm · Trust-first · Mobile-first
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Noto+Sans:wght@400;500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Brand */
  --navy:        #1B3A6B;
  --navy-dark:   #112548;
  --navy-deeper: #0D1B35;
  --sky:         #4A90D9;
  --sky-lt:      #EBF5FF;
  --sky-mid:     #C5DEF5;
  --saffron:     #FF6B35;
  --saffron-dk:  #E5541E;
  --saffron-lt:  #FFF3EE;
  --saffron-glow:rgba(255,107,53,0.22);

  /* Neutrals */
  --offwhite:    #F8FAFC;
  --surface:     #FFFFFF;
  --border:      #E4EDF8;
  --border-dark: #C8D9EF;
  --dark:        #0F172A;
  --body:        #334155;
  --muted:       #64748B;
  --subtle:      #94A3B8;

  /* Utility */
  --wa:          #25D366;
  --wa-dk:       #1DAA54;
  --green:       #16A34A;
  --green-lt:    #DCFCE7;

  /* Typography — Premium upgrade */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Noto Sans', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing scale */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 64px;

  /* Radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;

  /* Shadows — layered depth */
  --shadow-xs:   0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm:   0 2px 8px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  --shadow-md:   0 4px 16px rgba(27,58,107,0.10), 0 2px 6px rgba(27,58,107,0.06);
  --shadow-lg:   0 8px 32px rgba(27,58,107,0.13), 0 3px 10px rgba(27,58,107,0.07);
  --shadow-xl:   0 20px 60px rgba(15,23,42,0.18), 0 8px 20px rgba(15,23,42,0.10);
  --shadow-cta:  0 6px 24px rgba(255,107,53,0.40), 0 2px 8px rgba(255,107,53,0.20);
  --shadow-form: 0 24px 64px rgba(15,23,42,0.22), 0 8px 24px rgba(15,23,42,0.12);
  --shadow-glow: 0 0 0 4px rgba(74,144,217,0.15);

  /* Transitions */
  --t-fast:   0.15s cubic-bezier(0.4,0,0.2,1);
  --t:        0.25s cubic-bezier(0.4,0,0.2,1);
  --t-slow:   0.4s  cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 72px;
}
@media (min-width: 992px) { body { padding-bottom: 0; } }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--dark);
}
h1 { font-weight: 900; }
h2 { font-weight: 800; }
h3 { font-weight: 700; }
h4 { font-weight: 700; }
p  { line-height: 1.72; }
a  { text-decoration: none; transition: color var(--t-fast); }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }

/* ── Utility ────────────────────────────────────────────── */
.text-navy    { color: var(--navy) !important; }
.text-sky     { color: var(--sky)  !important; }
.text-saffron { color: var(--saffron) !important; }
.text-muted   { color: var(--muted) !important; }

/* Focus — visible, on-brand */
:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── Buttons ────────────────────────────────────────────── */
.nea-btn-saffron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--saffron);
  color: #fff !important;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 11px 22px;
  box-shadow: var(--shadow-cta);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.nea-btn-saffron::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.nea-btn-saffron:hover  { background: var(--saffron-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,53,0.46); color: #fff !important; }
.nea-btn-saffron:active { transform: translateY(0); box-shadow: var(--shadow-cta); }

.nea-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--wa);
  color: #fff !important;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  transition: background var(--t-fast), transform var(--t-fast);
  cursor: pointer;
}
.nea-btn-wa:hover { background: var(--wa-dk); transform: translateY(-1px); color: #fff !important; }

.nea-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: rgba(255,255,255,0.88) !important;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  transition: all var(--t-fast);
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.nea-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: #fff !important; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.nea-navbar {
  background: var(--navy-deeper) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.28);
  padding: 0;
  z-index: 1050;
}
.nea-navbar .container { padding-top: 12px; padding-bottom: 12px; }
@media (max-width: 991px) {
  .nea-navbar .container { flex-wrap: nowrap; align-items: center; }
  .nea-navbar .navbar-brand { flex-shrink: 1; min-width: 0; }
}

.nea-navbar .nav-link {
  color: rgba(255,255,255,0.72) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  padding: 7px 13px !important;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nea-navbar .nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.08); }
.nea-navbar .nav-link.active { color: #fff !important; background: rgba(74,144,217,0.18); }
.nea-navbar .navbar-toggler { color: white; border: none !important; padding: 4px 6px; }
.nea-navbar .navbar-toggler-icon { filter: brightness(10); width: 20px; height: 20px; }
.nea-navbar .navbar-toggler:focus { box-shadow: none; }
.nea-navbar .navbar-collapse { padding-top: 4px; }
@media (max-width: 991px) {
  .nea-navbar .navbar-collapse { padding: 12px 0 8px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 8px; }
}

/* Logo */
.nea-logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--saffron) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900; font-size: 19px;
  color: white; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255,107,53,0.3);
}
@media (max-width: 991px) { .nea-logo-mark { width: 34px; height: 34px; font-size: 17px; border-radius: 8px; } }

.nea-logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 190px;
}
@media (max-width: 400px) { .nea-logo-text strong { max-width: 140px; font-size: 12.5px; } }
.nea-logo-text span { font-size: 10.5px; color: rgba(255,255,255,0.52); letter-spacing: 0.01em; }

/* Dropdown */
.nea-dropdown {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  min-width: 250px;
  margin-top: 8px !important;
  background: white;
}
.nea-dropdown .dropdown-item {
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 14px;
  color: var(--navy);
  transition: background var(--t-fast), color var(--t-fast);
  display: flex; align-items: center; gap: 8px;
}
.nea-dropdown .dropdown-item:hover { background: var(--sky-lt); color: var(--navy); }
.nea-dropdown .dropdown-item.active { background: var(--sky-lt); color: var(--navy); }

/* ── HERO — Signature diagonal split ───────────────────── */
.nea-hero {
  background: var(--navy-deeper);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
/* Grain texture overlay */
.nea-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
/* Radial glow — top right */
.nea-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Bottom left accent */
.nea-hero .hero-accent-bl {
  position: absolute;
  bottom: 60px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.nea-hero .container { position: relative; z-index: 1; }

@media (max-width: 768px) { .nea-hero { padding: 40px 0 0; min-height: unset; } }

/* Hero badge */
.nea-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.14);
  border: 1px solid rgba(255,107,53,0.32);
  color: #FFA07A;
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nea-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  flex-shrink: 0;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }

/* Hero headline */
.nea-hero h1 {
  font-size: clamp(28px, 5.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
}
.nea-hero h1 .accent { color: var(--saffron); }
.nea-hero h1 .light  { font-weight: 400; color: rgba(255,255,255,0.75); }

.nea-hero-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  line-height: 1.76;
}
.nea-hero-note { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.01em; }

/* Trust chips */
.nea-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  border-radius: 100px;
  padding: 4px 13px;
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  transition: background var(--t-fast);
}
.nea-trust-chip:hover { background: rgba(255,255,255,0.12); }

/* Hero image — premium frame */
.nea-hero-img-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
.nea-hero-img-card img { width: 100%; height: auto; display: block; }
/* Saffron corner accent */
.nea-hero-img-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(255,107,53,0.3) 100%);
  z-index: 2;
  pointer-events: none;
}
.nea-hero-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(74,144,217,0.22), rgba(27,58,107,0.5));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 13px; text-align: center; padding: 24px;
}
.nea-hero-img-placeholder .img-emoji { font-size: 56px; display: block; }

/* Stat cards */
.nea-stat-card {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 16px 10px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background var(--t-fast);
}
.nea-stat-card:hover { background: rgba(255,255,255,0.10); }
.nea-stat-num   { font-family: var(--font-display); font-size: 24px; font-weight: 900; color: var(--saffron); line-height: 1; }
.nea-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 5px; line-height: 1.35; font-weight: 500; }

/* Wave */
.nea-wave { display: block; width: 100%; margin-bottom: -2px; }

/* ── TRUST BAR ──────────────────────────────────────────── */
.nea-trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nea-trust-bar-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 600;
  white-space: nowrap;
}
.nea-trust-bar-item i { color: var(--sky); font-size: 16px; }

/* ── SECTIONS ───────────────────────────────────────────── */
.nea-section { padding: 72px 0; }
@media (max-width: 768px) { .nea-section { padding: 48px 0; } }

.nea-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.nea-section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--sky);
  border-radius: 2px;
}
.nea-dark-section .nea-section-label { color: var(--saffron); }
.nea-dark-section .nea-section-label::before { background: var(--saffron); }

.nea-section-title {
  font-size: clamp(24px, 4vw, 38px);
  letter-spacing: -0.025em;
  color: var(--dark);
  line-height: 1.15;
}
.nea-dark-section .nea-section-title { color: white; }

.nea-section-sub {
  font-size: 15.5px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.74;
}
.nea-dark-section .nea-section-sub { color: rgba(255,255,255,0.58); }

/* ── PAIN CARDS — Premium dark ──────────────────────────── */
.nea-pain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: background var(--t-fast), border-color var(--t-fast);
  height: 100%;
}
.nea-pain-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.nea-pain-check {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,107,53,0.16);
  border: 1.5px solid rgba(255,107,53,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--saffron);
  font-size: 12px; font-weight: 800; margin-top: 1px;
}
.nea-pain-text { font-size: 14px; color: rgba(255,255,255,0.80); line-height: 1.62; }

.nea-callout {
  background: rgba(255,107,53,0.09);
  border: 1px solid rgba(255,107,53,0.24);
  border-radius: var(--r-md);
  padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
}
.nea-callout p { font-size: 14.5px; color: rgba(255,255,255,0.82); line-height: 1.7; }
.nea-callout strong { color: var(--saffron); }

/* ── USP CARDS ──────────────────────────────────────────── */
.nea-usp-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.nea-usp-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--saffron));
  opacity: 0;
  transition: opacity var(--t);
}
.nea-usp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky-mid); }
.nea-usp-card:hover::after { opacity: 1; }

.nea-usp-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky-lt), var(--sky-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-xs);
}
.nea-usp-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em; }
.nea-usp-card p  { font-size: 14px; color: var(--muted); line-height: 1.68; }

/* Demo Banner */
.nea-demo-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4d8c 100%);
  border-radius: var(--r-xl);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.nea-demo-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,107,53,0.12);
  pointer-events: none;
}
.nea-demo-banner h3 { color: white; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 6px; }
.nea-demo-banner p  { color: rgba(255,255,255,0.68); font-size: 14px; }
@media (max-width: 576px) { .nea-demo-banner { padding: 24px 20px; } }

/* ── STEPS ──────────────────────────────────────────────── */
.nea-step {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; gap: 18px; align-items: flex-start;
  height: 100%;
  transition: box-shadow var(--t), transform var(--t);
}
.nea-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.nea-step-num {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--navy);
  color: white;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(27,58,107,0.3);
}
.nea-step h3 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.nea-step p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.nea-step-time {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 10px;
  background: var(--sky-lt); color: var(--sky);
  border-radius: 100px; padding: 3px 11px;
  font-size: 11px; font-family: var(--font-display); font-weight: 700;
}

/* ── FORM SECTION ───────────────────────────────────────── */
.nea-form-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-form);
  border: 1px solid rgba(255,255,255,0.6);
}
@media (max-width: 576px) { .nea-form-card { padding: 24px 18px; border-radius: var(--r-lg); } }

.nea-form-card .form-label {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--dark); margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.nea-form-card .form-control,
.nea-form-card .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 15px;
  padding: 12px 16px;
  color: var(--dark);
  font-family: var(--font-body);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  background: var(--offwhite);
  -webkit-appearance: none; appearance: none;
}
.nea-form-card .form-control:focus,
.nea-form-card .form-select:focus {
  border-color: var(--sky);
  background: white;
  box-shadow: var(--shadow-glow);
  outline: none;
}
.nea-form-card .form-control::placeholder { color: var(--subtle); font-size: 14px; }

.nea-form-submit {
  width: 100%;
  background: var(--saffron);
  color: white;
  border: none;
  border-radius: var(--r-md);
  padding: 16px;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  position: relative; overflow: hidden;
}
.nea-form-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.nea-form-submit:hover { background: var(--saffron-dk); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,53,0.46); }
.nea-form-submit:active { transform: translateY(0); }
.nea-form-submit:disabled { background: var(--muted); cursor: not-allowed; transform: none; box-shadow: none; }

.nea-form-privacy { font-size: 11.5px; color: var(--subtle); text-align: center; line-height: 1.5; }

.nea-form-checklist { display: flex; flex-direction: column; gap: 10px; }
.nea-check-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
}
.nea-check-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(22,163,74,0.18);
  border: 1.5px solid rgba(34,197,94,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #4ADE80;
  font-size: 11px; font-weight: 900;
}

/* Alerts */
.nea-alert-success { background: var(--green-lt); border: 1px solid #86EFAC; color: #166534; border-radius: var(--r-md); padding: 14px 18px; font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.nea-alert-error   { background: #FEF2F2; border: 1px solid #FCA5A5; color: #991B1B; border-radius: var(--r-md); padding: 14px 18px; font-family: var(--font-display); font-weight: 600; font-size: 14px; }

/* ── FEE TABLE ──────────────────────────────────────────── */
.nea-fee-table { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.nea-fee-table table { margin: 0; }
.nea-fee-table thead th {
  background: var(--navy);
  color: white;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 20px; border: none;
}
.nea-fee-table tbody td { padding: 13px 20px; font-size: 14px; border-color: var(--border); vertical-align: middle; }
.nea-fee-table tbody tr:hover td { background: var(--sky-lt); }
.nea-fee-table tbody tr:last-child td { border-bottom: none; }
.nea-fee-highlight { color: var(--saffron); font-family: var(--font-display); font-weight: 700; }

/* ── FAQ ────────────────────────────────────────────────── */
.nea-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md) !important;
  overflow: hidden; margin-bottom: 8px;
  box-shadow: var(--shadow-xs);
}
.nea-accordion .accordion-button {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--dark);
  background: white;
  border-radius: var(--r-md) !important;
  padding: 18px 22px;
}
.nea-accordion .accordion-button:not(.collapsed) {
  background: var(--sky-lt); color: var(--navy); box-shadow: none;
}
.nea-accordion .accordion-button:focus { box-shadow: none; }
.nea-accordion .accordion-button::after { filter: invert(0); opacity: 0.5; }
.nea-accordion .accordion-body {
  font-size: 14.5px; color: var(--muted); line-height: 1.74;
  background: white; padding: 0 22px 20px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.nea-footer {
  background: var(--navy-deeper);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-link {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.45);
  font-size: 13.5px;
  margin-bottom: 8px;
  transition: color var(--t-fast);
  line-height: 1.4;
}
.footer-link:hover { color: var(--sky); }

/* ── STICKY MOBILE BAR ──────────────────────────────────── */
.nea-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1040;
  background: white;
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: flex; gap: 8px; align-items: center;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}
.nea-sticky-call {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: var(--sky-lt); color: var(--navy) !important;
  border: 1.5px solid var(--sky-mid);
  border-radius: var(--r-md); padding: 10px 12px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  white-space: nowrap; transition: background var(--t-fast);
}
.nea-sticky-call:hover { background: var(--sky-mid); }
.nea-sticky-wa {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: var(--wa); color: white !important;
  border-radius: var(--r-md); padding: 10px 12px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  white-space: nowrap; transition: background var(--t-fast);
}
.nea-sticky-wa:hover { background: var(--wa-dk); }
.nea-sticky-demo {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: var(--saffron); color: white !important;
  border-radius: var(--r-md); padding: 12px 8px;
  font-family: var(--font-display); font-size: 13.5px; font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 12px rgba(255,107,53,0.35);
  transition: background var(--t-fast);
}
.nea-sticky-demo:hover { background: var(--saffron-dk); }

/* ── BLOG CARDS ─────────────────────────────────────────── */
.nea-blog-card {
  background: white;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  height: 100%;
}
.nea-blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.nea-blog-card .blog-img {
  aspect-ratio: 16/9; background: var(--sky-lt);
  display: flex; align-items: center; justify-content: center; font-size: 52px;
}
.nea-blog-card .blog-body { padding: 22px; }
.nea-blog-card .blog-cat { font-family: var(--font-display); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sky); margin-bottom: 8px; }
.nea-blog-card h3 { font-size: 17px; color: var(--dark); margin-bottom: 10px; line-height: 1.32; letter-spacing: -0.01em; }
.nea-blog-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.nea-blog-card .read-more { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--sky); margin-top: 14px; }
.nea-blog-card .read-more:hover { color: var(--navy); }

/* ── PAGE HEADER (inner pages) ──────────────────────────── */
.nea-page-header {
  background: linear-gradient(155deg, var(--navy-deeper) 0%, var(--navy) 100%);
  padding: 64px 0 48px;
  position: relative; overflow: hidden;
}
.nea-page-header::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.fade-up-stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.fade-up-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0.0s; }
.fade-up-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.08s; }
.fade-up-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.16s; }
.fade-up-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.24s; }
.fade-up-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.32s; }
.fade-up-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.40s; }

/* ── ADMIN ──────────────────────────────────────────────── */
.nea-admin-sidebar { background: var(--navy-deeper); min-height: 100vh; padding: 20px 0; }
.nea-admin-sidebar .nav-link { color: rgba(255,255,255,0.65); font-family: var(--font-display); font-weight: 600; padding: 10px 20px; }
.nea-admin-sidebar .nav-link:hover,
.nea-admin-sidebar .nav-link.active { color: white; background: rgba(255,255,255,0.1); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 576px) {
  .nea-demo-banner h3 { font-size: 18px; }
  .nea-fee-table thead th { font-size: 11px; padding: 11px 12px; }
  .nea-fee-table tbody td { font-size: 13px; padding: 11px 12px; }
  .nea-usp-card { padding: 22px 18px; }
}
