/* ================================================
   NicheMap Theme v2.0 — main.css
   Color: White + Deep Navy + Electric Blue
   Inspired by: Flippa, Acquire.com, Linear, Webflow
   ================================================ */

/* ── VARIABLES ── */
:root {
  /* Backgrounds */
  --bg:        #ffffff;
  --bg2:       #f8f9fc;
  --bg3:       #f1f4f9;
  --bg-dark:   #0a1628;
  --bg-navy:   #0f2557;

  /* Text */
  --txt:       #0d1f3c;
  --txt2:      #4a5568;
  --txt3:      #94a3b8;
  --txt-inv:   #ffffff;

  /* Brand Colors */
  --navy:      #0f2557;
  --navy2:     #1a3a8f;
  --blue:      #2563eb;
  --blue-lt:   #3b82f6;
  --blue-bg:   #eff6ff;
  --indigo:    #4f46e5;
  --green:     #059669;
  --green-bg:  #ecfdf5;
  --amber:     #d97706;
  --amber-bg:  #fffbeb;
  --red:       #dc2626;
  --red-bg:    #fef2f2;

  /* Borders */
  --border:    #e2e8f0;
  --border2:   #cbd5e1;
  --border-dk: rgba(255,255,255,.1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15,37,87,.08), 0 1px 2px rgba(15,37,87,.04);
  --shadow:    0 4px 16px rgba(15,37,87,.10), 0 2px 6px rgba(15,37,87,.06);
  --shadow-lg: 0 16px 48px rgba(15,37,87,.14), 0 4px 16px rgba(15,37,87,.08);
  --shadow-xl: 0 32px 80px rgba(15,37,87,.18), 0 8px 24px rgba(15,37,87,.10);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html  { scroll-behavior: smooth; font-size: 16px }
body  {
  font-family: -apple-system, 'Inter', 'Outfit', sans-serif;
  background: var(--bg); color: var(--txt);
  line-height: 1.6; overflow-x: hidden;
}
img   { max-width: 100%; height: auto; display: block }
a     { color: var(--blue); text-decoration: none }
a:hover { text-decoration: underline }
ul, ol { list-style: none }
button { font-family: inherit; cursor: pointer }

/* ── LAYOUT ── */
.nm-site      { display: flex; flex-direction: column; min-height: 100vh }
.nm-container { max-width: 1160px; margin: 0 auto; padding: 0 40px }
.nm-text-center { text-align: center }

/* ── REVEAL ── */
.nm-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease }
.nm-reveal.nm-vis { opacity: 1; transform: translateY(0) }

/* ── HEADER ── */
.nm-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 var(--border);
}
.nm-header-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nm-logo {
  font-weight: 800; font-size: 20px; letter-spacing: -0.5px;
  color: var(--navy); text-decoration: none; flex-shrink: 0;
}
.nm-logo em { font-style: normal; color: var(--blue) }
.nm-nav-links { display: flex; gap: 4px; flex: 1; justify-content: center }
.nm-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--txt2);
  padding: 7px 14px; border-radius: 7px; text-decoration: none;
  transition: background .15s, color .15s;
}
.nm-nav-links a:hover { background: var(--bg2); color: var(--txt) }
.nm-nav-links a.current { color: var(--blue); font-weight: 600 }
.nm-header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0 }
.nm-live-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--green);
  background: var(--green-bg); border-radius: 20px; padding: 5px 12px;
  border: 1px solid #a7f3d0;
}
.nm-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: nmBlink 1.6s infinite;
}
@keyframes nmBlink { 0%,100%{opacity:1} 50%{opacity:.3} }
.nm-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nm-hamburger span { display: block; width: 22px; height: 2px; background: var(--txt2); border-radius: 2px; transition: all .3s }
.nm-ham-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px) }
.nm-ham-open span:nth-child(2) { opacity: 0 }
.nm-ham-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px) }

/* ── BUTTONS ── */
.nm-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: 8px; border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none; white-space: nowrap;
}
.nm-btn-primary:hover {
  background: var(--navy2); color: #fff; text-decoration: none;
  transform: translateY(-1px); box-shadow: var(--shadow);
}
.nm-btn-nav { font-size: 13px; padding: 8px 18px }
.nm-btn-lg  { font-size: 16px; padding: 14px 32px; border-radius: 10px }
.nm-btn-xl  { font-size: 17px; padding: 16px 36px; border-radius: 10px }
.nm-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg); color: var(--txt);
  font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: 8px;
  border: 1.5px solid var(--border2);
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.nm-btn-secondary:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-bg); text-decoration: none }
.nm-btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.35);
  transition: all .2s; text-decoration: none;
}
.nm-btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); color: #fff; text-decoration: none }

/* ── SECTION LABELS ── */
.nm-stag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.nm-stag-center { justify-content: center }
.nm-sec-h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -1px; line-height: 1.1;
  color: var(--navy); margin-bottom: 14px;
}
.nm-sec-sub { font-size: 17px; color: var(--txt2); line-height: 1.7; max-width: 560px }
.nm-sec-sub-center { margin: 0 auto; text-align: center }

