/* ============================================================
   Netpedia v3 — Enterprise Hosting Provider Theme
   GoDaddy-inspired dark theme for FOSSBilling
   ============================================================ */

:root {
  --np-bg: #0a0e1a;
  --np-surface: #111827;
  --np-surface2: #1a2332;
  --np-surface3: #243044;
  --np-border: rgba(255,255,255,0.08);
  --np-border-hover: rgba(6,182,212,0.3);
  --np-text: #e5e7eb;
  --np-muted: #9ca3af;
  --np-cyan: #06b6d4;
  --np-blue: #3b82f6;
  --np-green: #10b981;
  --np-gradient: linear-gradient(135deg, #06b6d4, #3b82f6);
  --np-purple: #8b5cf6;
  --np-amber: #f59e0b;
  --np-radius: 14px;
  --np-transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  --np-navbar-h: 64px;
  --np-subnav-h: 48px;
}

* { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; }
body { background: var(--np-bg) !important; color: var(--np-text) !important; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important; margin: 0; padding: 0; }

/* ===== ENTERPRISE NAVBAR ===== */
.np-navbar {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--np-border);
  height: var(--np-navbar-h);
}
.np-navbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}
.np-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.np-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--np-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.5px;
}
.np-brand-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}
.np-nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  height: 100%;
}
.np-nav-links {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}
.np-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 1rem;
  height: 100%;
  color: var(--np-muted) !important;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  transition: var(--np-transition);
  white-space: nowrap;
  line-height: var(--np-navbar-h);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.np-nav-link:hover, .np-nav-link.active {
  color: #fff !important;
  border-bottom-color: var(--np-cyan);
}
.np-nav-link svg { opacity: 0.5; margin-left: 2px; }
.np-nav-link:hover svg { opacity: 1; }

/* Dropdown */
.np-nav-dropdown { position: relative; height: 100%; display: flex; align-items: center; }
.np-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: var(--np-surface);
  border: 1px solid var(--np-border);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1200;
}
.np-dropdown-right { left: auto; right: 0; }
.np-nav-dropdown.open .np-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.np-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  text-decoration: none !important;
  color: var(--np-text) !important;
  transition: var(--np-transition);
}
.np-dropdown-item:hover {
  background: var(--np-surface2);
  color: #fff !important;
}
.np-dropdown-item strong { display: block; font-size: 0.88rem; color: #fff; font-weight: 600; }
.np-dropdown-item small { display: block; font-size: 0.75rem; color: var(--np-muted); margin-top: 1px; }
.np-dd-icon { font-size: 1.2rem; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(6,182,212,0.08); border-radius: 8px; flex-shrink: 0; }
.np-dropdown-divider { height: 1px; background: var(--np-border); margin: 0.4rem 0; }

/* Auth buttons */
.np-nav-auth {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.np-btn-login {
  color: var(--np-muted) !important;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--np-transition);
}
.np-btn-login:hover { color: #fff !important; background: var(--np-surface2); }
.np-btn-register {
  display: inline-flex;
  align-items: center;
  background: var(--np-gradient);
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none !important;
  padding: 0.5rem 1.4rem;
  border-radius: 9999px;
  transition: var(--np-transition);
  white-space: nowrap;
}
.np-btn-register:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(6,182,212,0.3); }
.np-nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--np-border);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--np-transition);
}
.np-nav-user:hover { border-color: var(--np-border-hover); background: var(--np-surface2); }
.np-avatar { border-radius: 50%; }

/* Mobile toggle */
.np-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.np-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--np-muted);
  border-radius: 2px;
  transition: var(--np-transition);
}

