/* ============================================================
   KVOLT - MAIN STYLESHEET
   Dark Fintech Theme | Glassmorphism | Syne + DM Sans
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-void:       #04070f;
  --bg-deep:       #080d1a;
  --bg-base:       #0c1322;
  --bg-card:       rgba(15, 25, 50, 0.7);
  --bg-card-hover: rgba(20, 35, 70, 0.85);
  --bg-glass:      rgba(255, 255, 255, 0.04);
  --bg-glass-2:    rgba(255, 255, 255, 0.07);

  /* Accent palette */
  --accent:        #f59e0b;
  --accent-glow:   rgba(245, 158, 11, 0.3);
  --accent-dim:    rgba(245, 158, 11, 0.15);
  --accent-2:      #3b82f6;
  --accent-2-glow: rgba(59, 130, 246, 0.25);
  --accent-3:      #10b981;
  --accent-4:      #8b5cf6;

  /* Text */
  --text-primary:  #f0f4ff;
  --text-secondary:#8b9ab8;
  --text-muted:    #4a5a7a;
  --text-accent:   #f59e0b;

  /* Borders */
  --border:        rgba(255, 255, 255, 0.07);
  --border-glow:   rgba(245, 158, 11, 0.3);
  --border-blue:   rgba(59, 130, 246, 0.2);

  /* Status */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger:  #ef4444;
  --color-info:    #3b82f6;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md:   0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg:   0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.15);

  /* Radii */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 999px;

  /* Transitions */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast:   150ms;
  --t-normal: 250ms;
  --t-slow:   400ms;

  /* Typography */
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-void);
  overflow-x: hidden;
}

/* ── Background Mesh ────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(59,130,246,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(245,158,11,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 0%,  rgba(139,92,246,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-secondary); }
a { color: var(--accent); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--text-primary); }
code, pre { font-family: var(--font-mono); }

/* ── Utility Classes ────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 860px; }

.text-accent   { color: var(--accent) !important; }
.text-success  { color: var(--color-success) !important; }
.text-danger   { color: var(--color-danger) !important; }
.text-muted    { color: var(--text-muted) !important; }
.text-center   { text-align: center; }
.font-mono     { font-family: var(--font-mono); }
.font-display  { font-family: var(--font-display); }

.flex          { display: flex; }
.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }
.gap-sm        { gap: 0.5rem; }
.gap-md        { gap: 1rem; }
.gap-lg        { gap: 1.5rem; }
.grid-2        { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-3        { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-4        { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* ── Glass Card ─────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--t-normal) var(--ease), border-color var(--t-normal) var(--ease), box-shadow var(--t-normal) var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}
.card--glow { box-shadow: 0 0 0 1px var(--accent-dim), var(--shadow-md); }
.card--blue { border-color: var(--border-blue); }

/* Shimmer */
.card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.4), transparent);
  transition: left var(--t-slow) var(--ease);
  pointer-events: none;
}
.card:hover::after { left: 100%; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: all var(--t-normal) var(--ease);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0; transition: opacity var(--t-fast);
  pointer-events: none;
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn--primary:hover { box-shadow: 0 6px 30px rgba(245,158,11,0.5); transform: translateY(-1px); }

.btn--secondary {
  background: var(--bg-glass-2);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn--blue {
  background: linear-gradient(135deg, var(--accent-2), #2563eb);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}
.btn--danger {
  background: linear-gradient(135deg, var(--color-danger), #dc2626);
  color: #fff;
}
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn:disabled, .btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.btn--loading .btn-text { opacity: 0; }
.btn--loading::after {
  content: ''; position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}

/* ── Form Inputs ────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; margin-bottom: 0.4rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control option { background: var(--bg-base); }
.form-control[readonly] { opacity: 0.6; cursor: not-allowed; }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: var(--radius-full);
}
.badge::before { content: '●'; font-size: 0.5rem; }
.badge--success  { background: rgba(16,185,129,0.15); color: var(--color-success); }
.badge--warning  { background: rgba(245,158,11,0.15); color: var(--color-warning); }
.badge--danger   { background: rgba(239,68,68,0.15);  color: var(--color-danger); }
.badge--info     { background: rgba(59,130,246,0.15); color: var(--color-info); }
.badge--primary  { background: rgba(139,92,246,0.15); color: var(--accent-4); }
.badge--secondary{ background: var(--bg-glass);       color: var(--text-muted); }
.badge--low      { background: rgba(16,185,129,0.12); color: var(--color-success); }
.badge--medium   { background: rgba(245,158,11,0.12); color: var(--color-warning); }
.badge--high     { background: rgba(239,68,68,0.12);  color: var(--color-danger); }

/* ── Progress Bar ───────────────────────────────────────────── */
.progress-track {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  height: 6px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: width 1s var(--ease-out);
  position: relative;
}
.progress-fill::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-full);
  filter: blur(2px);
}

/* ── Alert / Toast ──────────────────────────────────────────── */
.nv-alert {
  padding: 1rem 1.25rem; border-radius: var(--radius-md);
  font-size: 0.9rem; display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid;
}
.nv-alert--success { background: rgba(16,185,129,0.1);  border-color: rgba(16,185,129,0.3);  color: #6ee7b7; }
.nv-alert--warning { background: rgba(245,158,11,0.1);  border-color: rgba(245,158,11,0.3);  color: #fcd34d; }
.nv-alert--danger  { background: rgba(239,68,68,0.1);   border-color: rgba(239,68,68,0.3);   color: #fca5a5; }
.nv-alert--info    { background: rgba(59,130,246,0.1);  border-color: rgba(59,130,246,0.3);  color: #93c5fd; }

/* Capital Assurance Notice */
.nv-risk-notice {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-md); padding: 1rem 1.25rem;
  color: #fca5a5; font-size: 0.9rem; line-height: 1.6;
}

/* ── Toast Notifications ────────────────────────────────────── */
#nv-toasts {
  position: fixed; top: 1.5rem; right: 1.5rem;
  z-index: 9999; display: flex; flex-direction: column; gap: 0.75rem;
  pointer-events: none;
}
.nv-toast {
  background: rgba(15,25,50,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  max-width: 360px; width: 100%;
  display: flex; align-items: center; gap: 0.75rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  pointer-events: all;
  animation: toastIn 0.35s var(--ease-out) forwards;
}
.nv-toast.removing { animation: toastOut 0.3s var(--ease) forwards; }
.nv-toast--success { border-left: 3px solid var(--color-success); }
.nv-toast--error   { border-left: 3px solid var(--color-danger); }
.nv-toast--info    { border-left: 3px solid var(--color-info); }

/* ── Tables ─────────────────────────────────────────────────── */
.nv-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
.nv-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.875rem;
}
.nv-table thead th {
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1rem 1.25rem; text-align: left;
  border-bottom: 1px solid var(--border);
}
.nv-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast);
}
.nv-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.nv-table tbody td {
  padding: 1rem 1.25rem; color: var(--text-secondary);
  vertical-align: middle;
}
.nv-table tbody td:first-child { color: var(--text-primary); }

/* ── Ticker Bar ─────────────────────────────────────────────── */
.nv-ticker {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0; overflow: hidden;
  position: relative;
}
.nv-ticker-track {
  display: flex; gap: 3rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.nv-ticker-item {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-mono); font-size: 0.8rem;
}
.nv-ticker-symbol { color: var(--text-primary); font-weight: 600; }
.nv-ticker-price  { color: var(--text-muted); }
.nv-ticker-change.up   { color: var(--color-success); }
.nv-ticker-change.down { color: var(--color-danger); }
.nv-ticker-sep { color: var(--text-muted); }

/* ── Header ─────────────────────────────────────────────────── */
.nv-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4,7,15,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nv-header__inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  height: 54px;
}
.nv-logo {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800;
  color: var(--text-primary);
  display: flex; align-items: center; gap: 0.4rem;
  flex-shrink: 0;
}
.nv-logo-mark {
  width: 27px; height: 27px;
  background: linear-gradient(135deg, var(--accent), #d97706);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.nv-nav { display: flex; align-items: center; gap: 0.25rem; flex: 1; }
.nv-nav a {
  font-family: var(--font-display);
  font-size: 0.775rem; font-weight: 600;
  color: var(--text-secondary);
  padding: 0.35rem 0.7rem; border-radius: var(--radius-md);
  transition: all var(--t-fast);
}
.nv-nav a:hover, .nv-nav a.active { color: var(--text-primary); background: var(--bg-glass); }
.nv-header-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }

.nv-notif-btn {
  position: relative;
  background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.5rem;
  cursor: pointer; color: var(--text-secondary);
  transition: all var(--t-fast);
  display: flex; align-items: center; font-size: 1.1rem;
}
.nv-notif-btn:hover { color: var(--text-primary); border-color: var(--border-glow); }
.nv-notif-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--color-danger);
  color: #fff; font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg-void);
}

/* ── Hero Section ───────────────────────────────────────────── */
.nv-hero {
  min-height: 92vh; display: flex; align-items: center;
  padding: 6rem 0 4rem; position: relative; overflow: hidden;
}
.nv-hero__content { position: relative; z-index: 1; }
.nv-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.nv-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--accent); letter-spacing: 0.1em;
  background: var(--accent-dim); border: 1px solid rgba(245,158,11,0.2);
  padding: 0.35rem 0.875rem; border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.nv-hero__title { margin-bottom: 1.5rem; }