/* ── HERO ── */
.nm-hero {
  background: linear-gradient(160deg, var(--bg-navy) 0%, #0d2060 60%, #172b85 100%);
  position: relative; overflow: hidden;
  padding: 88px 0 80px;
}
.nm-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(37,99,235,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(79,70,229,.2) 0%, transparent 50%);
  pointer-events: none;
}
/* Grid overlay */
.nm-hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.nm-hero-inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.nm-hero-left {}
.nm-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 24px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9); letter-spacing: .5px;
}
.nm-hero-badge-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: nmBlink 1.6s infinite }
.nm-hero-h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.08;
  color: #fff; margin-bottom: 20px;
}
.nm-hero-h1 em { font-style: normal; color: #60a5fa }
.nm-hero-sub {
  font-size: 17px; color: rgba(255,255,255,.75);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.nm-hero-sub strong { color: #fff; font-weight: 600 }
.nm-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px }
.nm-hero-stats { display: flex; gap: 32px; flex-wrap: wrap }
.nm-hero-stat {}
.nm-hero-stat-n { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1 }
.nm-hero-stat-l { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 3px }
.nm-hero-stat-div { width: 1px; background: rgba(255,255,255,.15); align-self: stretch }

/* HERO RIGHT — Search card */
.nm-hero-card {
  background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-xl); padding: 28px;
}
.nm-hero-card-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 16px }
.nm-search-bar {
  display: flex; background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: 10px; overflow: hidden; margin-bottom: 14px;
  transition: border-color .2s;
}
.nm-search-bar:focus-within { border-color: var(--blue) }
.nm-search-input {
  flex: 1; background: none; border: none; outline: none;
  font-family: inherit; font-size: 14px; color: var(--txt); padding: 12px 16px;
}
.nm-search-input::placeholder { color: var(--txt3) }
.nm-search-btn {
  background: var(--blue); color: #fff; border: none;
  padding: 0 20px; font-size: 13px; font-weight: 600; font-family: inherit;
  transition: background .2s; white-space: nowrap;
}
.nm-search-btn:hover { background: var(--navy2) }
.nm-filter-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom:20px }
.nm-filter-pill {
  font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 20px;
  border: 1px solid var(--border2); color: var(--txt2);
  background: var(--bg); transition: all .15s;
}
.nm-filter-pill:hover, .nm-filter-pill.active {
  border-color: var(--blue); color: var(--blue); background: var(--blue-bg);
}
/* Mini idea cards inside hero */
.nm-mini-cards { display: flex; flex-direction: column; gap: 10px }
.nm-mini-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; background: var(--bg2); border-radius: 10px;
  border: 1px solid var(--border); transition: box-shadow .2s, border-color .2s;
}
.nm-mini-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm) }
.nm-mini-flag { font-size: 20px; flex-shrink: 0 }
.nm-mini-info { flex: 1; min-width: 0 }
.nm-mini-title { font-size: 13px; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
.nm-mini-meta { font-size: 11px; color: var(--txt3); margin-top: 2px }
.nm-mini-price {
  font-size: 14px; font-weight: 700; color: var(--blue);
  background: var(--blue-bg); border-radius: 6px; padding: 4px 10px; flex-shrink: 0;
}

/* ── MARQUEE ── */
.nm-marquee-section {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2); overflow: hidden; padding: 12px 0;
}
.nm-marquee-track { display: flex; width: max-content; animation: nmScroll 36s linear infinite }
@keyframes nmScroll { to { transform: translateX(-50%) } }
.nm-m-item {
  display: flex; align-items: center; gap: 10px; padding: 0 28px;
  white-space: nowrap; font-size: 13px; color: var(--txt2); font-weight: 500;
}
.nm-m-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border2) }
.nm-m-flag { font-size: 15px }

/* ── TRUST BAR ── */
.nm-trust-bar {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.nm-trust-bar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.nm-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--txt2) }
.nm-trust-icon { font-size: 18px }
.nm-trust-divider { width: 1px; height: 20px; background: var(--border) }

/* ── SECTIONS ── */
.nm-section { padding: 80px 0 }
.nm-section-alt { background: var(--bg2) }
.nm-section-dark {
  background: linear-gradient(135deg, var(--bg-navy) 0%, #0d2060 100%);
  color: var(--txt-inv);
}
.nm-section-dark .nm-sec-h2 { color: #fff }
.nm-section-dark .nm-sec-sub { color: rgba(255,255,255,.65) }

/* ── IDEA CARDS ── */
.nm-ideas-section { padding: 80px 0 }
.nm-ideas-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px }
.nm-filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px }
.nm-fchip {
  font-size: 13px; font-weight: 500; padding: 7px 16px; border-radius: 7px;
  border: 1px solid var(--border2); color: var(--txt2); background: var(--bg);
  transition: all .15s;
}
.nm-fchip:hover { border-color: var(--blue); color: var(--blue) }
.nm-fchip.nm-active { background: var(--blue); border-color: var(--blue); color: #fff }
.nm-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px }
.nm-cards-grid.nm-loading { opacity: .5; pointer-events: none }

