/* =============================================================
   NaviZone — Custom CSS (Bootstrap 5 base)
   Brand: #1BBC9B → #148D74
   ============================================================= */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --nz-green:     #1BBC9B;
  --nz-green-d:   #148D74;
  --nz-green-dim: rgba(27,188,155,.10);
  --nz-green-g:   rgba(27,188,155,.22);
  --nz-bdr-g:     rgba(27,188,155,.26);

  --nz-bg:        #090C0B;
  --nz-bg2:       #0F1412;
  --nz-card:      #161D1A;
  --nz-card2:     #1B2420;
  --nz-bdr:       rgba(255,255,255,.07);

  --nz-white:     #F0F6F3;
  --nz-gray:      #8A9E98;
  --nz-gray2:     #566860;

  --nz-ff:        'Manrope', sans-serif;
  --nz-mono:      'JetBrains Mono', monospace;

  --nz-nav-h:     66px;
  --nz-radius:    12px;
  --nz-radius-lg: 16px;
}

/* ── RESET / BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nz-nav-h) + 16px); }

body.nz-body {
  background: var(--nz-bg);
  color: var(--nz-white);
  font-family: var(--nz-ff);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--nz-bg2); }
::-webkit-scrollbar-thumb { background: var(--nz-green-d); border-radius: 2px; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--nz-green); }

/* ── COLORS ─────────────────────────────────────────────────── */
.text-navi  { color: var(--nz-green) !important; }
.bg-nz2     { background: var(--nz-bg2) !important; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.nz-h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.032em;
  line-height: 1.1;
  margin-bottom: .875rem;
}
.nz-hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.034em;
  margin-bottom: 1.125rem;
}
.nz-hero-sub {
  font-size: 1.0625rem;
  color: var(--nz-gray);
  line-height: 1.72;
  margin-bottom: 1.875rem;
}
.nz-sec-desc {
  font-size: 1rem;
  color: var(--nz-gray);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 2.375rem;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.nz-btn-primary {
  background: var(--nz-green);
  color: #fff;
  border: none;
  font-family: var(--nz-ff);
  font-weight: 700;
  border-radius: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nz-btn-primary:hover, .nz-btn-primary:focus-visible {
  background: var(--nz-green-d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--nz-green-g);
}

.nz-btn-ghost {
  background: transparent;
  color: var(--nz-white);
  border: 1px solid var(--nz-bdr);
  font-family: var(--nz-ff);
  font-weight: 700;
  border-radius: 8px;
  transition: border-color .2s, color .2s;
}
.nz-btn-ghost:hover, .nz-btn-ghost:focus-visible {
  border-color: var(--nz-bdr-g);
  color: var(--nz-green);
}

.nz-btn-lg { padding: .875rem 1.75rem; font-size: 1rem; }

/* ── TAG / BADGE ────────────────────────────────────────────── */
.nz-tag {
  display: inline-flex;
  align-items: center;
  gap: .4375rem;
  font-family: var(--nz-mono);
  font-size: .625rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nz-green);
  background: var(--nz-green-dim);
  border: 1px solid var(--nz-bdr-g);
  padding: .3125rem .75rem;
  border-radius: 100px;
}
.nz-tag-dot {
  width: 5px; height: 5px;
  background: var(--nz-green);
  border-radius: 50%;
  animation: nz-blink 2s infinite;
  flex-shrink: 0;
}
@keyframes nz-blink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* ── SECTION ────────────────────────────────────────────────── */
.nz-section { padding: 5.5rem 0; }

/* ── NAV ────────────────────────────────────────────────────── */
.nz-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nz-nav-h);
  background: rgba(9,12,11,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--nz-bdr);
  transition: background .3s;
}
.nz-nav.scrolled { background: rgba(9,12,11,.98); }
.nz-nav .container-xl {
  height: 100%;
  display: flex;
  align-items: center;
}