@media (max-width: 991px) {
  .np-mobile-toggle { display: flex; }
  .np-nav-menu {
    display: none;
    position: absolute;
    top: var(--np-navbar-h);
    left: 0;
    right: 0;
    background: var(--np-surface);
    border-bottom: 1px solid var(--np-border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .np-nav-menu.open { display: flex; }
  .np-nav-links { flex-direction: column; height: auto; width: 100%; }
  .np-nav-link { padding: 0.75rem 1rem; height: auto; line-height: 1.4; border-bottom: none; border-radius: 8px; width: 100%; }
  .np-nav-link:hover { background: var(--np-surface2); }
  .np-dropdown-panel { position: static; box-shadow: none; border: none; background: var(--np-surface2); border-radius: 8px; transform: none; padding: 0.25rem; }
  .np-nav-dropdown.open .np-dropdown-panel { margin-top: 0.25rem; }
  .np-nav-auth { width: 100%; padding-top: 0.75rem; border-top: 1px solid var(--np-border); }
  .np-btn-register { flex: 1; text-align: center; justify-content: center; }
  .np-btn-login { flex: 1; text-align: center; }
}

/* ===== MAIN WRAPPER ===== */
.np-main-wrapper {
  min-height: calc(100vh - var(--np-navbar-h));
  display: flex;
  flex-direction: column;
}
.np-main-wrapper > .container { flex: 1; padding-top: 1.5rem; padding-bottom: 2rem; }

/* ===== CONTENT ===== */
.content-block { background: transparent !important; border: none !important; border-radius: 0 !important; padding: 0 !important; }

/* ===== CARDS ===== */
.card { background: var(--np-surface) !important; border: 1px solid var(--np-border) !important; border-radius: var(--np-radius) !important; color: var(--np-text) !important; box-shadow: 0 2px 12px rgba(0,0,0,0.2) !important; transition: var(--np-transition); overflow: hidden; }
.card:hover { border-color: var(--np-border-hover) !important; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(6,182,212,0.12) !important; }
.card-header { background: var(--np-surface2) !important; border-bottom: 1px solid var(--np-border) !important; }

/* ===== BUTTONS ===== */
.btn-primary { background: var(--np-gradient) !important; border: none !important; border-radius: 10px !important; font-weight: 600 !important; padding: 0.65rem 1.5rem !important; transition: var(--np-transition); letter-spacing: 0.2px; }
.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(6,182,212,0.35) !important; }
.btn-secondary, .btn-outline-secondary { background: var(--np-surface2) !important; border: 1px solid var(--np-border) !important; color: var(--np-text) !important; border-radius: 10px !important; }
.btn-outline-primary { border-color: var(--np-cyan) !important; color: var(--np-cyan) !important; border-radius: 9999px !important; padding: 0.45rem 1.5rem !important; font-weight: 600 !important; font-size: 0.85rem !important; }
.btn-outline-primary:hover { background: var(--np-cyan) !important; color: #000 !important; }

/* ===== FORMS ===== */
.form-control, .form-select { background: var(--np-surface2) !important; border: 1px solid var(--np-border) !important; color: var(--np-text) !important; border-radius: 10px !important; padding: 0.7rem 1rem !important; font-size: 0.9rem !important; }
.form-control:focus, .form-select:focus { border-color: var(--np-cyan) !important; box-shadow: 0 0 0 3px rgba(6,182,212,0.15) !important; outline: none; }
.form-control::placeholder { color: #6b7280 !important; }
label { color: var(--np-muted) !important; font-size: 0.85rem !important; font-weight: 500 !important; }

/* ===== TABLES ===== */
.table { color: var(--np-text) !important; --bs-table-bg: transparent !important; }
.table thead th { background: var(--np-surface2) !important; color: var(--np-cyan) !important; border-color: var(--np-border) !important; font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.8px; padding: 1rem !important; }
.table td { border-color: var(--np-border) !important; padding: 0.85rem 1rem !important; }
.table-hover tbody tr:hover { background: rgba(6,182,212,0.04) !important; }

/* ===== BADGES ===== */
.badge { border-radius: 9999px !important; font-weight: 600 !important; font-size: 0.72rem !important; letter-spacing: 0.3px; }
.badge.bg-primary, .bg-primary { background: var(--np-gradient) !important; }
.badge.bg-success { background: var(--np-green) !important; }

/* ===== ACCORDION ===== */
.accordion-button { background: var(--np-surface) !important; color: var(--np-text) !important; font-weight: 600; }
.accordion-button:not(.collapsed) { background: var(--np-surface2) !important; color: var(--np-cyan) !important; }
.accordion-body, .accordion-item { background: var(--np-surface) !important; border-color: var(--np-border) !important; }

/* ===== SIDE MENU ===== */
.list-group-item { background: var(--np-surface) !important; border-color: var(--np-border) !important; color: var(--np-text) !important; transition: var(--np-transition); border-radius: 0 !important; }
.list-group-item:hover, .list-group-item.active { background: var(--np-surface2) !important; color: var(--np-cyan) !important; border-left: 3px solid var(--np-cyan) !important; }
.list-group { border-radius: var(--np-radius) !important; overflow: hidden; }

/* ===== BREADCRUMBS ===== */
.breadcrumb { background: transparent !important; padding: 0 !important; margin-bottom: 1.5rem !important; }
.breadcrumb-item a { color: var(--np-cyan) !important; text-decoration: none; font-size: 0.85rem; }
.breadcrumb-item.active { color: var(--np-muted) !important; font-size: 0.85rem; }

/* ===== ALERTS ===== */
.alert-info { background: rgba(6,182,212,0.08) !important; border: 1px solid rgba(6,182,212,0.15) !important; color: var(--np-cyan) !important; border-radius: var(--np-radius) !important; }

/* ===== DROPDOWN (Bootstrap) ===== */
.dropdown-menu { background: var(--np-surface) !important; border: 1px solid var(--np-border) !important; border-radius: var(--np-radius) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important; }
.dropdown-item { color: var(--np-text) !important; padding: 0.6rem 1rem !important; }
.dropdown-item:hover { background: var(--np-surface2) !important; color: var(--np-cyan) !important; }

/* ===== MODAL ===== */
.modal-content { background: var(--np-surface) !important; border: 1px solid var(--np-border) !important; border-radius: var(--np-radius) !important; }

/* ===== HEADINGS ===== */
h1, h2, h3, h4, h5, h6 { color: #fff !important; }
a { color: var(--np-cyan); text-decoration: none; }
a:hover { color: #22d3ee; }

/* ===== ENTERPRISE FOOTER ===== */
.np-footer {
  background: var(--np-surface);
  border-top: 1px solid var(--np-border);
  margin-top: auto;
}
.np-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 1.5rem 1.5rem;
}
.np-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.np-footer-brand p {
  color: var(--np-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 320px;
}
.np-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.np-footer-logo span { color: #fff; font-weight: 700; font-size: 1.2rem; }
.np-footer h4 {
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--np-muted) !important;
  margin-bottom: 1rem;
  font-weight: 600;
}
.np-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.np-footer ul li { margin-bottom: 0.6rem; }
.np-footer ul a {
  color: var(--np-text) !important;
  text-decoration: none !important;
  font-size: 0.88rem;
  transition: var(--np-transition);
}
.np-footer ul a:hover { color: var(--np-cyan) !important; }
.np-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--np-border);
  color: var(--np-muted);
  font-size: 0.8rem;
}
.np-footer-powered a { color: var(--np-cyan) !important; }

@media (max-width: 768px) {
  .np-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .np-footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
  .np-footer-grid { grid-template-columns: 1fr; }
}

/* ===== BACK TO TOP ===== */
.np-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--np-gradient);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(6,182,212,0.3);
  transition: var(--np-transition);
  z-index: 999;
}
.np-back-to-top:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,182,212,0.4); }