.nv-hero__title em { font-style: normal; color: var(--accent); }
.nv-hero__sub {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7;
}
.nv-hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.nv-hero-visual {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
}
.nv-hero-card-wallets {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem;
}
.nv-hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.nv-hero-orb--1 { width: 400px; height: 400px; background: rgba(59,130,246,0.12); top: -100px; right: -100px; }
.nv-hero-orb--2 { width: 300px; height: 300px; background: rgba(245,158,11,0.08); bottom: -100px; left: 50%; }

/* ── Section Styles ─────────────────────────────────────────── */
.nv-section { padding: 6rem 0; }
.nv-section--sm { padding: 4rem 0; }
.nv-section-header { margin-bottom: 3rem; }
.nv-section-eyebrow {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.75rem; display: block;
}

/* ── Stats Strip ────────────────────────────────────────────── */
.nv-stats-strip {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem; text-align: center;
}
.nv-stat-item h3 {
  font-family: var(--font-mono); font-size: 2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nv-stat-item p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── Partners ───────────────────────────────────────────────── */
.nv-partners {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.nv-partner-item {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--text-muted); opacity: 0.5;
  transition: opacity var(--t-normal), color var(--t-normal);
  letter-spacing: 0.05em;
}
.nv-partner-item:hover { opacity: 1; color: var(--text-primary); }

/* ── Footer ─────────────────────────────────────────────────── */
.nv-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.nv-footer-grid { display: grid; grid-template-columns: 2fr 2fr 1fr; gap: 3rem; margin-bottom: 3rem; }
/* Quick Links + Investment Plans side-by-side */
.nv-footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
/* Legal: inline pill list */
.nv-footer-legal__list { display: flex; flex-wrap: wrap; gap: 0.4rem 0.75rem; list-style: none; }
.nv-footer-legal__list li { margin-bottom: 0; }
.nv-footer-legal__list a { font-size: 0.8rem; color: var(--text-muted); transition: color var(--t-fast); }
.nv-footer-legal__list a:hover { color: var(--accent); }
.nv-footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 1rem; line-height: 1.7; }
.nv-footer-col h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.nv-footer-col ul { list-style: none; }
.nv-footer-col li { margin-bottom: 0.6rem; }
.nv-footer-col a { color: var(--text-muted); font-size: 0.875rem; transition: color var(--t-fast); }
.nv-footer-col a:hover { color: var(--accent); }
.nv-footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: var(--text-muted);
}
.nv-risk-banner {
  background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius-md); padding: 0.875rem 1.25rem;
  font-size: 0.8rem; color: var(--color-danger);
  line-height: 1.6; margin-bottom: 2rem;
}