.nz-logo { transition: opacity .2s; }
.nz-logo:hover { opacity: .85; }
.nz-logo-text {
  font-family: var(--nz-mono);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -.02em;
  color: var(--nz-white);
}
.nz-tm {
  font-family: var(--nz-ff);
  font-size: .5rem;
  color: var(--nz-gray2);
  vertical-align: super;
  margin-left: 1px;
}

.nz-nav-link {
  color: var(--nz-gray);
  font-size: .84375rem;
  font-weight: 500;
  padding: .4375rem .6875rem;
  border-radius: 6px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nz-nav-link:hover { color: var(--nz-white); background: rgba(255,255,255,.05); }
.nz-nav-link.active { color: var(--nz-green); }

.nz-lang-switch { gap: .1875rem; }
.nz-lang-btn {
  font-family: var(--nz-mono);
  font-size: .6875rem;
  color: var(--nz-gray);
  padding: .25rem .5rem;
  border: 1px solid var(--nz-bdr);
  border-radius: 4px;
  transition: color .18s, border-color .18s;
  cursor: pointer;
}
.nz-lang-btn.active,
.nz-lang-btn:hover { color: var(--nz-green); border-color: var(--nz-bdr-g); }

/* Burger */
.nz-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nz-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--nz-white); border-radius: 1px; transition: .25s;
}
.nz-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nz-burger.open span:nth-child(2) { opacity: 0; }
.nz-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.nz-mob-nav {
  display: none;
  position: fixed;
  top: var(--nz-nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(9,12,11,.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 2rem 1.75rem;
  gap: .125rem;
  overflow-y: auto;
}
.nz-mob-nav.open { display: flex; }
.nz-mob-link {
  color: var(--nz-white);
  font-size: 1.1875rem;
  font-weight: 700;
  padding: .875rem 0;
  border-bottom: 1px solid var(--nz-bdr);
  transition: color .18s;
  display: block;
}
.nz-mob-link:hover { color: var(--nz-green); }

/* ── HERO ───────────────────────────────────────────────────── */
.nz-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nz-nav-h) + 3.5rem) 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.nz-subhero {
  padding: calc(var(--nz-nav-h) + 4rem) 0 3.5rem;
  background: var(--nz-bg2);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--nz-bdr);
}
.nz-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.nz-hero-bg::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  right: -200px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(27,188,155,.07), transparent 68%);
}
.nz-hero-bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  left: -100px; bottom: -150px;
  background: radial-gradient(circle, rgba(27,188,155,.04), transparent 70%);
}
.nz-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(27,188,155,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,188,155,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: nz-grid-move 28s linear infinite;
  mask-image: radial-gradient(ellipse 70% 80% at 65% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 65% 50%, black, transparent);
}
@keyframes nz-grid-move {
  from { transform: translate(0,0); }
  to   { transform: translate(56px,56px); }
}
.nz-hero-inner { position: relative; z-index: 2; }

/* Stats strip */
.nz-hstats {
  display: flex;
  border: 1px solid var(--nz-bdr);
  border-radius: var(--nz-radius);
  overflow: hidden;
  background: var(--nz-card);
}
.nz-hs { flex: 1; padding: .875rem 1.125rem; border-right: 1px solid var(--nz-bdr); text-align: center; }
.nz-hs:last-child { border-right: none; }
.nz-hs-num {
  display: block;
  font-family: var(--nz-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--nz-white);
}
.nz-hs-num em { color: var(--nz-green); font-style: normal; }
.nz-hs-label { font-size: .625rem; color: var(--nz-gray); text-transform: uppercase; letter-spacing: .07em; margin-top: .125rem; display: block; }