/* Idea Card */
.nm-icard {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .25s, transform .25s;
  position: relative; overflow: hidden;
}
.nm-icard:hover {
  border-color: var(--blue); box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.nm-ic-scarcity {
  position: absolute; top: 12px; right: 12px;
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 5px;
  background: var(--red-bg); color: var(--red); border: 1px solid #fecaca;
  animation: nmPulse 2s infinite;
}
@keyframes nmPulse { 0%,100%{opacity:1} 50%{opacity:.6} }
.nm-ic-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px }
.nm-ic-cat {
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
  padding: 4px 10px; border-radius: 5px; text-transform: uppercase;
}
.nm-cat-finance,.nm-cat-fin    { background: var(--amber-bg); color: var(--amber); border: 1px solid #fde68a }
.nm-cat-ai-powered,.nm-cat-ai  { background: #f5f3ff; color: var(--indigo); border: 1px solid #ddd6fe }
.nm-cat-health                  { background: #fdf2f8; color: #9d174d; border: 1px solid #fbcfe8 }
.nm-cat-e-commerce,.nm-cat-ecom { background: var(--green-bg); color: var(--green); border: 1px solid #a7f3d0 }
.nm-cat-education,.nm-cat-edu   { background: var(--blue-bg); color: var(--blue); border: 1px solid #bfdbfe }
.nm-cat-hr,.nm-cat-payroll      { background: #fffbeb; color: #92400e; border: 1px solid #fde68a }
.nm-cat-logistics,.nm-cat-log   { background: #fff7ed; color: #9a3412; border: 1px solid #fed7aa }
.nm-ic-vol { text-align: right }
.nm-ic-vol-n { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px }
.nm-ic-vol-l { font-size: 10px; color: var(--txt3); text-transform: uppercase; letter-spacing: .5px }
.nm-ic-country { display: flex; align-items: center; gap: 6px; margin-bottom: 8px }
.nm-ic-flag    { font-size: 17px }
.nm-ic-cname   { font-size: 11px; color: var(--txt3); font-weight: 600; text-transform: uppercase; letter-spacing: .8px }
.nm-ic-title   { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 7px; line-height: 1.3 }
.nm-ic-title a { color: inherit; text-decoration: none }
.nm-ic-title a:hover { color: var(--blue); text-decoration: none }
.nm-ic-desc    { font-size: 13px; color: var(--txt2); line-height: 1.55; margin-bottom: 14px }
.nm-ic-pills   { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px }
.nm-ic-pill    {
  font-size: 11px; color: var(--txt2); font-weight: 500;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 5px; padding: 3px 8px;
}
.nm-ic-pill b  { color: var(--navy); font-weight: 700 }
.nm-ic-footer  {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.nm-ic-price   { font-size: 20px; font-weight: 800; color: var(--navy) }
.nm-ic-price sup   { font-size: 13px; font-weight: 400; vertical-align: super }
.nm-ic-price small { font-size: 11px; color: var(--txt3); font-weight: 400 }
.nm-ic-btn {
  font-size: 12px; font-weight: 600; padding: 7px 16px; border-radius: 7px;
  background: var(--blue-bg); color: var(--blue); border: 1px solid #bfdbfe;
  text-decoration: none; transition: all .15s;
}
.nm-ic-btn:hover { background: var(--blue); color: #fff; text-decoration: none }

/* ── PAIN vs SOLUTION ── */
.nm-pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px }
.nm-pain-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.nm-pain-card:hover { box-shadow: var(--shadow); transform: translateY(-2px) }
.nm-pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red-bg); border-bottom: 2px solid #fca5a5;
}
.nm-pain-icon { font-size: 28px; margin-bottom: 14px; display: block }
.nm-pain-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px }
.nm-pain-card p  { font-size: 13px; color: var(--txt2); line-height: 1.65 }
.nm-vs-row   { display: flex; align-items: center; gap: 24px; margin: 40px 0 }
.nm-vs-line  { flex: 1; height: 1px; background: var(--border) }
.nm-vs-badge {
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 20px; border-radius: 8px;
  background: var(--navy); color: #fff; white-space: nowrap;
}
.nm-sol-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px }
.nm-sol-card {
  background: var(--blue-bg); border: 1px solid #bfdbfe;
  border-radius: 14px; padding: 24px;
  position: relative; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.nm-sol-card:hover { box-shadow: var(--shadow); transform: translateY(-2px) }
.nm-sol-check {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 14px;
  background: var(--blue);
}
.nm-sol-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px }
.nm-sol-card p  { font-size: 13px; color: var(--txt2); line-height: 1.65 }

/* ── URGENCY STRIP ── */
.nm-urgency-strip {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap;
}
.nm-urg-txt { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9) }
.nm-urg-txt span { color: #fbbf24; font-weight: 700 }
.nm-timer-row { display: flex; gap: 6px; align-items: center }
.nm-t-blk {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 7px; padding: 7px 12px; text-align: center; min-width: 48px;
}
.nm-t-n { font-size: 22px; font-weight: 800; color: #fff; line-height: 1 }
.nm-t-l { font-size: 9px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px }
.nm-t-sep { font-size: 20px; font-weight: 700; color: rgba(255,255,255,.4) }

/* ── HOW IT WORKS ── */
.nm-how-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
  position: relative;
}
.nm-how-grid::before {
  content: '';
  position: absolute; top: 28px; left: calc(16% + 28px); right: calc(16% + 28px);
  height: 1px; background: repeating-linear-gradient(90deg,var(--border) 0px,var(--border) 8px,transparent 8px,transparent 16px);
  pointer-events: none;
}
.nm-step { text-align: center }
.nm-step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #fff;
  background: var(--blue); box-shadow: 0 4px 14px rgba(37,99,235,.35);
  position: relative; z-index: 1;
}
.nm-step h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px }
.nm-step p  { font-size: 13px; color: var(--txt2); line-height: 1.7 }
.nm-step-pill {
  display: inline-block; margin-top: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  background: var(--blue-bg); color: var(--blue); border: 1px solid #bfdbfe;
}

/* ── TESTIMONIALS ── */
.nm-proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px }
.nm-proof-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.nm-proof-card:hover { box-shadow: var(--shadow) }
.nm-proof-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px }
.nm-proof-text { font-size: 14px; color: var(--txt2); line-height: 1.75; margin-bottom: 18px; font-style: italic }
.nm-proof-author { display: flex; align-items: center; gap: 10px }
.nm-proof-av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff; background: var(--blue);
}
.nm-proof-name { font-size: 13px; font-weight: 700; color: var(--navy) }
.nm-proof-loc  { font-size: 11px; color: var(--txt3); margin-top: 1px }
.nm-proof-result { font-size: 11px; font-weight: 700; color: var(--green); margin-top: 2px }

