/* ==========================================================================
   NEXTRONTECH ULTRA-PREMIUM 2026 DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS & RESET
   -------------------------------------------------------------------------- */
:root {
  --nx-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Brand Color Palette */
  --nx-primary: #1d4ed8;
  --nx-primary-hover: #2563eb;
  --nx-primary-glow: rgba(37, 99, 235, 0.35);
  
  --nx-cyan: #06b6d4;
  --nx-cyan-glow: rgba(6, 182, 212, 0.3);
  
  --nx-emerald: #059669;
  --nx-emerald-hover: #10b981;
  --nx-emerald-glow: rgba(16, 185, 129, 0.4);

  --nx-indigo: #4f46e5;
  --nx-purple: #7c3aed;

  /* Surfaces */
  --nx-dark-bg: #070b14;
  --nx-dark-surface: #0e1526;
  --nx-dark-card: #131c31;
  
  --nx-light-bg: #f8fafc;
  --nx-light-surface: #ffffff;
  --nx-light-card: #ffffff;

  /* Typography */
  --nx-text-heading: #0f172a;
  --nx-text-body: #475569;
  --nx-text-muted: #64748b;
  --nx-text-white: #ffffff;
  --nx-text-light: #94a3b8;

  /* Borders & Shadows */
  --nx-border-light: rgba(226, 232, 240, 0.9);
  --nx-border-dark: rgba(255, 255, 255, 0.09);
  
  --nx-shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.04);
  --nx-shadow-md: 0 12px 28px -4px rgba(15, 23, 42, 0.06), 0 4px 8px -2px rgba(15, 23, 42, 0.03);
  --nx-shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.12);
  --nx-shadow-hover: 0 24px 50px -8px rgba(37, 99, 235, 0.18);

  /* Radii */
  --nx-radius-sm: 10px;
  --nx-radius-md: 16px;
  --nx-radius-lg: 24px;
  --nx-radius-xl: 32px;

  /* Animation */
  --nx-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nx-transition: all 0.3s var(--nx-ease);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.nextron-premium-ui {
  font-family: var(--nx-font) !important;
  background-color: var(--nx-light-bg) !important;
  color: var(--nx-text-body) !important;
  line-height: 1.7 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Hide old theme / page builders on Nextron Modern pages */
body.nextron-premium-ui #inner-body > header:not(.nx-navbar-wrap):not(.nx-top-bar),
body.nextron-premium-ui #inner-body > footer:not(.nx-footer),
body.nextron-premium-ui .phlox-header,
body.nextron-premium-ui .aux-header {
  display: none !important;
}

.nx-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* --------------------------------------------------------------------------
   2. TOP BAR & NAVIGATION
   -------------------------------------------------------------------------- */
.nx-top-bar {
  background: #05080f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 0;
  font-size: 13px;
  color: #94a3b8;
}

.nx-top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nx-top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nx-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--nx-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--nx-cyan);
  display: inline-block;
}

.nx-top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nx-top-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--nx-transition);
}

.nx-top-link:hover {
  color: #ffffff;
}

.nx-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* Floating Glass Navbar */
.nx-navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--nx-border-dark);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: var(--nx-transition);
}

.nx-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nx-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nx-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--nx-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx-logo-text {
  display: flex;
  flex-direction: column;
}

.nx-brand-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.nx-brand-title span {
  background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nx-brand-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nx-cyan);
}

/* Nav Links */
.nx-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nx-nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  transition: var(--nx-transition);
}

.nx-nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nx-nav-links a.active {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.nx-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nx-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--nx-transition);
}

.nx-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 24px;
  background: var(--nx-dark-surface);
  border-top: 1px solid var(--nx-border-dark);
  gap: 14px;
}

.nx-mobile-menu a {
  color: #f1f5f9;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------------------------------
   3. BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.nx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--nx-font);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--nx-transition);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nx-btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

.nx-btn-md {
  padding: 14px 30px;
  font-size: 14px;
}