/* ── DASHBOARD CARD ─────────────────────────────────────────── */
.nz-dash {
  background: var(--nz-card);
  border: 1px solid var(--nz-bdr);
  border-radius: var(--nz-radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 60px rgba(27,188,155,.05);
  animation: nz-float 5s ease-in-out infinite;
}
@keyframes nz-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.nz-dash-hd {
  padding: .8125rem 1rem;
  border-bottom: 1px solid var(--nz-bdr);
}
.nz-dash-ttl {
  font-family: var(--nz-mono);
  font-size: .625rem;
  color: var(--nz-gray);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nz-live {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-family: var(--nz-mono);
  font-size: .625rem;
  color: var(--nz-green);
}
.nz-live::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--nz-green);
  border-radius: 50%;
  animation: nz-blink 1.4s infinite;
}
.nz-map-box { height: 195px; background: #0a1210; position: relative; overflow: hidden; }
.nz-map-box svg { width: 100%; height: 100%; }
.nz-t-popup {
  position: absolute;
  bottom: 11px; left: 11px; right: 11px;
  background: rgba(22,29,26,.95);
  border: 1px solid var(--nz-bdr);
  border-radius: 9px;
  padding: .625rem .8125rem;
}
.nz-t-name { font-family: var(--nz-mono); font-size: .6875rem; color: var(--nz-green); }
.nz-t-addr { font-size: .625rem; color: var(--nz-gray); margin-top: .125rem; }
.nz-t-spd { font-family: var(--nz-mono); font-size: 1.375rem; font-weight: 700; }
.nz-t-spd small { font-size: .625rem; color: var(--nz-gray); }
.nz-dash-mets { border-top: 1px solid var(--nz-bdr); }
.nz-dm { padding: .8125rem; border-right: 1px solid var(--nz-bdr); text-align: center; }
.nz-dm:last-child { border-right: none; }
.nz-dm-v { display: block; font-family: var(--nz-mono); font-size: .875rem; font-weight: 700; }
.nz-dm-k { font-size: .625rem; color: var(--nz-gray); text-transform: uppercase; letter-spacing: .05em; margin-top: .125rem; display: block; }

/* ── DEVICES STRIP ──────────────────────────────────────────── */
.nz-strip {
  padding: 1.625rem 0;
  border-top: 1px solid var(--nz-bdr);
  border-bottom: 1px solid var(--nz-bdr);
  background: var(--nz-bg2);
  overflow: hidden;
}
.nz-strip-lbl {
  text-align: center;
  font-family: var(--nz-mono);
  font-size: .625rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--nz-gray2);
  margin-bottom: .875rem;
}
.nz-strip-overflow { overflow: hidden; }
.nz-strip-tr {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: nz-strip-scroll 24s linear infinite;
}
@keyframes nz-strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.nz-dpill {
  font-family: var(--nz-mono);
  font-size: .75rem;
  color: var(--nz-gray);
  padding: .375rem .875rem;
  border: 1px solid var(--nz-bdr);
  border-radius: 6px;
  white-space: nowrap;
  cursor: default;
  transition: color .18s, border-color .18s;
}
.nz-dpill:hover { color: var(--nz-green); border-color: var(--nz-bdr-g); }

/* ── FEATURE GRID ───────────────────────────────────────────── */
.nz-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--nz-bdr);
  border: 1px solid var(--nz-bdr);
  border-radius: 14px;
  overflow: hidden;
}
.nz-fc {
  background: var(--nz-card);
  padding: 1.75rem 1.5rem;
  transition: background .2s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.nz-fc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0 0, var(--nz-green-dim), transparent 65%);
  opacity: 0;
  transition: opacity .3s;
}
.nz-fc:hover { background: var(--nz-card2); }
.nz-fc:hover::after { opacity: 1; }
.nz-fc-icon  { font-size: 1.625rem; margin-bottom: .875rem; display: block; position: relative; z-index: 1; }
.nz-fc-title { font-size: .9375rem; font-weight: 700; margin-bottom: .4375rem; position: relative; z-index: 1; }
.nz-fc-desc  { font-size: .8125rem; color: var(--nz-gray); line-height: 1.6; position: relative; z-index: 1; margin: 0; }