/* ── CTA SECTION ── */
.nm-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, var(--indigo) 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.nm-cta-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.nm-cta-h2 {
  font-size: clamp(32px,5vw,56px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.08;
  color: #fff; max-width: 700px; margin: 0 auto 16px;
}
.nm-cta-h2 em { font-style: normal; color: #93c5fd }
.nm-cta-sub { font-size: 17px; color: rgba(255,255,255,.7); max-width: 460px; margin: 0 auto 40px; line-height: 1.68 }
.nm-cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap }
.nm-trust-row { display: flex; justify-content: center; gap: 24px; margin-top: 24px; flex-wrap: wrap }
.nm-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.6) }
.nm-trust-check { color: #4ade80; font-weight: 700 }

/* ── SINGLE IDEA PAGE ── */
.nm-hband {
  background: linear-gradient(160deg, var(--bg-navy) 0%, #0d2060 100%);
  padding: 80px 0 60px; position: relative; overflow: hidden;
}
.nm-hband::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.nm-hband-inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start;
}
.nm-hb-tags { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap }
.nm-tag {
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 5px; text-transform: uppercase; letter-spacing: .3px;
}
.nm-tag-hot     { background: rgba(239,68,68,.15); color: #fca5a5; border: 1px solid rgba(252,165,165,.3) }
.nm-tag-country { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.2) }
.nm-tag-plain   { background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.12) }
.nm-hero-title {
  font-size: clamp(28px,4vw,48px); font-weight: 800;
  letter-spacing: -1px; line-height: 1.05; color: #fff; margin-bottom: 18px;
}
.nm-hero-title em { font-style: normal; color: #93c5fd }
.nm-hero-desc { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.75; max-width: 540px; margin-bottom: 24px }
.nm-hero-desc strong { color: #fff; font-weight: 600 }
.nm-metrics-row {
  display: flex; gap: 0; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: 12px; overflow: hidden; margin-bottom: 24px;
}
.nm-metric { padding: 14px 18px; border-right: 1px solid rgba(255,255,255,.1); flex: 1; text-align: center }
.nm-metric:last-child { border-right: none }
.nm-m-n { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.5px }
.nm-m-l { font-size: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px }
.nm-sp-mini { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,.65) }
.nm-mini-avs { display: flex }
.nm-mini-av {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2);
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff; margin-left: -6px;
}
.nm-mini-av:first-child { margin-left: 0 }
.nm-sp-acc { color: #60a5fa; font-weight: 700 }

/* BUY CARD */
.nm-buy-card {
  background: #fff; border-radius: 16px; padding: 26px;
  box-shadow: var(--shadow-xl); position: sticky; top: 80px;
}
.nm-buy-card-top { text-align: center; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 18px }
.nm-buy-top-row { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 6px }
.nm-buy-orig { font-size: 14px; color: var(--txt3); text-decoration: line-through }
.nm-buy-save {
  font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px;
  background: var(--green-bg); color: var(--green); border: 1px solid #a7f3d0;
}
.nm-buy-price { font-size: 56px; font-weight: 800; color: var(--navy); letter-spacing: -2px; line-height: 1 }
.nm-buy-price sup { font-size: 24px; font-weight: 400; vertical-align: super }
.nm-buy-period { font-size: 12px; color: var(--txt3); margin-top: 4px }
.nm-stock-section { margin-bottom: 14px }
.nm-stock-row { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 5px }
.nm-stock-l { color: var(--red); font-weight: 700 }
.nm-stock-r { color: var(--txt3) }
.nm-stock-bar { height: 5px; background: var(--bg2); border-radius: 3px; overflow: hidden }
.nm-stock-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--red)); width: 78% }
.nm-timer-label { text-align: center; font-size: 10px; color: var(--txt3); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 8px }
.nm-timer-row-card { display: flex; justify-content: center; gap: 8px; margin-bottom: 18px }
.nm-t-blk-w {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 7px; padding: 7px 12px; text-align: center; min-width: 46px;
}
.nm-t-n-w { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1 }
.nm-t-l-w { font-size: 9px; color: var(--txt3); text-transform: uppercase; letter-spacing: .5px }
.nm-t-sep-w { font-size: 20px; font-weight: 700; color: var(--txt3); padding-top: 7px }
.nm-btn-buy-main {
  width: 100%; display: block; text-align: center;
  background: var(--blue); color: #fff;
  font-size: 16px; font-weight: 700; padding: 16px;
  border-radius: 10px; border: none; margin-bottom: 10px;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.nm-btn-buy-main:hover { background: var(--navy2); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); text-decoration: none }