/* ===== LOGIN CARD ===== */
.np-login-card { max-width: 420px; margin: 3rem auto; background: var(--np-surface); border: 1px solid var(--np-border); border-radius: var(--np-radius); padding: 2.5rem; }
.np-login-logo { text-align: center; margin-bottom: 2rem; }
.np-login-logo h2 { font-size: 1.5rem; margin-top: 0.75rem; }
.np-login-logo .np-logo-big { width: 56px; height: 56px; border-radius: 14px; background: var(--np-gradient); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.5rem; color: #fff; }
.np-login-footer { text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--np-border); color: var(--np-muted); font-size: 0.85rem; }

/* ===== Hide sidebar for order page ===== */
body.order-page .col-3 { display: none !important; }
body.order-page .col-md-9 { flex: 0 0 100% !important; max-width: 100% !important; }

/* ===== Hide old Bootstrap navbar ===== */
.navbar.navbar-expand-md { display: none !important; }

/* ===== Cookie consent ===== */
.cc-window { background: var(--np-surface) !important; border-top: 1px solid var(--np-border) !important; }

/* Responsive */
@media (max-width: 768px) {
  .np-main-wrapper > .container { padding-top: 1rem; }
}

/* ============================================================
   ORDER PAGE STYLES
   ============================================================ */

/* === HOSTING SUB-NAV === */
.np-subnav {
  position: sticky;
  top: var(--np-navbar-h);
  z-index: 1050;
  background: rgba(17, 24, 39, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--np-border);
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.np-subnav::-webkit-scrollbar { display: none; }
.np-subnav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 1.5rem;
  height: var(--np-subnav-h);
}
.np-subnav-link {
  display: flex;
  align-items: center;
  padding: 0 1.15rem;
  height: var(--np-subnav-h);
  color: var(--np-muted) !important;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  transition: var(--np-transition);
}
.np-subnav-link:hover, .np-subnav-link.active {
  color: #fff !important;
  border-bottom-color: var(--np-cyan);
}

/* === HERO SECTION === */
.np-hero-section {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  padding: 3rem 0 3.5rem;
  max-width: 1320px;
  margin: 0 auto;
}
.np-hero-visual {
  flex: 1;
  min-width: 340px;
  max-width: 500px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: var(--np-surface);
  border: 1px solid var(--np-border);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* CSS-art hosting dashboard mockup */
.np-dashboard-mockup {
  width: 90%;
  height: 85%;
  position: relative;
}
.np-mock-topbar {
  height: 32px;
  background: var(--np-surface2);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.np-mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.np-mock-dot:nth-child(1) { background: #ef4444; }
.np-mock-dot:nth-child(2) { background: #f59e0b; }
.np-mock-dot:nth-child(3) { background: #10b981; }
.np-mock-url {
  margin-left: 12px;
  background: var(--np-surface3);
  border-radius: 4px;
  height: 18px;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 0.6rem;
  color: var(--np-muted);
}
.np-mock-body {
  background: var(--np-bg);
  border: 1px solid var(--np-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 16px;
  height: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.np-mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.np-mock-stat {
  background: var(--np-surface);
  border: 1px solid var(--np-border);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.np-mock-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--np-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.np-mock-stat-label { font-size: 0.55rem; color: var(--np-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.np-mock-chart {
  flex: 1;
  background: var(--np-surface);
  border: 1px solid var(--np-border);
  border-radius: 8px;
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.np-mock-chart-label { font-size: 0.6rem; color: var(--np-muted); margin-bottom: 6px; }
.np-mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}
.np-mock-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--np-gradient);
  opacity: 0.7;
  min-height: 8px;
}
.np-mock-bar:nth-child(1) { height: 45%; }
.np-mock-bar:nth-child(2) { height: 62%; }
.np-mock-bar:nth-child(3) { height: 38%; }
.np-mock-bar:nth-child(4) { height: 78%; }
.np-mock-bar:nth-child(5) { height: 55%; }
.np-mock-bar:nth-child(6) { height: 90%; opacity: 1; }
.np-mock-bar:nth-child(7) { height: 72%; }
.np-mock-bar:nth-child(8) { height: 85%; }
.np-mock-bar:nth-child(9) { height: 65%; }
.np-mock-bar:nth-child(10) { height: 50%; }
.np-mock-bar:nth-child(11) { height: 80%; }
.np-mock-bar:nth-child(12) { height: 95%; opacity: 1; }
/* Live pulse dot */
.np-mock-live {
  position: absolute;
  top: 48px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  color: var(--np-green);
  font-weight: 600;
}
.np-mock-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--np-green);
  animation: np-pulse 2s ease-in-out infinite;
}
@keyframes np-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

/* Hero text */
.np-hero-content { flex: 1; min-width: 320px; }
.np-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(6,182,212,0.08);
  color: var(--np-cyan);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(6,182,212,0.15);
  margin-bottom: 1.25rem;
}
.np-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--np-cyan);
}
.np-hero-content h1 {
  font-size: 2.75rem !important;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
}
.np-hero-content h1 .np-grad {
  background: var(--np-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.np-hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.np-hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--np-text);
}
.np-hero-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  color: var(--np-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.np-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--np-gradient);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
  padding: 0.85rem 2.25rem;
  border-radius: 12px;
  transition: var(--np-transition);
}
.np-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(6,182,212,0.35); }
.np-hero-cta svg { transition: transform 0.2s; }
.np-hero-cta:hover svg { transform: translateX(3px); }
.np-hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.np-hero-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.np-hero-stars .stars { color: var(--np-amber); font-size: 1rem; letter-spacing: 2px; }
.np-hero-stars span { color: var(--np-muted); font-size: 0.82rem; }
.np-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--np-muted);
  font-size: 0.82rem;
}
.np-hero-trust-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(6,182,212,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
}