/* ── WhatsApp Floating Button ───────────────────────────────── */
.nv-whatsapp-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--t-normal) var(--ease);
  animation: float 3s ease-in-out infinite;
}
.nv-whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.nv-whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ── Notification Dropdown ──────────────────────────────────── */
.nv-notif-dropdown {
  position: absolute; top: calc(100% + 0.75rem); right: 0;
  width: 360px; max-height: 480px; overflow-y: auto;
  background: rgba(12,19,34,0.96); backdrop-filter: blur(24px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none; z-index: 200;
}
.nv-notif-dropdown.open { display: block; animation: fadeSlideDown 0.2s var(--ease-out); }
.nv-notif-header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 0.875rem; }
.nv-notif-item {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background var(--t-fast);
}
.nv-notif-item:hover { background: var(--bg-glass); }
.nv-notif-item.unread { border-left: 3px solid var(--accent); }
.nv-notif-item__title { font-size: 0.875rem; font-weight: 600; }
.nv-notif-item__msg   { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }
.nv-notif-item__time  { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nv-footer-grid { grid-template-columns: 1fr 1fr; }
  .nv-footer-links-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nv-nav { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nv-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nv-footer-links-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .nv-footer-legal__list { gap: 0.35rem 0.6rem; }
  .nv-hero { padding: 4rem 0; min-height: auto; }
  .nv-hero__sub { font-size: 0.95rem; }
  .nv-section { padding: 3.5rem 0; }
  .card { padding: 1.125rem; }
  .nv-header__inner { height: 60px; }
  .nv-notif-dropdown { width: min(360px, 95vw); right: -0.5rem; }
  /* Hero stacks to single column */
  .nv-hero-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .nv-hero-visual { display: none; }
  .nv-how-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .grid-3 { grid-template-columns: 1fr; }
  .nv-transparency-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .nv-footer-links-grid { grid-template-columns: 1fr 1fr; }
  .nv-footer-grid { grid-template-columns: 1fr; }
  .btn--lg { padding: 0.875rem 1.5rem; }
  .nv-logo { font-size: 1.2rem; }
  .nv-header-actions .btn--sm { padding: 0.4rem 0.875rem; font-size: 0.78rem; }
  .nv-transparency-grid { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .nv-header__inner { padding: 0 0.875rem; }
  .nv-logo-mark { width: 30px; height: 30px; font-size: 0.875rem; }
}

/* ============================================================
   SHARED COMPONENTS — loaded on ALL pages (homepage + dashboard)
   Plan cards, badges, testimonials, FAQ, progress bar
   ============================================================ */

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.28rem 0.65rem; border-radius: var(--radius-full);
}
.badge::before { content: '\25CF'; font-size: 0.45rem; line-height: 1; }
.badge--success    { background: rgba(16,185,129,0.15);  color: #10b981; }
.badge--warning    { background: rgba(245,158,11,0.15);  color: #f59e0b; }
.badge--danger     { background: rgba(239,68,68,0.15);   color: #ef4444; }
.badge--info       { background: rgba(59,130,246,0.15);  color: #3b82f6; }
.badge--primary    { background: rgba(139,92,246,0.15);  color: #8b5cf6; }
.badge--secondary  { background: rgba(255,255,255,0.06); color: #4a5a7a; }
.badge--low        { background: rgba(16,185,129,0.12);  color: #10b981; }
.badge--low-medium { background: rgba(59,130,246,0.12);  color: #3b82f6; }
.badge--medium     { background: rgba(245,158,11,0.12);  color: #f59e0b; }
.badge--medium-high{ background: rgba(245,100,11,0.12);  color: #f97316; }
.badge--high       { background: rgba(239,68,68,0.12);   color: #ef4444; }

/* ── Progress Bar ───────────────────────────────────────────── */
.progress-track {
  background: rgba(255,255,255,0.06);
  border-radius: 999px; height: 6px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: width 1s cubic-bezier(0,0,0.2,1);
  position: relative;
}
.progress-fill::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 6px; background: rgba(255,255,255,0.5);
  border-radius: 999px; filter: blur(2px);
  pointer-events: none;
}

/* ── Investment Plan Cards (homepage + dashboard) ───────────── */
.nv-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.nv-plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.75rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
  transition: transform 250ms cubic-bezier(0.4,0,0.2,1),
              box-shadow 250ms cubic-bezier(0.4,0,0.2,1),
              border-color 250ms cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.nv-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  border-color: var(--border-glow);
}
.nv-plan-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--plan-color, var(--accent));
  pointer-events: none;
}
.nv-plan-card__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.125rem;
}
.nv-plan-icon {
  font-size: 2rem; width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
}
.nv-plan-name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
  color: var(--text-primary); margin-bottom: 0.25rem;
}
.nv-plan-amount {
  font-family: 'JetBrains Mono', monospace; font-size: 1.5rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.5rem;
}
.nv-plan-desc {
  font-size: 0.85rem; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 1.125rem;
  flex: 1;
}
.nv-plan-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  margin-bottom: 1.125rem; padding: 0.875rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.nv-plan-meta-item {}
.nv-plan-meta-item--full {
  grid-column: 1 / -1;
  padding-top: 0.625rem;
  border-top: 1px solid var(--border);
  margin-top: 0.125rem;
}
.nv-plan-meta-label {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted);
}
.nv-plan-meta-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem; font-weight: 600;
  color: var(--text-primary); margin-top: 0.2rem;
}
.nv-plan-meta-value--accent {
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: baseline; gap: 0.45rem;
  flex-wrap: wrap;
}
.nv-plan-meta-pct {
  font-size: 0.72rem; font-weight: 600;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}
.nv-plan-return {
  display: flex; align-items: flex-start; gap: 0.5rem;
  padding: 0.6rem 0.875rem; border-radius: 10px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.18);
  margin-bottom: 1.125rem;
  font-size: 0.8rem; color: #10b981; line-height: 1.45;
}
.nv-plan-disclaimer {
  font-size: 0.7rem; color: var(--text-muted);
  font-style: italic; margin-bottom: 1.125rem; line-height: 1.45;
}

/* ── Testimonial Cards ──────────────────────────────────────── */
.nv-testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 250ms, transform 250ms;
  display: flex; flex-direction: column;
}
.nv-testimonial-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}
.nv-testimonial-text {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--text-secondary); margin-bottom: 1.5rem;
  font-style: italic; flex: 1;
  position: relative; padding-left: 1.5rem;
}
.nv-testimonial-text::before {
  content: '\201C';
  position: absolute; left: 0; top: -0.25rem;
  font-size: 2.5rem; color: var(--accent);
  font-style: normal; line-height: 1;
  font-family: var(--font-display);
}
.nv-testimonial-author {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.nv-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-4));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; color: #000; flex-shrink: 0;
  font-family: var(--font-display);
}
.nv-testimonial-name {
  font-weight: 700; font-size: 0.9rem; color: var(--text-primary);
}
.nv-testimonial-role {
  font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.nv-faq-item {
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  margin-bottom: 0.875rem;
  transition: border-color 200ms;
}
.nv-faq-item.open { border-color: var(--border-glow); }
.nv-faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; cursor: pointer;
  font-weight: 600; font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-glass);
  transition: background 150ms;
  user-select: none;
}
.nv-faq-question:hover { background: var(--bg-glass-2); }
.nv-faq-icon {
  font-size: 1.1rem; color: var(--accent);
  transition: transform 350ms cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0; margin-left: 1rem;
}
.nv-faq-item.open .nv-faq-icon { transform: rotate(45deg); }
.nv-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 400ms cubic-bezier(0,0,0.2,1),
              padding 250ms;
  padding: 0 1.5rem;
}
.nv-faq-item.open .nv-faq-answer {
  max-height: 600px;
  padding: 1.25rem 1.5rem;
}
.nv-faq-answer p {
  font-size: 0.9rem; line-height: 1.75;
  color: var(--text-secondary); margin: 0;
}
.nv-faq-answer p strong { color: var(--text-primary); }