.nm-btn-demo {
  width: 100%; display: block; text-align: center;
  background: transparent; color: var(--txt);
  font-size: 14px; font-weight: 500; padding: 12px;
  border-radius: 9px; border: 1.5px solid var(--border2);
  transition: border-color .2s, background .2s; margin-bottom: 18px; text-decoration: none;
}
.nm-btn-demo:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-bg); text-decoration: none }
.nm-buy-includes { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px }
.nm-buy-includes li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--txt2) }
.nm-bi-check { color: var(--green); font-weight: 700; font-size: 13px; flex-shrink: 0 }
.nm-guarantee-box {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border-radius: 10px; background: var(--green-bg); border: 1px solid #a7f3d0; margin-bottom: 12px;
}
.nm-guarantee-icon { font-size: 22px; flex-shrink: 0 }
.nm-g-title { font-size: 13px; font-weight: 700; color: var(--navy) }
.nm-g-sub { font-size: 11px; color: var(--txt3); margin-top: 2px }
.nm-pay-row { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap }
.nm-pay-tag {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 5px; padding: 4px 10px; font-size: 10px; color: var(--txt3); font-weight: 600;
}

/* IDEA CONTENT */
.nm-idea-content { max-width: 1160px; margin: 0 auto; padding: 0 40px 80px }
.nm-sec-block { padding: 52px 0; border-bottom: 1px solid var(--border) }
.nm-sec-block:last-child { border-bottom: none }
.nm-sec-h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px }
.nm-sec-desc { font-size: 14px; color: var(--txt2); line-height: 1.7; max-width: 640px; margin-bottom: 28px }

/* KW TABLE */
.nm-kw-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden }
.nm-kw-table th { background: var(--bg2); padding: 11px 16px; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--txt3); text-align: left }
.nm-kw-table th:not(:last-child) { border-right: 1px solid var(--border) }
.nm-kw-table td { padding: 13px 16px; font-size: 13px; border-top: 1px solid var(--border); color: var(--txt2) }
.nm-kw-table td:not(:last-child) { border-right: 1px solid var(--border) }
.nm-kw-table tr:hover td { background: var(--bg2) }
.nm-kw-main { font-weight: 600; color: var(--navy) !important }
.nm-kw-vol  { font-size: 15px; font-weight: 700; color: var(--blue) }
.nm-kw-cpc  { color: var(--amber); font-weight: 700 }
.nm-kd-wrap { display: flex; align-items: center; gap: 8px }
.nm-kd-track { width: 60px; height: 4px; background: var(--bg3); border-radius: 2px; overflow: hidden }
.nm-kd-fill  { height: 100%; border-radius: 2px }
.nm-kd-easy  { background: var(--green) }
.nm-kd-med   { background: var(--amber) }
.nm-kd-hard  { background: var(--red) }
.nm-kw-badge { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: .3px }
.nm-kb-hot   { background: var(--red-bg); color: var(--red); border: 1px solid #fecaca }
.nm-kb-gem   { background: var(--blue-bg); color: var(--blue); border: 1px solid #bfdbfe }
.nm-kw-more  { text-align: center; padding: 13px; font-size: 12px; color: var(--txt3); font-style: italic }

/* REVENUE CARDS */
.nm-rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px }
.nm-rev-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.nm-rev-card:hover { box-shadow: var(--shadow); transform: translateY(-2px) }
.nm-rev-icon { font-size: 28px; margin-bottom: 12px; display: block }
.nm-rev-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px }
.nm-rev-text { font-size: 12px; color: var(--txt2); line-height: 1.65; margin-bottom: 12px }
.nm-rev-amount { font-size: 22px; font-weight: 800; color: var(--blue); letter-spacing: -0.5px }
.nm-rev-period { font-size: 11px; color: var(--txt3); margin-top: 2px }