/* ── AUDIENCE TABS ──────────────────────────────────────────── */
.nz-tabs-bar {
  border-bottom: 1px solid var(--nz-bdr);
  margin-bottom: 2.375rem;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.nz-tabs-bar::-webkit-scrollbar { display: none; }
.nz-tb {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--nz-gray);
  font-family: var(--nz-mono);
  font-size: .6875rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .8125rem 1.375rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s, border-color .18s;
}
.nz-tb:hover { color: var(--nz-white); }
.nz-tb.active, .nz-tb[aria-selected="true"] { color: var(--nz-green); border-bottom-color: var(--nz-green); }

.nz-tp { display: none; }
.nz-tp.active { display: grid; }

.nz-tp-h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: .6875rem;
}
.nz-tp-p { color: var(--nz-gray); line-height: 1.72; margin-bottom: 1.125rem; }
.nz-blist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5625rem; }
.nz-blist li {
  display: flex; align-items: center; gap: .625rem;
  font-size: .875rem; color: rgba(240,246,243,.75);
}
.nz-blist li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--nz-green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mini stat grid */
.nz-mini-g { display: grid; grid-template-columns: 1fr 1fr; gap: .6875rem; }
.nz-mc {
  background: var(--nz-card2);
  border: 1px solid var(--nz-bdr);
  border-radius: 10px;
  padding: 1.125rem;
}
.nz-mc-v {
  display: block;
  font-family: var(--nz-mono);
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--nz-green);
}
.nz-mc-k {
  display: block;
  font-size: .625rem;
  color: var(--nz-gray);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .25rem;
}