/* ── Responsive — shared components ────────────────────────── */
@media (max-width: 768px) {
  .nv-plans-grid { grid-template-columns: 1fr; gap: 1.125rem; }
  .nv-plan-card { padding: 1.375rem; }
  .nv-plan-name { font-size: 1.1rem; }
  .nv-plan-amount { font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .nv-plans-grid { grid-template-columns: 1fr; }
  .nv-testimonial-card { padding: 1.5rem; }
  .nv-faq-question { padding: 1rem 1.125rem; font-size: 0.875rem; }
  .nv-faq-item.open .nv-faq-answer { padding: 1rem 1.125rem; }
}

/* ═══════════════════════════════════════════════════════════════
   AUTH PAGES  (login.php / register.php)
   ═══════════════════════════════════════════════════════════════ */

/* Two-column layout wrapper */
.nv-auth-wrap {
  display: flex;
  min-height: calc(100vh - 44px); /* subtract ticker height */
  background: var(--bg-deep);
}

/* ── Left decorative panel ─────────────────────────────────── */
.nv-auth-side {
  display: none; /* hidden on mobile */
  flex: 0 0 480px;
  background: linear-gradient(160deg, #0c1a3a 0%, #080d1a 60%, #04070f 100%);
  border-right: 1px solid var(--border);
  padding: 3rem 3rem 3rem 3rem;
  position: relative;
  overflow: hidden;
}

/* Radial glow behind side panel */
.nv-auth-side::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.nv-auth-side::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.nv-auth-side__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; height: 100%;
}

.nv-auth-side__logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-display); font-size: 1.375rem; font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.nv-auth-side__headline {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 800; line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.nv-auth-side__sub {
  font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Stats row on left panel */
.nv-auth-stats {
  display: flex; gap: 2rem; margin-bottom: 2.5rem;
}
.nv-auth-stat__value {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--accent);
}
.nv-auth-stat__label {
  font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* Plan badges on login left panel */
.nv-auth-badges {
  display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto;
}
.nv-auth-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.875rem; border-radius: 999px;
  font-size: 0.8125rem; font-weight: 600;
  border: 1px solid transparent;
  width: fit-content;
}
.nv-auth-badge--green  { background:rgba(16,185,129,0.1);  border-color:rgba(16,185,129,0.25);  color:#6ee7b7; }
.nv-auth-badge--blue   { background:rgba(59,130,246,0.1);  border-color:rgba(59,130,246,0.25);  color:#93c5fd; }
.nv-auth-badge--purple { background:rgba(139,92,246,0.1);  border-color:rgba(139,92,246,0.25);  color:#c4b5fd; }
.nv-auth-badge--gold   { background:rgba(245,158,11,0.1);  border-color:rgba(245,158,11,0.25);  color:#fcd34d; }
.nv-auth-badge--red    { background:rgba(239,68,68,0.1);   border-color:rgba(239,68,68,0.25);   color:#fca5a5; }

/* Benefits list on register left panel */
.nv-auth-benefits {
  list-style: none; padding: 0; margin: 0 0 2.5rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.nv-auth-benefits li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5;
}
.nv-auth-check {
  color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ── Right: form panel ─────────────────────────────────────── */
.nv-auth-main {
  flex: 1; display: flex; align-items: flex-start; justify-content: center;
  padding: 3rem 1.5rem;
  overflow-y: auto;
}

.nv-auth-box {
  width: 100%; max-width: 480px;
}

/* Mobile logo (only visible when side panel is hidden) */
.nv-auth-mobile-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
  color: var(--text-primary); margin-bottom: 2rem; text-decoration: none;
}

.nv-auth-title {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 800;
  color: var(--text-primary); margin-bottom: 0.375rem;
}

.nv-auth-subtitle {
  font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 2rem;
}

.nv-auth-form { width: 100%; }

/* Two-column input row (name, password) */
.nv-auth-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem;
}

/* Password field with toggle icon */
.nv-auth-pw-wrap {
  position: relative;
}
.nv-auth-pw-wrap .form-control {
  padding-right: 2.75rem;
}
.nv-pw-toggle {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 0; display: flex; align-items: center;
  transition: color var(--t-fast);
}
.nv-pw-toggle:hover { color: var(--text-primary); }
.nv-pw-icon { width: 18px; height: 18px; }

/* Password strength bar */
.nv-pw-strength { display: flex; align-items: center; gap: 0.75rem; }
.nv-pw-strength__bar {
  flex: 1; height: 4px; background: var(--bg-glass-2);
  border-radius: 99px; overflow: hidden;
}
.nv-pw-strength__fill {
  height: 100%; width: 0; transition: width 0.3s ease, background 0.3s ease;
  border-radius: 99px;
}
.nv-pw-strength__label { font-size: 0.75rem; font-weight: 600; min-width: 72px; }

/* Submit button adjustments */
.nv-auth-submit {
  margin-top: 0.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.nv-auth-spinner {
  display: inline-flex; align-items: center; justify-content: center;
}

/* Hint text below inputs */
.nv-auth-hint {
  display: block; margin-top: 0.375rem;
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.4;
}

/* Optional label badge */
.nv-auth-optional {
  font-size: 0.75rem; color: var(--text-muted);
  font-weight: 400; margin-left: 0.25rem;
}

/* Footer switch line */
.nv-auth-switch {
  margin-top: 1.5rem; text-align: center;
  font-size: 0.875rem; color: var(--text-muted);
}
.nv-auth-link {
  color: var(--accent); text-decoration: none; font-weight: 600;
  transition: opacity var(--t-fast);
}
.nv-auth-link:hover { opacity: 0.8; }

/* ── Responsive ────────────────────────────────────────────── */
@media (min-width: 900px) {
  .nv-auth-side { display: flex; flex-direction: column; }
  .nv-auth-mobile-logo { display: none; }
  .nv-auth-main { align-items: center; padding: 3rem 4rem; }
}

@media (max-width: 540px) {
  .nv-auth-row { grid-template-columns: 1fr; gap: 0; }
  .nv-auth-main { padding: 2rem 1.25rem; }
  .nv-auth-title { font-size: 1.5rem; }
}


/* ============================================================
   AUTH ENHANCEMENTS — login, register, forgot-password
   ============================================================ */

/* Header row with icon badge */
.nv-auth-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
}
.nv-auth-lock-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  opacity: 0.5;
}
.nv-auth-lock-icon--unlock { color: var(--accent); opacity: 0.9; }
.nv-auth-step-badge {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.8;
}

/* Alert with inline icon */
.nv-alert--icon {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.nv-alert__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 1px;
}

/* Label with icon */
.nv-label-icon {
  margin-right: 0.375rem;
  vertical-align: -2px;
  opacity: 0.7;
}

/* Label row (label + forgot link) */
.nv-auth-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.nv-auth-label-row .form-label { margin: 0; }
.nv-auth-link--sm { font-size: 0.8rem; }

/* Input border-error state */
.nv-input--error {
  border-color: rgba(239,68,68,0.5) !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.08) !important;
}
.nv-auth-input { transition: border-color var(--t-normal), box-shadow var(--t-normal); }
.nv-auth-input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-dim) !important;
}

/* Custom checkbox */
.nv-auth-remember-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.nv-auth-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-secondary);
  user-select: none;
}
.nv-auth-checkbox { display: none; }
.nv-auth-checkmark {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1.5px solid var(--border-glow);
  border-radius: 4px;
  background: var(--bg-glass);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast);
  position: relative;
}
.nv-auth-checkbox:checked ~ .nv-auth-checkmark {
  background: var(--accent);
  border-color: var(--accent);
}
.nv-auth-checkbox:checked ~ .nv-auth-checkmark::after {
  content: '';
  width: 5px; height: 9px;
  border: 2px solid #000;
  border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  display: block;
}