/* ROI CALCULATOR */
.nm-roi-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
}
.nm-roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center }
.nm-roi-inputs { display: flex; flex-direction: column; gap: 20px }
.nm-roi-field label { display: flex; justify-content: space-between; margin-bottom: 8px }
.nm-roi-label { font-size: 12px; color: var(--txt2); font-weight: 600; text-transform: uppercase; letter-spacing: .5px }
.nm-roi-val { font-size: 13px; font-weight: 700; color: var(--blue) }
input[type=range] { width: 100%; accent-color: var(--blue) }
.nm-roi-results { text-align: center }
.nm-roi-main-label { font-size: 11px; color: var(--txt3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px }
.nm-roi-big { font-size: 52px; font-weight: 800; color: var(--navy); letter-spacing: -2px; line-height: 1 }
.nm-roi-big-sub { font-size: 13px; color: var(--txt2); margin-top: 4px; margin-bottom: 20px }
.nm-roi-breakdown { display: flex; flex-direction: column; gap: 8px }
.nm-roi-row { display: flex; justify-content: space-between; font-size: 13px; padding: 9px 14px; background: var(--bg); border-radius: 8px; border: 1px solid var(--border) }
.nm-roi-row .label { color: var(--txt2) }
.nm-roi-row .value { color: var(--navy); font-weight: 600 }
.nm-roi-row .value.acc { color: var(--blue) }

/* COMPETITION */
.nm-comp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px }
.nm-comp-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 20px; box-shadow: var(--shadow-sm) }
.nm-comp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px }
.nm-comp-name { font-size: 14px; font-weight: 700; color: var(--navy) }
.nm-comp-threat { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; text-transform: uppercase }
.ct-low { background: var(--green-bg); color: var(--green); border: 1px solid #a7f3d0 }
.ct-med { background: var(--amber-bg); color: var(--amber); border: 1px solid #fde68a }
.ct-high { background: var(--red-bg); color: var(--red); border: 1px solid #fecaca }
.nm-comp-text { font-size: 13px; color: var(--txt2); line-height: 1.65; margin-bottom: 8px }
.nm-comp-edge { font-size: 12px; font-weight: 600; color: var(--blue) }

/* ROADMAP */
.nm-roadmap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px }
.nm-roadmap { display: flex; flex-direction: column; gap: 0 }
.nm-rm-item { display: flex; gap: 14px }
.nm-rm-spine { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 16px }
.nm-rm-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; border: 2px solid var(--border2) }
.nm-rm-dot.done { background: var(--green); border-color: var(--green) }
.nm-rm-dot.next { background: var(--blue); border-color: var(--blue) }
.nm-rm-dot.later { background: var(--bg3); border-color: var(--border2) }
.nm-rm-line { width: 2px; flex: 1; min-height: 24px; background: var(--border) }
.nm-rm-item:last-child .nm-rm-line { display: none }
.nm-rm-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 10px; flex: 1; box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.nm-rm-card:hover { border-color: var(--blue) }
.nm-rm-week { font-size: 10px; color: var(--txt3); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px }
.nm-rm-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px }
.nm-rm-text { font-size: 12px; color: var(--txt2); line-height: 1.6 }

/* STACK GRID */
.nm-stack-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px }
.nm-stack-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px; text-align: center;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s;
}
.nm-stack-card:hover { box-shadow: var(--shadow); transform: translateY(-2px) }
.nm-stack-emoji { font-size: 26px; margin-bottom: 8px; display: block }
.nm-stack-name  { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px }
.nm-stack-role  { font-size: 11px; color: var(--txt3) }

/* INCLUDED GRID */
.nm-inc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px }
.nm-inc-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px; box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.nm-inc-item:hover { border-color: var(--blue) }
.nm-inc-icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: var(--blue-bg); display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.nm-inc-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px }
.nm-inc-text  { font-size: 11px; color: var(--txt2); line-height: 1.55 }