/* ── PRICING ────────────────────────────────────────────────── */
.nz-pc {
  background: var(--nz-card);
  border: 1px solid var(--nz-bdr);
  border-radius: var(--nz-radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
}
.nz-pc:hover { transform: translateY(-4px); }
.nz-pc.nz-pc-hot {
  border-color: var(--nz-bdr-g);
  box-shadow: 0 0 44px rgba(27,188,155,.1);
}
.nz-pc-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--nz-green);
  color: #fff;
  font-family: var(--nz-mono);
  font-size: .625rem;
  font-weight: 700;
  padding: .25rem .8125rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .08em;
}
.nz-p-tier {
  font-family: var(--nz-mono);
  font-size: .625rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nz-gray);
  margin-bottom: .625rem;
}
.nz-p-price {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .25rem;
}
.nz-p-per { font-size: .8125rem; font-weight: 400; color: var(--nz-gray); }
.nz-p-sub { font-size: .8125rem; color: var(--nz-gray); margin-bottom: 1.1875rem; }
.nz-p-feats { display: flex; flex-direction: column; gap: .5625rem; margin-bottom: 1.375rem; flex: 1; }
.nz-p-feats li { display: flex; align-items: center; gap: .5625rem; font-size: .8125rem; color: rgba(240,246,243,.7); }
.nz-y { color: var(--nz-green); font-size: .6875rem; }
.nz-n { color: var(--nz-gray2); font-size: .6875rem; }
.nz-pbtn {
  display: block;
  text-align: center;
  padding: .75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .875rem;
  transition: background .2s, border-color .2s, color .2s;
  text-decoration: none;
}
.nz-pbtn-p { background: var(--nz-green); color: #fff; }
.nz-pbtn-p:hover { background: var(--nz-green-d); color: #fff; }
.nz-pbtn-o { border: 1px solid var(--nz-bdr); color: var(--nz-white); }
.nz-pbtn-o:hover { border-color: var(--nz-bdr-g); color: var(--nz-green); }

/* ── FREE 100 ───────────────────────────────────────────────── */
.nz-f100 {
  border-radius: 20px;
  padding: 3.5rem;
  background: linear-gradient(135deg, rgba(27,188,155,.11), rgba(20,141,116,.05));
  border: 1px solid var(--nz-bdr-g);
  position: relative;
  overflow: hidden;
}
.nz-f100::before {
  content: '100';
  position: absolute;
  right: -20px; top: -30px;
  font-family: var(--nz-mono);
  font-size: 12.5rem;
  font-weight: 700;
  color: rgba(27,188,155,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.nz-f100-badge { display: flex; align-items: center; gap: .625rem; }
.nz-f100-ic { font-size: 1.375rem; }
.nz-f100-lbl-text {
  font-family: var(--nz-mono);
  font-size: .625rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nz-green);
}
.nz-f100-note { font-size: .6875rem; color: var(--nz-gray); margin-top: .5rem; line-height: 1.4; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.nz-steps { display: flex; flex-direction: column; margin: 0; }
.nz-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding-bottom: 1.625rem;
  position: relative;
}
.nz-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 21px; top: 44px; bottom: 0;
  width: 1px;
  background: var(--nz-bdr);
}
.nz-step-n {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--nz-card2);
  border: 1px solid var(--nz-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nz-mono);
  font-size: .75rem;
  font-weight: 700;
  color: var(--nz-green);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.nz-step-body { padding-top: .625rem; }
.nz-step-t { font-size: .9375rem; font-weight: 700; margin-bottom: .25rem; }
.nz-step-d { font-size: .8125rem; color: var(--nz-gray); line-height: 1.6; margin: 0; }

/* ── INDUSTRIES ─────────────────────────────────────────────── */
.nz-ic {
  background: var(--nz-card);
  border: 1px solid var(--nz-bdr);
  border-radius: var(--nz-radius);
  padding: 1.25rem;
  transition: border-color .2s, transform .2s, background .2s;
  color: var(--nz-white);
}
.nz-ic:hover {
  border-color: var(--nz-bdr-g);
  transform: translateY(-3px);
  background: var(--nz-card2);
  color: var(--nz-white);
}
.nz-ic-icon  { font-size: 1.625rem; margin-bottom: .6875rem; display: block; }
.nz-ic-title { font-size: .875rem; font-weight: 700; margin-bottom: .375rem; }
.nz-ic-desc  { font-size: .75rem; color: var(--nz-gray); line-height: 1.5; margin-bottom: .625rem; }
.nz-ic-arr   { font-family: var(--nz-mono); font-size: .625rem; color: var(--nz-green); letter-spacing: .08em; text-transform: uppercase; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.nz-tc {
  background: var(--nz-card);
  border: 1px solid var(--nz-bdr);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.nz-tc-text {
  font-size: .875rem;
  color: rgba(240,246,243,.74);
  line-height: 1.72;
  margin-bottom: 1.0625rem;
  font-style: italic;
  flex: 1;
}
.nz-tc-text::before {
  content: '\201C';
  color: var(--nz-green);
  font-size: 1.75rem;
  line-height: 0;
  vertical-align: -.4em;
  margin-right: .125rem;
}
.nz-tc-auth { display: flex; align-items: center; gap: .625rem; }
.nz-tc-av {
  width: 37px; height: 37px;
  border-radius: 50%;
  background: var(--nz-card2);
  border: 1px solid var(--nz-bdr-g);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--nz-mono);
  font-weight: 700;
  font-size: .8125rem;
  color: var(--nz-green);
  flex-shrink: 0;
}
.nz-tc-name  { font-size: .875rem; font-weight: 700; display: block; font-style: normal; }
.nz-tc-role  { font-size: .6875rem; color: var(--nz-gray); margin: 0; }

/* ── BLOG CARDS ─────────────────────────────────────────────── */
.nz-bc {
  background: var(--nz-card);
  border: 1px solid var(--nz-bdr);
  border-radius: 14px;
  overflow: hidden;
  color: var(--nz-white);
  transition: border-color .2s, transform .2s;
}
.nz-bc:hover { border-color: var(--nz-bdr-g); transform: translateY(-3px); color: var(--nz-white); }
.nz-bc-img {
  height: 150px;
  background: var(--nz-card2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.875rem;
  border-bottom: 1px solid var(--nz-bdr);
}
.nz-bc-body { padding: 1.25rem; }
.nz-bc-cat {
  font-family: var(--nz-mono);
  font-size: .625rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nz-green);
  display: block;
  margin-bottom: .4375rem;
}
.nz-bc-title { font-size: .9375rem; font-weight: 700; line-height: 1.4; margin-bottom: .5rem; }
.nz-bc-ex    { font-size: .8125rem; color: var(--nz-gray); line-height: 1.6; margin-bottom: .8125rem; }
.nz-bc-read  { font-family: var(--nz-mono); font-size: .625rem; color: var(--nz-green); letter-spacing: .07em; text-transform: uppercase; }

/* ── APP BADGES ─────────────────────────────────────────────── */
.nz-abg {
  background: var(--nz-card2);
  border: 1px solid var(--nz-bdr);
  border-radius: var(--nz-radius);
  padding: .6875rem 1.125rem;
  color: var(--nz-white);
  transition: border-color .2s;
  text-decoration: none;
}
.nz-abg:hover { border-color: var(--nz-bdr-g); color: var(--nz-white); }
.nz-abg-icon { font-size: 1.5rem; }
.nz-abg-s { font-size: .625rem; color: var(--nz-gray); text-transform: uppercase; letter-spacing: .06em; line-height: 1; }
.nz-abg-n { font-family: var(--nz-mono); font-size: .875rem; font-weight: 700; line-height: 1.3; }

/* ── CTA ────────────────────────────────────────────────────── */
.nz-cta-inn { max-width: 580px; margin: 0 auto; }

/* ── CONTACT FORM ───────────────────────────────────────────── */
.nz-cform {
  background: var(--nz-card);
  border: 1px solid var(--nz-bdr);
  border-radius: var(--nz-radius-lg);
  padding: 2rem;
}
.nz-label {
  display: block;
  font-family: var(--nz-mono);
  font-size: .625rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nz-gray);
  margin-bottom: .375rem;
}
.nz-input {
  background: var(--nz-bg2) !important;
  border: 1px solid var(--nz-bdr) !important;
  border-radius: 8px !important;
  padding: .6875rem .875rem !important;
  color: var(--nz-white) !important;
  font-family: var(--nz-ff) !important;
  font-size: .875rem !important;
  outline: none;
  transition: border-color .18s !important;
  resize: none;
}
.nz-input:focus, .nz-input:focus-visible {
  border-color: var(--nz-bdr-g) !important;
  box-shadow: none !important;
}
.nz-input option { background: var(--nz-bg2); color: var(--nz-white); }
.nz-input::placeholder { color: var(--nz-gray2); }

.nz-cmet {
  background: var(--nz-card);
  border: 1px solid var(--nz-bdr);
  border-radius: 10px;
  padding: .8125rem 1rem;
  color: var(--nz-white);
  font-size: .875rem;
  transition: border-color .2s;
  text-decoration: none;
}
.nz-cmet:hover { border-color: var(--nz-bdr-g); color: var(--nz-white); }
.nz-cmet-ic {
  width: 36px; height: 36px;
  background: var(--nz-green-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.nz-footer {
  background: var(--nz-bg2);
  border-top: 1px solid var(--nz-bdr);
  padding: 3.5rem 0 1.75rem;
}
.nz-footer-about { font-size: .8125rem; color: var(--nz-gray); line-height: 1.65; max-width: 250px; }
.nz-social-btn {
  width: 36px; height: 36px;
  background: var(--nz-card2);
  border: 1px solid var(--nz-bdr);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--nz-gray);
  font-size: .9375rem;
  transition: border-color .2s, background .2s, color .2s;
  text-decoration: none;
}
.nz-social-btn:hover {
  border-color: var(--nz-bdr-g);
  background: var(--nz-green-dim);
  color: var(--nz-green);
}
.nz-footer-title { font-size: .8125rem; font-weight: 700; margin-bottom: .9375rem; letter-spacing: .01em; color: var(--nz-white); }
.nz-footer-list { margin: 0; }
.nz-footer-list li { margin-bottom: .5625rem; }
.nz-footer-link { font-size: .8125rem; color: var(--nz-gray); text-decoration: none; transition: color .18s; }
.nz-footer-link:hover { color: var(--nz-green); }
.nz-footer-bottom { border-top: 1px solid var(--nz-bdr); padding-top: 1.375rem; margin-top: 0; }
.nz-copy { font-family: var(--nz-mono); font-size: .6875rem; color: var(--nz-gray2); }
.nz-footer-legal { font-size: .75rem; color: var(--nz-gray2); text-decoration: none; transition: color .18s; }
.nz-footer-legal:hover { color: var(--nz-green); }
.nz-portal-link { opacity: .4; font-size: .625rem; }
.nz-portal-link:hover { opacity: .8; color: var(--nz-green); }

/* ── DEALER PAGE ────────────────────────────────────────────── */
.nz-d-stats {
  border: 1px solid var(--nz-bdr);
  border-radius: 14px;
  overflow: hidden;
  background: var(--nz-bdr);
  gap: 1px;
}
.nz-ds {
  background: var(--nz-card);
  padding: 1.75rem 1.25rem;
  text-align: center;
}
.nz-ds-v {
  display: block;
  font-family: var(--nz-mono);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--nz-green);
  margin-bottom: .375rem;
}
.nz-ds-k { font-size: .8125rem; color: var(--nz-gray); }

.nz-dcard {
  background: var(--nz-card);
  border: 1px solid var(--nz-bdr);
  border-radius: var(--nz-radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.nz-dcard:hover { border-color: var(--nz-bdr-g); transform: translateY(-3px); }
.nz-dcard-flag  { font-size: 2rem; margin-bottom: .875rem; }
.nz-dcard-country { font-family: var(--nz-mono); font-size: .625rem; letter-spacing: .14em; text-transform: uppercase; color: var(--nz-green); margin-bottom: .25rem; }
.nz-dcard-name  { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .375rem; }
.nz-dcard-addr  { font-size: .8125rem; color: var(--nz-gray); line-height: 1.6; margin-bottom: 1rem; font-style: normal; }
.nz-dcard-ct    { font-size: .8125rem; color: var(--nz-gray); text-decoration: none; transition: color .18s; }
.nz-dcard-ct:hover { color: var(--nz-green); }
.nz-dcard-svc {
  font-family: var(--nz-mono);
  font-size: .625rem;
  color: var(--nz-green);
  background: var(--nz-green-dim);
  border: 1px solid var(--nz-bdr-g);
  padding: .1875rem .625rem;
  border-radius: 100px;
  letter-spacing: .06em;
}

.nz-scheme-card {
  background: var(--nz-card);
  border: 1px solid var(--nz-bdr);
  border-radius: 14px;
  padding: 1.5rem;
}
.nz-scheme-num  { font-family: var(--nz-mono); font-size: 2.5rem; font-weight: 700; color: rgba(27,188,155,.12); line-height: 1; margin-bottom: .75rem; }
.nz-scheme-icon { font-size: 1.75rem; margin-bottom: .75rem; display: block; }
.nz-scheme-title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.nz-scheme-desc { font-size: .8125rem; color: var(--nz-gray); line-height: 1.6; }
.nz-scheme-badge {
  display: inline-block;
  font-family: var(--nz-mono);
  font-size: .625rem;
  color: var(--nz-green);
  background: var(--nz-green-dim);
  border: 1px solid var(--nz-bdr-g);
  padding: .1875rem .625rem;
  border-radius: 100px;
  margin-top: .625rem;
  letter-spacing: .06em;
}

.nz-tier {
  background: var(--nz-card);
  border: 1px solid var(--nz-bdr);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform .2s, border-color .2s;
}
.nz-tier:hover { transform: translateY(-3px); border-color: var(--nz-bdr-g); }
.nz-tier.nz-tier-gold { border-color: rgba(255,184,0,.3); box-shadow: 0 0 30px rgba(255,184,0,.06); }
.nz-tier-level { font-family: var(--nz-mono); font-size: .625rem; letter-spacing: .14em; text-transform: uppercase; color: var(--nz-gray); margin-bottom: .375rem; }
.nz-tier-name  { font-size: 1.25rem; font-weight: 800; margin-bottom: .25rem; }
.nz-tier-req   { font-size: .8125rem; color: var(--nz-gray); margin-bottom: 1rem; }
.nz-tier-perks { display: flex; flex-direction: column; gap: .4375rem; margin-bottom: 1.125rem; }
.nz-tier-perks li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; color: rgba(240,246,243,.75);
}
.nz-tier-perks li::before { content: '✓'; color: var(--nz-green); font-size: .75rem; flex-shrink: 0; }
.nz-tier-disc { font-family: var(--nz-mono); font-size: 1.5rem; font-weight: 700; color: var(--nz-green); }

.nz-benefit {
  background: var(--nz-card);
  border: 1px solid var(--nz-bdr);
  border-radius: var(--nz-radius);
  padding: 1.25rem;
}
.nz-benefit-ic {
  width: 40px; height: 40px;
  background: var(--nz-green-dim);
  border: 1px solid var(--nz-bdr-g);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
}
.nz-benefit-title { font-size: .875rem; font-weight: 700; margin-bottom: .25rem; }
.nz-benefit-desc  { font-size: .8125rem; color: var(--nz-gray); line-height: 1.5; margin: 0; }

.nz-pform-wrap {
  background: var(--nz-card);
  border: 1px solid var(--nz-bdr);
  border-radius: var(--nz-radius-lg);
  padding: 2.25rem;
}

/* ── 404 ────────────────────────────────────────────────────── */
.nz-404-num {
  font-family: var(--nz-mono);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: rgba(27,188,155,.08);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--nz-green); }
.breadcrumb-item.active { color: var(--nz-gray); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--nz-gray2); }

/* ── REVEAL ANIMATION ───────────────────────────────────────── */
.nz-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.nz-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── CASE CARD ──────────────────────────────────────────────── */
.nz-case-card { cursor: pointer; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .nz-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .nz-f100 { padding: 2rem; }
  .nz-f100::before { font-size: 8rem; }

  /* Mobile sticky CTA bar — visible on tablets and phones */
  .nz-mob-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    display: flex;
    gap: .5rem;
    padding: .625rem 1rem;
    padding-bottom: calc(.625rem + env(safe-area-inset-bottom, 0px));
    background: rgba(9,12,11,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--nz-bdr);
  }
  .nz-mob-sticky .btn { font-size: .8125rem; padding: .625rem; }

  /* Add bottom padding to footer so sticky bar doesn't overlap */
  .nz-footer { padding-bottom: 4.5rem; }
}

@media (max-width: 767.98px) {
  .nz-section { padding: 3.75rem 0; }
  .nz-feat-grid { grid-template-columns: 1fr; }
  .nz-tp.active { grid-template-columns: 1fr !important; }
  .nz-mini-g { display: none; }
  .nz-hstats { flex-direction: column; }
  .nz-hs { border-right: none; border-bottom: 1px solid var(--nz-bdr); }
  .nz-hs:last-child { border-bottom: none; }
  .nz-f100 { padding: 1.75rem; }
  .nz-f100::before { display: none; }
  .nz-d-stats { gap: 1px; }
  .nz-subhero { padding-top: calc(var(--nz-nav-h) + 2.5rem); }

  /* Footer columns compact on mobile */
  .nz-footer-list { columns: 2; column-gap: .5rem; }
  .nz-footer-list li { break-inside: avoid; }
  .nz-footer-link { font-size: .8125rem; padding: .25rem 0; display: inline-block; min-height: 2.5rem; line-height: 2rem; }
}