/* Submit button with icon */
.nv-auth-btn-icon {
  display: flex;
  align-items: center;
  opacity: 0.85;
}

/* Divider */
.nv-auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.nv-auth-divider::before,
.nv-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Security note */
.nv-auth-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.nv-auth-secure svg { flex-shrink: 0; opacity: 0.6; }

/* ── Multi-step registration ── */
.nv-auth-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}
.nv-auth-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}
.nv-auth-step__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-glass);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-muted);
  transition: all var(--t-normal);
  flex-shrink: 0;
}
.nv-auth-step--active .nv-auth-step__num {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.nv-auth-step--done .nv-auth-step__num {
  background: rgba(16,185,129,0.2);
  border-color: var(--color-success);
  color: var(--color-success);
}
.nv-auth-step__lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.nv-auth-step--active .nv-auth-step__lbl,
.nv-auth-step--done   .nv-auth-step__lbl { color: var(--text-primary); }
.nv-auth-step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 0.625rem;
  min-width: 20px;
}

.nv-reg-step { width: 100%; }
.nv-reg-btn-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* ── Forgot password page ── */
.nv-auth-success-state { text-align: center; padding: 1rem 0; }
.nv-auth-success-icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--bg-glass-2);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.nv-auth-success-icon--green { color: var(--color-success); }
.nv-auth-tips {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: 1rem;
  text-align: left;
}
.nv-auth-tip {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.875rem; color: var(--text-secondary);
  padding: 0.75rem 1rem;
  background: var(--bg-glass);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.nv-auth-tip svg { flex-shrink:0; color: var(--accent); margin-top: 2px; }

/* Forgot-password left panel steps */
.nv-auth-recovery-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}
.nv-rec-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 0;
}
.nv-rec-step__dot {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-glass);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-muted);
  transition: all var(--t-normal);
}
.nv-rec-step--active .nv-rec-step__dot {
  background: var(--accent); border-color: var(--accent); color: #000;
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.nv-rec-step--done .nv-rec-step__dot {
  background: rgba(16,185,129,0.2); border-color: var(--color-success); color: var(--color-success);
}
.nv-rec-step__connector {
  width: 1.5px; height: 24px;
  background: var(--border);
  margin-left: 15px;
}
.nv-rec-step__title { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.nv-rec-step--active .nv-rec-step__title { color: var(--accent); }
.nv-rec-step__desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.125rem; }

/* Password match indicator */
.nv-pw-match-status--ok    { color: var(--color-success); }
.nv-pw-match-status--error { color: var(--color-danger); }

/* ============================================================
   PROFILE EDITOR — in-site (dashboard profile tab)
   ============================================================ */

.nv-profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .nv-profile-layout { grid-template-columns: 1fr; }
}

/* ── ID Card (left sidebar) ── */
.nv-profile-id-card {
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
}
.nv-profile-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.nv-profile-avatar--lg {
  width: 80px; height: 80px;
  font-size: 1.75rem !important;
  border-radius: 50% !important;
}
.nv-profile-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.nv-profile-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.nv-profile-username {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.nv-profile-since {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.nv-profile-ref-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.875rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.nv-profile-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.nv-profile-stat-item {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  text-align: center;
}
.nv-profile-stat-item--full {
  grid-column: 1 / -1;
}
.nv-profile-stat-value {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.nv-profile-stat-value--green { color: var(--color-success); }
.nv-profile-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nv-profile-logout-btn {
  font-size: 0.875rem;
}

/* ── Edit forms (right side) ── */
.nv-profile-forms {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.nv-profile-section {
  padding: 1.75rem;
}
.nv-profile-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.nv-profile-section-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  border: 1px solid var(--border-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.nv-profile-section-icon--blue {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.25);
  color: var(--accent-2);
}
.nv-profile-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem;
}
.nv-profile-section-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.nv-profile-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
@media (max-width: 540px) {
  .nv-profile-form-grid { grid-template-columns: 1fr; }
}
.nv-profile-input-wrap {
  position: relative;
}
.nv-profile-input-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.nv-profile-input-padded { padding-left: 2.5rem; }
.nv-profile-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.nv-profile-save-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 160px;
  justify-content: center;
}
.nv-btn-spinner { display: inline-flex; align-items: center; }

/* Textarea in profile */
.nv-profile-form .form-control[rows] {
  resize: vertical;
  min-height: 80px;
}



/* ============================================================
   DASHBOARD HEADER — polished greeting + inline notifications
   ============================================================ */

.nv-dash-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, rgba(15,25,50,0.7) 0%, rgba(8,13,26,0.8) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

/* Subtle glow behind header */
.nv-dash-header::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.nv-dash-header::after {
  content: '';
  position: absolute;
  bottom: -40px; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.nv-dash-greeting {
  position: relative; z-index: 1;
}
.nv-dash-greeting__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Sidebar toggle — icon version */
.nv-sidebar-toggle {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  flex-shrink: 0;
  margin-top: 2px;
}
.nv-sidebar-toggle:hover {
  color: var(--text-primary);
  border-color: var(--border-glow);
  background: var(--bg-glass-2);
}

.nv-dash-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

/* Override the old title/subtitle to fit the new card context */
.nv-dash-header .nv-dash-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin: 0 0 0.25rem;
}
.nv-dash-header .nv-dash-subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.nv-dash-username {
  color: var(--accent);
  font-weight: 700;
}
.nv-dash-wave {
  display: inline-block;
  animation: nv-wave 2.5s ease-in-out infinite;
  transform-origin: 70% 70%;
  font-style: normal;
}
@keyframes nv-wave {
  0%,100% { transform: rotate(0deg); }
  15%      { transform: rotate(14deg); }
  30%      { transform: rotate(-8deg); }
  45%      { transform: rotate(14deg); }
  60%      { transform: rotate(-4deg); }
  75%      { transform: rotate(10deg); }
}

/* Right side header actions */
.nv-dash-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

/* Notification button — redesigned */
.nv-notif-wrap {
  position: relative;
}
.nv-notif-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
  position: relative;
}
.nv-notif-btn:hover,
.nv-notif-btn[aria-expanded="true"] {
  color: var(--text-primary);
  border-color: var(--border-glow);
  background: var(--bg-glass-2);
}
.nv-notif-count {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 18px; height: 18px;
  background: var(--accent);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg-base);
  line-height: 1;
}