.nx-btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.nx-btn-xl {
  padding: 20px 42px;
  font-size: 16px;
}

.nx-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px -4px rgba(37, 99, 235, 0.5);
}

.nx-btn-primary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 35px -4px rgba(37, 99, 235, 0.65);
}

.nx-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.nx-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.nx-btn-emerald {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff !important;
  box-shadow: 0 10px 25px -4px rgba(16, 185, 129, 0.45);
  border-color: rgba(255, 255, 255, 0.2);
}

.nx-btn-emerald:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 35px -4px rgba(16, 185, 129, 0.6);
}

.nx-btn-outline {
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.nx-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.nx-btn-light {
  background: #ffffff;
  color: #0f172a !important;
}

.nx-btn-light:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.nx-btn-block {
  width: 100%;
}

.nx-btn-tag {
  background: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
}

/* Pill Badges */
.nx-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--nx-primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   4. HERO SECTIONS
   -------------------------------------------------------------------------- */
.nx-hero-section {
  position: relative;
  background: linear-gradient(180deg, #070b14 0%, #0b1120 100%);
  color: #ffffff;
  padding: 100px 0 120px;
  overflow: hidden;
  text-align: center;
}

.nx-hero-ambient-1 {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(6, 182, 212, 0.15) 50%, transparent 80%);
  filter: blur(80px);
  pointer-events: none;
}

.nx-hero-ambient-2 {
  position: absolute;
  bottom: -100px;
  right: 10%;
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.nx-hero-container {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.nx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f1f5f9;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.nx-hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 24px;
}

.nx-gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nx-gradient-text-alt {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nx-hero-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: #94a3b8;
  max-width: 780px;
  margin: 0 auto 40px;
}

.nx-hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Metrics Strip */
.nx-metrics-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(19, 28, 49, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--nx-radius-lg);
  padding: 24px 32px;
  margin-top: 64px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.nx-metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nx-metric-value {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.nx-metric-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--nx-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nx-metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

/* Page Headers */
.nx-page-header {
  background: linear-gradient(180deg, #070b14 0%, #0b1120 100%);
  padding: 80px 0 90px;
  color: #ffffff;
}

.nx-page-title {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.nx-page-subtitle {
  font-size: 18px;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   5. SECTIONS & GRIDS
   -------------------------------------------------------------------------- */
.nx-section {
  padding: 90px 0;
  position: relative;
}

.nx-bg-light {
  background-color: #f1f5f9;
}

.nx-bg-dark {
  background: #090e1a;
  color: #ffffff;
}

.nx-section-header {
  margin-bottom: 54px;
}

.nx-section-header.text-center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.nx-section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--nx-text-heading);
  line-height: 1.2;
  margin-bottom: 14px;
}

.nx-text-white {
  color: #ffffff !important;
}

.nx-section-desc {
  font-size: 17px;
  color: var(--nx-text-muted);
  line-height: 1.7;
}

/* Grids */
.nx-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.nx-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.nx-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.nx-align-center {
  align-items: center;
}

.nx-align-start {
  align-items: start;
}

/* --------------------------------------------------------------------------
   6. CARDS & BENTO GRID SYSTEM
   -------------------------------------------------------------------------- */
.nx-card {
  background: var(--nx-light-card);
  border: 1px solid var(--nx-border-light);
  border-radius: var(--nx-radius-lg);
  padding: 36px 32px;
  box-shadow: var(--nx-shadow-md);
  transition: var(--nx-transition);
  position: relative;
}

.nx-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--nx-shadow-hover);
  border-color: rgba(37, 99, 235, 0.35);
}

.nx-card-highlighted {
  border-color: rgba(37, 99, 235, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.nx-card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--nx-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--nx-transition);
}

.nx-card:hover .nx-card-icon {
  transform: scale(1.08) rotate(3deg);
}

.nx-icon-blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--nx-primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.nx-icon-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--nx-cyan);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.nx-icon-indigo {
  background: rgba(79, 70, 229, 0.1);
  color: var(--nx-indigo);
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.nx-icon-purple {
  background: rgba(124, 58, 237, 0.1);
  color: var(--nx-purple);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.nx-icon-emerald {
  background: rgba(5, 150, 105, 0.1);
  color: var(--nx-emerald);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.nx-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--nx-text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.nx-card p {
  font-size: 15px;
  color: var(--nx-text-muted);
  line-height: 1.7;
}

.nx-card-list {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nx-card-list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--nx-text-heading);
}

.nx-card-list li::before {
  content: "✓ ";
  color: var(--nx-primary);
  font-weight: 800;
}

/* Bento Grid */
.nx-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nx-bento-card {
  background: #ffffff;
  border: 1px solid var(--nx-border-light);
  border-radius: var(--nx-radius-lg);
  padding: 36px 30px;
  box-shadow: var(--nx-shadow-md);
  transition: var(--nx-transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nx-bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow-hover);
  border-color: rgba(37, 99, 235, 0.35);
}

.nx-bento-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.nx-bento-gradient {
  background: linear-gradient(135deg, #090e1a 0%, #172554 100%);
  color: #ffffff;
  border-color: rgba(59, 130, 246, 0.3);
}

.nx-bento-gradient h3 {
  color: #ffffff;
}

.nx-bento-gradient p {
  color: #cbd5e1;
}

.nx-tag-pill {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--nx-primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.nx-tag-light {
  background: rgba(255, 255, 255, 0.15);
  color: #38bdf8;
}

.nx-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--nx-primary);
  text-decoration: none;
  margin-top: 18px;
  font-size: 14px;
}

.nx-link-arrow:hover {
  gap: 10px;
}

.nx-vis-icon {
  font-size: 64px;
}

/* --------------------------------------------------------------------------
   7. PRODUCT SPOTLIGHT: LIMA
   -------------------------------------------------------------------------- */
.nx-spotlight-card {
  background: linear-gradient(135deg, #060a14 0%, #0d172a 60%, #064e3b 100%);
  border-radius: var(--nx-radius-xl);
  padding: 64px clamp(24px, 5vw, 64px);
  color: #ffffff;
  box-shadow: 0 30px 60px -12px rgba(6, 78, 59, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.nx-spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.nx-badge-featured {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.nx-spotlight-text h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #ffffff;
}

.nx-spotlight-text p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
}

.nx-spotlight-features {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nx-s-item {
  display: flex;
  align-items: start;
  gap: 12px;
  color: #e2e8f0;
  font-size: 15px;
}

.nx-s-check {
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.25);
  color: #34d399;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

.nx-spotlight-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nx-note-tag {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
}

/* Software Preview Mockup */
.nx-software-preview-box {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--nx-radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.nx-soft-bar {
  background: #1e293b;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nx-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.nx-dot.red { background: #ef4444; }
.nx-dot.yellow { background: #f59e0b; }
.nx-dot.green { background: #10b981; }

.nx-soft-title {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  margin-left: 8px;
}

.nx-soft-body {
  padding: 28px;
}

.nx-soft-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.nx-s-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--nx-radius-sm);
  padding: 16px;
  text-align: center;
}

.nx-s-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #34d399;
}

.nx-s-lbl {
  font-size: 11px;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 700;
}

.nx-soft-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
  background: rgba(16, 185, 129, 0.1);
  padding: 10px 14px;
  border-radius: var(--nx-radius-sm);
}

.nx-pulse-green {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

/* --------------------------------------------------------------------------
   8. VALUE ITEMS & LOCATIONS
   -------------------------------------------------------------------------- */
.nx-value-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.nx-v-item {
  display: flex;
  gap: 14px;
}

.nx-v-icon {
  font-size: 24px;
}

.nx-v-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--nx-text-heading);
  margin-bottom: 4px;
}

.nx-v-item p {
  font-size: 14px;
  color: var(--nx-text-muted);
}

.nx-glass-stat-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--nx-radius-xl);
  padding: 40px;
  color: #ffffff;
  box-shadow: var(--nx-shadow-lg);
}

.nx-glass-stat-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

.nx-location-badge {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: var(--nx-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nx-location-badge p {
  color: #94a3b8;
  font-size: 14px;
  margin-top: 4px;
}

.nx-support-highlight {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nx-support-highlight a {
  color: var(--nx-cyan);
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   9. FORMS & INPUTS
   -------------------------------------------------------------------------- */
.nx-modern-form {
  background: #ffffff;
  border: 1px solid var(--nx-border-light);
  border-radius: var(--nx-radius-lg);
  padding: 36px;
  box-shadow: var(--nx-shadow-md);
}

.nx-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.nx-form-group {
  margin-bottom: 20px;
}

.nx-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--nx-text-heading);
  margin-bottom: 8px;
}

.nx-form-group input,
.nx-form-group textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: var(--nx-radius-md) !important;
  padding: 14px 18px !important;
  font-family: var(--nx-font) !important;
  font-size: 15px !important;
  color: var(--nx-text-heading) !important;
  transition: var(--nx-transition) !important;
}

.nx-form-group input:focus,
.nx-form-group textarea:focus,
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  background: #ffffff !important;
  border-color: var(--nx-primary) !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15) !important;
  outline: none !important;
}

/* --------------------------------------------------------------------------
   10. CTA BANNER & FOOTER
   -------------------------------------------------------------------------- */
.nx-cta-banner-section {
  padding: 40px 0;
}

.nx-cta-banner {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.3), transparent 45%),
              linear-gradient(135deg, #070b14 0%, #0e1526 60%, #1e1b4b 100%);
  border-radius: var(--nx-radius-xl);
  padding: 72px clamp(24px, 5vw, 64px);
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--nx-shadow-lg);
  overflow: hidden;
}