@media (max-width: 991px) {
  .np-hero-section { flex-direction: column-reverse; padding: 2rem 1rem; gap: 2rem; }
  .np-hero-visual { min-width: 100%; max-width: 100%; aspect-ratio: 16/9; }
  .np-hero-content h1 { font-size: 2rem !important; }
}

/* === BILLING TOGGLE === */
.np-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 0.5rem;
}
.np-toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--np-muted);
  cursor: pointer;
  transition: var(--np-transition);
}
.np-toggle-label.active { color: #fff; }
.np-toggle-label .np-save-badge {
  display: inline-block;
  background: rgba(16,185,129,0.12);
  color: var(--np-green);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  margin-left: 6px;
}
.np-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--np-surface3);
  border-radius: 9999px;
  cursor: pointer;
  border: 1px solid var(--np-border);
  transition: var(--np-transition);
}
.np-toggle-switch.active { background: var(--np-cyan); border-color: var(--np-cyan); }
.np-toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  top: 2px;
  left: 2px;
  transition: transform 0.25s ease;
}
.np-toggle-switch.active::after { transform: translateX(22px); }

/* === CATEGORY SECTION === */
.np-cat-section { margin-bottom: 3.5rem; scroll-margin-top: calc(var(--np-navbar-h) + var(--np-subnav-h) + 1rem); }
.np-cat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.np-cat-header h2 {
  font-size: 1.6rem !important;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
}
.np-cat-header p { color: var(--np-muted); font-size: 0.9rem; margin: 0.25rem 0 0; }