/* Notification dropdown — repositioned to be inline under header */
.nv-notif-dropdown {
  position: absolute;
  top: calc(100% + 0.625rem);
  right: 0;
  width: 360px;
  max-height: 440px;
  overflow-y: auto;
  background: rgba(10,16,30,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 400;
}
.nv-notif-dropdown.open {
  display: block;
  animation: fadeSlideDown 0.2s var(--ease-out);
}
.nv-notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.nv-notif-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: color var(--t-fast);
}
.nv-notif-close:hover { color: var(--text-primary); }
.nv-notif-item {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--t-fast);
}
.nv-notif-item:last-child { border-bottom: none; }
.nv-notif-item:hover { background: var(--bg-glass); }
.nv-notif-item.unread { border-left: 3px solid var(--accent); }
.nv-notif-item__title { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.nv-notif-item__msg   { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; line-height: 1.4; }
.nv-notif-item__time  { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.3rem; }

/* Header CTA button */
.nv-header-cta {
  white-space: nowrap;
}

/* Header avatar bubble */
.nv-header-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 2px solid transparent;
  color: #000;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}
.nv-header-avatar:hover {
  box-shadow: 0 0 0 3px var(--accent-dim);
  transform: scale(1.05);
}

/* Responsive header */
@media (max-width: 768px) {
  .nv-dash-header { padding: 1.25rem; border-radius: var(--radius-lg); margin-bottom: 1.25rem; }
  .nv-dash-header .nv-dash-title { font-size: 1.25rem; }
  .nv-header-cta { display: none; }
  .nv-notif-dropdown { width: min(340px, 92vw); right: -0.5rem; }
}
@media (max-width: 480px) {
  .nv-dash-greeting__top { gap: 0.625rem; }
  .nv-dash-date { display: none; }
}



/* ============================================================
   SUPPORT TICKET PANEL — full redesign
   ============================================================ */

/* Hero bar */
.nv-sp-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(15,25,55,0.9) 0%, rgba(8,13,26,0.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.nv-sp-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(245,158,11,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 20%, rgba(59,130,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.nv-sp-hero__content {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nv-sp-hero__left {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}
.nv-sp-hero__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  border: 1px solid var(--border-glow);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nv-sp-hero__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 0.25rem;
}
.nv-sp-hero__sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
.nv-sp-hero__sub strong { color: var(--accent); font-weight: 700; }

/* Stats strip */
.nv-sp-hero__stats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.nv-sp-hs {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.625rem 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 64px;
  text-align: center;
}
.nv-sp-hs--warn    { border-color: rgba(245,158,11,0.2); background: rgba(245,158,11,0.06); }
.nv-sp-hs--success { border-color: rgba(16,185,129,0.2); background: rgba(16,185,129,0.06); }
.nv-sp-hs--blue    { border-color: rgba(59,130,246,0.2);  background: rgba(59,130,246,0.06); }
.nv-sp-hs__val {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.nv-sp-hs--warn    .nv-sp-hs__val { color: var(--color-warning); }
.nv-sp-hs--success .nv-sp-hs__val { color: var(--color-success); }
.nv-sp-hs--blue    .nv-sp-hs__val { color: var(--color-info); }
.nv-sp-hs__lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.25rem;
  white-space: nowrap;
}

/* 2-col layout */
.nv-sp-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .nv-sp-layout { grid-template-columns: 1fr; }
}

.nv-sp-left {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

/* Compose / new ticket card */
.nv-sp-compose {
  padding: 0;
  overflow: hidden;
  transition: box-shadow var(--t-normal);
}
.nv-sp-compose.open { box-shadow: 0 0 0 2px var(--accent-dim), var(--shadow-md); }
.nv-sp-compose__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background var(--t-fast);
}
.nv-sp-compose__trigger:hover { background: var(--bg-glass); }
.nv-sp-compose__trigger-left { display: flex; align-items: center; gap: 0.875rem; }
.nv-sp-compose__plus {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  border: 1px solid var(--border-glow);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.nv-sp-compose.open .nv-sp-compose__plus {
  background: var(--accent);
  color: #000;
}
.nv-sp-compose__label { font-weight: 700; font-size: 0.9375rem; color: var(--text-primary); }
.nv-sp-compose__hint  { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.1rem; }
.nv-sp-compose__chevron {
  color: var(--text-muted);
  transition: transform var(--t-normal) var(--ease);
  flex-shrink: 0;
}
.nv-sp-compose.open .nv-sp-compose__chevron { transform: rotate(180deg); }
.nv-sp-compose__form {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms cubic-bezier(0,0,0.2,1);
}
.nv-sp-compose.open .nv-sp-compose__form { max-height: 900px; }

.nv-sp-compose__form form {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}
.nv-sp-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.nv-sp-select-wrap {
  position: relative;
}
.nv-sp-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem !important;
  cursor: pointer;
}
.nv-sp-select-arrow {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.nv-sp-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.nv-sp-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.nv-sp-submit {
  min-width: 140px;
  justify-content: center;
}

/* Ticket list card */
.nv-sp-ticket-list-card { padding: 0; overflow: hidden; }
.nv-sp-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 0.75rem;
  flex-wrap: wrap;
}
.nv-sp-list-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.nv-sp-list-title svg { color: var(--text-muted); }
.nv-sp-list-filters {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.nv-sp-filter-pill {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.nv-sp-filter-pill:hover { color: var(--text-primary); border-color: var(--border-glow); }
.nv-sp-filter-pill.active {
  background: var(--accent-dim);
  border-color: var(--border-glow);
  color: var(--accent);
}

/* Empty state */
.nv-sp-empty {
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.nv-sp-empty__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}
.nv-sp-empty h4 { font-size: 1rem; color: var(--text-secondary); margin: 0; }
.nv-sp-empty p  { font-size: 0.875rem; line-height: 1.6; margin: 0; max-width: 260px; }

/* Ticket rows */
.nv-sp-ticket-list { display: flex; flex-direction: column; }
.nv-sp-ticket-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--t-fast);
  position: relative;
}
.nv-sp-ticket-row:last-child { border-bottom: none; }
.nv-sp-ticket-row:hover { background: var(--bg-glass); }
.nv-sp-ticket-row.active { background: var(--bg-glass-2); }
.nv-sp-ticket-row.nv-sp-hidden { display: none; }

.nv-sp-ticket-row__indicator {
  width: 4px;
  align-self: stretch;
  border-radius: 2px;
  flex-shrink: 0;
  min-height: 36px;
}
.nv-sp-ticket-row__body { flex: 1; min-width: 0; }
.nv-sp-ticket-row__top {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
.nv-sp-ticket-row__id {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.nv-sp-ticket-row__subject {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nv-sp-ticket-row__bottom {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.nv-sp-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  border: 1px solid;
  letter-spacing: 0.02em;
}
.nv-sp-ticket-row__date {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: auto;
}
.nv-sp-ticket-row__arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--t-fast), color var(--t-fast);
}
.nv-sp-ticket-row:hover .nv-sp-ticket-row__arrow,
.nv-sp-ticket-row.active .nv-sp-ticket-row__arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* WhatsApp card */
.nv-sp-wa { padding: 1.25rem 1.5rem; }
.nv-sp-wa__inner {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}
.nv-sp-wa__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nv-sp-wa__text {
  display: flex; flex-direction: column;
  font-size: 0.875rem;
}
.nv-sp-wa__text strong { color: var(--text-primary); font-weight: 700; }
.nv-sp-wa__text span   { color: var(--text-muted); font-size: 0.8rem; }
.nv-sp-wa__btn {
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700;
}
.nv-sp-wa__btn:hover { background: #1daa54 !important; }

/* Thread viewer card */
.nv-sp-right { position: sticky; top: 1.5rem; }
.nv-sp-thread {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
}
.nv-sp-thread__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Thread empty */
.nv-sp-thread__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 0.75rem;
  flex: 1;
}
.nv-sp-thread__empty-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}
.nv-sp-thread__empty h4 { font-size: 1.0625rem; font-weight: 700; color: var(--text-secondary); margin: 0; }
.nv-sp-thread__empty p  { font-size: 0.875rem; color: var(--text-muted); margin: 0; max-width: 280px; line-height: 1.65; }
.nv-sp-thread__empty-tips {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.nv-sp-thread__tip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.875rem;
}
.nv-sp-thread__tip svg { color: var(--accent); flex-shrink: 0; }

/* Thread header */
.nv-sp-thread__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--bg-glass) 0%, transparent 100%);
}
.nv-sp-thread__header-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nv-sp-thread__header-id {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}
.nv-sp-thread__header-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Thread messages */
.nv-sp-thread__messages {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  overflow-y: auto;
  max-height: 380px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.nv-sp-thread__messages::-webkit-scrollbar { width: 4px; }
.nv-sp-thread__messages::-webkit-scrollbar-track { background: transparent; }
.nv-sp-thread__messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Message bubbles */
.nv-sp-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.nv-sp-msg--admin { flex-direction: row-reverse; }

.nv-sp-msg__av {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.nv-sp-msg--user  .nv-sp-msg__av { background: linear-gradient(135deg, var(--accent), #f97316); color: #000; }
.nv-sp-msg--admin .nv-sp-msg__av { background: linear-gradient(135deg, var(--accent-4), var(--accent-2)); color: #fff; }

.nv-sp-msg__wrap { display: flex; flex-direction: column; max-width: 78%; }
.nv-sp-msg--admin .nv-sp-msg__wrap { align-items: flex-end; }

.nv-sp-msg__name {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.nv-sp-msg__bubble {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.65;
  word-break: break-word;
}
.nv-sp-msg--user  .nv-sp-msg__bubble {
  background: var(--bg-glass-2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
}
.nv-sp-msg--admin .nv-sp-msg__bubble {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--text-primary);
  border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
}
.nv-sp-msg__time {
  font-size: 0.67rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  padding: 0 0.25rem;
}

/* Reply area */
.nv-sp-thread__reply {
  border-top: 1px solid var(--border);
  background: var(--bg-glass);
  padding: 1rem 1.5rem;
}
.nv-sp-thread__reply-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.nv-sp-thread__reply-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800;
  flex-shrink: 0;
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.nv-sp-thread__reply-input-wrap { flex: 1; }
.nv-sp-thread__reply-textarea {
  resize: none;
  min-height: 64px;
  border-radius: var(--radius-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  margin-bottom: 0.625rem;
}
.nv-sp-thread__reply-textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-dim) !important;
}
.nv-sp-thread__reply-actions {
  display: flex;
  gap: 0.625rem;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 768px) {
  .nv-sp-hero { padding: 1.25rem; border-radius: var(--radius-lg); }
  .nv-sp-hero__title { font-size: 1.0625rem; }
  .nv-sp-hero__stats { gap: 0.375rem; }
  .nv-sp-hs { padding: 0.5rem 0.625rem; min-width: 52px; }
  .nv-sp-right { position: static; }
  .nv-sp-thread { min-height: 360px; }
}
@media (max-width: 480px) {
  .nv-sp-hero__content { flex-direction: column; align-items: flex-start; }
  .nv-sp-compose__trigger, .nv-sp-ticket-row { padding-left: 1.125rem; padding-right: 1.125rem; }
}


/* ============================================================
   FAQ PAGE — full redesign, sidebar + accordion
   ============================================================ */

/* Hero */
.nv-faq-hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 100%);
  border-bottom: 1px solid var(--border);
}
.nv-faq-hero__orbs {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.nv-faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.nv-faq-orb--gold   { width:420px; height:420px; background:radial-gradient(circle, rgba(245,158,11,0.18), transparent 70%); top:-120px; left:-80px; }
.nv-faq-orb--blue   { width:300px; height:300px; background:radial-gradient(circle, rgba(59,130,246,0.14), transparent 70%);  top:20px;  right:-40px; }
.nv-faq-orb--purple { width:250px; height:250px; background:radial-gradient(circle, rgba(139,92,246,0.1), transparent 70%);  bottom:0;  left:40%; }

.nv-faq-hero__grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  pointer-events: none;
}

.nv-faq-hero__inner {
  position: relative; z-index: 1;
  text-align: center;
}

/* Breadcrumb */
.nv-faq-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.nv-faq-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color var(--t-fast); }
.nv-faq-breadcrumb a:hover { color: var(--accent); }
.nv-faq-breadcrumb span { color: var(--text-secondary); }

/* Badge */
.nv-faq-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  background: var(--accent-dim);
  border: 1px solid var(--border-glow);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.375rem;
}

/* Hero title */
.nv-faq-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.nv-faq-hero__title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #f97316 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nv-faq-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.nv-faq-hero__link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--accent-glow);
  transition: border-color var(--t-fast);
}
.nv-faq-hero__link:hover { border-color: var(--accent); }