.nx-cta-banner h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 14px 0 18px;
}

.nx-cta-banner p {
  color: #94a3b8;
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto 36px;
}

.nx-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.nx-footer {
  background: #05080f;
  color: #94a3b8;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nx-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.nx-footer-desc {
  margin: 18px 0 24px;
  font-size: 14px;
  line-height: 1.7;
}

.nx-footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.nx-footer-contact-item {
  display: flex;
  gap: 8px;
}

.nx-footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.nx-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nx-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: var(--nx-transition);
}

.nx-footer-links a:hover {
  color: var(--nx-cyan);
  padding-left: 4px;
}

.nx-direct-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0;
}

.nx-direct-link {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--nx-transition);
}

.nx-direct-link:hover {
  color: var(--nx-cyan);
}

.nx-timing-badge {
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  border-radius: var(--nx-radius-sm);
  font-size: 12px;
  color: #e2e8f0;
}

.nx-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  font-size: 13px;
}

.nx-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nx-bottom-links {
  display: flex;
  gap: 20px;
}

.nx-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
}

.nx-bottom-links a:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   11. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nx-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .nx-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .nx-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nx-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nx-top-bar {
    display: none;
  }
  .nx-nav-links {
    display: none;
  }
  .nx-mobile-toggle {
    display: flex;
  }
  .nx-mobile-menu.active {
    display: flex;
  }
  .nx-grid-2,
  .nx-grid-3,
  .nx-grid-4,
  .nx-spotlight-grid,
  .nx-bento-grid {
    grid-template-columns: 1fr;
  }
  .nx-bento-wide {
    grid-column: span 1;
    flex-direction: column;
  }
  .nx-footer-grid {
    grid-template-columns: 1fr;
  }
  .nx-metrics-strip {
    flex-direction: column;
    gap: 20px;
  }
  .nx-metric-divider {
    display: none;
  }
  .nx-form-row {
    grid-template-columns: 1fr;
  }
}