/* BOTTOM CTA */
.nm-bottom-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, var(--indigo) 100%);
  border-radius: 20px; padding: 56px 48px; text-align: center; position: relative; overflow: hidden;
}
.nm-bottom-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.nm-btc-h2 { font-size: clamp(26px,3.5vw,44px); font-weight: 800; letter-spacing: -1px; color: #fff; margin-bottom: 10px; position: relative; z-index: 1 }
.nm-btc-h2 em { font-style: normal; color: #93c5fd }
.nm-btc-sub { font-size: 15px; color: rgba(255,255,255,.7); max-width: 420px; margin: 0 auto 26px; line-height: 1.68; position: relative; z-index: 1 }
.nm-btc-price-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 22px; position: relative; z-index: 1 }
.nm-btc-orig  { font-size: 18px; color: rgba(255,255,255,.4); text-decoration: line-through }
.nm-btc-price { font-size: 52px; font-weight: 800; color: #fff; letter-spacing: -2px; line-height: 1 }
.nm-btc-save  {
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  background: rgba(74,222,128,.15); color: #4ade80; border: 1px solid rgba(74,222,128,.3);
}
.nm-btn-buy-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--navy);
  font-size: 16px; font-weight: 800; padding: 18px 40px; border-radius: 10px; border: none;
  transition: transform .2s, box-shadow .2s; position: relative; z-index: 1; text-decoration: none;
}
.nm-btn-buy-big:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,.25); color: var(--navy); text-decoration: none }
.nm-btc-trust { display: flex; justify-content: center; gap: 20px; margin-top: 18px; flex-wrap: wrap; position: relative; z-index: 1 }
.nm-btc-ti { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,.55) }
.nm-btc-check { color: #4ade80; font-weight: 700 }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap }
.breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s }
.breadcrumb a:hover { color: #fff; text-decoration: none }
.bc-sep { color: rgba(255,255,255,.3) }
.bc-cur { color: rgba(255,255,255,.85) }

/* ── FOOTER ── */
.nm-footer { background: var(--bg-dark); color: rgba(255,255,255,.7); border-top: 1px solid rgba(255,255,255,.08) }
.nm-footer-top {
  max-width: 1160px; margin: 0 auto; padding: 56px 40px 40px;
  display: grid; grid-template-columns: 280px 1fr; gap: 60px;
}
.nm-footer-logo { font-weight: 800; font-size: 20px; letter-spacing: -0.5px; color: #fff; text-decoration: none; display: block; margin-bottom: 12px }
.nm-footer-logo em { font-style: normal; color: #60a5fa }
.nm-footer-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65 }
.nm-footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px }
.nm-footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 16px }
.nm-footer-col li { margin-bottom: 10px }
.nm-footer-col a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; text-decoration: none }
.nm-footer-col a:hover { color: rgba(255,255,255,.9); text-decoration: none }
.nm-footer-bottom {
  max-width: 1160px; margin: 0 auto; padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.nm-footer-copy  { font-size: 12px; color: rgba(255,255,255,.35) }
.nm-footer-links { display: flex; gap: 20px }
.nm-footer-links a { font-size: 12px; color: rgba(255,255,255,.35); transition: color .2s; text-decoration: none }
.nm-footer-links a:hover { color: rgba(255,255,255,.7); text-decoration: none }

/* ── ARCHIVE PAGE ── */
.nm-archive-hero { background: var(--bg-navy); padding: 72px 0 48px }
.nm-archive-hero-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; text-align: center }
.nm-archive-hero .nm-sec-h2 { color: #fff }
.nm-archive-hero .nm-sec-sub { color: rgba(255,255,255,.65); margin: 0 auto }
.nm-archive-body { max-width: 1160px; margin: 0 auto; padding: 48px 40px 80px; display: grid; grid-template-columns: 240px 1fr; gap: 32px }

/* Search */
.nm-archive-search {
  display: flex; background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm);
  margin-bottom: 24px; transition: border-color .2s;
}
.nm-archive-search:focus-within { border-color: var(--blue) }
.nm-archive-search input {
  flex: 1; background: none; border: none; outline: none;
  font-family: inherit; font-size: 14px; color: var(--txt); padding: 12px 16px;
}
.nm-archive-search input::placeholder { color: var(--txt3) }
.nm-archive-search button {
  background: var(--blue); color: #fff; border: none;
  padding: 0 20px; font-weight: 600; font-size: 13px; font-family: inherit;
  transition: background .2s;
}
.nm-archive-search button:hover { background: var(--navy2) }

/* Country tabs */
.nm-ctabs { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 28px; scrollbar-width: none }
.nm-ctabs::-webkit-scrollbar { display: none }
.nm-ctab {
  display: flex; align-items: center; gap: 6px; padding: 7px 14px;
  border-radius: 8px; border: 1px solid var(--border2); color: var(--txt2);
  background: var(--bg); font-size: 13px; font-weight: 500; white-space: nowrap; transition: all .15s;
}
.nm-ctab:hover { border-color: var(--blue); color: var(--blue) }
.nm-ctab.active { background: var(--navy); border-color: var(--navy); color: #fff }

/* Sidebar filters */
.nm-filter-sidebar { position: sticky; top: 88px; height: fit-content }
.nm-filter-panel {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 18px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.nm-filter-panel-title {
  font-size: 12px; font-weight: 700; color: var(--txt2); letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between;
}
.nm-filter-clear { font-size: 11px; color: var(--blue); background: none; border: none; font-family: inherit; font-weight: 600 }
.nm-filter-opt {
  display: flex; align-items: center; gap: 10px; padding: 7px 8px;
  border-radius: 7px; font-size: 13px; color: var(--txt2); transition: all .15s;
}
.nm-filter-opt:hover { background: var(--bg2); color: var(--txt) }
.nm-filter-opt.active { color: var(--navy) }
.nm-filter-check {
  width: 16px; height: 16px; border-radius: 4px;
  border: 1.5px solid var(--border2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 9px; transition: all .15s;
}
.nm-filter-opt.active .nm-filter-check { background: var(--blue); border-color: var(--blue); color: #fff }
.nm-filter-count { margin-left: auto; font-size: 11px; color: var(--txt3); background: var(--bg2); padding: 1px 6px; border-radius: 10px }
.nm-filter-select {
  width: 100%; font-family: inherit; font-size: 13px; font-weight: 500;
  padding: 9px 12px; border-radius: 8px; background: var(--bg);
  color: var(--txt); border: 1px solid var(--border2); transition: border-color .2s;
}
.nm-filter-select:focus { outline: none; border-color: var(--blue) }

/* Browse toolbar */
.nm-browse-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; gap: 16px; flex-wrap: wrap;
}
.nm-result-count { font-size: 13px; color: var(--txt2) }
.nm-result-count strong { color: var(--navy); font-weight: 700 }
.nm-sort-select {
  font-family: inherit; font-size: 13px; font-weight: 500;
  padding: 7px 12px; border-radius: 7px; background: var(--bg);
  color: var(--txt); border: 1px solid var(--border2); transition: border-color .2s;
}
.nm-sort-select:focus { outline: none; border-color: var(--blue) }
.nm-view-toggle { display: flex; gap: 4px }
.nm-view-btn {
  width: 32px; height: 32px; border-radius: 7px; border: 1px solid var(--border2);
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--txt3); transition: all .15s;
}
.nm-view-btn.active { border-color: var(--blue); color: var(--blue); background: var(--blue-bg) }
.nm-active-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; min-height: 24px }
.nm-active-tag {
  display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  background: var(--blue-bg); color: var(--blue); border: 1px solid #bfdbfe;
}
.nm-load-more-wrap { text-align: center; margin-top: 36px }
.nm-btn-load-more {
  font-family: inherit; font-size: 14px; font-weight: 600;
  padding: 12px 36px; border-radius: 8px;
  background: var(--bg); color: var(--txt); border: 1.5px solid var(--border2);
  transition: border-color .2s, background .2s; box-shadow: var(--shadow-sm);
}
.nm-btn-load-more:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-bg) }