/* Search */
.nv-faq-search-wrap {
  max-width: 560px;
  margin: 0 auto 2rem;
}
.nv-faq-search {
  position: relative;
  display: flex;
  align-items: center;
}
.nv-faq-search__icon {
  position: absolute;
  left: 1.125rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: color var(--t-fast);
}
.nv-faq-search__input {
  width: 100%;
  padding: 1rem 3.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nv-faq-search__input::placeholder { color: var(--text-muted); }
.nv-faq-search__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.nv-faq-search__input:focus + .nv-faq-search__icon,
.nv-faq-search:focus-within .nv-faq-search__icon { color: var(--accent); }
.nv-faq-search__clear {
  position: absolute;
  right: 1.125rem;
  background: var(--bg-glass-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  transition: all var(--t-fast);
}
.nv-faq-search__clear:hover { color: var(--text-primary); background: var(--bg-glass-2); border-color: var(--border-glow); }

/* Category tabs (hero) */
.nv-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.nv-faq-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: var(--font-body);
  white-space: nowrap;
  backdrop-filter: blur(12px);
}
.nv-faq-tab:hover { border-color: var(--border-glow); color: var(--text-primary); }
.nv-faq-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
}
.nv-faq-tab__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.nv-faq-tab__emoji { font-size: 0.9rem; line-height: 1; }
.nv-faq-tab__count {
  background: rgba(0,0,0,0.12);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.1rem 0.45rem;
  line-height: 1.5;
}
.nv-faq-tab.active .nv-faq-tab__count { background: rgba(0,0,0,0.15); }