/* === PLAN CARDS === */
.np-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
}
.np-plan-card {
  background: var(--np-surface);
  border: 1px solid var(--np-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: var(--np-transition);
  position: relative;
  overflow: hidden;
}
.np-plan-card:hover {
  border-color: var(--np-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.np-plan-card.np-recommended {
  border: 2px solid var(--np-cyan);
  box-shadow: 0 0 0 1px rgba(6,182,212,0.1), 0 8px 32px rgba(6,182,212,0.12);
}
.np-plan-badge-wrap {
  background: var(--np-gradient);
  color: #fff;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px;
}
.np-plan-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.np-plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.np-plan-pricing-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.np-plan-save {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  color: var(--np-green);
  padding: 0.15rem 0.6rem;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
}
.np-plan-original {
  color: #6b7280;
  text-decoration: line-through;
  font-size: 0.85rem;
}
.np-plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin: 0.25rem 0;
}
.np-plan-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--np-muted);
}
.np-plan-term {
  color: #6b7280;
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
}
.np-plan-divider {
  height: 1px;
  background: var(--np-border);
  margin-bottom: 1.25rem;
}
.np-plan-cta {
  display: block;
  width: 100%;
  padding: 0.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none !important;
  transition: var(--np-transition);
  margin-bottom: 0.5rem;
  cursor: pointer;
  border: none;
}
.np-plan-cta-white {
  background: #fff;
  color: #111827 !important;
}
.np-plan-cta-white:hover { background: #e5e7eb; color: #111827 !important; }
.np-plan-cta-gradient {
  background: var(--np-gradient);
  color: #fff !important;
}
.np-plan-cta-gradient:hover { opacity: 0.92; box-shadow: 0 6px 20px rgba(6,182,212,0.35); }
.np-plan-guarantee {
  text-align: center;
  font-size: 0.72rem;
  color: var(--np-muted);
  margin-bottom: 1.25rem;
}
.np-plan-guarantee span { color: var(--np-green); }
.np-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.np-plan-features li {
  padding: 0.45rem 0;
  color: #d1d5db;
  font-size: 0.83rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.np-plan-features li:last-child { border: none; }
.np-plan-features .np-fi {
  color: var(--np-cyan);
  font-size: 0.85rem;
  width: 18px;
  flex-shrink: 0;
  text-align: center;
  margin-top: 1px;
}

/* === INCLUDED SECTION === */
.np-included {
  margin: 3rem 0;
  padding: 3rem 0;
  border-top: 1px solid var(--np-border);
  scroll-margin-top: calc(var(--np-navbar-h) + var(--np-subnav-h) + 1rem);
}
.np-included h2 { text-align: center; font-size: 1.6rem !important; margin-bottom: 0.5rem; font-weight: 800; }
.np-included-sub { text-align: center; color: var(--np-muted); margin-bottom: 2.5rem; font-size: 0.95rem; }
.np-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.np-included-item { text-align: center; padding: 1.5rem 1rem; border-radius: 14px; transition: var(--np-transition); }
.np-included-item:hover { background: var(--np-surface); }
.np-included-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(6,182,212,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.np-included-item h4 { font-size: 0.95rem !important; font-weight: 700; margin-bottom: 0.4rem; }
.np-included-item p { color: var(--np-muted); font-size: 0.82rem; line-height: 1.6; margin: 0; }
@media (max-width: 991px) { .np-included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .np-included-grid { grid-template-columns: 1fr; } }

/* === FAQ SECTION === */
.np-faq {
  margin: 3rem 0;
  padding: 3rem 0;
  border-top: 1px solid var(--np-border);
  scroll-margin-top: calc(var(--np-navbar-h) + var(--np-subnav-h) + 1rem);
}
.np-faq h2 { text-align: center; font-size: 1.6rem !important; margin-bottom: 0.5rem; font-weight: 800; }
.np-faq-sub { text-align: center; color: var(--np-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.np-faq-list { max-width: 780px; margin: 0 auto; }
.np-faq-item { border-bottom: 1px solid var(--np-border); }
.np-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--np-transition);
}
.np-faq-q:hover { color: var(--np-cyan); }
.np-faq-arrow { transition: transform 0.3s; font-size: 0.8rem; color: var(--np-muted); }
.np-faq-item.open .np-faq-arrow { transform: rotate(180deg); color: var(--np-cyan); }
.np-faq-a {
  color: var(--np-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.np-faq-item.open .np-faq-a { max-height: 300px; padding-bottom: 1.1rem; }

/* === CTA BANNER === */
.np-cta-banner {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, var(--np-surface), var(--np-surface2));
  border-radius: 20px;
  border: 1px solid var(--np-border);
  margin: 2rem 0 3rem;
}
.np-cta-banner h2 { margin-bottom: 0.5rem !important; font-weight: 800; }
.np-cta-banner p { color: var(--np-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.np-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--np-border);
  background: var(--np-surface2);
  color: var(--np-muted);
  cursor: pointer;
  transition: var(--np-transition);
  padding: 0;
  flex-shrink: 0;
}
.np-theme-toggle:hover {
  border-color: var(--np-border-hover);
  color: var(--np-cyan);
  background: var(--np-surface3);
}

/* Show sun icon in dark mode, moon icon in light mode */
[data-theme="dark"] .np-theme-icon-sun { display: block; }
[data-theme="dark"] .np-theme-icon-moon { display: none; }
[data-theme="light"] .np-theme-icon-sun { display: none; }
[data-theme="light"] .np-theme-icon-moon { display: block; }
/* Default (no data-theme set yet) */
.np-theme-icon-moon { display: none; }

/* ============================================================
   VERCEL-STYLE LIGHT THEME
   ============================================================ */
[data-theme="light"] {
  --np-bg: #ffffff;
  --np-surface: #f9fafb;
  --np-surface2: #f3f4f6;
  --np-surface3: #e5e7eb;
  --np-border: #e5e7eb;
  --np-border-hover: #000000;
  --np-text: #374151;
  --np-muted: #6b7280;
  --np-cyan: #000000;
  --np-blue: #000000;
  --np-green: #059669;
  --np-gradient: linear-gradient(135deg, #000, #333);
  --np-purple: #6d28d9;
  --np-amber: #d97706;
}

/* --- Body & base --- */
[data-theme="light"] body {
  background: #ffffff !important;
  color: #374151 !important;
}

/* --- Headings --- */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
  color: #111827 !important;
}

/* --- Links --- */
[data-theme="light"] a { color: #000; }
[data-theme="light"] a:hover { color: #333; }

/* --- Navbar --- */
[data-theme="light"] .np-navbar {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e5e7eb;
}
[data-theme="light"] .np-brand-text { color: #000; }
[data-theme="light"] .np-logo-mark {
  background: linear-gradient(135deg, #000, #333);
}
[data-theme="light"] .np-nav-link {
  color: #6b7280 !important;
}
[data-theme="light"] .np-nav-link:hover,
[data-theme="light"] .np-nav-link.active {
  color: #000 !important;
  border-bottom-color: #000;
}
[data-theme="light"] .np-nav-link svg { opacity: 0.5; }
[data-theme="light"] .np-nav-link:hover svg { opacity: 1; }

/* --- Dropdown --- */
[data-theme="light"] .np-dropdown-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
[data-theme="light"] .np-dropdown-item {
  color: #374151 !important;
}
[data-theme="light"] .np-dropdown-item:hover {
  background: #f3f4f6;
  color: #000 !important;
}
[data-theme="light"] .np-dropdown-item strong { color: #111827; }
[data-theme="light"] .np-dropdown-item small { color: #6b7280; }
[data-theme="light"] .np-dd-icon {
  background: #f3f4f6;
}

/* --- Auth buttons --- */
[data-theme="light"] .np-btn-login {
  color: #6b7280 !important;
}
[data-theme="light"] .np-btn-login:hover {
  color: #000 !important;
  background: #f3f4f6;
}
[data-theme="light"] .np-btn-register {
  background: #000;
  color: #fff !important;
}
[data-theme="light"] .np-btn-register:hover {
  background: #333;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
[data-theme="light"] .np-nav-user {
  border-color: #e5e7eb;
  color: #111827;
  background: #fff;
}
[data-theme="light"] .np-nav-user:hover {
  border-color: #000;
  background: #f9fafb;
}

/* --- Theme toggle in light mode --- */
[data-theme="light"] .np-theme-toggle {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #6b7280;
}
[data-theme="light"] .np-theme-toggle:hover {
  background: #e5e7eb;
  border-color: #000;
  color: #000;
}

/* --- Mobile --- */
[data-theme="light"] .np-mobile-toggle span {
  background: #6b7280;
}
@media (max-width: 991px) {
  [data-theme="light"] .np-nav-menu {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  }
  [data-theme="light"] .np-nav-link:hover { background: #f3f4f6; }
  [data-theme="light"] .np-dropdown-panel { background: #f3f4f6; }
  [data-theme="light"] .np-nav-auth { border-top-color: #e5e7eb; }
}

/* --- Cards --- */
[data-theme="light"] .card {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
}
[data-theme="light"] .card:hover {
  border-color: #000 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
}
[data-theme="light"] .card-header {
  background: #f9fafb !important;
  border-bottom: 1px solid #e5e7eb !important;
}

/* --- Buttons --- */
[data-theme="light"] .btn-primary {
  background: #000 !important;
  color: #fff !important;
}
[data-theme="light"] .btn-primary:hover {
  background: #333 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}
[data-theme="light"] .btn-secondary,
[data-theme="light"] .btn-outline-secondary {
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  color: #374151 !important;
}
[data-theme="light"] .btn-outline-primary {
  border-color: #000 !important;
  color: #000 !important;
}
[data-theme="light"] .btn-outline-primary:hover {
  background: #000 !important;
  color: #fff !important;
}

/* --- Forms --- */
[data-theme="light"] .form-control,
[data-theme="light"] .form-select {
  background: #fff !important;
  border: 1px solid #d1d5db !important;
  color: #111827 !important;
}
[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus {
  border-color: #000 !important;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06) !important;
}
[data-theme="light"] .form-control::placeholder { color: #9ca3af !important; }
[data-theme="light"] label { color: #6b7280 !important; }

/* --- Tables --- */
[data-theme="light"] .table { color: #374151 !important; }
[data-theme="light"] .table thead th {
  background: #f9fafb !important;
  color: #000 !important;
  border-color: #e5e7eb !important;
}
[data-theme="light"] .table td { border-color: #e5e7eb !important; }
[data-theme="light"] .table-hover tbody tr:hover { background: #f9fafb !important; }

/* --- Badges --- */
[data-theme="light"] .badge.bg-primary,
[data-theme="light"] .bg-primary {
  background: #000 !important;
  color: #fff !important;
}
[data-theme="light"] .badge.bg-success { background: #059669 !important; }

/* --- Accordion --- */
[data-theme="light"] .accordion-button {
  background: #fff !important;
  color: #111827 !important;
}
[data-theme="light"] .accordion-button:not(.collapsed) {
  background: #f9fafb !important;
  color: #000 !important;
}
[data-theme="light"] .accordion-body,
[data-theme="light"] .accordion-item {
  background: #fff !important;
  border-color: #e5e7eb !important;
}

/* --- Side Menu --- */
[data-theme="light"] .list-group-item {
  background: #fff !important;
  border-color: #e5e7eb !important;
  color: #374151 !important;
}
[data-theme="light"] .list-group-item:hover,
[data-theme="light"] .list-group-item.active {
  background: #f3f4f6 !important;
  color: #000 !important;
  border-left: 3px solid #000 !important;
}

/* --- Alerts --- */
[data-theme="light"] .alert-info {
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  color: #000 !important;
}

/* --- Dropdown (Bootstrap) --- */
[data-theme="light"] .dropdown-menu {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
}
[data-theme="light"] .dropdown-item { color: #374151 !important; }
[data-theme="light"] .dropdown-item:hover {
  background: #f3f4f6 !important;
  color: #000 !important;
}

/* --- Modal --- */
[data-theme="light"] .modal-content {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
}

/* --- Footer --- */
[data-theme="light"] .np-footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}
[data-theme="light"] .np-footer-logo span { color: #111827; }
[data-theme="light"] .np-footer-brand p { color: #6b7280; }
[data-theme="light"] .np-footer h4 { color: #6b7280 !important; }
[data-theme="light"] .np-footer ul a { color: #374151 !important; }
[data-theme="light"] .np-footer ul a:hover { color: #000 !important; }
[data-theme="light"] .np-footer-bottom {
  border-top-color: #e5e7eb;
  color: #6b7280;
}
[data-theme="light"] .np-footer-powered a { color: #000 !important; }

/* --- Back to top --- */
[data-theme="light"] .np-back-to-top {
  background: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
[data-theme="light"] .np-back-to-top:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* --- Login card --- */
[data-theme="light"] .np-login-card {
  background: #fff;
  border-color: #e5e7eb;
}
[data-theme="light"] .np-login-logo h2 { color: #111827; }
[data-theme="light"] .np-login-logo .np-logo-big {
  background: linear-gradient(135deg, #000, #333);
}
[data-theme="light"] .np-login-footer {
  border-top-color: #e5e7eb;
  color: #6b7280;
}

/* --- Cookie consent --- */
[data-theme="light"] .cc-window {
  background: #fff !important;
  border-top: 1px solid #e5e7eb !important;
}

/* ============================================================
   ORDER PAGE — LIGHT THEME OVERRIDES
   ============================================================ */

/* --- Subnav --- */
[data-theme="light"] .np-subnav {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e5e7eb;
}
[data-theme="light"] .np-subnav-link {
  color: #6b7280 !important;
}
[data-theme="light"] .np-subnav-link:hover,
[data-theme="light"] .np-subnav-link.active {
  color: #000 !important;
  border-bottom-color: #000;
}

/* --- Hero section --- */
[data-theme="light"] .np-hero-visual {
  background: #f9fafb;
  border-color: #e5e7eb;
}
[data-theme="light"] .np-mock-topbar {
  background: #e5e7eb;
}
[data-theme="light"] .np-mock-url {
  background: #d1d5db;
  color: #6b7280;
}
[data-theme="light"] .np-mock-body {
  background: #fff;
  border-color: #e5e7eb;
}
[data-theme="light"] .np-mock-stat {
  background: #f9fafb;
  border-color: #e5e7eb;
}
[data-theme="light"] .np-mock-stat-value {
  background: linear-gradient(135deg, #000, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="light"] .np-mock-chart {
  background: #f9fafb;
  border-color: #e5e7eb;
}
[data-theme="light"] .np-mock-chart-label { color: #6b7280; }
[data-theme="light"] .np-mock-bar {
  background: linear-gradient(135deg, #000, #444);
}
[data-theme="light"] .np-mock-live { color: #059669; }
[data-theme="light"] .np-mock-live-dot { background: #059669; }

/* --- Hero content --- */
[data-theme="light"] .np-hero-badge {
  background: #f3f4f6;
  color: #000;
  border-color: #e5e7eb;
}
[data-theme="light"] .np-hero-badge-dot { background: #000; }
[data-theme="light"] .np-hero-content h1 { color: #111827 !important; }
[data-theme="light"] .np-hero-content h1 .np-grad {
  background: linear-gradient(135deg, #000, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="light"] .np-hero-benefits li { color: #374151; }
[data-theme="light"] .np-hero-check {
  background: rgba(5,150,105,0.1);
  color: #059669;
}
[data-theme="light"] .np-hero-cta {
  background: #000;
  color: #fff !important;
}
[data-theme="light"] .np-hero-cta:hover {
  background: #222;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}
[data-theme="light"] .np-hero-stars .stars { color: #d97706; }
[data-theme="light"] .np-hero-stars span,
[data-theme="light"] .np-hero-trust-item { color: #6b7280; }
[data-theme="light"] .np-hero-trust-icon {
  background: #f3f4f6;
}

/* --- Billing toggle --- */
[data-theme="light"] .np-toggle-label { color: #9ca3af; }
[data-theme="light"] .np-toggle-label.active { color: #111827; }
[data-theme="light"] .np-toggle-label .np-save-badge {
  background: rgba(5,150,105,0.1);
  color: #059669;
}
[data-theme="light"] .np-toggle-switch {
  background: #d1d5db;
  border-color: #d1d5db;
}
[data-theme="light"] .np-toggle-switch.active {
  background: #000;
  border-color: #000;
}

/* --- Category section --- */
[data-theme="light"] .np-cat-header h2 { color: #111827 !important; }
[data-theme="light"] .np-cat-header p { color: #6b7280; }

/* --- Plan cards --- */
[data-theme="light"] .np-plan-card {
  background: #fff;
  border: 1px solid #e5e7eb;
}
[data-theme="light"] .np-plan-card:hover {
  border-color: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
[data-theme="light"] .np-plan-card.np-recommended {
  border: 2px solid #000;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 8px 24px rgba(0,0,0,0.06);
}
[data-theme="light"] .np-plan-badge-wrap {
  background: #000;
  color: #fff;
}
[data-theme="light"] .np-plan-name { color: #111827; }
[data-theme="light"] .np-plan-save {
  background: rgba(5,150,105,0.1);
  color: #059669;
}
[data-theme="light"] .np-plan-original { color: #9ca3af; }
[data-theme="light"] .np-plan-price { color: #111827; }
[data-theme="light"] .np-plan-price small { color: #6b7280; }
[data-theme="light"] .np-plan-term { color: #9ca3af; }
[data-theme="light"] .np-plan-divider { background: #e5e7eb; }
[data-theme="light"] .np-plan-cta-white {
  background: #f3f4f6;
  color: #111827 !important;
  border: 1px solid #e5e7eb;
}
[data-theme="light"] .np-plan-cta-white:hover {
  background: #e5e7eb;
  border-color: #000;
  color: #000 !important;
}
[data-theme="light"] .np-plan-cta-gradient {
  background: #000;
  color: #fff !important;
}
[data-theme="light"] .np-plan-cta-gradient:hover {
  background: #222;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
[data-theme="light"] .np-plan-guarantee span { color: #059669; }
[data-theme="light"] .np-plan-features li {
  color: #374151;
  border-bottom-color: #f3f4f6;
}
[data-theme="light"] .np-plan-features .np-fi { color: #000; }

/* --- Included section --- */
[data-theme="light"] .np-included {
  border-top-color: #e5e7eb;
}
[data-theme="light"] .np-included h2 { color: #111827 !important; }
[data-theme="light"] .np-included-sub { color: #6b7280; }
[data-theme="light"] .np-included-item:hover { background: #f9fafb; }
[data-theme="light"] .np-included-icon {
  background: #f3f4f6;
}
[data-theme="light"] .np-included-item h4 { color: #111827 !important; }
[data-theme="light"] .np-included-item p { color: #6b7280; }

/* --- FAQ section --- */
[data-theme="light"] .np-faq {
  border-top-color: #e5e7eb;
}
[data-theme="light"] .np-faq h2 { color: #111827 !important; }
[data-theme="light"] .np-faq-sub { color: #6b7280; }
[data-theme="light"] .np-faq-item { border-bottom-color: #e5e7eb; }
[data-theme="light"] .np-faq-q { color: #111827; }
[data-theme="light"] .np-faq-q:hover { color: #000; }
[data-theme="light"] .np-faq-arrow { color: #9ca3af; }
[data-theme="light"] .np-faq-item.open .np-faq-arrow { color: #000; }
[data-theme="light"] .np-faq-a { color: #6b7280; }

/* --- CTA banner --- */
[data-theme="light"] .np-cta-banner {
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  border-color: #e5e7eb;
}
[data-theme="light"] .np-cta-banner h2 { color: #111827 !important; }
[data-theme="light"] .np-cta-banner p { color: #6b7280; }

/* --- Breadcrumbs --- */
[data-theme="light"] .breadcrumb-item a { color: #000 !important; }
[data-theme="light"] .breadcrumb-item.active { color: #6b7280 !important; }

/* --- Content block --- */
[data-theme="light"] .content-block { background: transparent !important; }

/* --- Toast --- */
[data-theme="light"] .toast {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  color: #374151 !important;
}

/* --- Pagination --- */
[data-theme="light"] .page-link {
  background: #fff !important;
  border-color: #e5e7eb !important;
  color: #374151 !important;
}
[data-theme="light"] .page-link:hover {
  background: #f3f4f6 !important;
  color: #000 !important;
}
[data-theme="light"] .page-item.active .page-link {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

/* --- Miscellaneous Bootstrap overrides for light --- */
[data-theme="light"] .text-muted { color: #6b7280 !important; }
[data-theme="light"] .border-bottom { border-bottom-color: #e5e7eb !important; }
[data-theme="light"] .border-top { border-top-color: #e5e7eb !important; }
[data-theme="light"] .bg-dark { background: #f9fafb !important; }
[data-theme="light"] .text-white { color: #111827 !important; }

/* ===== Dashboard light theme fixes ===== */
[data-theme="light"] .gd-val { color: #111827 !important; }
[data-theme="light"] .gd-row { border-bottom-color: #e5e7eb !important; }
[data-theme="light"] .gd-card { background: #fff !important; border-color: #e5e7eb !important; }
[data-theme="light"] .gd-sidebar { background: #f9fafb !important; border-right-color: #e5e7eb !important; }
[data-theme="light"] .gd-domain-sel select { background: #fff !important; border-color: #e5e7eb !important; color: #111827 !important; }
[data-theme="light"] .gd-nav li a { color: #6b7280 !important; }
[data-theme="light"] .gd-nav li a:hover { color: #111827 !important; background: rgba(0,0,0,0.03) !important; }
[data-theme="light"] .gd-nav li a.active { color: #000 !important; background: rgba(0,0,0,0.05) !important; border-left-color: #000 !important; }
[data-theme="light"] .gd-content { background: #fff !important; }
[data-theme="light"] .gd-panel h2 { color: #111827 !important; }
[data-theme="light"] .gd-subtitle { color: #6b7280 !important; }
[data-theme="light"] .gd-act { background: #f9fafb !important; border-color: #e5e7eb !important; color: #111827 !important; }
[data-theme="light"] .gd-act:hover { border-color: #000 !important; }
[data-theme="light"] .gd-act-text .gd-act-desc { color: #6b7280 !important; }
[data-theme="light"] .gd-act-icon { background: rgba(0,0,0,0.05) !important; }
[data-theme="light"] .gd-label { color: #6b7280 !important; }
[data-theme="light"] .gd-dash { background: #fff !important; }
[data-theme="light"] .gd-nav-divider { background: #e5e7eb !important; }