/* Pagination */
.nm-pagination { margin-top: 48px; display: flex; justify-content: center; gap: 6px }
.nm-pagination .page-numbers {
  font-family: inherit; font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border2);
  color: var(--txt2); transition: all .15s; text-decoration: none;
}
.nm-pagination .page-numbers:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-bg) }
.nm-pagination .current { background: var(--blue); border-color: var(--blue); color: #fff }

/* ── NOTIFICATION POPUP ── */
.nm-notif {
  position: fixed; bottom: 24px; left: 24px; z-index: 200;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; max-width: 300px;
  box-shadow: var(--shadow-lg);
  transform: translateY(130px); opacity: 0;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .5s;
}
.nm-notif.nm-show { transform: translateY(0); opacity: 1 }
.nm-notif-av {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff;
}
.nm-notif-n1 { font-size: 12px; font-weight: 600; color: var(--navy) }
.nm-notif-n2 { font-size: 11px; color: var(--txt3); margin-top: 2px }
.nm-notif-time { font-size: 10px; color: var(--txt3); margin-left: auto; white-space: nowrap }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nm-cards-grid       { grid-template-columns: repeat(2,1fr) }
  .nm-proof-grid       { grid-template-columns: repeat(2,1fr) }
  .nm-hband-inner      { grid-template-columns: 1fr }
  .nm-buy-card         { position: static }
  .nm-how-grid         { grid-template-columns: 1fr }
  .nm-how-grid::before { display: none }
  .nm-footer-top       { grid-template-columns: 1fr }
  .nm-footer-cols      { grid-template-columns: repeat(2,1fr) }
  .nm-hero-inner       { grid-template-columns: 1fr }
  .nm-archive-body     { grid-template-columns: 1fr }
  .nm-filter-sidebar   { position: static; display: none }
}
@media (max-width: 768px) {
  .nm-container        { padding: 0 20px }
  .nm-header-inner     { padding: 0 20px }
  .nm-nav-primary      { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px; box-shadow: var(--shadow) }
  .nm-nav-primary.nm-nav-open { display: block }
  .nm-nav-links        { flex-direction: column; gap: 4px }
  .nm-hamburger        { display: flex }
  .nm-hero             { padding: 60px 0 56px }
  .nm-hero-inner       { gap: 40px }
  .nm-hero-btns        { flex-direction: column }
  .nm-cards-grid       { grid-template-columns: 1fr }
  .nm-pain-grid,.nm-sol-grid,.nm-proof-grid { grid-template-columns: 1fr }
  .nm-section          { padding: 56px 0 }
  .nm-footer-top       { padding: 40px 20px 32px }
  .nm-footer-bottom    { padding: 16px 20px }
  .nm-footer-cols      { grid-template-columns: 1fr 1fr }
  .nm-ideas-header     { flex-direction: column; align-items: flex-start; gap: 16px }
  .nm-bottom-cta       { padding: 40px 24px }
  .nm-urgency-strip    { padding: 14px 20px; flex-direction: column; gap: 12px; text-align: center }
  .nm-trust-bar-inner  { justify-content: center }
}
@media (max-width: 480px) {
  .nm-hero-h1          { font-size: 32px }
  .nm-sec-h2           { font-size: 26px }
  .nm-footer-cols      { grid-template-columns: 1fr }
  .nm-metrics-row      { flex-wrap: wrap }
  .nm-metric           { flex: 1 1 45% }
}