/* Body layout */
.nv-faq-body { padding: 4rem 0 5rem; }
.nv-faq-body__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 960px) {
  .nv-faq-body__inner { grid-template-columns: 1fr; }
  .nv-faq-sidebar { display: none; }
}

/* No results */
.nv-faq-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 0.75rem;
  grid-column: 1 / -1;
}
.nv-faq-empty.visible { display: flex; }
.nv-faq-empty__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}
.nv-faq-empty h3 { color: var(--text-secondary); font-size: 1.125rem; margin: 0; }
.nv-faq-empty p  { color: var(--text-muted); margin: 0; max-width: 280px; }

/* Sidebar */
.nv-faq-sidebar { position: sticky; top: 2rem; }
.nv-faq-sidebar__inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.nv-faq-sidebar__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 1.25rem 0.5rem;
  margin: 0;
}
.nv-faq-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--t-fast);
  border-left: 2px solid transparent;
}
.nv-faq-sidebar__link:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
  border-left-color: var(--border-glow);
}
.nv-faq-sidebar__link.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-left-color: var(--accent);
  font-weight: 700;
}
.nv-faq-sidebar__icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-fast);
}
.nv-faq-sidebar__count {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--text-muted);
  background: var(--bg-glass-2);
  border-radius: var(--radius-full);
  padding: 0.1rem 0.45rem;
  font-weight: 700;
}
.nv-faq-sidebar__link.active .nv-faq-sidebar__count { color: var(--accent); background: rgba(245,158,11,0.15); }

/* Quick help card inside sidebar */
.nv-faq-help-card {
  margin: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(59,130,246,0.06) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.nv-faq-help-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  border: 1px solid var(--border-glow);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.25rem;
}
.nv-faq-help-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin: 0; }
.nv-faq-help-card p  { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
.nv-faq-wa-btn {
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700;
}
.nv-faq-wa-btn:hover { background: #1daa54 !important; }

/* FAQ category section */
.nv-faq-category { margin-bottom: 3.5rem; }
.nv-faq-category.hidden { display: none; }

/* Category heading */
.nv-faq-cat-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.nv-faq-cat-heading__icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nv-faq-cat-heading__title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
}
.nv-faq-cat-heading__sub { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* Accordion group */
.nv-faq-group { display: flex; flex-direction: column; gap: 0.625rem; }

/* Individual FAQ item — overrides + enhancements */
.nv-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t-normal), box-shadow var(--t-normal);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
}
.nv-faq-item:hover { border-color: rgba(255,255,255,0.1); }
.nv-faq-item.open {
  border-color: var(--border-glow);
  box-shadow: 0 0 0 1px var(--accent-dim), var(--shadow-sm);
}
.nv-faq-item.nv-search-hidden { display: none; }

/* Question button */
.nv-faq-question {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: background var(--t-fast);
  user-select: none;
}
.nv-faq-question:hover { background: var(--bg-glass); }
.nv-faq-item.open .nv-faq-question { background: var(--bg-glass); }

.nv-faq-question__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 24px;
  opacity: 0.8;
}
.nv-faq-question__text { flex: 1; line-height: 1.45; }

.nv-faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: background var(--t-normal), color var(--t-normal), border-color var(--t-normal);
}
.nv-faq-item.open .nv-faq-icon {
  background: var(--accent-dim);
  border-color: var(--border-glow);
  color: var(--accent);
}
.nv-faq-plus-v {
  transition: opacity var(--t-fast);
}
.nv-faq-item.open .nv-faq-plus-v { opacity: 0; }

/* Answer panel */
.nv-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0,0,0.2,1);
}
.nv-faq-item.open .nv-faq-answer { max-height: 800px; }

.nv-faq-answer__inner {
  display: flex;
  gap: 1rem;
  padding: 0 1.25rem 1.25rem;
}
.nv-faq-answer__line {
  width: 3px;
  border-radius: 2px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 20px;
  opacity: 0.7;
}
.nv-faq-answer__inner p {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}
.nv-faq-answer__inner p strong { color: var(--text-primary); font-weight: 600; }

/* Search highlight */
.nv-faq-item mark {
  background: rgba(245,158,11,0.2);
  color: var(--accent);
  border-radius: 2px;
  padding: 0 2px;
}

/* Bottom CTA section */
.nv-faq-cta-section {
  position: relative;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.nv-faq-cta-section__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(245,158,11,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.nv-faq-cta-section__inner { position: relative; z-index: 1; }

.nv-faq-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(15,25,55,0.8) 0%, rgba(8,13,26,0.9) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  backdrop-filter: blur(24px);
  box-shadow: 0 0 0 1px var(--accent-dim), var(--shadow-md);
}
.nv-faq-cta-card__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nv-faq-cta-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  background: var(--accent-dim);
  border: 1px solid var(--border-glow);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nv-faq-cta-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--text-primary); margin: 0 0 0.25rem; }
.nv-faq-cta-card__sub   { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.nv-faq-cta-card__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }

@media (max-width: 768px) {
  .nv-faq-cta-card { flex-direction: column; text-align: center; padding: 1.75rem 1.5rem; }
  .nv-faq-cta-card__left { flex-direction: column; }
  .nv-faq-cta-card__actions { justify-content: center; }
  .nv-faq-hero { padding: 4rem 0 3rem; }
  .nv-faq-hero__title { font-size: 2rem; }
  .nv-faq-tabs { gap: 0.375rem; }
  .nv-faq-tab { font-size: 0.8rem; padding: 0.4rem 0.875rem; }
}
@media (max-width: 480px) {
  .nv-faq-hero { padding: 3rem 0 2.5rem; }
  .nv-faq-body { padding: 2.5rem 0 3rem; }
  .nv-faq-question { font-size: 0.875rem; padding: 1rem; }
  .nv-faq-answer__inner { padding: 0 1rem 1rem; gap: 0.75rem; }
}

