/* DPSNS homepage — standalone Navatel clone (no legacy site CSS) */
/* Metric-matched fallback so h1 LCP isn't delayed / shifted by webfont */
@font-face {
  font-family: "Yekan Bakh Fallback";
  src: local("Tahoma"), local("Segoe UI"), local("Arial");
  size-adjust: 100%;
  ascent-override: 95%;
  descent-override: 25%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Yekan Bakh";
  src: url("../fonts/YekanBakh-Regular.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
/* Black = LCP font (h1.nv-hero-title weight 900). optional = never block LCP. */
@font-face {
  font-family: "Yekan Bakh";
  src: url("../fonts/YekanBakh-Black.woff2") format("woff2");
  font-weight: 700 950;
  font-style: normal;
  font-display: optional;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
@media (max-width: 960px) {
  html { scroll-behavior: auto; }
}
body.nv-page {
  margin: 0;
  font-family: "Yekan Bakh", "Yekan Bakh Fallback", Tahoma, system-ui, sans-serif;
  color: #0f172a;
  background:
    radial-gradient(ellipse 120% 70% at 50% -12%, var(--nv-page-glow-a), transparent 54%),
    radial-gradient(ellipse 70% 55% at 100% 38%, var(--nv-page-glow-b), transparent 58%),
    radial-gradient(ellipse 60% 50% at 0% 72%, var(--nv-page-glow-c), transparent 56%),
    var(--nv-page-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
.nv-main { background: transparent; }
:root {
  --nv-num: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --nv-page-bg: #f7f9fc;
  --nv-page-glow-a: rgba(0, 102, 254, 0.055);
  --nv-page-glow-b: rgba(56, 189, 248, 0.035);
  --nv-page-glow-c: rgba(245, 158, 11, 0.025);
}
a[href^="tel:"] .nv-num,
b.nv-num,
strong.nv-num,
input[type="tel"],
input[inputmode="tel"] {
  font-family: var(--nv-num);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.nv-skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  z-index: 9999;
  background: #0066fe;
  color: #fff;
}
.nv-skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.5rem 1rem;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

:root {
  --nv-blue: #0066fe;
  --nv-blue-2: #3385fe;
  --nv-orange: #f59e0b;
  --nv-ink: #0f172a;
  --nv-mute: #64748b;
  --nv-shell: min(100% - 2rem, 1180px);
  --nv-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.nv-shell { width: var(--nv-shell); margin-inline: auto; }

/* Top announcement / promo bar */
.nv-top-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #0a0f1a;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nv-top-banner-inner {
  width: var(--nv-shell);
  margin-inline: auto;
  min-height: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem 1.1rem;
  padding: 0.45rem 0;
}
.nv-top-announce {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  justify-self: start;
}
.nv-top-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  color: #0b1220;
  background: linear-gradient(180deg, #ffe27a, #f5c542);
  box-shadow: 0 0 12px rgba(245,197,66,0.35);
}
.nv-top-announce-text {
  font-size: 0.84rem;
  font-weight: 700;
  color: #eef2ff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nv-top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 1.15rem;
  border-radius: 12px;
  border: 1.5px solid #f5c542;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  background: transparent;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.nv-top-cta:hover {
  background: rgba(245,197,66,0.12);
  box-shadow: 0 0 18px rgba(245,197,66,0.18);
}

/* Header */
.nv-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 8px 28px -18px rgba(15,23,42,0.28);
  border-bottom: 1px solid rgba(15,23,42,0.05);
}
.nv-header-inner {
  width: var(--nv-shell);
  margin-inline: auto;
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  position: relative;
}
.nv-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  text-decoration: none;
  color: var(--nv-blue);
}
.nv-brand-badge {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.45rem;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.nv-brand-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.nv-brand-sub {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f3f9a;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1.25;
}
.nv-brand-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #3b8bff, #0066fe 52%, #0047c2);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.12);
  position: relative;
  flex-shrink: 0;
}
.nv-brand-icon::after {
  content: "";
  position: absolute;
  inset: 36% 20% 42%;
  border-radius: 999px;
  background: #fff;
}
.nv-brand-icon-lg {
  width: 3.5rem;
  height: 3.5rem;
}
.nv-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex: 1;
  justify-content: space-between;
  flex-direction: row;
  position: static;
  background: transparent;
  padding: 0;
  box-shadow: none;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.nv-nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nv-nav-links > a,
.nv-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.55rem;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1e293b;
  cursor: pointer;
  list-style: none;
  transition: color 0.15s ease, background 0.15s ease;
}
.nv-nav-ico {
  flex-shrink: 0;
  color: #64748b;
  transition: color 0.15s ease;
}
.nv-nav-links > a:hover,
.nv-mega-trigger:hover,
.nv-mega.is-open .nv-mega-trigger {
  color: var(--nv-blue);
  background: transparent;
}
.nv-nav-links > a:hover .nv-nav-ico,
.nv-mega-trigger:hover .nv-nav-ico,
.nv-mega.is-open .nv-mega-trigger .nv-nav-ico {
  color: var(--nv-blue);
}
.nv-mega {
  position: static;
}
.nv-mega-chevron {
  transition: transform 0.2s ease;
  opacity: 0.7;
}
.nv-mega.is-open .nv-mega-chevron,
.nv-mega:hover .nv-mega-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.nv-mega-panel {
  position: absolute;
  top: calc(100% - 1.35rem);
  inset-inline: 0;
  width: 100%;
  padding: 1.9rem 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  overflow: visible;
}
.nv-mega-panel::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: var(--nv-mega-arrow, 50%);
  inset-inline-start: auto;
  width: 0.72rem;
  height: 0.72rem;
  margin-left: -0.36rem;
  background: #fff;
  border-top: 1px solid rgba(15,23,42,0.08);
  border-inline-start: 1px solid rgba(15,23,42,0.08);
  transform: rotate(45deg);
  z-index: 2;
  pointer-events: none;
}
.nv-mega-panel > .nv-mega-body {
  border-radius: 1rem 1rem 0 0;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-bottom: 0;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.85) inset,
    0 28px 70px -28px rgba(15,23,42,0.42),
    0 12px 28px -18px rgba(15,23,42,0.12);
  overflow: hidden;
}
.nv-mega-panel > .nv-mega-bar {
  border-radius: 0 0 1rem 1rem;
  border: 1px solid rgba(15,23,42,0.08);
  border-top: 0;
  box-shadow: 0 28px 70px -28px rgba(15,23,42,0.42);
}
.nv-mega.is-open .nv-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 961px) {
  .nv-mega:hover .nv-mega-panel,
  .nv-mega:focus-within .nv-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.nv-mega-panel[hidden] {
  display: block !important;
}
.nv-mega-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 16.5rem);
  gap: 0;
  align-items: stretch;
}
.nv-mega-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 1.15rem 0.35rem 1.15rem 0.15rem;
}
.nv-mega-col {
  padding: 0.15rem 1rem;
  border-inline-start: 1px solid rgba(15,23,42,0.07);
}
.nv-mega-col:first-child {
  border-inline-start: none;
}
.nv-mega-col-title {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: -0.01em;
}
.nv-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nv-mega-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.48rem 0.35rem;
  border-radius: 0.55rem;
  color: #1e293b;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
}
.nv-mega-list a:hover {
  background: rgba(0,102,254,0.05);
  color: var(--nv-blue);
}
.nv-mega-li {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--nv-blue);
  background: rgba(0,102,254,0.06);
  order: -1;
}
.nv-mega-list a span {
  flex: 1;
  text-align: right;
  line-height: 1.35;
}
.nv-mega-promo {
  margin: 0.85rem;
  margin-inline-start: 0.35rem;
  border-radius: 0.95rem;
  background: linear-gradient(160deg, #eef5ff 0%, #f7fbff 55%, #e8f1ff 100%);
  border: 1px solid rgba(0,102,254,0.08);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 12.5rem;
  position: relative;
  overflow: hidden;
}
.nv-mega-promo-art {
  position: absolute;
  inset: 0.7rem 0.7rem auto;
  height: 7.2rem;
}
.nv-mega-art-desk {
  position: absolute;
  inset-inline-end: 0.2rem;
  top: 0.35rem;
  width: 72%;
  height: 5.4rem;
  border-radius: 0.65rem;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 24px -16px rgba(15,23,42,0.45);
  padding: 0.55rem 0.6rem;
}
.nv-mega-art-bar {
  display: block;
  height: 0.45rem;
  width: 42%;
  border-radius: 999px;
  background: rgba(0,102,254,0.55);
  margin-bottom: 0.45rem;
}
.nv-mega-art-row {
  display: block;
  height: 0.32rem;
  width: 88%;
  border-radius: 999px;
  background: #e2e8f0;
  margin-bottom: 0.28rem;
}
.nv-mega-art-row.is-short { width: 58%; }
.nv-mega-art-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  margin-top: 0.45rem;
}
.nv-mega-art-cards i {
  display: block;
  height: 1.55rem;
  border-radius: 0.35rem;
  background: linear-gradient(180deg, #dbeafe, #eff6ff);
  border: 1px solid rgba(0,102,254,0.12);
}
.nv-mega-art-phone {
  position: absolute;
  inset-inline-start: 0.15rem;
  bottom: -0.15rem;
  width: 2.55rem;
  height: 4.6rem;
  border-radius: 0.55rem;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.1);
  box-shadow: 0 12px 22px -14px rgba(15,23,42,0.5);
  padding: 0.45rem 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nv-mega-art-phone span {
  display: block;
  height: 0.9rem;
  border-radius: 0.25rem;
  background: linear-gradient(180deg, #bfdbfe, #eff6ff);
}
.nv-mega-art-bubble {
  position: absolute;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 16px -10px rgba(15,23,42,0.55);
}
.nv-mega-art-bubble.is-mail {
  inset-inline-start: 2.5rem;
  top: 0.15rem;
  background: #2563eb;
}
.nv-mega-art-bubble.is-chat {
  inset-inline-start: 0.05rem;
  top: 1.15rem;
  background: #16a34a;
}
.nv-mega-promo-label {
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--nv-blue);
}
.nv-mega-promo-text {
  margin: 0.15rem 0 0;
  position: relative;
  z-index: 1;
  font-size: 0.84rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
}
.nv-mega-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  background: #f5f8fc;
  border-top: 1px solid rgba(15,23,42,0.06);
}
.nv-mega-bar p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.55;
}
.nv-mega-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 850;
  color: var(--nv-blue);
  white-space: nowrap;
}
.nv-mega-bar a:hover { text-decoration: underline; }
.nv-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nv-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.55rem;
  padding: 0.45rem 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f3f9a;
  font-weight: 800;
  font-size: 0.86rem;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(15,23,42,0.02);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.nv-chip svg { color: var(--nv-blue); flex-shrink: 0; }
.nv-chip:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  box-shadow: 0 6px 16px -12px rgba(15,23,42,0.35);
}
.nv-chip-phone {
  gap: 0.55rem;
  padding: 0.28rem 0.85rem 0.28rem 0.32rem;
  border-color: rgba(0,102,254,0.14);
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: #0b3d91;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 10px 22px -16px rgba(0,102,254,0.45),
    0 0 0 1px rgba(0,102,254,0.04);
}
@keyframes nv-phone-shake {
  0% { transform: rotate(0deg) scale(1); }
  8% { transform: rotate(16deg) scale(1.08); }
  16% { transform: rotate(-14deg) scale(1.08); }
  24% { transform: rotate(12deg) scale(1.06); }
  32% { transform: rotate(-10deg) scale(1.05); }
  40% { transform: rotate(6deg) scale(1.03); }
  48% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(0deg) scale(1); }
}
.nv-chip-phone-ico {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(160deg, #3b8bff 0%, #0066fe 55%, #0052e0 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 8px 14px -10px rgba(0,102,254,0.9);
  transform-origin: 50% 50%;
  animation: nv-phone-shake 1.25s ease-in-out infinite;
  will-change: transform;
}
.nv-chip-phone-ico svg {
  color: #fff;
  display: block;
  pointer-events: none;
}
.nv-chip-phone:hover .nv-chip-phone-ico {
  animation-duration: 0.7s;
}
.nv-chip-phone-num {
  font-family: var(--nv-num);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.nv-chip-phone:hover {
  border-color: rgba(0,102,254,0.28);
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  color: #0b3d91;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 14px 26px -14px rgba(0,102,254,0.55),
    0 0 0 1px rgba(0,102,254,0.06);
}
.nv-chip-primary {
  border-color: transparent;
  background: var(--nv-blue);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(0,102,254,0.8);
}
.nv-chip-primary svg { color: #fff; }
.nv-chip-primary:hover {
  background: #0056e0;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(0,102,254,0.9);
}
.nv-header-phone { display: none; }
.nv-header-mobile {
  display: none;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.nv-header-action {
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.75rem;
  border: 1.5px solid rgba(0, 102, 254, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--nv-blue);
  box-shadow: 0 4px 14px -10px rgba(0, 102, 254, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.nv-header-action:hover {
  border-color: rgba(0, 102, 254, 0.28);
  background: #f5f9ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -10px rgba(0, 102, 254, 0.4);
}
.nv-header-action:active {
  transform: translateY(0);
}
.nv-header-action--portal {
  color: #0f3f9a;
}
.nv-menu-btn {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1.5px solid rgba(0, 102, 254, 0.22);
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
  box-shadow: 0 4px 16px -8px rgba(0, 102, 254, 0.45);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.nv-menu-btn:hover {
  border-color: rgba(0, 102, 254, 0.38);
  box-shadow: 0 8px 20px -8px rgba(0, 102, 254, 0.55);
  transform: translateY(-1px);
}
.nv-menu-btn-lines {
  display: block;
  position: relative;
  width: 1.15rem;
  height: 0.95rem;
  margin: 0 auto;
}
.nv-menu-btn-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #0b3d91;
  transition: transform 0.22s var(--nv-ease), opacity 0.18s ease, top 0.22s var(--nv-ease);
}
.nv-menu-btn-lines span:nth-child(1) { top: 0; }
.nv-menu-btn-lines span:nth-child(2) { top: 0.415rem; }
.nv-menu-btn-lines span:nth-child(3) { top: 0.83rem; }
.nv-menu-btn[aria-expanded="true"] {
  background: linear-gradient(180deg, #0066fe 0%, #0056e0 100%);
  border-color: transparent;
}
.nv-menu-btn[aria-expanded="true"] .nv-menu-btn-lines span {
  background: #fff;
}
.nv-menu-btn[aria-expanded="true"] .nv-menu-btn-lines span:nth-child(1) {
  top: 0.415rem;
  transform: rotate(45deg);
}
.nv-menu-btn[aria-expanded="true"] .nv-menu-btn-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}
.nv-menu-btn[aria-expanded="true"] .nv-menu-btn-lines span:nth-child(3) {
  top: 0.415rem;
  transform: rotate(-45deg);
}

.nv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.65rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.nv-btn-primary {
  color: #fff;
  background: var(--nv-blue);
  box-shadow: 0 12px 28px -10px rgba(0,102,254,0.7);
}
.nv-btn-primary:hover {
  background: #0056e0;
  box-shadow: 0 16px 32px -10px rgba(0,102,254,0.85);
  transform: translateY(-1px);
}
.nv-btn-outline {
  color: var(--nv-blue);
  background: #fff;
  border-color: var(--nv-blue);
}
.nv-btn-outline:hover {
  background: #f5f9ff;
  box-shadow: 0 10px 22px -14px rgba(0,102,254,0.45);
  transform: translateY(-1px);
}
.nv-btn-lg {
  min-height: 3.2rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  gap: 0.7rem;
}
.nv-btn-arrow {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #fff;
  color: var(--nv-blue);
  line-height: 1;
  box-shadow: 0 1px 0 rgba(15,23,42,0.04);
}
.nv-btn-arrow svg { display: block; }
.nv-btn-arrow.is-outline {
  background: var(--nv-blue);
  color: #fff;
  box-shadow: none;
}
.nv-btn-white {
  color: var(--nv-blue);
  background: #fff;
  box-shadow: 0 10px 28px -12px rgba(15,23,42,0.35);
}
.nv-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--nv-blue);
  font-weight: 800;
}
.nv-pill {
  display: inline-flex;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: var(--nv-orange);
}
.nv-head { text-align: center; margin-bottom: 2rem; }
.nv-head h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 900;
  line-height: 1.45;
}
.nv-head-lead {
  margin: 0.75rem auto 0;
  max-width: 40rem;
  color: var(--nv-mute);
  line-height: 1.85;
}
.nv-head-light h2 { color: #fff; }
.nv-head-light .nv-head-lead { color: #94a3b8; }
.nv-sec { position: relative; padding: 4.5rem 0; }
.nv-form-note {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
  color: #94a3b8;
}
.nv-form-note.is-error { color: #f87171; }
.nv-form-note.is-ok { color: #15803d; font-weight: 700; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Hero — centered professional */
.nv-hero {
  position: relative;
  isolation: isolate;
  padding: 3.5rem 0 0.5rem;
  overflow-x: hidden;
  overflow-y: visible;
  background: transparent;
}
.nv-hero-mesh {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(ellipse 42% 36% at 12% 8%, rgba(0,102,254,0.16), transparent 70%),
    radial-gradient(ellipse 38% 34% at 92% 6%, rgba(245,158,11,0.12), transparent 68%),
    radial-gradient(ellipse 40% 30% at 50% 88%, rgba(0,102,254,0.07), transparent 70%),
    linear-gradient(rgba(15,23,42,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.055) 1px, transparent 1px);
  background-size: auto, auto, auto, 36px 36px, 36px 36px;
  background-position: 0 0, 0 0, 0 0, 50% 0, 50% 0;
  mask-image: radial-gradient(ellipse 85% 78% at 50% 28%, #000 18%, transparent 82%);
}
.nv-hero-blob {
  position: absolute;
  z-index: -1;
  width: 18rem;
  height: 14rem;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.nv-hero-blob.is-tr {
  top: -2rem;
  inset-inline-end: -2rem;
  background: rgba(59,130,246,0.16);
}
.nv-hero-blob.is-tl {
  top: 1rem;
  inset-inline-start: -3rem;
  background: rgba(96,165,250,0.18);
}
.nv-hero-blob.is-br {
  bottom: 2rem;
  inset-inline-end: 12%;
  width: 16rem;
  height: 12rem;
  background: rgba(245,158,11,0.16);
}
.nv-hero-inner {
  text-align: center;
  padding-bottom: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nv-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin: 0 auto 1.35rem;
}
.nv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1a3d82;
  background: #f2f7ff;
  border: 1px solid #d0e0ff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset;
  white-space: nowrap;
}
.nv-hero-badge svg { color: #1a3d82; flex-shrink: 0; }
.nv-hero-title {
  margin: 0 auto;
  max-width: 52rem;
  width: 100%;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-weight: 900;
  line-height: 1.55;
  color: #0b3d91;
  white-space: nowrap;
  /* Paint immediately with fallback; Black is preloaded + font-display:optional */
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
.nv-hero-mark {
  position: relative;
  color: #3385fe;
  display: inline-block;
  padding-inline: 0.08em;
}
.nv-hero-mark::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0.02em;
  height: 0.16em;
  border-radius: 999px;
  background: #f59e0b;
  transform: rotate(-1.5deg);
  opacity: 0.95;
}
.nv-hero-lead {
  margin: 1.2rem auto 0;
  max-width: none;
  width: 100%;
  color: #64748b;
  font-size: clamp(0.82rem, 1.15vw, 1.02rem);
  line-height: 1.7;
  font-weight: 600;
  white-space: nowrap;
}
.nv-hero-actions {
  margin-top: 1.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  overflow: visible;
}
.nv-hero-leadwrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  overflow: visible;
}
.nv-hero-leadbox {
  position: relative;
  display: grid;
  width: min(24rem, calc(100vw - 2.5rem));
  min-height: 3.6rem;
  padding: 0.35rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 18px 40px -24px rgba(15,23,42,0.45),
    0 0 0 1px rgba(0,102,254,0.04);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.nv-hero-free {
  position: static;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.35rem;
  padding: 0.35rem 0.85rem 0.35rem 0.5rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  color: #6b4700;
  background: linear-gradient(180deg, #ffe98a, #f5c542 55%, #eab308);
  border: 1.5px solid rgba(255,255,255,0.65);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 12px 24px -10px rgba(234,179,8,0.95);
  white-space: nowrap;
  transform: rotate(-6deg);
  flex-shrink: 0;
}
.nv-hero-free-ico {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0b3d91;
  box-shadow: 0 4px 10px -6px rgba(11,61,145,0.7);
  transform: rotate(-18deg);
}
.nv-hero-free-ico svg { display: block; }
.nv-hero-cta {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: start;
  transition:
    opacity 0.32s var(--nv-ease),
    transform 0.32s var(--nv-ease),
    visibility 0.32s;
}
.nv-hero-cta-label {
  font-size: 0.98rem;
  font-weight: 900;
  color: #0b3d91;
  letter-spacing: -0.015em;
  line-height: 1.25;
  min-width: 0;
  transition: opacity 0.2s ease, visibility 0.2s;
}
.nv-hero-cta-action {
  margin-inline-start: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0 1.1rem;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
  background: #0066fe;
  box-shadow: 0 10px 20px -12px rgba(0,102,254,0.8);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease, visibility 0.2s;
}
.nv-hero-cta:hover .nv-hero-cta-action {
  background: #0056e0;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px -12px rgba(0,102,254,0.9);
}
.nv-hero-bike-scene {
  grid-area: 1 / 1;
  position: relative;
  z-index: 5;
  display: none;
  width: 100%;
  min-height: 3rem;
  overflow: visible;
  pointer-events: none;
  background: transparent;
}
.nv-hero-actions:is(.is-bike-playing) .nv-hero-bike-scene {
  display: block;
}
.nv-hero-actions.is-bike-playing .nv-hero-leadbox,
.nv-hero-actions.is-bike-playing .nv-hero-leadwrap,
.nv-hero-actions.is-bike-playing .nv-hero-actions {
  overflow: visible;
}
.nv-hero-actions.is-bike-playing .nv-hero-cta {
  overflow: visible;
}
.nv-hero-actions:is(.is-bike-playing) .nv-hero-cta-label,
.nv-hero-actions:is(.is-bike-playing) .nv-hero-cta-action {
  opacity: 0;
  visibility: hidden;
}
.nv-hero-bike-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9px;
  background: rgba(255,255,255,0.98);
  z-index: 0;
  pointer-events: none;
}
.nv-hero-bike-road,
.nv-hero-bike-side {
  z-index: 1;
}
.nv-hero-bike-road {
  position: absolute;
  inset-inline: 0.15rem;
  bottom: 1.05rem;
  border-top: 2px dashed rgba(100,116,139,0.5);
}
.nv-hero-bike-side {
  position: absolute;
  bottom: 0.15rem;
  right: 8%;
  width: 8.8rem;
  opacity: 1;
  overflow: visible;
  transform: translateX(0);
  will-change: transform, opacity;
}
.nv-hero-bike-side svg {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}
.nv-hero-bike-flag {
  position: absolute;
  left: 6%;
  bottom: 52%;
  z-index: 30;
  pointer-events: none;
  overflow: visible;
}
.nv-hero-bike-flag-pole {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5px;
  height: 3.1rem;
  border-radius: 1px;
  background: linear-gradient(180deg, #e2e8f0, #64748b);
  box-shadow: 0 1px 0 rgba(255,255,255,0.45);
  transform-origin: bottom center;
}
.nv-hero-bike-flag-banner {
  position: absolute;
  left: 3px;
  bottom: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.35rem;
  min-height: 1.72rem;
  padding: 0.18rem 0.38rem;
  border-radius: 3px 2px 2px 4px;
  background: linear-gradient(180deg, #ffe566 0%, #f5c542 52%, #eab308 100%);
  border: 1.5px solid rgba(255,255,255,0.72);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 4px 14px -4px rgba(234,179,8,0.75);
  font-size: 0.56rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #4a2f00;
  text-align: center;
  white-space: normal;
  transform-origin: left bottom;
}
.nv-hero-actions.is-bike-playing .nv-hero-bike-flag-pole {
  animation: nv-flag-pole 0.9s ease-in-out infinite alternate;
}
.nv-hero-actions.is-bike-playing .nv-hero-bike-flag-banner {
  animation: nv-flag-wave 0.75s ease-in-out infinite alternate;
}
@keyframes nv-flag-pole {
  from { transform: rotate(-4deg); }
  to { transform: rotate(3deg); }
}
@keyframes nv-flag-wave {
  from { transform: skewY(-2deg) rotate(-2deg); }
  to { transform: skewY(2deg) rotate(1deg); }
}
.nv-hero-bike-smoke {
  position: absolute;
  left: 8%;
  bottom: 1.05rem;
  width: 2.2rem;
  height: 1.6rem;
  pointer-events: none;
  opacity: 0;
  z-index: 4;
  overflow: hidden;
}
.nv-hero-bike-smoke span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(226, 232, 240, 0.95), rgba(100, 116, 139, 0.55) 68%, rgba(71, 85, 105, 0.15));
  filter: blur(2.5px);
  opacity: 0;
  transform: translateX(-50%) scale(0.3);
}
.nv-hero-actions.is-bike-playing .nv-hero-bike-smoke {
  opacity: 1;
}
.nv-hero-actions.is-bike-playing .nv-hero-bike-smoke span {
  animation: nv-bike-smoke 0.68s ease-out infinite;
}
.nv-hero-bike-smoke span:nth-child(1) { animation-delay: 0s; }
.nv-hero-bike-smoke span:nth-child(2) { animation-delay: 0.1s; }
.nv-hero-bike-smoke span:nth-child(3) { animation-delay: 0.2s; }
.nv-hero-bike-smoke span:nth-child(4) { animation-delay: 0.3s; }
.nv-hero-bike-smoke span:nth-child(5) { animation-delay: 0.4s; }
.nv-hero-bike-smoke span:nth-child(6) { animation-delay: 0.5s; }
.nv-hero-bike-smoke span:nth-child(7) { animation-delay: 0.6s; }
.nv-hero-bike-smoke span:nth-child(8) { animation-delay: 0.7s; }
.nv-hero-bike-light,
.nv-hero-bike-light-core {
  transform-origin: center;
  transform-box: fill-box;
}
.nv-hero-actions.is-bike-playing .nv-hero-bike-side {
  animation: nv-bike-pass 5s cubic-bezier(0.38, 0, 0.24, 1) forwards;
}
.nv-hero-actions.is-bike-playing .nv-hero-bike-side .nv-hero-bike-light {
  animation: nv-bike-light 0.42s ease-in-out infinite;
}
.nv-hero-actions.is-bike-playing .nv-hero-bike-side .nv-hero-bike-light-core {
  animation: nv-bike-light-core 0.42s ease-in-out infinite;
}
.nv-hero-actions.is-bike-playing .nv-hero-bike-exhaust-base {
  animation: nv-bike-exhaust-base 0.45s ease-in-out infinite alternate;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes nv-bike-pass {
  0% {
    transform: translateX(var(--nv-bike-enter, 0px));
    opacity: 1;
  }
  88% { opacity: 1; }
  100% {
    transform: translateX(var(--nv-bike-exit, -14rem));
    opacity: 0;
  }
}
@keyframes nv-bike-light {
  0%, 100% {
    opacity: 1;
    fill: #fef9c3;
    filter: drop-shadow(0 0 5px rgba(253, 224, 58, 0.95));
  }
  50% {
    opacity: 0.12;
    fill: #94a3b8;
    filter: none;
  }
}
@keyframes nv-bike-light-core {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.05; }
}
@keyframes nv-bike-exhaust-base {
  from { opacity: 0.35; transform: scale(0.85); }
  to { opacity: 0.72; transform: scale(1.12); }
}
@keyframes nv-bike-smoke {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scale(0.28);
  }
  10% { opacity: 0.88; }
  100% {
    opacity: 0;
    transform: translateX(calc(-50% + 0.45rem)) translateY(-0.95rem) scale(1.05);
  }
}
.nv-hero-leadform {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0.35rem;
  z-index: 2;
  width: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.32s var(--nv-ease),
    transform 0.32s var(--nv-ease),
    visibility 0.32s;
}
.nv-hero-leadfield {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 3.3rem;
  gap: 0.15rem;
}
.nv-hero-leadico {
  width: 2.45rem;
  height: 2.45rem;
  margin-inline-start: 0.2rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #0066fe;
  background: #eff6ff;
}
.nv-hero-leadfield input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.06em;
}
.nv-hero-leadfield input::placeholder {
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nv-hero-leadsubmit {
  border: 0;
  border-radius: 9px;
  min-height: 2.6rem;
  padding: 0 1.05rem;
  font-weight: 900;
  font-size: 0.88rem;
  color: #fff;
  background: #0066fe;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 20px -12px rgba(0,102,254,0.8);
  transition: background 0.15s ease, transform 0.15s ease;
}
.nv-hero-leadsubmit:hover {
  background: #0056e0;
  transform: translateY(-1px);
}
.nv-hero-actions.is-lead-open .nv-hero-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
}
.nv-hero-actions.is-lead-open .nv-hero-free {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) rotate(-6deg);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.nv-hero-actions.is-lead-open .nv-hero-leadform {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nv-hero-actions.is-lead-open .nv-hero-leadbox {
  min-height: 4rem;
}
.nv-hero-btns { display: none; }
.nv-hero .nv-btn-lg {
  min-height: 3.4rem;
  padding: 0.65rem 1.45rem 0.65rem 0.75rem;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  gap: 0.75rem;
}
.nv-hero .nv-btn-primary {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 14px 32px -12px rgba(0,102,254,0.75);
}
.nv-hero .nv-btn-outline {
  border-width: 1.5px;
  border-color: var(--nv-blue);
  background: #fff;
  box-shadow: none;
}
.nv-hero .nv-btn-arrow {
  width: 1.85rem;
  height: 1.85rem;
}
.nv-hero .nv-btn-arrow svg { display: block; }
.nv-hero-scribble { display: none; }
.nv-hero-proof {
  margin-top: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  padding: 0.45rem 1rem 0.45rem 0.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,23,42,0.07);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 14px 36px -22px rgba(15,23,42,0.45);
  backdrop-filter: blur(10px);
}
.nv-hero-proof-rule {
  width: 1px;
  height: 1.85rem;
  background: linear-gradient(180deg, transparent, #cbd5e1, transparent);
  flex-shrink: 0;
}
.nv-hero-proof-copy {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  white-space: nowrap;
}
.nv-hero-proof-copy b {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0b3d91;
  letter-spacing: -0.03em;
}
.nv-hero-proof-copy span {
  font-size: 0.88rem;
  font-weight: 800;
  color: #334155;
}
.nv-hero-proof-copy em {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-inline-start: 0.15rem;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  color: #b45309;
}
.nv-hero-avatars {
  display: flex;
  direction: ltr;
  align-items: center;
  padding-inline-start: 0.15rem;
  gap: 0.35rem;
}
.nv-hero-avatars span {
  position: relative;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.8rem;
  border: 1px solid transparent;
  margin-inline-start: 0;
  display: grid;
  place-items: center;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.75) inset,
    0 8px 16px -12px rgba(15,23,42,0.35);
}
.nv-hero-avatars span::after { display: none; }
.nv-hero-avatars span:first-child { margin-inline-start: 0; }
.nv-hero-avatars span svg { display: block; position: relative; z-index: 1; }
.nv-hero-avatars .is-design {
  color: #1d4ed8;
  background: linear-gradient(160deg, #eff6ff, #dbeafe);
  border-color: #bfdbfe;
}
.nv-hero-avatars .is-code {
  color: #0e7490;
  background: linear-gradient(160deg, #ecfeff, #cffafe);
  border-color: #a5f3fc;
}
.nv-hero-avatars .is-server {
  color: #6d28d9;
  background: linear-gradient(160deg, #f5f3ff, #ede9fe);
  border-color: #ddd6fe;
}
.nv-hero-avatars .is-support {
  color: #047857;
  background: linear-gradient(160deg, #ecfdf5, #d1fae5);
  border-color: #a7f3d0;
}

.nv-hero-product { display: none; }
.nv-hero-shot { display: none; }

.nv-hero-stage {
  position: relative;
  width: min(100%, 52rem);
  margin: 2.4rem auto 0;
  min-height: 18.5rem;
  perspective: 1400px;
}
.nv-hero-ring {
  position: absolute;
  inset: 8% 12% auto;
  height: 14rem;
  border-radius: 50%;
  border: 1.5px dashed rgba(0,102,254,0.22);
  pointer-events: none;
}
.nv-hero-ring::after {
  content: "";
  position: absolute;
  inset: 1.6rem 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.28);
}
.nv-dash {
  position: relative;
  z-index: 1;
  width: min(100%, 36rem);
  margin-inline: auto;
  border-radius: 1.15rem;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(15,23,42,0.35);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 28px 50px -28px rgba(15,23,42,0.55),
    0 0 0 1px rgba(0,102,254,0.08);
  transform: rotateX(8deg) rotateZ(-1.2deg);
  transform-origin: 50% 100%;
}
.nv-dash-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  background: #111827;
  border-bottom: 1px solid rgba(148,163,184,0.12);
}
.nv-dash-bar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #f87171;
}
.nv-dash-bar span:nth-child(2) { background: #fbbf24; }
.nv-dash-bar span:nth-child(3) { background: #34d399; }
.nv-dash-bar em {
  margin-inline-start: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.02em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.nv-console-body {
  min-height: 13.2rem;
  padding: 0.85rem 1rem 1.05rem;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(0,102,254,0.18), transparent 60%),
    #0b1220;
}
.nv-console-code {
  margin: 0;
  min-height: 11.2rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.7;
  color: #e2e8f0;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: start;
}
.nv-console-code .nv-c-muted { color: #64748b; }
.nv-console-code .nv-c-cmd { color: #7dd3fc; }
.nv-console-code .nv-c-key { color: #c4b5fd; }
.nv-console-code .nv-c-str { color: #86efac; }
.nv-console-code .nv-c-num { color: #fbbf24; }
.nv-console-code .nv-c-ok { color: #34d399; }
.nv-console-code .nv-c-fn { color: #93c5fd; }
.nv-console-code .nv-c-cursor {
  display: inline-block;
  width: 0.55em;
  height: 1.05em;
  margin-inline-start: 1px;
  vertical-align: -0.15em;
  background: #38bdf8;
  animation: nv-cursor 1s steps(1) infinite;
}
@keyframes nv-cursor {
  50% { opacity: 0; }
}
.nv-dash-body,
.nv-dash-kpis,
.nv-dash-barline,
.nv-dash-main { display: none; }
.nv-float {
  --nv-float-accent: #0066fe;
  --nv-float-rot: 0deg;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 12.25rem;
  max-width: 15.5rem;
  padding: 0.7rem 0.95rem 0.7rem 0.7rem;
  border-radius: 0.75rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.94));
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 1px 2px rgba(15,23,42,0.04),
    0 12px 28px -16px rgba(15,23,42,0.28),
    0 28px 48px -28px rgba(15,23,42,0.18);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  isolation: isolate;
  transform: rotate(var(--nv-float-rot));
  animation: nv-float 7s ease-in-out infinite;
  transition:
    box-shadow 0.35s var(--nv-ease),
    border-color 0.35s var(--nv-ease);
}
.nv-float::before {
  content: "";
  position: absolute;
  inset-block: 0.55rem;
  inset-inline-start: 0;
  width: 2px;
  border-radius: 999px;
  background: var(--nv-float-accent);
  opacity: 0.55;
}
.nv-float:hover {
  border-color: color-mix(in srgb, var(--nv-float-accent) 22%, rgba(15,23,42,0.08));
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 2px 4px rgba(15,23,42,0.05),
    0 18px 36px -18px rgba(15,23,42,0.32),
    0 0 0 1px color-mix(in srgb, var(--nv-float-accent) 10%, transparent);
}
.nv-float-txt {
  min-width: 0;
  text-align: start;
}
.nv-float b {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.nv-float small {
  display: block;
  margin-top: 0.18rem;
  color: #64748b;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nv-float-ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--nv-float-accent);
  background:
    linear-gradient(160deg,
      color-mix(in srgb, var(--nv-float-accent) 10%, #fff),
      color-mix(in srgb, var(--nv-float-accent) 18%, #f8fafc));
  border: 1px solid color-mix(in srgb, var(--nv-float-accent) 16%, transparent);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 6px 14px -10px color-mix(in srgb, var(--nv-float-accent) 45%, transparent);
}
.nv-float-ico svg { display: block; }
.nv-float.is-a {
  --nv-float-accent: #0066fe;
  --nv-float-rot: 4deg;
  top: 1.4rem;
  inset-inline-start: 0;
}
.nv-float.is-b {
  --nv-float-accent: #0ea5e9;
  --nv-float-rot: -5deg;
  top: 0.15rem;
  inset-inline-end: 0.15rem;
  animation-delay: -1.8s;
}
.nv-float.is-c {
  --nv-float-accent: #64748b;
  bottom: 1.1rem;
  inset-inline-start: 4%;
  animation-delay: -3.6s;
}
@keyframes nv-float {
  0%, 100% { transform: translateY(0) rotate(var(--nv-float-rot, 0deg)); }
  50% { transform: translateY(-5px) rotate(var(--nv-float-rot, 0deg)); }
}

/* Tech stack marquee */
.nv-stack {
  background: transparent;
  padding: 0.5rem 0 1.15rem;
  overflow: hidden;
}
.nv-stack-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.nv-stack-track {
  display: flex;
  width: max-content;
  animation: nv-stack-move 280s linear infinite;
}
.nv-stack-marquee:hover .nv-stack-track { animation-play-state: paused; }
.nv-stack-row {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding-inline-end: 1.15rem;
}
.nv-stack-row li {
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0;
  border-radius: 0.55rem;
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--nv-ic, #94a3b8) 22%, #fff);
  border: 1px solid color-mix(in srgb, var(--nv-ic, #94a3b8) 38%, #fff);
  box-shadow: 0 10px 22px -14px color-mix(in srgb, var(--nv-ic, #94a3b8) 55%, transparent);
}
.nv-stack-row li + li::before {
  content: "";
  position: absolute;
  inset-inline-start: calc(-0.575rem - 0.5px);
  top: 50%;
  transform: translateY(-50%);
  height: 1.55rem;
  border-inline-start: 1.5px dashed rgba(100, 116, 139, 0.45);
  pointer-events: none;
}
.nv-stack-row img {
  width: 1.7rem;
  height: 1.7rem;
  object-fit: contain;
}
@keyframes nv-stack-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .nv-stack-track { animation: none; }
  .nv-float { animation: none; }
  .nv-console-code .nv-c-cursor { animation: none; }
  .nv-hero-cta,
  .nv-hero-leadform { transition: none; }
  .nv-hero-bike-side,
  .nv-hero-bike-side .nv-hero-bike-light,
  .nv-hero-bike-side .nv-hero-bike-light-core,
  .nv-hero-bike-smoke span,
  .nv-hero-bike-exhaust-base,
  .nv-hero-bike-flag-pole,
  .nv-hero-bike-flag-banner { animation: none !important; }
  .nv-hero-bike-smoke { display: none; }
  .nv-hero-bike-scene { display: none !important; }
}
.nv-logos-viewport,
.nv-logos-track,
.nv-logo-item { display: none; }

/* Products — Navatel-style tabs */
.nv-products {
  background: transparent;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}
.nv-deal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "badge head"
    "row row";
  align-items: center;
  gap: 0.65rem 0.75rem;
  margin: 0 0 1.35rem;
  padding: 1rem 0.95rem;
  border-radius: 1.15rem;
  background: #f4f5f7;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.nv-deal-badge {
  position: relative;
  grid-area: badge;
  flex: 0 0 auto;
  width: 5.75rem;
  height: 4.6rem;
  display: grid;
  place-items: center;
}
.nv-deal-burst {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.06) 0 28%, transparent 30%),
    repeating-conic-gradient(from 0deg, rgba(15, 23, 42, 0.07) 0 6deg, transparent 6deg 18deg);
  border-radius: 50%;
  opacity: 0.55;
  transform: scale(1.05);
}
.nv-deal-badge strong {
  position: relative;
  z-index: 1;
  font-size: 2.55rem;
  font-weight: 950;
  line-height: 1;
  color: #ffc745;
  -webkit-text-stroke: 3px #111827;
  paint-order: stroke fill;
  text-shadow: 2px 3px 0 rgba(17, 24, 39, 0.18);
  font-family: "Yekan Bakh", Tahoma, sans-serif;
  letter-spacing: -0.02em;
}
.nv-deal-copy {
  display: contents;
  min-width: 0;
}
.nv-deal-copy h3 {
  grid-area: head;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: clamp(0.98rem, 2.8vw, 1.2rem);
  font-weight: 900;
  color: #334155;
  line-height: 1.55;
}
.nv-deal-info {
  display: none !important;
}
.nv-deal-row {
  grid-area: row;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 0.55rem;
  width: 100%;
}
.nv-deal-codes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0;
  justify-content: center;
}
.nv-deal-code {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 9.5rem;
  max-width: 12rem;
  padding: 0.5rem 0.55rem;
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.05);
}
.nv-deal-code-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  justify-content: center;
  min-height: 2rem;
  padding: 0.25rem 0.45rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #1e293b;
  font-size: 0.72rem;
  font-weight: 900;
  font-family: "Segoe UI", Tahoma, sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
  transition: background 0.18s ease, color 0.18s ease;
}
.nv-deal-code-btn:hover,
.nv-deal-code-btn.is-copied {
  background: #ffc745;
  color: #111827;
}
.nv-deal-code em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  white-space: normal;
  text-align: center;
  line-height: 1.45;
}
.nv-deal-timer {
  flex: 0 0 auto;
  text-align: center;
}
.nv-deal-units {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  gap: 0.18rem;
}
.nv-deal-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
}
.nv-deal-unit span {
  font-size: 0.68rem;
  font-weight: 800;
  color: #94a3b8;
}
.nv-deal-unit b {
  min-width: 2.65rem;
  min-height: 2.65rem;
  padding: 0.35rem 0.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155;
  font-size: 1.05rem;
  font-weight: 900;
  font-family: "Yekan Bakh", Tahoma, "Segoe UI", sans-serif;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.nv-deal-units > i {
  font-style: normal;
  font-weight: 900;
  color: #64748b;
  padding-bottom: 0.55rem;
}
.nv-deal-timer p {
  margin: 0.55rem 0 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  text-align: center;
  line-height: 1.55;
}
@media (min-width: 961px) {
  .nv-deal {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "badge head timer"
      "badge codes timer";
    gap: 1.25rem 1.75rem;
    margin-bottom: 1.75rem;
    padding: 1.15rem 1.35rem;
  }
  .nv-deal-badge {
    width: 6.5rem;
    height: 5.2rem;
  }
  .nv-deal-badge strong {
    font-size: 2.55rem;
    -webkit-text-stroke: 3px #111827;
  }
  .nv-deal-copy h3 {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.6;
  }
  .nv-deal-row {
    display: contents;
  }
  .nv-deal-codes {
    grid-area: codes;
    align-self: start;
    margin-top: 0.75rem;
    justify-content: flex-start;
  }
  .nv-deal-code {
    flex-direction: row;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    max-width: none;
    padding: 0.28rem 0.55rem 0.28rem 0.28rem;
    border-radius: 999px;
  }
  .nv-deal-code-btn {
    width: auto;
    padding: 0.25rem 0.7rem;
    font-size: 0.78rem;
  }
  .nv-deal-code em {
    font-size: 0.78rem;
    white-space: nowrap;
    text-align: start;
    line-height: 1.4;
  }
  .nv-deal-timer {
    grid-area: timer;
    align-self: center;
  }
  .nv-deal-units {
    display: inline-flex;
    gap: 0.28rem;
  }
  .nv-deal-timer p {
    font-size: 0.72rem;
  }
}
.nv-products::before { display: none; }
.nv-products-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(0,102,254,0.07) 0, transparent 42%),
    radial-gradient(circle at 88% 72%, rgba(0,102,254,0.05) 0, transparent 38%),
    linear-gradient(rgba(0,102,254,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,254,0.035) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
  /* Grid fades in gently — no sharp top edge */
  mask-image: linear-gradient(180deg, transparent 0%, transparent 8%, #000 28%, #000 58%, transparent 94%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 8%, #000 28%, #000 58%, transparent 94%);
  pointer-events: none;
}
.nv-products-head {
  margin-bottom: 1.35rem;
  text-align: center;
}
.nv-products-head h2 {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  max-width: 100%;
  padding-bottom: 0.55rem;
  font-size: clamp(0.86rem, 1.25vw, 1.08rem);
  font-weight: 800;
  line-height: 1.65;
  color: #475569;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.nv-products-head h2::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 254, 0.45), transparent);
}
@media (max-width: 960px) {
  .nv-products-head h2 {
    white-space: normal;
    font-size: clamp(0.84rem, 2.8vw, 0.98rem);
    max-width: 34rem;
    line-height: 1.75;
  }
}
.nv-tabs {
  position: relative;
  z-index: 1;
}
.nv-tablist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.3rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 2rem;
  padding: 0.35rem;
  border-radius: 0.55rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 24px -16px rgba(15, 23, 42, 0.22);
}
.nv-tab {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: max-content;
  min-width: 0;
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.25rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid transparent;
  border-radius: 0.4rem;
  background: transparent;
  color: #64748b;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1.35;
  cursor: pointer;
  white-space: nowrap;
  text-align: right;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.nv-tab:hover {
  background: #fff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.08);
}
.nv-tab:hover .nv-tab-ico {
  color: #0b3d91;
  background: rgba(11, 61, 145, 0.06);
  border-color: rgba(11, 61, 145, 0.12);
}
.nv-tab-ico {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.35rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #64748b;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.nv-tab-ico svg { display: block; width: 0.95rem; height: 0.95rem; }
.nv-tab-label {
  letter-spacing: -0.01em;
  flex: 0 1 auto;
  text-align: right;
}
.nv-tab.is-active {
  background: #0b1f44;
  color: #fff;
  border-color: #0b1f44;
  box-shadow: 0 10px 22px -12px rgba(11, 31, 68, 0.55);
}
.nv-tab.is-active .nv-tab-ico {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}
.nv-tab:focus-visible {
  outline: 2px solid rgba(0, 102, 254, 0.55);
  outline-offset: 1px;
  z-index: 1;
}
.nv-panel { display: none; }
.nv-panels {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 48px -28px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}
.nv-panel.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
  min-height: 26rem;
}
.nv-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 3.5vw, 2.75rem);
  background:
    linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
  border-inline-end: 1px solid rgba(15, 23, 42, 0.06);
}
.nv-panel-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  width: fit-content;
  padding: 0.28rem 0.55rem 0.28rem 0.35rem;
  border-radius: 0.35rem;
  background: rgba(11, 31, 68, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.68rem;
  font-weight: 800;
  color: #64748b;
  line-height: 1;
}
.nv-panel-step {
  display: inline-grid;
  place-items: center;
  min-width: 1.55rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  border-radius: 0.25rem;
  background: #0b1f44;
  color: #fff;
  font-family: var(--nv-num, "Segoe UI", sans-serif);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.nv-panel-meta-label {
  color: #0f172a;
}
.nv-panel-visual {
  position: relative;
  min-height: 26rem;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0.85rem;
  background:
    radial-gradient(circle at 20% 18%, rgba(0, 102, 254, 0.07), transparent 42%),
    radial-gradient(circle at 84% 78%, rgba(11, 31, 68, 0.05), transparent 40%),
    linear-gradient(155deg, #f4f7fb 0%, #eef3f9 55%, #e8eef7 100%);
  box-shadow: none;
}
.nv-panel-visual-glow {
  position: absolute;
  inset: 14% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 254, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

/* ── Product tab visuals — each tab has a distinct layout model ── */
.nv-pvis {
  position: relative;
  z-index: 1;
  width: min(100%, 30rem);
  margin: 0 auto;
}

/* 1. Design — premium laptop / tablet / phone stage */
.nv-pvis--design,
.nv-pvis--design.nv-pvis {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.25rem 0.75rem;
}
.nv-pvis-stage {
  position: relative;
  width: min(100%, 34rem);
  height: 19.5rem;
  margin: 0 auto;
  overflow: hidden;
}
.nv-pvis-glow {
  position: absolute;
  inset: 18% 12% 22%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0, 102, 254, 0.16), transparent 62%),
    radial-gradient(ellipse at 30% 70%, rgba(11, 31, 68, 0.08), transparent 55%);
  filter: blur(2px);
  pointer-events: none;
}
.nv-pvis-floor {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0.35rem;
  height: 1.1rem;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.18), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}
.nv-pvis-devices {
  direction: ltr;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.nv-pvis-devc {
  position: absolute;
  margin: 0;
}
.nv-pvis-devc-bezel,
.nv-pvis-devc-lid {
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 55%, #020617 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 28px 48px -20px rgba(15, 23, 42, 0.65),
    0 10px 20px -12px rgba(0, 102, 254, 0.18);
}
.nv-pvis-devc-screen {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Laptop — center hero */
.nv-pvis-devc.is-laptop {
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  z-index: 2;
}
.nv-pvis-devc-lid {
  width: 19.5rem;
  border-radius: 0.7rem 0.7rem 0.25rem 0.25rem;
  padding: 0.4rem 0.4rem 0.32rem;
}
.nv-pvis-devc-screen.is-desk {
  border-radius: 0.32rem;
  min-height: 12.4rem;
  max-height: 12.4rem;
  overflow: hidden;
}
.nv-pvis-devc-deck {
  width: 21.6rem;
  height: 0.72rem;
  margin: -1px auto 0;
  border-radius: 0 0 0.7rem 0.7rem;
  background: linear-gradient(180deg, #e2e8f0 0%, #94a3b8 42%, #64748b 100%);
  box-shadow: 0 14px 26px -14px rgba(15, 23, 42, 0.55);
  display: grid;
  place-items: start center;
}
.nv-pvis-devc-deck > i {
  width: 3rem;
  height: 0.28rem;
  margin-top: 0.12rem;
  border-radius: 0 0 0.28rem 0.28rem;
  background: #475569;
}

/* Tablet — back left */
.nv-pvis-devc.is-tablet {
  left: 0.35rem;
  bottom: 1.7rem;
  z-index: 1;
  transform: rotate(-5deg) scale(0.96);
  transform-origin: bottom center;
}
.nv-pvis-devc.is-tablet .nv-pvis-devc-bezel {
  width: 8.6rem;
  border-radius: 1rem;
  padding: 0.5rem 0.4rem;
}
.nv-pvis-devc.is-tablet .nv-pvis-devc-screen {
  border-radius: 0.45rem;
  height: 10.4rem;
  min-height: 0;
  max-height: 10.4rem;
  overflow: hidden;
  padding: 0.35rem;
  gap: 0.28rem;
}

/* Phone — front right, capped height so it stays in stage */
.nv-pvis-devc.is-phone {
  right: 0.55rem;
  bottom: 1.45rem;
  z-index: 3;
  transform: rotate(4deg) scale(0.9);
  transform-origin: bottom center;
}
.nv-pvis-devc-bezel.is-phone {
  width: 5.35rem;
  border-radius: 1.05rem;
  padding: 0.38rem 0.28rem 0.4rem;
}
.nv-pvis-devc-island {
  width: 1.85rem;
  height: 0.32rem;
  border-radius: 999px;
  background: #020617;
  margin: 0 auto 0.28rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.nv-pvis-devc.is-phone .nv-pvis-devc-screen {
  border-radius: 0.55rem;
  height: 8.6rem;
  min-height: 0;
  max-height: 8.6rem;
  overflow: hidden;
  padding: 0.28rem;
  gap: 0.22rem;
}

/* —— In-screen UI — premium shop storefront —— */
.nv-pvis-ui-chrome {
  direction: ltr;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.45rem;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.nv-pvis-ui-dots { display: flex; gap: 0.22rem; }
.nv-pvis-ui-dots span { width: 0.36rem; height: 0.36rem; border-radius: 50%; }
.nv-pvis-ui-dots span:nth-child(1) { background: #fb7185; }
.nv-pvis-ui-dots span:nth-child(2) { background: #fbbf24; }
.nv-pvis-ui-dots span:nth-child(3) { background: #34d399; }
.nv-pvis-ui-addr {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.18rem 0.5rem;
  border-radius: 0.3rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-family: var(--nv-num, "Segoe UI", sans-serif);
  font-size: 0.52rem;
  font-weight: 700;
  color: #64748b;
}
.nv-pvis-ui-addr u {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
  text-decoration: none;
}
.nv-pvis-ui-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22rem;
  font-family: var(--nv-num, "Segoe UI", sans-serif);
  font-size: 0.58rem;
  font-weight: 900;
  color: #0b1f44;
  letter-spacing: 0.03em;
}
.nv-pvis-ui-mark span {
  font-size: 0.42rem;
  font-weight: 800;
  color: #0066fe;
  letter-spacing: 0;
}
.nv-pvis-ui-page.nv-pvis-shop,
.nv-pvis-devc-screen.nv-pvis-shop {
  direction: rtl;
  text-align: right;
  padding: 0.38rem 0.42rem 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 102, 254, 0.06), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
}
.nv-pvis-shop-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nv-pvis-shop-search {
  flex: 1;
  min-width: 0;
  height: 1.05rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 4px 10px -8px rgba(15, 23, 42, 0.25);
  display: flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0 0.45rem;
}
.nv-pvis-shop-search i {
  width: 0.45rem;
  height: 0.45rem;
  border: 1.5px solid #94a3b8;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.nv-pvis-shop-search i::after {
  content: "";
  position: absolute;
  width: 0.22rem;
  height: 1.5px;
  background: #94a3b8;
  right: -0.18rem;
  bottom: -0.08rem;
  transform: rotate(45deg);
  border-radius: 999px;
}
.nv-pvis-shop-search em {
  font-size: 0.38rem;
  font-weight: 700;
  font-style: normal;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nv-pvis-shop-nav nav {
  display: flex;
  gap: 0.32rem;
}
.nv-pvis-shop-nav nav span {
  font-size: 0.4rem;
  font-weight: 800;
  color: #64748b;
  white-space: nowrap;
}
.nv-pvis-shop-ico.is-heart {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 0.28rem;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  position: relative;
  flex-shrink: 0;
}
.nv-pvis-shop-ico.is-heart::before,
.nv-pvis-shop-ico.is-heart::after {
  content: "";
  position: absolute;
  width: 0.32rem;
  height: 0.5rem;
  background: #e11d48;
  top: 0.22rem;
  border-radius: 0.32rem 0.32rem 0 0;
}
.nv-pvis-shop-ico.is-heart::before {
  left: 0.22rem;
  transform: rotate(-45deg);
  transform-origin: bottom right;
}
.nv-pvis-shop-ico.is-heart::after {
  right: 0.22rem;
  transform: rotate(45deg);
  transform-origin: bottom left;
}
.nv-pvis-shop-cart {
  position: relative;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.32rem;
  background: linear-gradient(145deg, #0b1f44, #123057);
  box-shadow: 0 8px 14px -10px rgba(11, 31, 68, 0.75);
  flex-shrink: 0;
}
.nv-pvis-shop-cart::before {
  content: "";
  position: absolute;
  inset: 0.32rem 0.28rem 0.28rem;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-top: 0;
  border-radius: 0 0 0.15rem 0.15rem;
}
.nv-pvis-shop-cart::after {
  content: attr(data-n);
  position: absolute;
  top: -0.22rem;
  inset-inline-end: -0.22rem;
  min-width: 0.7rem;
  height: 0.7rem;
  padding: 0 0.12rem;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.34rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  font-family: var(--nv-num, "Segoe UI", sans-serif);
  box-shadow: 0 0 0 1.5px #fff;
}
.nv-pvis-shop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}
.nv-pvis-shop-bar > b {
  font-size: 0.52rem;
  font-weight: 900;
  color: #0b1f44;
}
.nv-pvis-shop-banner.is-desk {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0.4rem;
  min-height: 5rem;
  padding: 0.5rem;
  border-radius: 0.65rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(251, 191, 36, 0.28), transparent 38%),
    radial-gradient(circle at 12% 88%, rgba(56, 189, 248, 0.18), transparent 40%),
    linear-gradient(135deg, #061226 0%, #0b1f44 42%, #1d4ed8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 28px -18px rgba(11, 31, 68, 0.55);
  overflow: hidden;
}
.nv-pvis-shop-banner-copy {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  justify-content: center;
  min-width: 0;
  z-index: 1;
}
.nv-pvis-shop-tag {
  align-self: flex-start;
  padding: 0.14rem 0.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  color: #78350f;
  font-size: 0.34rem;
  font-weight: 900;
  box-shadow: 0 4px 10px -4px rgba(245, 158, 11, 0.7);
}
.nv-pvis-shop-banner-copy > strong {
  font-size: 0.58rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
}
.nv-pvis-shop-banner-copy > p {
  margin: 0;
  font-size: 0.36rem;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.4;
}
.nv-pvis-shop-banner-copy > em {
  display: inline-grid;
  place-items: center;
  align-self: flex-start;
  margin-top: 0.2rem;
  min-height: 0.85rem;
  padding: 0 0.55rem;
  border-radius: 0.28rem;
  background: #fff;
  color: #0b1f44;
  font-size: 0.38rem;
  font-weight: 900;
  font-style: normal;
  box-shadow: 0 8px 16px -10px rgba(0, 0, 0, 0.45);
}
.nv-pvis-shop-banner-art {
  position: relative;
  display: grid;
  place-items: center;
}
.nv-pvis-shop-banner-art .pic.is-hero {
  position: relative;
  width: 100%;
  height: 4rem;
  border-radius: 0.55rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  box-shadow: 0 16px 28px -16px rgba(0, 0, 0, 0.5);
}
.nv-pvis-shop-banner-art .blob {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fda4af, #fb7185 55%, transparent 70%);
  top: -0.4rem;
  right: -0.3rem;
  filter: blur(0.5px);
}
.nv-pvis-shop-banner-art .blob.is-2 {
  width: 2.4rem;
  height: 2.4rem;
  background: radial-gradient(circle at 30% 30%, #fde68a, #f59e0b 60%, transparent 72%);
  top: auto;
  bottom: -0.35rem;
  right: auto;
  left: -0.2rem;
}
.nv-pvis-shop-banner-art .prod-shape {
  position: absolute;
  inset: 0.55rem 1.1rem 0.55rem 1.1rem;
  border-radius: 1.1rem 1.1rem 0.7rem 0.7rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), transparent 35%),
    linear-gradient(145deg, #e0e7ff 0%, #6366f1 48%, #312e81 100%);
  box-shadow: 0 10px 18px -10px rgba(49, 46, 129, 0.7);
}
.nv-pvis-shop-mini {
  position: absolute;
  inset-inline-end: 0.15rem;
  bottom: -0.2rem;
  padding: 0.28rem 0.4rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 22px -12px rgba(15, 23, 42, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 3.1rem;
  z-index: 2;
  text-align: right;
}
.nv-pvis-shop-mini b {
  font-size: 0.4rem;
  font-weight: 900;
  color: #0b1f44;
}
.nv-pvis-shop-mini > i {
  font-size: 0.32rem;
  font-weight: 700;
  font-style: normal;
  color: #64748b;
}
.nv-pvis-shop-offer {
  position: absolute;
  top: -0.15rem;
  inset-inline-start: -0.1rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ef4444, #b91c1c);
  color: #fff;
  font-size: 0.42rem;
  font-weight: 900;
  box-shadow: 0 10px 18px -8px rgba(185, 28, 28, 0.7);
  z-index: 2;
  border: 2px solid #fff;
}
.nv-pvis-shop-cats {
  display: flex;
  gap: 0.2rem;
}
.nv-pvis-shop-cats i {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.34rem;
  font-weight: 800;
  font-style: normal;
  white-space: nowrap;
}
.nv-pvis-shop-cats i.is-on {
  background: #0b1f44;
  border-color: #0b1f44;
  color: #fff;
  box-shadow: 0 6px 12px -8px rgba(11, 31, 68, 0.65);
}
.nv-pvis-shop-grid {
  display: grid;
  gap: 0.28rem;
}
.nv-pvis-shop-grid.is-3 { grid-template-columns: repeat(3, 1fr); }
.nv-pvis-shop-grid.is-2 { grid-template-columns: 1fr 1fr; }
.nv-pvis-prod {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.28rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 18px -14px rgba(15, 23, 42, 0.4);
}
.nv-pvis-prod > b {
  font-size: 0.38rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nv-pvis-prod .pic {
  position: relative;
  height: 2.35rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.nv-pvis-prod .pic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), transparent 42%);
  pointer-events: none;
  z-index: 1;
}
.nv-pvis-prod .pic.is-a {
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.45), transparent 40%),
    linear-gradient(160deg, #dbeafe 0%, #60a5fa 48%, #1d4ed8 100%);
}
.nv-pvis-prod .pic.is-b {
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.45), transparent 40%),
    linear-gradient(160deg, #fce7f3 0%, #f472b6 48%, #be185d 100%);
}
.nv-pvis-prod .pic.is-c {
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.45), transparent 40%),
    linear-gradient(160deg, #d1fae5 0%, #34d399 48%, #047857 100%);
}
.nv-pvis-prod .badge {
  position: absolute;
  top: 0.22rem;
  inset-inline-start: 0.22rem;
  z-index: 2;
  padding: 0.08rem 0.28rem;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.3rem;
  font-weight: 900;
  box-shadow: 0 4px 8px -4px rgba(239, 68, 68, 0.7);
}
.nv-pvis-prod .badge.is-new {
  background: linear-gradient(90deg, #0b1f44, #1d4ed8);
}
.nv-pvis-prod .wish {
  position: absolute;
  top: 0.22rem;
  inset-inline-end: 0.22rem;
  z-index: 2;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}
.nv-pvis-prod .wish::before {
  content: "";
  position: absolute;
  inset: 0.2rem;
  background: #fb7185;
  border-radius: 0.1rem;
  transform: rotate(45deg);
}
.nv-pvis-prod .shape {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.nv-pvis-prod .shape.is-headphone::before,
.nv-pvis-prod .shape.is-headphone::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 12px -6px rgba(15, 23, 42, 0.45);
}
.nv-pvis-prod .shape.is-headphone::before {
  width: 42%;
  height: 38%;
  left: 29%;
  top: 28%;
  border: 0.28rem solid rgba(255, 255, 255, 0.95);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  background: transparent;
  box-shadow: none;
}
.nv-pvis-prod .shape.is-headphone::after {
  width: 18%;
  height: 28%;
  left: 22%;
  top: 48%;
  border-radius: 0.35rem;
  box-shadow:
    0 6px 12px -6px rgba(15, 23, 42, 0.45),
    2.1rem 0 0 rgba(255, 255, 255, 0.92);
}
.nv-pvis-prod .shape.is-bag::before {
  content: "";
  position: absolute;
  width: 46%;
  height: 48%;
  left: 27%;
  top: 34%;
  border-radius: 0.35rem 0.35rem 0.45rem 0.45rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 14px -8px rgba(15, 23, 42, 0.45);
}
.nv-pvis-prod .shape.is-bag::after {
  content: "";
  position: absolute;
  width: 28%;
  height: 18%;
  left: 36%;
  top: 22%;
  border: 0.18rem solid rgba(255, 255, 255, 0.95);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  background: transparent;
}
.nv-pvis-prod .shape.is-bottle::before {
  content: "";
  position: absolute;
  width: 28%;
  height: 48%;
  left: 36%;
  top: 34%;
  border-radius: 0.25rem 0.25rem 0.55rem 0.55rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 14px -8px rgba(15, 23, 42, 0.4);
}
.nv-pvis-prod .shape.is-bottle::after {
  content: "";
  position: absolute;
  width: 14%;
  height: 14%;
  left: 43%;
  top: 22%;
  border-radius: 0.12rem;
  background: rgba(255, 255, 255, 0.88);
}
.nv-pvis-prod .shape.is-shoe::before {
  content: "";
  position: absolute;
  width: 58%;
  height: 28%;
  left: 18%;
  top: 48%;
  border-radius: 60% 40% 35% 45%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 14px -8px rgba(15, 23, 42, 0.4);
  transform: rotate(-8deg);
}
.nv-pvis-prod .shape.is-watch::before {
  content: "";
  position: absolute;
  width: 34%;
  height: 34%;
  left: 33%;
  top: 34%;
  border-radius: 50%;
  border: 0.22rem solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 14px -8px rgba(15, 23, 42, 0.4);
}
.nv-pvis-prod .shape.is-watch::after {
  content: "";
  position: absolute;
  width: 16%;
  height: 58%;
  left: 42%;
  top: 22%;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.55);
  z-index: -1;
}
.nv-pvis-prod .stars,
.nv-pvis-shop-mini .stars {
  height: auto;
  width: auto;
  border-radius: 0;
  background: none;
  color: #f59e0b;
  font-size: 0.42rem;
  letter-spacing: 0.02em;
  line-height: 1;
  font-family: "Segoe UI Symbol", "Apple Color Emoji", sans-serif;
}
.nv-pvis-shop-mini .stars { font-size: 0.36rem; }
.nv-pvis-shop-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 1.2rem;
}
.nv-pvis-prod .pic {
  position: relative;
  height: 2.55rem;
  border-radius: 0.45rem;
  overflow: hidden;
}
.nv-pvis-prod .meta {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.08rem;
  min-height: 0.9rem;
}
.nv-pvis-prod.is-row {
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem;
  min-height: 2.4rem;
}
.nv-pvis-shop-grid.is-mob {
  gap: 0.28rem;
}
.nv-pvis-prod .meta em {
  font-size: 0.38rem;
  font-weight: 900;
  font-style: normal;
  color: #0b1f44;
  font-family: var(--nv-num, "Segoe UI", sans-serif);
}
.nv-pvis-prod .meta s {
  font-size: 0.3rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-inline-end: auto;
}
.nv-pvis-prod .meta .bag,
.nv-pvis-prod.is-row .bag {
  margin-inline-start: auto;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 0.24rem;
  background: linear-gradient(145deg, #0066fe, #1d4ed8);
  box-shadow: 0 6px 12px -6px rgba(0, 102, 254, 0.75);
  position: relative;
  flex-shrink: 0;
}
.nv-pvis-prod .bag::before {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.48rem;
  font-weight: 900;
  line-height: 1;
}

/* Tablet */
.nv-pvis-shop-banner.is-tab {
  min-height: 3.2rem;
  border-radius: 0.5rem;
  padding: 0.45rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.2rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(251, 191, 36, 0.35), transparent 45%),
    linear-gradient(145deg, #0b1f44, #1d4ed8);
  overflow: hidden;
}
.nv-pvis-shop-banner.is-tab em {
  align-self: flex-start;
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
  background: #fbbf24;
  color: #78350f;
  font-size: 0.32rem;
  font-weight: 900;
  font-style: normal;
}
.nv-pvis-shop-banner.is-tab strong {
  font-size: 0.48rem;
  font-weight: 900;
  color: #fff;
}
.nv-pvis-shop-grid.is-2 .pic { height: 2.8rem; }

/* Phone */
.nv-pvis-shop-banner.is-mob {
  min-height: 1.55rem;
  border-radius: 0.4rem;
  padding: 0.28rem 0.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.08rem;
  background: linear-gradient(100deg, #0b1f44, #2563eb 70%, #38bdf8);
  flex-shrink: 0;
}
.nv-pvis-shop-banner.is-mob em {
  font-size: 0.36rem;
  font-weight: 900;
  font-style: normal;
  color: #fde68a;
}
.nv-pvis-shop-banner.is-mob strong {
  font-size: 0.4rem;
  font-weight: 800;
  color: #fff;
}
.nv-pvis-prod.is-row {
  flex-direction: row;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem;
  min-height: 0;
}
.nv-pvis-prod.is-row .pic {
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
}
.nv-pvis-prod.is-row .body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  align-items: flex-start;
}
.nv-pvis-prod.is-row > b,
.nv-pvis-prod.is-row .body > b {
  font-size: 0.34rem;
}
.nv-pvis-prod.is-row .stars { font-size: 0.32rem; }
.nv-pvis-shop-grid.is-mob {
  grid-template-columns: 1fr;
  gap: 0.18rem;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.nv-pvis-prod.is-row .pic {
  width: 1.95rem;
  height: 1.95rem;
  flex-shrink: 0;
}
.nv-pvis-prod.is-row .pic::before { opacity: 0.5; }
.nv-pvis-prod.is-row .body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.nv-pvis-prod.is-row .body em {
  font-size: 0.36rem;
  font-weight: 900;
  font-style: normal;
  color: #0b1f44;
  font-family: var(--nv-num, "Segoe UI", sans-serif);
}
@media (max-width: 720px) {
  .nv-pvis--design,
  .nv-pvis--design.nv-pvis {
    min-height: 19rem;
    padding: 1.15rem 0.35rem 0.85rem;
  }
  .nv-pvis-stage {
    height: 17rem;
    overflow: visible;
  }
  .nv-pvis-devc-lid { width: 13.8rem; }
  .nv-pvis-devc-deck { width: 15.3rem; }
  .nv-pvis-devc-screen.is-desk {
    min-height: 8.8rem;
    max-height: 8.8rem;
    overflow: hidden;
  }
  .nv-pvis-devc.is-laptop { bottom: 0.65rem; }
  .nv-pvis-devc.is-tablet { left: 0; bottom: 1rem; transform: rotate(-4deg) scale(0.88); }
  .nv-pvis-devc.is-phone { right: 0.1rem; bottom: 0.85rem; transform: rotate(3deg) scale(0.86); }
  .nv-pvis-shop-nav nav,
  .nv-pvis-shop-search em,
  .nv-pvis-shop-ico,
  .nv-pvis-shop-mini,
  .nv-pvis-shop-offer,
  .nv-pvis-prod .wish,
  .nv-pvis-prod .meta s { display: none; }
  .nv-pvis-shop-banner.is-desk { min-height: 3.5rem; }
  .nv-pvis-shop-banner-copy > strong { font-size: 0.48rem; }
  .nv-pvis-shop-banner-copy > p { display: none; }
  .nv-pvis-prod .pic { height: 1.7rem; }
  .nv-pvis-prod > b { font-size: 0.34rem; }
  .nv-pvis-devc.is-tablet .nv-pvis-devc-bezel { width: 6.2rem; }
  .nv-pvis-devc.is-tablet .nv-pvis-devc-screen { height: 7.6rem; min-height: 0; max-height: 7.6rem; }
  .nv-pvis-devc-bezel.is-phone { width: 4.2rem; }
  .nv-pvis-devc.is-phone .nv-pvis-devc-screen { height: 6.8rem; min-height: 0; max-height: 6.8rem; }
}

/* 2. Dev — modern IDE */
.nv-pvis--dev {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 20rem;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
}
.nv-pvis-ide {
  border-radius: 0.9rem;
  background: #0b1220;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 28px 52px -22px rgba(15, 23, 42, 0.7),
    0 0 0 1px rgba(0, 102, 254, 0.06);
  overflow: hidden;
}
.nv-pvis-ide-top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  background: linear-gradient(180deg, #1a2336, #151c2c);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.nv-pvis-ide-dot { width: 0.4rem; height: 0.4rem; border-radius: 50%; flex-shrink: 0; }
.nv-pvis-ide-dot.r { background: #f87171; }
.nv-pvis-ide-dot.y { background: #fbbf24; }
.nv-pvis-ide-dot.g { background: #4ade80; }
.nv-pvis-ide-tabs {
  display: flex;
  align-items: stretch;
  gap: 0.15rem;
  margin-inline-start: 0.55rem;
  min-width: 0;
}
.nv-pvis-ide-tabs span {
  padding: 0.28rem 0.55rem;
  border-radius: 0.3rem 0.3rem 0 0;
  font-family: var(--nv-num, "Segoe UI", Consolas, monospace);
  font-size: 0.56rem;
  font-weight: 700;
  color: #64748b;
  background: transparent;
}
.nv-pvis-ide-tabs span.is-on {
  color: #e2e8f0;
  background: #0b1220;
  box-shadow: inset 0 -2px 0 #0066fe;
}
.nv-pvis-ide-top > em {
  margin-inline-start: auto;
  font-family: var(--nv-num, "Segoe UI", Consolas, monospace);
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}
.nv-pvis-ide-main {
  display: grid;
  grid-template-columns: 1.85rem 6.2rem 1fr;
  min-height: 12.2rem;
}
.nv-pvis-ide-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0;
  background: #0a101c;
  border-inline-end: 1px solid rgba(148, 163, 184, 0.08);
}
.nv-pvis-ide-rail i {
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 0.2rem;
  background: #334155;
  opacity: 0.55;
}
.nv-pvis-ide-rail i.is-on {
  background: #38bdf8;
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}
.nv-pvis-tree {
  padding: 0.55rem 0.4rem;
  border-inline-end: 1px solid rgba(148, 163, 184, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  background: #0d1524;
}
.nv-pvis-tree span {
  font-family: var(--nv-num, "Segoe UI", Consolas, monospace);
  font-size: 0.55rem;
  color: #64748b;
  padding: 0.16rem 0.35rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nv-pvis-tree .is-dir { color: #94a3b8; font-weight: 700; }
.nv-pvis-tree .is-file.is-on {
  background: rgba(0, 102, 254, 0.18);
  color: #93c5fd;
}
.nv-pvis-code {
  padding: 0.65rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  background:
    linear-gradient(90deg, rgba(0, 102, 254, 0.04), transparent 28%),
    #0b1220;
}
.nv-pvis-code > div {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.65rem;
  align-items: baseline;
  font-family: var(--nv-num, "Segoe UI", Consolas, monospace);
  font-size: 0.64rem;
  line-height: 1.6;
  color: #cbd5e1;
}
.nv-pvis-code > div > i {
  color: #334155;
  font-style: normal;
  text-align: end;
  user-select: none;
}
.nv-pvis-code code {
  font: inherit;
  color: inherit;
  white-space: pre;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nv-pvis-code .c-kw { color: #c084fc; font-weight: 600; }
.nv-pvis-code .c-fn { color: #67e8f9; font-weight: 600; }
.nv-pvis-code .c-str { color: #86efac; font-weight: 600; }
.nv-pvis-code .c-prop { color: #fcd34d; font-weight: 600; }
.nv-pvis-term {
  padding: 0.4rem 0.7rem 0.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  background: #080e18;
  font-family: var(--nv-num, "Segoe UI", Consolas, monospace);
  font-size: 0.58rem;
  color: #94a3b8;
}
.nv-pvis-term-label {
  display: inline-block;
  margin-bottom: 0.22rem;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #475569;
}
.nv-pvis-term .c-prompt { color: #4ade80; margin-inline-end: 0.25rem; }
.nv-pvis-term em { color: #38bdf8; font-style: normal; font-weight: 700; }
.nv-pvis-term b { color: #4ade80; font-weight: 800; }
.nv-pvis-term u { color: #fbbf24; text-decoration: none; }
.nv-pvis-badges {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
}
.nv-pvis-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.34rem 0.7rem 0.34rem 0.5rem;
  border-radius: 0.5rem;
  font-family: var(--nv-num, "Segoe UI", sans-serif);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  white-space: nowrap;
}
.nv-pvis-badges span svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  display: block;
}
.nv-pvis-badges .is-ts {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #bfdbfe;
}
.nv-pvis-badges .is-react {
  color: #0891b2;
  background: #ecfeff;
  border-color: #a5f3fc;
}
.nv-pvis-badges .is-next {
  color: #0f172a;
  background: #f8fafc;
  border-color: #cbd5e1;
}
.nv-pvis-badges .is-node {
  color: #15803d;
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.nv-pvis-badges .is-php {
  color: #6d28d9;
  background: #f5f3ff;
  border-color: #ddd6fe;
}
.nv-pvis-badges .is-laravel {
  color: #e11d48;
  background: #fff1f2;
  border-color: #fecdd3;
}
.nv-pvis-badges .is-py {
  color: #3776ab;
  background: #fefce8;
  border-color: #fde68a;
}
.nv-pvis-badges .is-go {
  color: #00add8;
  background: #f0f9ff;
  border-color: #bae6fd;
}

/* 3. SEO — professional RTL dashboard */
.nv-pvis--seo,
.nv-pvis--seo.nv-pvis {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 21rem;
}
.nv-seo-dash {
  direction: rtl;
  text-align: right;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.15rem;
  font-size: 0.62rem;
  font-family: "Yekan Bakh", "Yekan Bakh Fallback", Tahoma, system-ui, sans-serif;
}
.nv-seo-dash .nv-seo-num,
.nv-seo-ring b,
.nv-seo-kpis article > b,
.nv-seo-kpis article > em,
.nv-seo-keys li span,
.nv-seo-keys li i,
.nv-seo-donut-wrap li b,
.nv-seo-bars em {
  font-family: var(--nv-num);
  font-feature-settings: "tnum" 1, "ss01" 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  font-weight: 800;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
.nv-seo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 22px -18px rgba(15, 23, 42, 0.35);
}
.nv-seo-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.nv-seo-g {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.4rem;
  display: grid;
  place-items: center;
  font-family: var(--nv-num, "Segoe UI", sans-serif);
  font-size: 0.78rem;
  font-weight: 900;
  color: #fff;
  background: conic-gradient(from 210deg, #ea4335, #fbbc05, #34a853, #4285f4, #ea4335);
  box-shadow: 0 6px 12px -6px rgba(66, 133, 244, 0.55);
  flex-shrink: 0;
}
.nv-seo-brand strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.nv-seo-brand p {
  margin: 0.12rem 0 0;
  font-size: 0.52rem;
  font-weight: 700;
  color: #64748b;
  line-height: 1.45;
}
.nv-seo-score {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.nv-seo-ring {
  position: relative;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
}
.nv-seo-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.nv-seo-ring circle {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 7;
}
.nv-seo-ring circle.is-val {
  stroke: #22c55e;
  stroke-linecap: round;
  stroke-dasharray: 92 100;
}
.nv-seo-ring b {
  position: relative;
  z-index: 1;
  font-size: 1.28rem;
  font-weight: 800;
  color: #0b1f44;
  line-height: 1;
  letter-spacing: -0.045em;
}
.nv-seo-score-meta em {
  display: inline-grid;
  place-items: center;
  align-self: flex-start;
  min-height: 1.05rem;
  padding: 0 0.48rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.52rem;
  font-weight: 900;
  font-style: normal;
  letter-spacing: -0.01em;
}
.nv-seo-score-meta span {
  font-size: 0.52rem;
  font-weight: 800;
  color: #64748b;
}
.nv-seo-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.nv-seo-kpis article {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.35rem;
  row-gap: 0.08rem;
  align-items: center;
  padding: 0.45rem 0.5rem;
  border-radius: 0.65rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 18px -16px rgba(15, 23, 42, 0.35);
}
.nv-seo-kpis article > i {
  grid-row: 1 / 3;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
}
.nv-seo-kpis article.is-blue > i { background: linear-gradient(145deg, #dbeafe, #3b82f6); }
.nv-seo-kpis article.is-violet > i { background: linear-gradient(145deg, #ede9fe, #8b5cf6); }
.nv-seo-kpis article.is-green > i { background: linear-gradient(145deg, #dcfce7, #22c55e); }
.nv-seo-kpis article.is-amber > i { background: linear-gradient(145deg, #ffedd5, #f59e0b); }
.nv-seo-kpis article > span {
  font-size: 0.48rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: -0.01em;
}
.nv-seo-kpis article > b {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0b1f44;
  line-height: 1;
  grid-column: 2;
  letter-spacing: -0.04em;
}
.nv-seo-kpis article > em {
  grid-column: 2;
  font-size: 0.52rem;
  font-weight: 700;
  font-style: normal;
  color: #16a34a;
  letter-spacing: -0.02em;
}
.nv-seo-mid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.4rem;
}
.nv-seo-card {
  padding: 0.5rem 0.55rem;
  border-radius: 0.7rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 22px -18px rgba(15, 23, 42, 0.35);
}
.nv-seo-card > strong,
.nv-seo-card-h strong {
  font-size: 0.62rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.015em;
}
.nv-seo-card-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.nv-seo-legend {
  display: flex;
  gap: 0.45rem;
}
.nv-seo-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  font-size: 0.42rem;
  font-weight: 800;
  color: #64748b;
}
.nv-seo-legend span::before {
  content: "";
  width: 0.55rem;
  height: 0.18rem;
  border-radius: 999px;
}
.nv-seo-legend .is-a::before { background: #2563eb; }
.nv-seo-legend .is-b::before { background: #8b5cf6; }
.nv-seo-plot {
  position: relative;
  height: 5.2rem;
  border-radius: 0.5rem;
  background:
    linear-gradient(#f8fafc, #f8fafc) padding-box,
    repeating-linear-gradient(
      to top,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(148, 163, 184, 0.18) calc(25% - 1px),
      rgba(148, 163, 184, 0.18) 25%
    );
  overflow: hidden;
}
.nv-seo-plot svg {
  display: block;
  width: 100%;
  height: calc(100% - 1rem);
  padding: 0.35rem 0.35rem 0;
}
.nv-seo-x {
  display: flex;
  justify-content: space-between;
  padding: 0.1rem 0.35rem 0.25rem;
  font-size: 0.4rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: -0.01em;
}
.nv-seo-keys ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.nv-seo-keys li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.4rem;
  border-radius: 0.45rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.04);
}
.nv-seo-keys li b {
  font-size: 0.54rem;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}
.nv-seo-keys li span {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0b1f44;
  letter-spacing: -0.04em;
  min-width: 1.15rem;
  text-align: center;
}
.nv-seo-keys li i {
  font-size: 0.52rem;
  font-weight: 700;
  font-style: normal;
  min-width: 1.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}
.nv-seo-keys li i.up { color: #16a34a; }
.nv-seo-keys li i.dn { color: #dc2626; }
.nv-seo-keys .nv-seo-card-h em {
  font-size: 0.42rem;
  font-weight: 800;
  font-style: normal;
  color: #2563eb;
}
.nv-seo-bottom {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0.4rem;
}
.nv-seo-src > strong,
.nv-seo-pages > strong {
  display: block;
  margin-bottom: 0.4rem;
}
.nv-seo-donut-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nv-seo-donut {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: conic-gradient(
    #2563eb 0 61%,
    #22c55e 61% 79%,
    #8b5cf6 79% 91%,
    #e2e8f0 91% 100%
  );
  mask: radial-gradient(circle at center, transparent 52%, #000 53%);
  -webkit-mask: radial-gradient(circle at center, transparent 52%, #000 53%);
  flex-shrink: 0;
}
.nv-seo-donut-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
  flex: 1;
}
.nv-seo-donut-wrap li {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.5rem;
  font-weight: 800;
  color: #475569;
  letter-spacing: -0.01em;
}
.nv-seo-donut-wrap li i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.1rem;
  flex-shrink: 0;
}
.nv-seo-donut-wrap li.is-a i { background: #2563eb; }
.nv-seo-donut-wrap li.is-b i { background: #22c55e; }
.nv-seo-donut-wrap li.is-c i { background: #8b5cf6; }
.nv-seo-donut-wrap li b {
  margin-inline-start: auto;
  color: #0b1f44;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.nv-seo-bars {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.nv-seo-bars > div {
  display: grid;
  grid-template-columns: 3.6rem 1fr auto;
  align-items: center;
  gap: 0.35rem;
}
.nv-seo-bars i {
  display: block;
  height: 0.42rem;
  width: 100%;
  border-radius: 999px;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}
.nv-seo-bars i::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(270deg, #34d399, #059669);
}
.nv-seo-bars span {
  font-size: 0.48rem;
  font-weight: 800;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  letter-spacing: -0.02em;
}
.nv-seo-bars em {
  font-size: 0.62rem;
  font-weight: 800;
  font-style: normal;
  color: #0b1f44;
  letter-spacing: -0.035em;
}
@media (max-width: 720px) {
  .nv-pvis--seo { min-height: 0; }
  .nv-seo-kpis { grid-template-columns: repeat(2, 1fr); }
  .nv-seo-mid,
  .nv-seo-bottom { grid-template-columns: 1fr; }
  .nv-seo-plot { height: 4.2rem; }
  .nv-seo-keys li:nth-child(n + 4) { display: none; }
}

/* 4. Ops — server rack photo + LED blink */
.nv-pvis--ops,
.nv-pvis--ops.nv-pvis {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 22rem;
}
.nv-srv-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22rem;
  padding: 0.75rem 0.5rem 1rem;
  background: transparent;
}
.nv-srv-stack {
  position: relative;
  direction: ltr;
  width: min(100%, 24rem);
  margin: 0;
  line-height: 0;
}
.nv-srv-photo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 34px rgba(15, 23, 42, 0.16));
  pointer-events: none;
  user-select: none;
}
.nv-srv-glow {
  position: absolute;
  width: 9.5%;
  height: 2.6%;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.45);
  box-shadow:
    0 0 0.45rem rgba(45, 212, 191, 0.85),
    0 0 1.1rem rgba(20, 184, 166, 0.65);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: nv-srv-glow 2.1s ease-in-out infinite;
}
.nv-srv-led {
  position: absolute;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: nv-srv-blink 1.35s ease-in-out infinite;
}
.nv-srv-led.is-green {
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25), 0 0 8px rgba(34, 197, 94, 0.75);
}
.nv-srv-led.is-blue {
  background: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.25), 0 0 8px rgba(56, 189, 248, 0.75);
}
.nv-srv-led.is-teal {
  background: #2dd4bf;
  box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.25), 0 0 8px rgba(45, 212, 191, 0.75);
}
.nv-srv-led.is-amber {
  background: #f59e0b;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.25), 0 0 8px rgba(245, 158, 11, 0.65);
}
@keyframes nv-srv-blink {
  0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(0.75); }
  45% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  55% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes nv-srv-glow {
  0%, 100% { opacity: 0.3; filter: brightness(0.85); transform: translate(-50%, -50%); }
  50% { opacity: 0.95; filter: brightness(1.25); transform: translate(-50%, -50%); }
}
@media (max-width: 720px) {
  .nv-pvis--ops,
  .nv-srv-stage { min-height: 18rem; }
  .nv-srv-stack { width: min(100%, 19rem); }
  .nv-srv-led { width: 0.24rem; height: 0.24rem; }
}

/* 5. Games — CS:GO live match scene */
.nv-pvis--games,
.nv-pvis--games.nv-pvis {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 22rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.nv-cs-stage {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 22rem;
  padding: 0;
  width: 100%;
}
.nv-cs-viewport {
  position: relative;
  direction: ltr;
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 10;
  border-radius: 1rem;
  overflow: hidden;
  background: #1a1510;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.35),
    0 28px 48px -22px rgba(15, 23, 42, 0.55);
  isolation: isolate;
}
.nv-cs-map {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  max-width: none;
  object-fit: cover;
  object-position: 48% 42%;
  pointer-events: none;
  user-select: none;
  animation: nv-cs-cam-fire 0.55s linear infinite;
  filter: saturate(1.12) contrast(1.06);
  transform-origin: 58% 52%;
  will-change: transform;
}
.nv-cs-haze {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 12, 8, 0.55) 0%, transparent 14%),
    linear-gradient(0deg, rgba(15, 12, 8, 0.5) 0%, transparent 16%),
    linear-gradient(90deg, rgba(15, 12, 8, 0.28) 0%, transparent 18%),
    radial-gradient(ellipse 40% 35% at 57% 48%, rgba(251, 191, 36, 0.18), transparent 55%),
    radial-gradient(ellipse 30% 28% at 22% 40%, rgba(251, 191, 36, 0.12), transparent 50%);
  pointer-events: none;
  animation: nv-cs-haze 1.4s ease-in-out infinite;
}
.nv-cs-flash {
  position: absolute;
  z-index: 3;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fffef8 0%, #fde68a 20%, #f59e0b 42%, transparent 68%),
    conic-gradient(from 12deg, transparent 0 7%, #fff7c2 9%, transparent 13%, #ffd36a 17%, transparent 21%, #fff7c2 27%, transparent 31%, #ffd36a 37%, transparent 41%, #fff7c2 47%, transparent 100%);
  box-shadow:
    0 0 0.55rem rgba(253, 224, 71, 1),
    0 0 1.5rem rgba(245, 158, 11, 0.9),
    0 0 2.4rem rgba(251, 146, 60, 0.5);
  transform: translate(-50%, -50%) scale(0.15);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}
.nv-cs-flash.is-ct {
  top: 48%;
  left: 57%;
  width: 3.2rem;
  height: 3.2rem;
  animation: nv-cs-muzzle-burst 0.55s steps(1, end) infinite;
}
.nv-cs-flash.is-t {
  top: 38%;
  left: 22%;
  width: 2.2rem;
  height: 2.2rem;
  animation: nv-cs-muzzle-burst 0.7s steps(1, end) infinite 0.28s;
}
.nv-cs-tracer {
  position: absolute;
  z-index: 3;
  height: 2px;
  opacity: 0;
  pointer-events: none;
  transform-origin: left center;
}
.nv-cs-tracer.is-ct {
  top: 48%;
  left: 57%;
  width: 12%;
  background: linear-gradient(90deg, rgba(253, 224, 71, 0.95), transparent);
  --nv-tr-rot: -8deg;
  animation: nv-cs-tracer 0.55s linear infinite;
}
.nv-cs-tracer.is-t {
  top: 38%;
  left: 22%;
  width: 18%;
  background: linear-gradient(90deg, rgba(253, 224, 71, 0.85), transparent);
  --nv-tr-rot: 6deg;
  animation: nv-cs-tracer 0.7s linear infinite 0.28s;
}
.nv-cs-shell {
  position: absolute;
  z-index: 3;
  top: 46%;
  left: 62%;
  width: 0.28rem;
  height: 0.55rem;
  border-radius: 0.08rem;
  background: linear-gradient(180deg, #fde68a, #b45309);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 4px rgba(251, 191, 36, 0.6);
}
.nv-cs-shell.is-1 { animation: nv-cs-shell 0.7s ease-out infinite; }
.nv-cs-shell.is-2 { animation: nv-cs-shell 0.7s ease-out infinite 0.22s; }
.nv-cs-shell.is-3 { animation: nv-cs-shell 0.7s ease-out infinite 0.44s; }
.nv-cs-sparks {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 46%;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 220, 0.95) 0%, rgba(251, 146, 60, 0.7) 35%, transparent 70%);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.7);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.3);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: nv-cs-sparks 0.55s steps(1, end) infinite;
}
.nv-cs-impact {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  animation: nv-cs-shake 0.55s linear infinite;
}
.nv-cs-hud {
  position: absolute;
  inset: 0.55rem 0.6rem auto;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  pointer-events: none;
}
.nv-cs-score {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-family: "Segoe UI", Tahoma, sans-serif;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.nv-cs-score b {
  min-width: 1.1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}
.nv-cs-score b.is-ct { color: #60a5fa; }
.nv-cs-score b.is-t { color: #fbbf24; }
.nv-cs-score em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: 0.04em;
  min-width: 2.2rem;
  text-align: center;
}
.nv-cs-timer::before {
  content: "1:24";
  animation: nv-cs-timer 12s steps(1, end) infinite;
}
.nv-cs-num.is-score-ct::before {
  content: "3";
  animation: nv-cs-score-ct 8s steps(1, end) infinite;
}
.nv-cs-num.is-score-t::before {
  content: "7";
  animation: nv-cs-score-t 8s steps(1, end) infinite;
}
.nv-cs-feed {
  align-self: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  width: min(100%, 11.5rem);
}
.nv-cs-feed li {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.18rem 0.4rem;
  border-radius: 0.35rem;
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  color: #cbd5e1;
  opacity: 0;
  transform: translateX(0.6rem);
  animation: nv-cs-feed 6s ease-out infinite;
}
.nv-cs-feed li:nth-child(1) { animation-delay: 0.2s; }
.nv-cs-feed li:nth-child(2) { animation-delay: 2.1s; }
.nv-cs-feed li:nth-child(3) { animation-delay: 4s; }
.nv-cs-feed li.is-new {
  border-color: rgba(248, 113, 113, 0.45);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.15);
}
.nv-cs-feed i {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  flex: 0 0 auto;
}
.nv-cs-feed i.is-ct { background: #60a5fa; box-shadow: 0 0 6px rgba(96, 165, 250, 0.7); }
.nv-cs-feed i.is-t { background: #fbbf24; box-shadow: 0 0 6px rgba(251, 191, 36, 0.7); }
.nv-cs-feed em {
  margin-inline: 0.05rem;
  padding: 0.05rem 0.28rem;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.45rem;
  font-weight: 800;
  color: #fecaca;
  background: rgba(239, 68, 68, 0.25);
  text-transform: uppercase;
}
.nv-cs-feed span:last-child { color: #94a3b8; }
.nv-cs-vitals {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
  font-family: "Segoe UI", Tahoma, sans-serif;
}
.nv-cs-vitals > span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18rem;
  padding: 0.22rem 0.45rem;
  border-radius: 0.4rem;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}
.nv-cs-vitals b {
  font-size: 0.78rem;
  font-weight: 900;
  color: #f8fafc;
  line-height: 1;
  min-width: 1.35rem;
}
.nv-cs-vitals em {
  font-style: normal;
  font-size: 0.48rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.04em;
}
.nv-cs-hp b { color: #4ade80; }
.nv-cs-arm b { color: #93c5fd; }
.nv-cs-ammo {
  position: absolute;
  right: 0.7rem;
  bottom: 0.65rem;
  z-index: 4;
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: none;
  font-family: "Segoe UI", Tahoma, sans-serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}
.nv-cs-ammo b {
  font-size: 1.55rem;
  font-weight: 900;
  color: #f8fafc;
  line-height: 1;
  min-width: 1.7rem;
  text-align: right;
}
.nv-cs-ammo i {
  font-style: normal;
  color: rgba(248, 250, 252, 0.55);
  font-size: 1.05rem;
  font-weight: 700;
}
.nv-cs-ammo em {
  font-style: normal;
  color: rgba(248, 250, 252, 0.75);
  font-size: 1.05rem;
  font-weight: 800;
}
.nv-cs-num.is-ammo::before {
  content: "24";
  animation: nv-cs-ammo-count 2.8s steps(1, end) infinite;
}
.nv-cs-num.is-hp::before {
  content: "100";
  animation: nv-cs-hp 8s steps(1, end) infinite;
}
.nv-cs-ping::before {
  content: "12ms";
  animation: nv-cs-ping 8s steps(1, end) infinite;
}
.nv-cs-badge {
  position: absolute;
  left: 0.55rem;
  top: 0.55rem;
  right: auto;
  bottom: auto;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-family: "Segoe UI", Tahoma, sans-serif;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}
.nv-cs-badge i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: nv-cs-live 1.4s ease-out infinite;
}
.nv-cs-badge strong {
  font-size: 0.58rem;
  font-weight: 900;
  color: #e2e8f0;
  letter-spacing: 0.03em;
}
.nv-cs-badge span {
  font-size: 0.52rem;
  font-weight: 800;
  color: #4ade80;
}
@keyframes nv-cs-cam-fire {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.08); }
  18% { transform: translate3d(-1.1%, 0.7%, 0) scale(1.11) rotate(-0.55deg); }
  36% { transform: translate3d(0.5%, -0.35%, 0) scale(1.085); }
  54% { transform: translate3d(-0.9%, 0.55%, 0) scale(1.105) rotate(-0.4deg); }
  72% { transform: translate3d(0.4%, -0.25%, 0) scale(1.088); }
}
@keyframes nv-cs-haze {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
@keyframes nv-cs-muzzle-burst {
  0%, 12%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.1); }
  2%, 6% { opacity: 1; transform: translate(-50%, -50%) scale(1.55); }
  9% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.85); }
}
@keyframes nv-cs-sparks {
  0%, 14%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.25); }
  3%, 7% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
  10% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.65); }
}
@keyframes nv-cs-shell {
  0% { opacity: 0; transform: translate(0, 0) rotate(0deg); }
  10% { opacity: 1; }
  100% { opacity: 0; transform: translate(3.2rem, -2.6rem) rotate(240deg); }
}
@keyframes nv-cs-tracer {
  0%, 12%, 100% { opacity: 0; transform: rotate(var(--nv-tr-rot, -1deg)) scaleX(0); }
  2% { opacity: 1; transform: rotate(var(--nv-tr-rot, -1deg)) scaleX(1); }
  8% { opacity: 0; transform: rotate(var(--nv-tr-rot, -1deg)) scaleX(1); }
}
@keyframes nv-cs-feed {
  0%, 6% { opacity: 0; transform: translateX(1rem); }
  12%, 38% { opacity: 1; transform: translateX(0); }
  48%, 100% { opacity: 0; transform: translateX(0.2rem); }
}
@keyframes nv-cs-shake {
  0%, 12%, 100% { transform: translate3d(0, 0, 0); }
  2% { transform: translate3d(-3px, 2px, 0); }
  5% { transform: translate3d(3px, -2px, 0); }
  8% { transform: translate3d(-2px, 1px, 0); }
}
@keyframes nv-cs-hp {
  0%, 24% { content: "100"; color: #4ade80; }
  25%, 54% { content: "87"; color: #fbbf24; }
  55%, 74% { content: "64"; color: #f87171; }
  75%, 89% { content: "72"; color: #fbbf24; }
  90%, 100% { content: "100"; color: #4ade80; }
}
@keyframes nv-cs-ammo-count {
  0%, 12% { content: "24"; }
  13%, 24% { content: "21"; }
  25%, 36% { content: "18"; }
  37%, 48% { content: "15"; }
  49%, 60% { content: "12"; }
  61%, 72% { content: "9"; }
  73%, 84% { content: "6"; }
  85%, 96% { content: "30"; }
  97%, 100% { content: "24"; }
}
@keyframes nv-cs-score-ct {
  0%, 30% { content: "3"; }
  31%, 70% { content: "4"; }
  71%, 100% { content: "5"; }
}
@keyframes nv-cs-score-t {
  0%, 55% { content: "7"; }
  56%, 100% { content: "8"; }
}
@keyframes nv-cs-timer {
  0%, 8% { content: "1:24"; }
  9%, 16% { content: "1:23"; }
  17%, 24% { content: "1:22"; }
  25%, 32% { content: "1:21"; }
  33%, 40% { content: "1:20"; }
  41%, 48% { content: "1:19"; }
  49%, 56% { content: "1:18"; }
  57%, 64% { content: "1:17"; }
  65%, 72% { content: "1:16"; }
  73%, 80% { content: "1:15"; }
  81%, 88% { content: "1:14"; }
  89%, 100% { content: "1:13"; }
}
@keyframes nv-cs-ping {
  0%, 30% { content: "12ms"; }
  31%, 55% { content: "18ms"; }
  56%, 80% { content: "9ms"; }
  81%, 100% { content: "12ms"; }
}
@keyframes nv-cs-live {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 0.45rem rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@media (max-width: 720px) {
  .nv-pvis--games,
  .nv-cs-stage { min-height: 17rem; }
  .nv-cs-viewport { width: 100%; aspect-ratio: 16 / 11; }
  .nv-cs-feed { width: 9.5rem; }
  .nv-cs-vitals > span { padding: 0.16rem 0.35rem; }
  .nv-cs-vitals b { font-size: 0.68rem; }
  .nv-cs-ammo { bottom: 0.55rem; right: 0.55rem; }
  .nv-cs-ammo b { font-size: 1.25rem; }
  .nv-cs-ammo i,
  .nv-cs-ammo em { font-size: 0.9rem; }
  .nv-cs-flash.is-ct { width: 2rem; height: 2rem; top: 49%; left: 56%; }
  .nv-cs-flash.is-t { width: 1.45rem; height: 1.45rem; top: 39%; left: 21%; }
}

@media (max-width: 720px) {
  .nv-pvis-ide-main { grid-template-columns: 1.5rem 5rem 1fr; min-height: 10rem; }
  .nv-pvis-ide-tabs span:last-child { display: none; }
  .nv-pvis-code > div { font-size: 0.56rem; }
  .nv-pvis-badges { grid-template-columns: repeat(2, max-content); }
}

.nv-eco {
  position: relative;
  z-index: 1;
  width: min(100%, 32rem);
  aspect-ratio: 520 / 460;
  margin: 0 auto;
}
.nv-eco-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.nv-eco-hub {
  position: absolute;
  inset-inline-start: 34%;
  top: 28%;
  width: 36%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.nv-eco-browser {
  position: relative;
  width: 100%;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow:
    0 28px 50px -28px rgba(37,99,235,0.35),
    0 10px 24px -18px rgba(15,23,42,0.2);
  overflow: visible;
}
.nv-eco-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.55rem 0.7rem;
  background: #f4f7fb;
  border-bottom: 1px solid rgba(15,23,42,0.05);
  border-radius: 1.15rem 1.15rem 0 0;
}
.nv-eco-browser-bar span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #d4dde8;
}
.nv-eco-browser-bar span:nth-child(1) { background: #fda4af; }
.nv-eco-browser-bar span:nth-child(2) { background: #fcd34d; }
.nv-eco-browser-bar span:nth-child(3) { background: #86efac; }
.nv-eco-browser-body {
  padding: 0.85rem;
  min-height: 5.5rem;
}
.nv-eco-placeholder {
  height: 5.2rem;
  border-radius: 0.75rem;
  background: linear-gradient(160deg, #e8eef8 0%, #d9e4f4 100%);
  display: grid;
  place-items: center;
}
.nv-eco-code-badge {
  position: absolute;
  inset-inline-end: -0.55rem;
  bottom: -0.45rem;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  font-family: var(--nv-num, "Segoe UI", sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  color: #2563eb;
  background: #fff;
  border: 1px solid rgba(37,99,235,0.15);
  box-shadow: 0 10px 22px -12px rgba(37,99,235,0.55);
}
.nv-eco-hub-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.nv-eco-browser-body--design {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  min-height: 5.2rem;
}
.nv-eco-ui-block {
  border-radius: 0.45rem;
  background: linear-gradient(160deg, #e8eef8 0%, #d9e4f4 100%);
}
.nv-eco-ui-block.b1 { grid-column: 1 / -1; height: 1.1rem; background: linear-gradient(90deg, #c7d2fe, #ddd6fe); }
.nv-eco-ui-block.b2 { height: 2.4rem; }
.nv-eco-ui-block.b3 { height: 2.4rem; background: linear-gradient(160deg, #dbeafe 0%, #bfdbfe 100%); }
.nv-eco-ui-block.b4 { grid-column: 1 / -1; height: 0.85rem; opacity: 0.75; }
.nv-eco-code-win,
.nv-eco-hub--code .nv-eco-browser {
  width: 100%;
  border-radius: 1.15rem;
  background: #0f172a;
  border: 1px solid rgba(148,163,184,0.15);
  box-shadow: 0 28px 50px -28px rgba(15,23,42,0.55);
  overflow: hidden;
}
.nv-eco-code-body {
  padding: 0.75rem 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-height: 5.5rem;
}
.nv-eco-code-line {
  font-family: var(--nv-num, "Segoe UI", Consolas, monospace);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}
.nv-eco-code-line.c1 { color: #f472b6; }
.nv-eco-code-line.c2 { color: #93c5fd; }
.nv-eco-code-line.c3 { color: #86efac; padding-inline-start: 0.65rem; }
.nv-eco-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.85rem 1rem 0.65rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(37,99,235,0.1);
  box-shadow: 0 28px 50px -28px rgba(37,99,235,0.35);
}
.nv-eco-gauge strong {
  font-family: var(--nv-num, "Segoe UI", sans-serif);
  font-size: 1.65rem;
  font-weight: 900;
  color: #2563eb;
  line-height: 1;
}
.nv-eco-gauge span {
  font-size: 0.68rem;
  font-weight: 800;
  color: #64748b;
}
.nv-eco-server-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.65rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(234,88,12,0.12);
  box-shadow: 0 28px 50px -28px rgba(234,88,12,0.28);
}
.nv-eco-server-unit {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.55rem;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,0.06);
}
.nv-eco-server-unit span {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #cbd5e1;
}
.nv-eco-server-unit.is-live span:nth-child(1) { background: #22c55e; }
.nv-eco-server-unit.is-live span:nth-child(2) { background: #fbbf24; }
.nv-eco-server-unit.is-live span:nth-child(3) { background: #38bdf8; }
.nv-eco-server-unit em {
  margin-inline-start: auto;
  font-family: var(--nv-num, "Segoe UI", sans-serif);
  font-size: 0.58rem;
  font-weight: 800;
  font-style: normal;
  color: #16a34a;
}
.nv-eco-game-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(99,102,241,0.15);
  box-shadow: 0 28px 50px -28px rgba(99,102,241,0.35);
}
.nv-eco-game-ping {
  font-family: var(--nv-num, "Segoe UI", sans-serif);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #16a34a;
  background: rgba(34,197,94,0.12);
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
}
.nv-eco-dot { opacity: 0.85; }
.nv-eco-theme--violet { color: #8b5cf6; }
.nv-eco-theme--green { color: #16a34a; }
.nv-eco-theme--sky { color: #0284c7; }
.nv-eco-theme--orange { color: #ea580c; }
.nv-eco-theme--indigo { color: #6366f1; }
.nv-eco-theme--violet .nv-eco-node.is-on .nv-eco-node-ico {
  box-shadow: 0 18px 32px -14px rgba(139,92,246,0.45), 0 0 0 4px rgba(139,92,246,0.12);
}
.nv-eco-theme--green .nv-eco-node.is-on .nv-eco-node-ico {
  box-shadow: 0 18px 32px -14px rgba(22,163,74,0.4), 0 0 0 4px rgba(22,163,74,0.12);
}
.nv-eco-theme--sky .nv-eco-node.is-on .nv-eco-node-ico {
  box-shadow: 0 18px 32px -14px rgba(2,132,199,0.4), 0 0 0 4px rgba(2,132,199,0.12);
}
.nv-eco-theme--orange .nv-eco-node.is-on .nv-eco-node-ico {
  box-shadow: 0 18px 32px -14px rgba(234,88,12,0.4), 0 0 0 4px rgba(234,88,12,0.12);
}
.nv-eco-theme--indigo .nv-eco-node.is-on .nv-eco-node-ico {
  box-shadow: 0 18px 32px -14px rgba(99,102,241,0.45), 0 0 0 4px rgba(99,102,241,0.12);
}
.nv-eco-node--indigo .nv-eco-node-ico { color: #6366f1; }
.nv-eco-node--pink .nv-eco-node-ico { color: #db2777; }
.nv-eco-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 11.5rem;
  z-index: 2;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nv-eco-node-ico {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #fff;
  box-shadow:
    0 14px 28px -16px rgba(15,23,42,0.28),
    0 0 0 1px rgba(15,23,42,0.04);
  color: #64748b;
}
.nv-eco-node-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  text-align: right;
}
.nv-eco-node-copy strong {
  font-size: 0.8rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.35;
}
.nv-eco-node-copy span {
  font-size: 0.66rem;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1.55;
}
.nv-eco-node--0 { inset-inline-start: 0; top: 10%; }
.nv-eco-node--1 { inset-inline-start: 48%; top: 0; max-width: 12.5rem; }
.nv-eco-node--2 { inset-inline-end: 0; top: 30%; }
.nv-eco-node--3 { inset-inline-end: 2%; bottom: 4%; }
.nv-eco-node--4 { inset-inline-start: 8%; bottom: 0; max-width: 12rem; }
.nv-eco-node--violet .nv-eco-node-ico { color: #8b5cf6; }
.nv-eco-node--blue .nv-eco-node-ico { color: #2563eb; }
.nv-eco-node--green .nv-eco-node-ico { color: #16a34a; }
.nv-eco-node--orange .nv-eco-node-ico { color: #ea580c; }
.nv-eco-node--sky .nv-eco-node-ico { color: #0284c7; }
.nv-eco-node.is-on .nv-eco-node-ico {
  transform: scale(1.08);
  box-shadow:
    0 18px 32px -14px rgba(37,99,235,0.4),
    0 0 0 4px rgba(37,99,235,0.1);
}
.nv-eco-node.is-on .nv-eco-node-copy strong { color: #0b1f44; }
@media (max-width: 720px) {
  .nv-eco {
    width: 100%;
    aspect-ratio: auto;
    min-height: 22rem;
  }
  .nv-eco-lines { opacity: 0.55; }
  .nv-eco-hub {
    left: 50%;
    right: auto;
    inset-inline-start: auto;
    top: 34%;
    width: 42%;
    transform: translateX(-50%);
  }
  .nv-eco-node { max-width: 9.8rem; }
  .nv-eco-node-copy span { display: none; }
  .nv-eco-node--0 { top: 6%; }
  .nv-eco-node--1 { top: 2%; inset-inline-start: 52%; }
  .nv-eco-node--2 { top: 28%; }
  .nv-eco-node--3 { bottom: 8%; }
  .nv-eco-node--4 { bottom: 2%; }
}
.nv-panel-copy h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 900;
  line-height: 1.75;
  color: #0b1f44;
  letter-spacing: -0.015em;
  max-width: 28rem;
}
.nv-wavy {
  position: relative;
  color: #0066fe;
  white-space: nowrap;
  padding-bottom: 0.08em;
}
.nv-wavy::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 102, 254, 0.15), #0066fe 40%, rgba(0, 102, 254, 0.15));
}
.nv-panel-copy > p:not(.nv-panel-meta) {
  margin: 1rem 0 0;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.9;
  max-width: 32rem;
}
.nv-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin-top: 1.45rem;
  padding: 0.7rem 0.85rem 0.7rem 1.15rem;
  border-radius: 0.45rem;
  background: #0b1f44;
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 28px -14px rgba(11, 31, 68, 0.55);
  transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}
.nv-panel-cta:hover {
  background: #0066fe;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -14px rgba(0, 102, 254, 0.55);
  color: #fff;
}
.nv-panel-cta-ico {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.3rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Why */
.nv-why { background: #fff; }
.nv-why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
}
.nv-why-row.is-flip .nv-why-art { order: 2; }
.nv-why-row.is-flip .nv-why-copy { order: 1; }
.nv-why-art {
  min-height: 16rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #e2e8f0;
  position: relative;
}
.nv-why-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}
.nv-why-copy h3 { margin: 0; font-size: 1.35rem; font-weight: 900; }
.nv-why-copy p { margin: 0.85rem 0 0; color: var(--nv-mute); line-height: 1.9; }

/* Design plans — content-rich cards */
.nv-plans {
  position: relative;
  overflow: hidden;
  padding: 3.75rem 0 4.25rem;
  background: transparent;
}
.nv-plans-bg {
  display: none;
}
.nv-plans > .nv-shell {
  position: relative;
  z-index: 1;
}
.nv-plans-head {
  margin-bottom: 2.35rem;
}
.nv-plans-head h2 {
  color: #0b1f44;
  letter-spacing: -0.02em;
}
.nv-plans-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.nv-plans-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 auto;
  padding: 0;
  max-width: 58rem;
  background: none;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.nv-plans-cats::-webkit-scrollbar { display: none; }
.nv-plans-cat {
  flex: 0 1 auto;
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.08);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.05rem;
  border-radius: 0.95rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: #334155;
  background: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 18px -16px rgba(15, 23, 42, 0.4);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nv-plans-cat-ico {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  color: currentColor;
  opacity: 0.9;
  flex-shrink: 0;
}
.nv-plans-cat-ico svg {
  display: block;
}
.nv-plans-cat:hover {
  color: var(--nv-blue);
  border-color: rgba(0, 102, 254, 0.28);
  background: #f5f9ff;
  transform: translateY(-1px);
}
.nv-plans-cat.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--nv-blue-2), var(--nv-blue));
  box-shadow: 0 14px 26px -14px rgba(0, 102, 254, 0.85);
  transform: translateY(-1px);
}
.nv-plans-cat.is-extra {
  display: none !important;
}
.nv-plans-wrap.is-cats-open .nv-plans-cat.is-extra {
  display: inline-flex !important;
}
.nv-plans-cat.is-more {
  color: var(--nv-blue);
  border-style: dashed;
  border-color: rgba(0, 102, 254, 0.35);
  background: #f5f9ff;
}
.nv-plans-cat.is-more:hover,
.nv-plans-wrap.is-cats-open .nv-plans-cat.is-more {
  color: #fff;
  border-style: solid;
  border-color: transparent;
  background: linear-gradient(145deg, #0ea5e9, var(--nv-blue));
}
.nv-plans-card.is-hidden {
  display: none;
}
.nv-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.nv-plans-card {
  --plan-accent: #0066fe;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem 1rem 1.1rem;
  border-radius: 1.45rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 42px -28px rgba(15, 23, 42, 0.42);
  overflow: hidden;
  transition: transform 0.28s var(--nv-ease), box-shadow 0.28s var(--nv-ease), border-color 0.28s ease;
}
.nv-plans-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--plan-accent), #93c5fd);
}
.nv-plans-card.is-sky { --plan-accent: #0ea5e9; }
.nv-plans-card.is-blue { --plan-accent: #0066fe; }
.nv-plans-card.is-indigo { --plan-accent: #4f46e5; }
.nv-plans-card.is-navy { --plan-accent: #1d4ed8; }
.nv-plans-card.is-amber { --plan-accent: #f59e0b; }
.nv-plans-card.is-teal { --plan-accent: #0d9488; }
.nv-plans-card.is-bronze { --plan-accent: #b87333; }
.nv-plans-card.is-silver { --plan-accent: #64748b; }
.nv-plans-card.is-gold { --plan-accent: #c9a227; }
.nv-plans-card.is-diamond { --plan-accent: #38bdf8; }
.nv-plans-card.is-bronze .nv-plans-ico {
  background: linear-gradient(145deg, #d4a574, #8b5a2b);
}
.nv-plans-card.is-silver .nv-plans-ico {
  background: linear-gradient(145deg, #e2e8f0, #64748b);
  color: #0f172a;
}
.nv-plans-card.is-gold .nv-plans-ico {
  background: linear-gradient(145deg, #f0c14b, #b8860b);
  color: #3f2a00;
}
.nv-plans-card.is-diamond .nv-plans-ico {
  background: linear-gradient(145deg, #e0f2fe, #38bdf8 45%, #6366f1);
}
.nv-plans-card.is-bronze::before {
  background: linear-gradient(90deg, #8b5a2b, #d4a574);
}
.nv-plans-card.is-silver::before {
  background: linear-gradient(90deg, #64748b, #e2e8f0);
}
.nv-plans-card.is-gold::before {
  background: linear-gradient(90deg, #b8860b, #f0c14b);
}
.nv-plans-card.is-diamond::before {
  background: linear-gradient(90deg, #6366f1, #38bdf8, #e0f2fe);
}
.nv-plans-card.is-featured {
  z-index: 1;
  border-color: rgba(201, 162, 39, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 0 0 1px rgba(201, 162, 39, 0.14),
    0 26px 48px -24px rgba(138, 106, 10, 0.38);
  transform: translateY(-0.4rem);
}
.nv-plans-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 102, 254, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 28px 50px -22px rgba(0, 102, 254, 0.36);
}
.nv-plans-card.is-featured:hover {
  transform: translateY(-0.65rem);
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 0 0 1px rgba(201, 162, 39, 0.18),
    0 28px 50px -22px rgba(138, 106, 10, 0.42);
}
.nv-plans-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.45rem auto 0;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #5c4808;
  background: #fff8e1;
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.nv-plans-card.is-featured .nv-plans-sub {
  margin-top: 0.4rem;
}
.nv-plans-hero {
  text-align: center;
  padding: 0.35rem 0.25rem 0;
}
.nv-plans-ico {
  width: 3.35rem;
  height: 3.35rem;
  margin: 0 auto 0.85rem;
  border-radius: 1.05rem;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.35), transparent 45%),
    linear-gradient(145deg, #3385fe, var(--plan-accent));
  box-shadow:
    0 0 0 10px color-mix(in srgb, var(--plan-accent) 12%, transparent),
    0 14px 24px -14px var(--plan-accent);
}
.nv-plans-hero h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 900;
  color: #0b1f44;
  line-height: 1.4;
  letter-spacing: -0.015em;
}
.nv-plans-sub {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  line-height: 1.55;
}
.nv-plans-wp {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  margin-top: 0.95rem;
  padding: 0.7rem 0.8rem;
  border-radius: 1.05rem;
  background:
    radial-gradient(circle at 12% 20%, rgba(56, 189, 248, 0.18), transparent 42%),
    linear-gradient(145deg, #f4fbff 0%, #e8f4fb 48%, #dff0f8 100%);
  border: 1px solid rgba(33, 117, 155, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 24px -18px rgba(33, 117, 155, 0.55);
}
.nv-plans-wp-mark {
  flex-shrink: 0;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.35), transparent 48%),
    linear-gradient(145deg, #3aa0c8, #21759b 55%, #185f7d);
  box-shadow:
    0 0 0 5px rgba(33, 117, 155, 0.1),
    0 10px 18px -10px rgba(33, 117, 155, 0.75);
}
.nv-plans-wp-mark svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}
.nv-plans-wp-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  min-width: 0;
  line-height: 1.2;
  text-align: start;
}
.nv-plans-wp-txt strong {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #134e6a;
}
.nv-plans-wp-txt em {
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
  color: #3d7a96;
}
.nv-plans-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 1.15rem;
  padding: 1.05rem 0 0.15rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: none;
  border-radius: 0;
  border-inline: 0;
  border-bottom: 0;
}
.nv-plans-price-now {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.nv-plans-price-now strong {
  font-family: "Yekan Bakh", "Yekan Bakh Fallback", Tahoma, sans-serif;
  font-size: clamp(2.35rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--nv-blue, #0066fe);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.nv-plans-price-unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}
.nv-plans-price-unit i {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
}
.nv-plans-price-was {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  flex-shrink: 0;
  padding: 0.45rem 0.65rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.nv-plans-price-was i {
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 700;
  color: #94a3b8;
}
.nv-plans-price-was b {
  font-family: "Yekan Bakh", "Yekan Bakh Fallback", Tahoma, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: #94a3b8;
  text-decoration-thickness: 1.5px;
  line-height: 1;
}
.nv-plans-card.is-featured .nv-plans-price {
  border-top-color: rgba(201, 162, 39, 0.28);
  background: none;
}
.nv-plans-card.is-featured .nv-plans-price-now strong {
  color: #b8860b;
}
.nv-plans-card.is-featured .nv-plans-price-was {
  background: #fffdf7;
  border-color: rgba(201, 162, 39, 0.16);
}
.nv-plans-desc {
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.75;
  text-align: justify;
}
.nv-plans-badges {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.9rem;
}
.nv-plans-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 100%;
  padding: 0.62rem 0.85rem;
  border-radius: 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: start;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}
.nv-plans-badge svg {
  flex-shrink: 0;
  opacity: 0.9;
}
.nv-plans-badge.is-soft {
  color: #1e40af;
  background:
    radial-gradient(circle at 12% 20%, rgba(59, 130, 246, 0.16), transparent 55%),
    linear-gradient(145deg, #f5f9ff, #ebf3ff);
  border: 1px solid rgba(37, 99, 235, 0.18);
}
.nv-plans-badge.is-off {
  color: #9a3412;
  background:
    radial-gradient(circle at 12% 20%, rgba(251, 146, 60, 0.2), transparent 55%),
    linear-gradient(145deg, #fffaf5, #fff1e6);
  border: 1px solid rgba(234, 88, 12, 0.2);
}
.nv-plans-card.is-featured .nv-plans-badge.is-soft {
  color: #92400e;
  background:
    radial-gradient(circle at 12% 20%, rgba(240, 193, 75, 0.22), transparent 55%),
    linear-gradient(145deg, #fffdf6, #fff8e8);
  border-color: rgba(201, 162, 39, 0.28);
}
.nv-plans-gifts {
  margin: 0.9rem 0 0;
  padding: 0.75rem 0.8rem 0.8rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(16, 185, 129, 0.14), transparent 48%),
    linear-gradient(160deg, #f3fdf8 0%, #ecfdf5 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 22px -18px rgba(16, 185, 129, 0.45);
}
.nv-plans-gifts-label {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: #047857;
  letter-spacing: -0.01em;
}
.nv-plans-gifts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.nv-plans-gifts li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #065f46;
  line-height: 1.45;
}
.nv-plans-gifts-ico {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #34d399, #059669);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.16);
}
.nv-plans-gifts-ico svg {
  display: block;
}
.nv-plans-meta {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0.2rem 0.15rem;
  display: grid;
  gap: 0;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  box-shadow: 0 10px 22px -20px rgba(15, 23, 42, 0.35);
}
.nv-plans-meta li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.72rem 0.85rem;
  font-size: 0.76rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(90deg, #f8fafc 0%, #fff 42%);
}
.nv-plans-meta li:last-child {
  border-bottom: 0;
}
.nv-plans-meta span {
  font-weight: 700;
  color: #64748b;
}
.nv-plans-meta strong {
  font-weight: 800;
  color: #0f172a;
  text-align: end;
}
.nv-plans-card.is-featured .nv-plans-gifts {
  background:
    radial-gradient(circle at 8% 0%, rgba(240, 193, 75, 0.2), transparent 48%),
    linear-gradient(160deg, #fffdf6 0%, #fff8e8 100%);
  border-color: rgba(201, 162, 39, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 12px 22px -18px rgba(201, 162, 39, 0.4);
}
.nv-plans-card.is-featured .nv-plans-gifts-label {
  color: #92400e;
}
.nv-plans-card.is-featured .nv-plans-gifts li {
  color: #78350f;
}
.nv-plans-card.is-featured .nv-plans-gifts-ico {
  background: linear-gradient(145deg, #f0c14b, #c9a227);
  color: #3f2a00;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.16);
}
.nv-plans-card.is-featured .nv-plans-meta {
  border-color: rgba(201, 162, 39, 0.2);
}
.nv-plans-card.is-featured .nv-plans-meta li {
  background: linear-gradient(90deg, #fffdf7 0%, #fff 42%);
  border-bottom-color: rgba(201, 162, 39, 0.12);
}
.nv-plans-feats {
  margin: 1rem 0 0;
  padding: 0.8rem 0.8rem 0.85rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--plan-accent) 12%, transparent), transparent 48%),
    linear-gradient(165deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 24px -20px rgba(15, 23, 42, 0.35);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.nv-plans-feat-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 900;
  color: #0b1f44;
  letter-spacing: -0.01em;
}
.nv-plans-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 auto;
}
.nv-plans-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.45rem 0.5rem;
  border-radius: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.04);
}
.nv-plans-features li span:last-child {
  min-width: 0;
}
.nv-plans-check {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, color-mix(in srgb, var(--plan-accent) 75%, #fff), var(--plan-accent));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--plan-accent) 14%, transparent);
}
.nv-plans-check svg {
  display: block;
}
.nv-plans-card.is-featured .nv-plans-feats {
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 193, 75, 0.18), transparent 48%),
    linear-gradient(165deg, #fffdf7 0%, #ffffff 100%);
  border-color: rgba(201, 162, 39, 0.22);
}
.nv-plans-card.is-featured .nv-plans-feat-label {
  color: #78350f;
}
.nv-plans-card.is-featured .nv-plans-features li {
  background: rgba(255, 253, 247, 0.9);
  border-color: rgba(201, 162, 39, 0.1);
}
.nv-plans-card.is-featured .nv-plans-check {
  background: linear-gradient(145deg, #f0c14b, #c9a227);
  color: #3f2a00;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.16);
}
.nv-plans-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.95rem 0 0;
  padding: 0.7rem 0.8rem;
  border-radius: 0.9rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.55;
  background:
    radial-gradient(circle at 0% 50%, rgba(0, 102, 254, 0.1), transparent 45%),
    linear-gradient(145deg, #f5f9ff, #eef4ff);
  border: 1px solid rgba(0, 102, 254, 0.14);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}
.nv-plans-note-ico {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.05rem;
  border-radius: 0.45rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #3385fe, var(--nv-blue, #0066fe));
  box-shadow: 0 0 0 3px rgba(0, 102, 254, 0.12);
}
.nv-plans-note-ico svg {
  display: block;
}
.nv-plans-card.is-featured .nv-plans-note {
  color: #78350f;
  background:
    radial-gradient(circle at 0% 50%, rgba(240, 193, 75, 0.18), transparent 45%),
    linear-gradient(145deg, #fffdf6, #fff8e8);
  border-color: rgba(201, 162, 39, 0.28);
}
.nv-plans-card.is-featured .nv-plans-note-ico {
  background: linear-gradient(145deg, #f0c14b, #c9a227);
  color: #3f2a00;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.16);
}
.nv-plans-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 1rem;
  min-height: 3.05rem;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  border-radius: 1rem;
  border: 0;
  background: linear-gradient(180deg, #3385fe 0%, var(--nv-blue, #0066fe) 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 14px 26px -14px rgba(0, 102, 254, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  overflow: hidden;
}
.nv-plans-btn-label {
  flex: 1 1 auto;
  text-align: center;
}
.nv-plans-btn-ico {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  color: var(--nv-blue, #0066fe);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}
.nv-plans-btn-ico svg {
  display: block;
}
.nv-plans-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 18px 30px -14px rgba(0, 102, 254, 0.85);
}
.nv-plans-card.is-bronze .nv-plans-btn {
  background: linear-gradient(180deg, #d4a574 0%, #8b5a2b 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 14px 26px -14px rgba(139, 90, 43, 0.7);
}
.nv-plans-card.is-bronze .nv-plans-btn-ico {
  color: #8b5a2b;
}
.nv-plans-card.is-silver .nv-plans-btn {
  background: linear-gradient(180deg, #94a3b8 0%, #475569 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 14px 26px -14px rgba(71, 85, 105, 0.7);
}
.nv-plans-card.is-silver .nv-plans-btn-ico {
  color: #475569;
}
.nv-plans-card.is-diamond .nv-plans-btn {
  background: linear-gradient(180deg, #67e8f9 0%, #38bdf8 45%, #6366f1 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 14px 26px -14px rgba(99, 102, 241, 0.65);
}
.nv-plans-card.is-diamond .nv-plans-btn-ico {
  color: #6366f1;
}
.nv-plans-card.is-featured .nv-plans-btn {
  background: linear-gradient(180deg, #ffe08a 0%, #f0c14b 42%, #c9a227 100%);
  color: #3f2a00;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 14px 28px -12px rgba(138, 106, 10, 0.8);
}
.nv-plans-card.is-featured .nv-plans-btn-ico {
  color: #92400e;
  background: rgba(255, 255, 255, 0.88);
}
.nv-plans-card.is-featured .nv-plans-btn:hover {
  filter: brightness(1.04);
}

/* Licenses — badge cards (Novatel-style) */
.nv-licenses {
  background:
    radial-gradient(ellipse 70% 55% at 12% 50%, rgba(191, 219, 254, 0.32), transparent 58%),
    radial-gradient(ellipse 65% 50% at 88% 50%, rgba(254, 215, 170, 0.24), transparent 55%);
}
.nv-licenses-head h2 {
  color: #0b1f44;
  letter-spacing: -0.02em;
}
.nv-licenses-head .nv-head-lead {
  max-width: 42rem;
}
.nv-lic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem 0.75rem;
  padding-top: 1.35rem;
}
.nv-lic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding-bottom: 0.35rem;
}
.nv-lic-mark {
  position: relative;
  z-index: 2;
  width: 4.35rem;
  height: 4.35rem;
  margin-bottom: -2.15rem;
  border-radius: 0.8rem;
  background: #fff;
  box-shadow: 0 12px 28px -18px rgba(15, 23, 42, 0.32);
  display: grid;
  place-items: center;
  padding: 0.45rem;
}
.nv-lic-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nv-lic-mark-fallback {
  display: grid;
  place-items: center;
  color: var(--nv-blue, #0066fe);
}
.nv-lic-badge {
  width: 100%;
  filter: drop-shadow(0 16px 28px -22px rgba(15, 23, 42, 0.2));
}
.nv-lic-badge-frame {
  background: var(--lic-accent, #0066fe);
  padding: 2px;
  padding-bottom: 14px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px));
}
.nv-lic-badge-body {
  background: #fff;
  padding: 2.45rem 0.55rem 1rem;
  min-height: 8.75rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 50% calc(100% - 1px), 0 calc(100% - 12px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.nv-lic-badge-body h3 {
  margin: 0;
  font-size: clamp(0.74rem, 1.05vw, 0.86rem);
  font-weight: 900;
  line-height: 1.7;
  color: #0f172a;
}
.nv-lic-badge-body p {
  margin: 0.4rem 0 0;
  font-size: clamp(0.66rem, 0.95vw, 0.74rem);
  font-weight: 600;
  line-height: 1.75;
  color: #64748b;
}
@media (max-width: 1100px) {
  .nv-lic-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .nv-lic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Contact page */
.nv-page-contact .nv-contact-hero {
  padding: 3.25rem 0 2.5rem;
}
.nv-contact-hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nv-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #1a3d82;
  background: rgba(0, 102, 254, 0.08);
  border: 1px solid rgba(0, 102, 254, 0.14);
}
.nv-contact-eyebrow.is-light {
  color: #64748b;
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.08);
}
.nv-contact-title {
  margin: 0;
  max-width: 46rem;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 900;
  color: #0b1f44;
  letter-spacing: -0.025em;
  line-height: 1.35;
}
.nv-contact-lead {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: #64748b;
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  font-weight: 600;
  line-height: 1.95;
}
.nv-contact-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}
.nv-contact-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 7.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 14px 34px -24px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(8px);
}
.nv-contact-stats strong {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0066fe;
  line-height: 1.2;
}
.nv-contact-stats span {
  font-size: 0.74rem;
  font-weight: 700;
  color: #64748b;
}
.nv-contact {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}
.nv-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.88fr);
  gap: 1.35rem 1.75rem;
  align-items: start;
}
.nv-contact-aside {
  position: sticky;
  top: 6.5rem;
  padding: 1.25rem;
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(255,255,255,0.96) 0%, rgba(239,246,255,0.92) 100%);
  border: 1px solid rgba(0, 102, 254, 0.1);
  box-shadow: 0 22px 48px -30px rgba(0, 102, 254, 0.35);
}
.nv-contact-aside-head {
  margin-bottom: 1rem;
}
.nv-contact-aside-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
}
.nv-contact-aside-head p {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.75;
}
.nv-contact-cards {
  display: grid;
  gap: 0.65rem;
}
.nv-contact-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.28);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.nv-contact-card.is-accent {
  border-color: rgba(0, 102, 254, 0.18);
  background: linear-gradient(135deg, rgba(0,102,254,0.06), rgba(255,255,255,1));
}
.nv-contact-card:not(.is-static):hover {
  border-color: rgba(0, 102, 254, 0.28);
  box-shadow: 0 16px 32px -18px rgba(0, 102, 254, 0.28);
  transform: translateY(-2px);
}
.nv-contact-card-go {
  margin-inline-start: auto;
  font-size: 1rem;
  font-weight: 900;
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
}
.nv-contact-card:not(.is-static):hover .nv-contact-card-go {
  color: #0066fe;
  transform: translateX(-3px);
}
.nv-contact-card-ico {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--nv-blue, #0066fe);
  background: rgba(0, 102, 254, 0.08);
}
.nv-contact-card-ico.is-teal {
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.1);
}
.nv-contact-card-ico.is-green {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
}
.nv-contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.nv-contact-card-body small {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
}
.nv-contact-card-body strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.6;
}
.nv-contact-form-wrap {
  position: relative;
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 24px 52px -32px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}
.nv-contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0066fe, #3b82f6 45%, #f59e0b);
}
.nv-contact-form-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}
.nv-contact-form-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
  color: #0f172a;
}
.nv-contact-form-head p {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.8;
}
.nv-contact-form-ico {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #0066fe;
  background: rgba(0, 102, 254, 0.1);
  border: 1px solid rgba(0, 102, 254, 0.12);
}
.nv-contact-alert {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.7;
}
.nv-contact-alert.is-ok {
  color: #15803d;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.18);
}
.nv-contact-alert.is-err {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.16);
}
.nv-contact-form {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.nv-contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.nv-contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.nv-contact-field.is-full {
  margin-bottom: 1rem;
}
.nv-contact-field span {
  font-size: 0.78rem;
  font-weight: 800;
  color: #475569;
}
.nv-contact-field input,
.nv-contact-field select,
.nv-contact-field textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nv-contact-field textarea {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.8;
}
.nv-contact-field input:focus,
.nv-contact-field select:focus,
.nv-contact-field textarea:focus {
  outline: none;
  border-color: rgba(0, 102, 254, 0.35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 102, 254, 0.1);
}
.nv-contact-field input::placeholder,
.nv-contact-field textarea::placeholder {
  color: #94a3b8;
  font-weight: 500;
}
.nv-contact-submit {
  width: 100%;
  min-height: 3.1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  box-shadow: 0 14px 28px -16px rgba(0, 102, 254, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.nv-contact-map-sec {
  padding-top: 0;
  padding-bottom: 4.5rem;
}
.nv-contact-map-head h2 {
  color: #0b1f44;
}
.nv-contact-map-shell {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 28px 60px -34px rgba(15, 23, 42, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  background: #dbeafe;
  display: grid;
  gap: 0;
}
.nv-contact-map {
  width: 100%;
  min-height: clamp(18rem, 42vw, 26rem);
  z-index: 1;
}
.nv-contact-map .mapboxgl-ctrl-logo,
.nv-contact-map .mapboxgl-ctrl-attrib {
  opacity: 0.85;
}
.nv-contact-map-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 0.85rem;
  padding: 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}
.nv-contact-map-fallback p {
  margin: 0;
  max-width: 28rem;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.85;
}
.nv-contact-map-card {
  position: absolute;
  z-index: 500;
  inset-inline-start: 1.25rem;
  bottom: 1.25rem;
  width: min(100% - 2.5rem, 22rem);
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
}
.nv-contact-map-card--below {
  position: static;
  width: auto;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: none;
  backdrop-filter: none;
  background: #fff;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.nv-contact-map-card--below .nv-contact-map-actions {
  grid-column: 1 / -1;
}
.nv-contact-map-pin {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #3b8bff, #0066fe);
  box-shadow: 0 10px 22px -12px rgba(0, 102, 254, 0.85);
}
.nv-contact-map-card-body small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
}
.nv-contact-map-card-body strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.98rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.65;
}
.nv-contact-map-card-body p {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.7;
}
.nv-contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nv-contact-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, #3b8bff, #0066fe);
  box-shadow: 0 10px 22px -14px rgba(0, 102, 254, 0.85);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nv-contact-map-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -12px rgba(0, 102, 254, 0.9);
}
.nv-contact-map-btn.is-soft {
  color: #0f172a;
  background: #f1f5f9;
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.nv-contact-map-btn.is-soft:hover {
  background: #e2e8f0;
}

/* Solutions */
.nv-solutions {
  background: linear-gradient(180deg, #0041c4, #002d8f);
  color: #fff;
}
.nv-sol-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 2rem;
}
.nv-sol-tab {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
}
.nv-sol-tab.is-active { background: #fff; color: var(--nv-blue); }
.nv-sol-layout {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.nv-sol-layout.is-active { display: grid; }
.nv-sol-visual {
  min-height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
}
.nv-sol-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}
.nv-sol-list { list-style: none; margin: 0; padding: 0; }
.nv-sol-list li {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nv-sol-list li:last-child { border-bottom: none; }
.nv-sol-ico {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: grid;
  place-items: center;
}
.nv-sol-list strong { display: block; margin-bottom: 0.25rem; }
.nv-sol-list p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* Process — project steps stepper */
.nv-process {
  background: transparent;
  overflow: hidden;
}
.nv-process-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.nv-process-head h2 {
  color: #0b1f44;
  letter-spacing: -0.02em;
}
.nv-process-lead {
  max-width: 38rem;
  margin-inline: auto;
}
.nv-process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.35rem);
  padding-bottom: 0.5rem;
}
.nv-process-flow::before {
  content: "";
  position: absolute;
  top: 1.65rem;
  inset-inline: 8%;
  height: 2px;
  background: rgba(0, 102, 254, 0.14);
  z-index: 0;
  pointer-events: none;
}
.nv-process-flow::after {
  content: "";
  position: absolute;
  top: 1.65rem;
  inset-inline-start: 8%;
  width: calc(84% * var(--nv-process-fill, 0.25));
  height: 2px;
  background: linear-gradient(to inline-end, var(--nv-blue-2, #3385fe), var(--nv-blue, #0066fe));
  z-index: 0;
  pointer-events: none;
  transition: width 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.nv-process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}
.nv-process-node {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--nv-blue, #0066fe);
  background: #fff;
  border: 2px solid rgba(0, 102, 254, 0.18);
  box-shadow: 0 10px 24px -16px rgba(0, 102, 254, 0.55);
  margin-bottom: 1.1rem;
  transition:
    background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.55s ease,
    border-color 0.55s ease,
    box-shadow 0.55s ease,
    transform 0.55s ease;
}
.nv-process-step.is-active .nv-process-node {
  color: #fff;
  background: linear-gradient(145deg, var(--nv-blue-2, #3385fe), var(--nv-blue, #0066fe));
  border-color: transparent;
  box-shadow: 0 14px 28px -14px rgba(0, 102, 254, 0.75);
  transform: scale(1.04);
}
.nv-process-step.is-active h3 {
  color: var(--nv-blue, #0066fe);
}
.nv-process-ico {
  display: grid;
  place-items: center;
}
.nv-process-ico svg {
  display: block;
}
.nv-process-step h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.5;
}
.nv-process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: start;
}
.nv-process-list li {
  position: relative;
  padding-inline-start: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.75;
  color: #64748b;
}
.nv-process-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--nv-orange, #f59e0b);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}
.nv-process-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.75rem, 3vw, 2.35rem);
}

/* App */
.nv-app { background: transparent; }
.nv-app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.nv-devices { position: relative; min-height: 20rem; }
.nv-device-phone {
  position: absolute;
  inset-inline-end: 10%;
  top: 5%;
  width: 42%;
  aspect-ratio: 9/18;
  border-radius: 1.5rem;
  background: #111827;
  border: 3px solid #374151;
}
.nv-device-phone-screen {
  position: absolute;
  inset: 0.5rem;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #0f172a;
}
.nv-device-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nv-laptop {
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 75%;
  aspect-ratio: 16/10;
  border-radius: 0.65rem 0.65rem 0 0;
  background: #1f2937;
  border: 2px solid #374151;
}
.nv-laptop-screen {
  position: absolute;
  inset: 0.5rem 0.5rem 1.2rem;
  border-radius: 0.45rem;
  overflow: hidden;
  background: #0f172a;
}
.nv-laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nv-app-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.nv-app-link {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.1);
  font-size: 0.8rem;
  font-weight: 800;
}

/* Quotes — editorial track carousel */
.nv-quotes {
  background: transparent;
  padding-block: clamp(4.5rem, 8vw, 6rem);
}
.nv-quotes-head {
  margin-bottom: clamp(2.25rem, 4vw, 3rem);
}
.nv-quotes-head h2 {
  color: #0b1f44;
  letter-spacing: -0.025em;
}
.nv-quotes-lead {
  max-width: 34rem;
}
.nv-quotes-carousel {
  max-width: 54rem;
  margin-inline: auto;
}
.nv-quotes-viewport {
  overflow: hidden;
  cursor: grab;
  /* pan-y keeps page scroll free; JS only claims horizontal swipes */
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
  padding-block: 0.35rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
@media (max-width: 960px) {
  .nv-quotes-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .nv-quotes-track {
    will-change: auto;
  }
}
.nv-quotes-viewport.is-dragging {
  cursor: grabbing;
}
.nv-quotes-viewport.is-dragging .nv-quote-slide {
  transition: none;
  pointer-events: none;
}
.nv-quotes-track {
  display: flex;
  align-items: stretch;
  gap: 1.35rem;
  will-change: transform;
  direction: ltr;
}
.nv-quotes-track.is-dragging .nv-quote-slide {
  transition: none;
}
.nv-quotes-viewport:focus-visible {
  border-radius: 1rem;
  box-shadow: 0 0 0 3px rgba(0, 102, 254, 0.2);
}
.nv-quote-slide {
  flex: 0 0 min(36rem, calc(100vw - 5rem));
  margin: 0;
  direction: rtl;
  padding: clamp(1.85rem, 3.5vw, 2.65rem);
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 20px 50px -32px rgba(15, 23, 42, 0.28);
  opacity: 0.38;
  transform: scale(0.94);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease,
    border-color 0.55s ease;
}
.nv-quote-slide.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(0, 102, 254, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.95) inset,
    0 28px 60px -28px rgba(0, 102, 254, 0.18);
}
.nv-quote-text {
  position: relative;
  margin: 0;
}
.nv-quote-text::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nv-blue, #0066fe), var(--nv-blue-2, #3385fe));
  margin-bottom: 1.35rem;
}
.nv-quote-text p {
  margin: 0;
  font-size: clamp(0.98rem, 1.9vw, 1.12rem);
  font-weight: 500;
  line-height: 2.05;
  color: #1e293b;
  letter-spacing: -0.01em;
  text-align: start;
}
.nv-quote-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: clamp(1.65rem, 3vw, 2.1rem);
  padding-top: 1.35rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.nv-quote-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}
.nv-quote-avatar.is-fallback {
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: #475569;
  font-weight: 800;
  font-size: 0.95rem;
}
.nv-quote-avatar.is-brand {
  width: 3rem;
  height: 3rem;
  border-radius: 0.55rem;
  object-fit: contain;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.35);
}
.nv-quote-meta strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
}
.nv-quote-meta span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.4;
}
.nv-quotes-bar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-top: 1.65rem;
  padding-inline: 0.15rem;
}
.nv-quotes-btn {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #334155;
  background: #fff;
  box-shadow: 0 6px 16px -12px rgba(15, 23, 42, 0.45);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nv-quotes-btn:hover {
  color: var(--nv-blue, #0066fe);
  border-color: rgba(0, 102, 254, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -14px rgba(0, 102, 254, 0.35);
}
.nv-quotes-btn:active {
  transform: translateY(0);
}
.nv-quotes-btn svg {
  display: block;
}
.nv-quotes-progress {
  height: 2px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
  min-width: 0;
}
.nv-quotes-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--nv-blue, #0066fe), var(--nv-blue-2, #3385fe));
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.nv-quotes-index {
  font-size: 0.78rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* FAQ — light two-column accordion cards */
.nv-faq {
  background: transparent;
  color: #0f172a;
}
.nv-faq-head h2 {
  color: #0b1f44;
  letter-spacing: -0.02em;
}
.nv-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  align-items: start;
}
.nv-faq-item {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.nv-faq-item[open] {
  background: #f3f4f6;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 28px -22px rgba(15, 23, 42, 0.35);
}
.nv-faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3.35rem;
  align-items: stretch;
  min-height: 3.65rem;
  cursor: pointer;
}
.nv-faq-item summary::-webkit-details-marker { display: none; }
.nv-faq-q {
  display: flex;
  align-items: center;
  padding: 0.95rem 1.15rem;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #0f172a;
  text-align: start;
}
.nv-faq-toggle {
  display: grid;
  place-items: center;
  border-inline-start: 1px solid rgba(15, 23, 42, 0.1);
  color: #64748b;
}
.nv-faq-ico {
  position: relative;
  width: 1rem;
  height: 1rem;
}
.nv-faq-ico::before,
.nv-faq-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.95rem;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nv-faq-ico::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.nv-faq-item[open] .nv-faq-ico::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}
.nv-faq-a {
  padding: 0 1.15rem 1.1rem;
}
.nv-faq-a p {
  margin: 0;
  color: #64748b;
  line-height: 1.9;
  font-size: 0.86rem;
  font-weight: 500;
}

/* Blog / employer guide — editorial magazine cards */
.nv-blog {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding-block: 5rem;
}
.nv-blog-gridbg { display: none; }
.nv-blog-orb,
.nv-blog-orb--a,
.nv-blog-orb--b { display: none; }
.nv-blog > .nv-shell {
  position: relative;
  z-index: 1;
}
.nv-blog-head {
  margin-bottom: 2.85rem;
}
.nv-blog-head .nv-pill {
  box-shadow: 0 10px 22px -12px rgba(245, 158, 11, 0.8);
}
.nv-blog-head h2 {
  color: #0b1f44;
  letter-spacing: -0.02em;
  margin-inline: auto;
  position: relative;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.2rem, 2.4vw, 2.15rem);
}
.nv-blog-head h2::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nv-blue), #f59e0b);
}
.nv-blog-head .nv-head-lead {
  max-width: 36rem;
  font-size: 1rem;
  margin-top: 1.1rem;
  color: #64748b;
}
.nv-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
  align-items: stretch;
}
.nv-blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 44px -30px rgba(15, 23, 42, 0.5);
  transition:
    transform 0.32s var(--nv-ease),
    box-shadow 0.32s var(--nv-ease),
    border-color 0.28s ease;
}
.nv-blog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--nv-blue), #f59e0b, transparent);
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 2;
}
.nv-blog-card.is-featured {
  transform: translateY(-0.35rem);
  border-color: rgba(0, 102, 254, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 26px 52px -28px rgba(0, 102, 254, 0.38);
}
.nv-blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 102, 254, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 32px 56px -24px rgba(0, 102, 254, 0.42);
}
.nv-blog-card.is-featured:hover {
  transform: translateY(-10px);
}
.nv-blog-card:hover::before {
  opacity: 1;
}
.nv-blog-media {
  position: relative;
  display: block;
  margin: 0.85rem 0.85rem 0;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}
.nv-blog-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(11, 31, 68, 0.38));
  pointer-events: none;
  z-index: 1;
}
.nv-blog-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(145deg, #dbeafe, #93c5fd 55%, #bfdbfe);
  transition: transform 0.55s var(--nv-ease);
}
.nv-blog-card:hover .nv-blog-thumb {
  transform: scale(1.06);
}
.nv-blog-tag {
  position: absolute;
  z-index: 2;
  right: 0.95rem;
  bottom: 0.9rem;
  display: inline-flex;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #9a3412;
  background: rgba(255, 247, 237, 0.96);
  border: 1px solid rgba(251, 146, 60, 0.35);
  box-shadow: 0 10px 20px -14px rgba(154, 52, 18, 0.55);
  backdrop-filter: blur(8px);
}
.nv-blog-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.25rem 1.35rem 1.4rem;
}
.nv-blog-body h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.65;
  color: #0b1f44;
  letter-spacing: -0.015em;
}
.nv-blog-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}
.nv-blog-body h3 a:hover,
.nv-blog-card:hover .nv-blog-body h3 a {
  color: var(--nv-blue);
}
.nv-blog-body p {
  margin: 0.75rem 0 0;
  font-size: 0.87rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.95;
  flex: 1 1 auto;
}
.nv-blog-more {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  margin-top: 1.25rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  width: 100%;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--nv-blue);
  text-decoration: none;
  transition: gap 0.22s ease, color 0.18s ease;
}
.nv-blog-more:hover {
  color: var(--nv-blue-2);
  gap: 0.75rem;
}
.nv-blog-more-ico {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-inline-start: auto;
  background: linear-gradient(145deg, var(--nv-blue-2), var(--nv-blue));
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 10px 18px -10px rgba(0, 102, 254, 0.9);
  transition: transform 0.22s var(--nv-ease), box-shadow 0.22s ease;
}
.nv-blog-more:hover .nv-blog-more-ico,
.nv-blog-all:hover .nv-blog-more-ico {
  transform: translateX(-3px) scale(1.05);
  box-shadow: 0 12px 22px -10px rgba(0, 102, 254, 1);
}
.nv-blog-more-ico svg {
  transform: scaleX(-1);
}
.nv-blog-foot {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
}
.nv-blog-all {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid rgba(0, 102, 254, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 16px 30px -18px rgba(0, 102, 254, 0.35);
  color: var(--nv-blue);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease;
}
.nv-blog-all .nv-blog-more-ico {
  margin-inline-start: 0;
}
.nv-blog-all:hover {
  border-color: rgba(0, 102, 254, 0.32);
  background: linear-gradient(180deg, #fff, #eef5ff);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 20px 36px -16px rgba(0, 102, 254, 0.45);
  transform: translateY(-2px);
}

/* Blog listing + single post pages */
.nv-blog-page .nv-blog-grid {
  margin-top: 0.5rem;
}
.nv-blog-empty,
.nv-blog-post-empty {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  color: var(--nv-ink-2, #475569);
}
.nv-blog-post {
  padding-top: 0;
}
.nv-blog-article {
  max-width: 46rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--nv-radius-lg, 18px);
  box-shadow: var(--nv-shadow-sm, 0 8px 28px -18px rgba(15, 23, 42, 0.28));
  overflow: hidden;
}
.nv-blog-article-cover {
  margin: 1.25rem 1.25rem 0;
  border-radius: 12px;
  overflow: hidden;
}
.nv-blog-article-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 26rem;
  object-fit: cover;
  border-radius: 12px;
}
.nv-blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem 0;
}
.nv-blog-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.1rem;
  padding: 0.55rem 0.95rem 0.55rem 0.75rem;
  border-radius: 0.95rem;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px -18px rgba(15, 23, 42, 0.35);
}
.nv-blog-meta-chip-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.72rem;
  flex-shrink: 0;
}
.nv-blog-meta-chip-ico svg {
  display: block;
}
.nv-blog-meta-chip-body {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.nv-blog-meta-chip-label {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}
.nv-blog-meta-chip-value {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}
.nv-blog-meta-chip--date {
  color: #0b3d91;
  background: linear-gradient(135deg, #eef5ff 0%, #dbeafe 100%);
  border-color: rgba(0, 102, 254, 0.14);
}
.nv-blog-meta-chip--date .nv-blog-meta-chip-ico {
  color: #0066fe;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(0, 102, 254, 0.08);
}
.nv-blog-meta-chip--date .nv-blog-meta-chip-label {
  color: #5b7cab;
}
.nv-blog-meta-chip--date .nv-blog-meta-chip-value {
  color: #0f2744;
}
.nv-blog-meta-chip--read {
  color: #7c4a03;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-color: rgba(245, 158, 11, 0.18);
}
.nv-blog-meta-chip--read .nv-blog-meta-chip-ico {
  color: #ea580c;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(234, 88, 12, 0.08);
}
.nv-blog-meta-chip--read .nv-blog-meta-chip-label {
  color: #b45309;
}
.nv-blog-meta-chip--read .nv-blog-meta-chip-value {
  color: #7c2d12;
}
.nv-blog-article-ai {
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 102, 254, 0.08);
  color: var(--nv-blue, #0066fe);
  font-weight: 700;
  font-size: 0.78rem;
}
.nv-blog-article-body {
  padding: 1.25rem 1.75rem 1.75rem;
  color: var(--nv-ink, #0f172a);
  line-height: 1.95;
  font-size: 1.02rem;
}
.nv-blog-article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.nv-blog-article-body p + p {
  margin-top: 1rem;
}
.nv-blog-article-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 1.75rem 1.75rem;
}
@media (max-width: 720px) {
  .nv-blog-article-meta {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: stretch;
    gap: 0.45rem;
    padding: 0.85rem 0.85rem 0;
  }
  .nv-blog-meta-chip {
    flex: 1 1 0;
    min-width: 0;
    min-height: 2.35rem;
    padding: 0.38rem 0.48rem 0.38rem 0.4rem;
    gap: 0.38rem;
    border-radius: 0.72rem;
  }
  .nv-blog-meta-chip-ico {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 0.5rem;
  }
  .nv-blog-meta-chip-ico svg {
    width: 15px;
    height: 15px;
  }
  .nv-blog-meta-chip-body {
    gap: 0.28rem;
    min-width: 0;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .nv-blog-meta-chip-label {
    font-size: 0.66rem;
    white-space: nowrap;
  }
  .nv-blog-meta-chip-value {
    font-size: 0.76rem;
    white-space: nowrap;
  }
  .nv-blog-article-cover {
    margin: 0.85rem 0.85rem 0;
  }
  .nv-blog-article-body {
    padding: 1rem 0.85rem 1.35rem;
    font-size: 0.98rem;
  }
}

/* CTA — dark support banner */
.nv-cta {
  background: #18181b;
  color: #fff;
  padding: 3rem 0;
}
.nv-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem 3rem;
  flex-wrap: wrap;
  direction: rtl;
}
.nv-cta-copy {
  flex: 1 1 20rem;
  min-width: 0;
  text-align: start;
}
.nv-cta h2 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.55rem 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.nv-cta-smile {
  width: 1.75rem;
  height: 1.6rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.nv-cta p {
  margin: 0.7rem 0 0;
  max-width: 40rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}
.nv-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
  margin-inline-start: auto;
}
.nv-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  min-width: 15.5rem;
  padding: 0.8rem 1.85rem;
  border-radius: 0.9rem;
  background: #ffc745;
  color: #18181b;
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nv-cta-btn:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}
.nv-cta-action span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Footer — light DPSNS layout */
.nv-footer {
  position: relative;
  background: transparent;
  color: var(--nv-ink);
  margin-top: 0;
  border-top: 0;
  overflow: hidden;
}
.nv-footer-shell {
  position: relative;
  z-index: 1;
  width: var(--nv-shell);
  margin-inline: auto;
  padding: 3rem 0 1.5rem;
}
.nv-footer-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  padding: 0 0 2.15rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}
.nv-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0;
  border-inline-start: 0;
}
.nv-footer-col:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}
.nv-footer-col:last-child {
  padding-inline-end: 0;
}
.nv-footer-col strong {
  position: relative;
  margin: 0 0 0.55rem;
  padding-bottom: 0.55rem;
  font-size: 0.92rem;
  font-weight: 900;
  color: #0b1f44;
}
.nv-footer-col strong::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.65rem;
  height: 2.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nv-blue), #f59e0b);
}
.nv-footer-col a {
  font-size: 0.84rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  width: fit-content;
  transition: color 0.18s ease, transform 0.18s ease;
}
.nv-footer-col a:hover {
  color: var(--nv-blue);
  transform: translateX(-3px);
}
.nv-footer-meta {
  display: grid;
  grid-template-columns: 1.55fr 1fr 0.85fr;
  gap: 1.75rem 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  align-items: start;
}
.nv-footer-about {
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 36px -28px rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
}
.nv-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.95rem;
}
.nv-footer-brand-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(160deg, #eff6ff, #fff);
  border: 1px solid rgba(0, 102, 254, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 24px -16px rgba(0, 102, 254, 0.45);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nv-footer-brand-badge img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
  background: transparent;
}
.nv-footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.nv-footer-brand-text strong {
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--nv-blue);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.nv-footer-brand-text em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0b1f44;
}
.nv-footer-about p {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.95;
  color: #475569;
  text-align: justify;
}
.nv-footer-about p + p {
  margin-top: 0.85rem;
}
.nv-footer-channels {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nv-footer-channel {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.85rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.nv-footer-channel-ico {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--nv-blue);
  background: #eff6ff;
  border: 1px solid rgba(0, 102, 254, 0.12);
}
.nv-footer-channel-ico.is-mail {
  color: var(--nv-blue);
  background: #eff6ff;
}
.nv-footer-channel-txt {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.65rem;
  min-width: 0;
  flex: 1 1 auto;
}
.nv-footer-channel b {
  justify-self: left;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0b1f44;
  line-height: 1.2;
  white-space: nowrap;
}
.nv-footer-channel small {
  justify-self: start;
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nv-footer-channel:hover {
  border-color: rgba(0, 102, 254, 0.22);
  background: #f8fbff;
}
.nv-footer-channel:hover b {
  color: var(--nv-blue);
}
.nv-footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
}
.nv-footer-social {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.nv-footer-social img {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
  display: block;
}
.nv-footer-social.is-bale img {
  width: 1.05rem;
  height: 1.35rem;
}
.nv-footer-social:hover {
  border-color: rgba(0, 102, 254, 0.22);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px -12px rgba(15, 23, 42, 0.45);
}
.nv-footer-namads {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  align-content: start;
}
.nv-footer-namad {
  display: grid;
  place-items: center;
  min-height: 4.5rem;
  padding: 0.5rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 10px 22px -18px rgba(15, 23, 42, 0.35);
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.nv-footer-namad:hover {
  border-color: rgba(0, 102, 254, 0.28);
  box-shadow: 0 14px 26px -16px rgba(0, 102, 254, 0.4);
  transform: translateY(-2px);
}
.nv-footer-namad img {
  width: auto;
  max-width: 100%;
  height: 3.6rem;
  object-fit: contain;
  display: block;
  background: #fff;
  image-rendering: auto;
}
.nv-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
  padding: 1.05rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.35);
  text-align: center;
}
.nv-footer-bottom p,
.nv-footer-copy {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.7;
}
.nv-footer-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
}
.nv-footer-copy-lead,
.nv-footer-copy-sub {
  display: block;
  line-height: 1.55;
}
.nv-footer-copy-sub {
  font-size: 0.92em;
}
.nv-footer-bottom strong {
  color: var(--nv-blue);
  font-weight: 900;
}
.nv-footer-copy-mark {
  display: inline-block;
  margin-inline-end: 0.15rem;
  color: var(--nv-blue);
  font-weight: 800;
}
.nv-footer-copy-sep {
  opacity: 0.45;
  margin-inline: 0.2rem;
}

/* Chat widget — Limoo-style panel */
.nv-chat-widget {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 420;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  width: min(100% - 2.5rem, 22.5rem);
  direction: ltr;
}
.nv-chat-launcher {
  width: 3.55rem;
  height: 3.55rem;
  padding: 0;
  border: 3px solid #0066fe;
  border-radius: 50%;
  background: #fff;
  color: #0066fe;
  box-shadow: 0 10px 32px -8px rgba(0, 102, 254, 0.35);
  cursor: pointer;
  position: relative;
  order: 3;
  flex: 0 0 auto;
  align-self: flex-start;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.nv-chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(0, 102, 254, 0.62);
}
.nv-chat-launcher-avatar,
.nv-chat-launcher-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nv-chat-launcher-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  padding: 0;
  box-sizing: border-box;
}
.nv-chat-launcher-icon {
  opacity: 0;
  transform: scale(0.85);
}
.nv-chat-widget.is-open .nv-chat-launcher {
  background: #0066fe;
  border-color: #0066fe;
  color: #fff;
}
.nv-chat-widget.is-open .nv-chat-launcher-avatar {
  opacity: 0;
  transform: scale(0.85);
}
.nv-chat-widget.is-open .nv-chat-launcher-icon {
  opacity: 1;
  transform: none;
}
.nv-chat-teaser {
  width: 100%;
  display: grid;
  gap: 0.55rem;
  order: 1;
  direction: rtl;
}
.nv-chat-widget.is-open .nv-chat-teaser {
  display: none;
}
.nv-chat-bubble {
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 32px -14px rgba(15, 23, 42, 0.22);
}
.nv-chat-bubble p {
  margin: 0;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.85;
}
.nv-chat-teaser-form {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-block: 0.35rem;
  padding-inline-start: 0.7rem;
  padding-inline-end: 0.35rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 28px -10px rgba(15, 23, 42, 0.2);
}
.nv-chat-teaser-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #0f172a;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  outline: none;
}
.nv-chat-teaser-form input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.nv-chat-teaser-send {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #0066fe;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.nv-chat-teaser-send:hover {
  background: #0054d6;
}
.nv-chat-teaser-send:active {
  transform: scale(0.96);
}
.nv-chat-teaser-send:disabled,
.nv-chat-teaser-form input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.nv-chat-panel {
  width: 100%;
  display: none;
  flex-direction: column;
  order: 2;
  direction: rtl;
  max-height: min(34rem, calc(100vh - 6rem));
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 48px -16px rgba(15, 23, 42, 0.35);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.nv-chat-widget.is-open .nv-chat-panel {
  display: flex;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.nv-chat-head {
  display: grid;
  grid-template-columns: 2.25rem 1fr 2.25rem;
  align-items: center;
  gap: 0.35rem;
  padding: 0.72rem 0.8rem;
  background: #0066fe;
  color: #fff;
}
.nv-chat-head-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
}
.nv-chat-head-brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nv-chat-head-brand img {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.nv-chat-head-btn {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0.55rem;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.16s ease;
}
.nv-chat-head-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}
.nv-chat-minimize svg {
  transform: scaleX(-1);
}
.nv-chat-body {
  flex: 1 1 auto;
  min-height: 0;
  background: #fff;
}
.nv-chat-messages {
  max-height: min(18.5rem, 46vh);
  overflow-y: auto;
  display: grid;
  gap: 0.85rem;
  padding: 0.85rem 0.9rem 0.65rem;
  scrollbar-width: thin;
}
.nv-chat-date {
  justify-self: center;
  padding: 0.22rem 0.72rem;
  border-radius: 999px;
  background: #f3e8d8;
  color: #6b5b4b;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.6;
}
.nv-chat-msg {
  display: grid;
  gap: 0.28rem;
  max-width: 100%;
}
.nv-chat-msg.is-user {
  justify-self: end;
  max-width: 88%;
}
.nv-chat-msg.is-bot.is-typing {
  width: fit-content;
}
.nv-chat-msg-meta {
  padding-inline: 0.15rem;
}
.nv-chat-msg-author {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.4;
}
.nv-chat-msg-row {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
}
.nv-chat-msg.is-bot .nv-chat-msg-row {
  justify-content: flex-start;
}
.nv-chat-msg.is-user .nv-chat-msg-row {
  justify-content: flex-end;
}
.nv-chat-msg-bubble {
  padding: 0.72rem 0.82rem;
  border-radius: 0.85rem;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.nv-chat-msg.is-user .nv-chat-msg-bubble {
  background: #0066fe;
  border-color: transparent;
  color: #fff;
  border-bottom-left-radius: 0.3rem;
}
.nv-chat-msg.is-bot .nv-chat-msg-bubble {
  border-bottom-right-radius: 0.3rem;
}
.nv-chat-msg-bubble p {
  margin: 0;
  color: inherit;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.85;
  white-space: pre-wrap;
}
.nv-chat-msg-bubble p + p {
  margin-top: 0.35rem;
}
.nv-chat-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  background: #0066fe;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.nv-chat-call-btn:hover {
  background: #0054d6;
  color: #fff;
}
.nv-chat-call-btn:active {
  transform: scale(0.98);
}
.nv-chat-call-btn svg {
  flex: 0 0 auto;
}
.nv-chat-msg-avatar {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.25);
}
.nv-chat-msg-time {
  padding-inline: 0.15rem;
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.4;
}
.nv-chat-msg.is-user .nv-chat-msg-time {
  text-align: end;
}
.nv-chat-typing {
  display: inline-flex;
  gap: 0.28rem;
  align-items: center;
  padding: 0.15rem 0;
}
.nv-chat-typing span {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #94a3b8;
  animation: nv-chat-dot 1.1s infinite ease-in-out;
}
.nv-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.nv-chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes nv-chat-dot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
  40% { transform: translateY(-3px); opacity: 1; }
}
.nv-chat-foot {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}
.nv-chat-widget.is-lead-gate .nv-chat-messages {
  max-height: min(11rem, 32vh);
}
.nv-chat-widget.is-lead-gate .nv-chat-compose,
.nv-chat-widget.is-lead-gate .nv-chat-powered {
  display: none;
}
.nv-chat-lead {
  padding: 0.75rem 0.85rem 0.55rem;
}
.nv-chat-lead-form {
  display: grid;
  gap: 0.55rem;
  direction: rtl;
}
.nv-chat-lead-note {
  margin: 0;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.85;
}
.nv-chat-lead-field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nv-chat-lead-field span {
  flex: 0 0 auto;
  min-width: 5.5rem;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}
.nv-chat-lead-field input,
.nv-chat-lead-field select {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0.65rem;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.nv-chat-lead-field input:focus,
.nv-chat-lead-field select:focus {
  border-color: rgba(0, 102, 254, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 102, 254, 0.12);
}
.nv-chat-lead-submit {
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.62rem 0.85rem;
  border: 0;
  border-radius: 0.65rem;
  background: #0066fe;
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.nv-chat-lead-submit:hover {
  background: #0054d6;
}
.nv-chat-lead-submit:active {
  transform: scale(0.98);
}
.nv-chat-lead-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.nv-chat-lead-error {
  margin: 0;
  color: #dc2626;
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1.5;
}
.nv-chat-compose {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem 0.35rem;
}
.nv-chat-emoji {
  flex: 0 0 auto;
  font-size: 1.05rem;
  line-height: 1;
  opacity: 0.55;
  user-select: none;
}
.nv-chat-compose input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #0f172a;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  outline: none;
}
.nv-chat-compose input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.nv-chat-send {
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #0066fe;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.nv-chat-send svg {
  display: block;
  overflow: visible;
}
.nv-chat-send:hover {
  background: #0054d6;
}
.nv-chat-send:active {
  transform: scale(0.96);
}
.nv-chat-send:disabled,
.nv-chat-compose input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.nv-chat-powered {
  margin: 0;
  padding: 0 0.85rem 0.55rem;
  color: #94a3b8;
  font-size: 0.64rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 960px) {
  .nv-chat-widget {
    display: none !important;
  }
}

/* Responsive */
@media (min-width: 961px) {
  .nv-menu-btn { display: none !important; }
  .nv-nav {
    display: flex !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    height: auto !important;
    flex-direction: row !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    inset: auto !important;
  }
}
@media (max-width: 960px) {
  .nv-header {
    overflow: visible;
  }
  .nv-header-mobile { display: flex; }
  .nv-menu-btn { display: inline-grid; place-items: center; }
  .nv-header-inner {
    gap: 0.65rem;
  }
  .nv-brand {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
  }
  .nv-brand-sub {
    font-size: 0.68rem;
    max-width: 10.5rem;
    white-space: normal;
    line-height: 1.3;
  }
  .nv-brand-badge {
    width: 2.1rem;
    height: 2.1rem;
  }
  .nv-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    bottom: auto;
    z-index: 195;
    width: 100vw;
    max-width: 100vw;
    height: auto;
    max-height: min(70dvh, calc(100dvh - 5rem));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.75rem 1rem 1rem;
    margin: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 0 0 1.1rem 1.1rem;
    background: #fff;
    box-shadow:
      0 18px 40px -20px rgba(15, 23, 42, 0.35),
      0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transform: translate(-50%, -0.4rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.28s var(--nv-ease),
      opacity 0.22s ease,
      visibility 0.22s;
  }
  .nv-nav.is-open {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nv-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }
  .nv-nav-actions { display: none; }
  .nv-nav-links > a,
  .nv-mega-trigger {
    min-height: 3.05rem;
    padding: 0.72rem 0.9rem;
    border-radius: 0.85rem;
    width: 100%;
    justify-content: flex-start;
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: #fff;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset;
    font-size: 0.9rem;
  }
  .nv-nav-links > a:active,
  .nv-mega-trigger:active {
    background: #f1f5f9;
  }
  .nv-mega-trigger .nv-mega-chevron {
    margin-inline-start: auto;
    flex-shrink: 0;
  }
  .nv-mega-panel {
    position: static;
    width: 100%;
    margin-top: 0.35rem;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .nv-mega-panel::before { display: none; }
  .nv-mega-panel > .nv-mega-body,
  .nv-mega-panel > .nv-mega-bar {
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }
  .nv-mega-panel > .nv-mega-body {
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 0.85rem;
  }
  .nv-mega-panel > .nv-mega-bar {
    display: none;
  }
  .nv-mega.is-open .nv-mega-panel {
    opacity: 1;
    visibility: visible;
    max-height: 52rem;
    padding: 0;
    pointer-events: auto;
    overflow: auto;
  }
  .nv-mega-body { grid-template-columns: 1fr; }
  .nv-mega-cols {
    grid-template-columns: 1fr;
    padding: 0.65rem 0.45rem;
  }
  .nv-mega-col {
    border-inline-start: none;
    border-top: 1px solid rgba(15,23,42,0.06);
    padding: 0.7rem 0.35rem;
  }
  .nv-mega-col:first-child { border-top: none; }
  .nv-mega-col-title {
    margin-bottom: 0.5rem;
    padding-inline: 0.2rem;
    font-size: 0.74rem;
  }
  .nv-mega-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }
  .nv-mega-list a {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 4.15rem;
    padding: 0.55rem 0.4rem;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 0.75rem;
    background: #f8fafc;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
  }
  .nv-mega-list a span {
    order: 2;
    text-align: center;
  }
  .nv-mega-li {
    order: 1;
    width: 1.55rem;
    height: 1.55rem;
  }
  .nv-mega-li svg {
    width: 0.85rem;
    height: 0.85rem;
  }
  .nv-mega-promo {
    display: none;
  }
  .nv-panel.is-active,
  .nv-why-row {
    grid-template-columns: 1fr;
  }
  .nv-features-inner,
  .nv-sol-layout.is-active,
  .nv-app-inner { grid-template-columns: 1fr; }
  .nv-footer {
    overflow-x: clip;
  }
  .nv-footer-shell {
    padding: 2rem 0 1.15rem;
  }
  .nv-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1rem;
    padding-bottom: 1.5rem;
  }
  .nv-footer-col {
    padding: 0;
    border-inline-start: 0;
    min-width: 0;
  }
  .nv-footer-col:first-child {
    padding-inline-start: 0;
  }
  .nv-footer-col strong {
    font-size: 0.86rem;
  }
  .nv-footer-col a {
    font-size: 0.8rem;
    max-width: 100%;
  }
  .nv-footer-meta {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 0.55rem 0.45rem;
    padding: 1.5rem 0;
    align-items: stretch;
  }
  .nv-footer-channels {
    order: 1;
    display: contents;
  }
  .nv-footer-channel:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .nv-footer-channel:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .nv-footer-socials {
    order: 3;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.1rem;
  }
  .nv-footer-namads {
    order: 2;
    grid-column: 2;
    grid-row: 1 / 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.3rem;
    align-content: stretch;
    height: 100%;
  }
  .nv-footer-about {
    order: 4;
    grid-column: 1 / -1;
    grid-row: 4;
    padding: 1rem 0.95rem;
  }
  .nv-footer-about p {
    text-align: start;
    font-size: 0.82rem;
    line-height: 1.85;
  }
  .nv-footer-channel {
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.55rem;
    min-width: 0;
    height: 100%;
  }
  .nv-footer-channel-ico {
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 0.45rem;
  }
  .nv-footer-channel-txt {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 0.45rem;
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
  }
  .nv-footer-channel b {
    justify-self: left;
    margin-inline-start: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.74rem;
    direction: ltr;
    text-align: left;
    min-width: 0;
  }
  .nv-footer-channel small {
    justify-self: start;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.68rem;
    line-height: 1.3;
  }
  .nv-footer-namad {
    min-height: 0;
    padding: 0.28rem;
  }
  .nv-footer-namad img {
    height: 2.35rem;
  }
  .nv-footer-bottom {
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow-x: visible;
    padding: 0.85rem 0.95rem;
    margin-top: 0.25rem;
  }
  .nv-footer-bottom p,
  .nv-footer-copy {
    font-size: 0.72rem;
    line-height: 1.45;
    white-space: normal;
  }
  .nv-footer-copy {
    gap: 0.2rem;
  }
  .nv-footer-copy-sub {
    font-size: 0.95em;
  }
  .nv-deal-badge strong {
    font-size: 2.25rem;
    -webkit-text-stroke: 2px #111827;
  }
  .nv-deal-copy h3 {
    font-size: 0.98rem;
  }
  .nv-deal-code-btn {
    font-size: 0.72rem;
  }
  .nv-deal-unit b {
    min-width: 2.35rem;
    min-height: 2.35rem;
    font-size: 0.95rem;
  }
  .nv-deal-units > i {
    padding-bottom: 0.45rem;
    font-size: 0.82rem;
  }
  .nv-plans-card.is-featured,
  .nv-plans-card.is-featured:hover {
    transform: none;
  }
  .nv-plans-card:hover {
    transform: translateY(-3px);
  }
  .nv-plans-head {
    text-align: center;
  }
  .nv-plans-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.65rem;
    padding: 0.25rem 0.65rem 0.85rem;
    margin-inline: -0.65rem;
    width: calc(100% + 1.3rem);
    direction: rtl;
    scrollbar-width: none;
    cursor: grab;
    /* pan-x alone trapped vertical scroll on mobile when finger was on cards */
    touch-action: pan-x pan-y;
    /* mask-image is expensive during mobile scroll */
    mask-image: none;
    -webkit-mask-image: none;
  }
  .nv-plans-grid.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
  }
  .nv-plans-grid.is-dragging * {
    pointer-events: none;
  }
  .nv-plans-grid::-webkit-scrollbar {
    display: none;
  }
  .nv-plans-card {
    flex: 0 0 min(86vw, 21rem);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    direction: rtl;
  }
  .nv-plans-meta {
    grid-template-columns: 1fr;
  }
  .nv-cta {
    background: transparent;
    padding: 2rem 1rem 2.25rem;
  }
  .nv-cta-inner {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    background: #18181b;
    border-radius: 12px;
    padding: 1.35rem 1rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1.35rem;
    text-align: center;
  }
  .nv-cta-copy {
    flex: 1 1 auto;
    text-align: center;
  }
  .nv-cta h2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.05rem, 4.5vw, 1.45rem);
    line-height: 1.55;
    gap: 0.45rem;
  }
  .nv-cta p {
    margin-top: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: none;
  }
  .nv-cta-action {
    width: 100%;
    margin-inline-start: 0;
    align-items: stretch;
    gap: 0.55rem;
  }
  .nv-cta-btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.45;
    padding: 0.75rem 1rem;
    min-height: 3rem;
    font-size: 0.9rem;
    border-radius: 0.75rem;
  }
  .nv-cta-action span {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.65;
  }
  .nv-panel.is-active {
    min-height: 0;
  }
  .nv-panel-copy {
    border-inline-end: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1.35rem 1.15rem;
  }
  .nv-panel-visual {
    min-height: 21rem;
    padding: 1.15rem 0.75rem 1rem;
    overflow: visible;
  }
  .nv-panel-copy h3 {
    font-size: 1.12rem;
    max-width: none;
  }
  .nv-process-flow {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-inline: 0.25rem;
  }
  .nv-process-flow::before {
    top: 0;
    bottom: 0;
    inset-inline: auto;
    left: 1.65rem;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 102, 254, 0.12), rgba(0, 102, 254, 0.45), rgba(0, 102, 254, 0.12));
  }
  [dir="rtl"] .nv-process-flow::before {
    left: auto;
    right: 1.65rem;
  }
  .nv-process-flow::after {
    top: 0;
    bottom: auto;
    inset-inline-start: auto;
    inset-inline-end: auto;
    left: 1.65rem;
    right: auto;
    width: 2px;
    height: calc(100% * var(--nv-process-fill, 0.25));
    background: linear-gradient(180deg, var(--nv-blue-2, #3385fe), var(--nv-blue, #0066fe));
    transform: none;
  }
  [dir="rtl"] .nv-process-flow::after {
    left: auto;
    right: 1.65rem;
  }
  .nv-process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: start;
    gap: 0.85rem;
    padding-inline-start: 3.5rem;
  }
  .nv-process-node {
    position: absolute;
    inset-inline-start: 0;
    width: 3rem;
    height: 3rem;
    margin: 0;
  }
  .nv-process-step h3 {
    margin-bottom: 0.55rem;
  }
  .nv-lic-grid,
  .nv-faq-list {
    grid-template-columns: 1fr;
  }
  .nv-contact-grid { grid-template-columns: 1fr; }
  .nv-contact-row { grid-template-columns: 1fr; }
  .nv-contact-aside { position: static; }
  .nv-contact-map-card--below {
    grid-template-columns: 1fr;
  }
  .nv-contact-stats li { min-width: calc(50% - 0.75rem); flex: 1 1 calc(50% - 0.75rem); }
  .nv-quote-slide {
    flex-basis: calc(100vw - 2.5rem);
    padding: 1.65rem 1.45rem;
  }
  .nv-quote-text p {
    font-size: 0.98rem;
    line-height: 1.95;
  }
  .nv-quotes-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .nv-quotes-bar {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
  }
  .nv-quotes-progress {
    grid-column: 1 / -1;
    order: -1;
  }
  .nv-quotes-index {
    justify-self: end;
  }
  .nv-blog-card.is-featured,
  .nv-blog-card.is-featured:hover { transform: none; }
  .nv-blog-card:hover { transform: translateY(-6px); }
  .nv-blog-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.65rem;
    padding: 0.25rem 0.65rem 0.85rem;
    margin-inline: -0.65rem;
    width: calc(100% + 1.3rem);
    direction: rtl;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x pan-y;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .nv-blog-grid.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
  }
  .nv-blog-grid.is-dragging * {
    pointer-events: none;
  }
  .nv-blog-grid::-webkit-scrollbar {
    display: none;
  }
  .nv-blog-card {
    flex: 0 0 min(86vw, 22rem);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    direction: rtl;
  }
  .nv-tablist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    overflow: visible;
    width: 100%;
    border-radius: 0.5rem;
    gap: 0.35rem;
    padding: 0.35rem;
  }
  .nv-tab {
    flex: 1 1 calc((100% - 0.7rem) / 3);
    min-width: calc((100% - 0.7rem) / 3);
    max-width: calc((100% - 0.7rem) / 3);
    min-height: 3.1rem;
    padding: 0.45rem 0.4rem;
    font-size: 0.64rem;
    gap: 0.3rem;
    white-space: normal;
  }
  .nv-tab:nth-child(n + 4) {
    flex: 1 1 calc((100% - 0.35rem) / 2);
    min-width: calc((100% - 0.35rem) / 2);
    max-width: calc((100% - 0.35rem) / 2);
  }
  .nv-tab-label {
    line-height: 1.35;
    text-align: right;
  }
  .nv-tab-ico {
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 0.3rem;
  }
  .nv-hero-scribble { display: none; }
  .nv-hero-title {
    white-space: normal;
    font-size: clamp(1.25rem, 4.8vw, 1.65rem);
    line-height: 1.7;
  }
  .nv-hero-lead {
    white-space: normal;
    font-size: 0.9rem;
    line-height: 1.85;
    max-width: 36rem;
    padding-inline: 0.15rem;
  }
  .nv-hero-leadwrap {
    position: relative;
    direction: ltr;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    gap: 0.35rem;
    padding-top: 0;
    margin-inline: auto;
  }
  .nv-hero-free {
    position: static;
    top: auto;
    left: auto;
    z-index: 2;
    transform: rotate(-6deg);
    flex-shrink: 0;
    font-size: 0.66rem;
    min-height: 2rem;
    height: 2rem;
    padding: 0 0.55rem 0 0.3rem;
  }
  .nv-hero-free-ico {
    transform: rotate(-14deg);
    width: 1.1rem;
    height: 1.1rem;
  }
  .nv-hero-leadbox {
    direction: rtl;
    width: fit-content;
    max-width: min(100%, 15rem);
    height: 2.15rem;
    min-height: 0 !important;
    padding: 0.12rem;
    border-radius: 0.55rem;
  }
  .nv-hero-cta {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem;
    width: auto;
    max-width: 100%;
    height: 100%;
    padding: 0 0.12rem 0 0.45rem;
    min-height: 0 !important;
    text-align: start;
  }
  .nv-hero-cta-label {
    flex: 0 1 auto;
    min-width: 0;
    font-size: 0.66rem;
    line-height: 1.2;
    text-align: start;
    white-space: nowrap;
    max-width: none;
  }
  .nv-hero-cta-action {
    margin-inline-start: 0;
    flex-shrink: 0;
    width: auto;
    min-height: 1.75rem;
    height: 1.75rem;
    padding: 0 0.65rem;
    font-size: 0.7rem;
    border-radius: 0.4rem;
  }
  .nv-hero-actions {
    margin-top: 1.1rem;
    gap: 0.4rem;
  }
  .nv-hero-actions.is-lead-open .nv-hero-free {
    display: none;
  }
  .nv-hero-actions.is-lead-open .nv-hero-leadwrap {
    direction: rtl;
    width: min(22rem, 100%);
  }
  .nv-hero-actions.is-lead-open .nv-hero-leadbox {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 3.25rem !important;
    padding: 0.22rem;
    overflow: hidden;
  }
  .nv-hero-actions.is-lead-open .nv-hero-cta {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nv-hero-actions.is-lead-open .nv-hero-leadform {
    position: relative;
    inset: auto;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nv-hero-leadfield {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 0.2rem;
    padding: 0.1rem;
    min-height: 2.85rem;
  }
  .nv-hero-leadico {
    width: 2.1rem;
    height: 2.1rem;
    margin-inline-start: 0.1rem;
    border-radius: 0.45rem;
  }
  .nv-hero-leadfield input {
    font-size: 0.9rem;
    padding: 0 0.4rem;
  }
  .nv-hero-leadsubmit {
    grid-column: auto;
    width: auto;
    min-height: 2.35rem;
    padding: 0 0.85rem;
    font-size: 0.78rem;
    border-radius: 0.5rem;
  }
  .nv-hero {
    padding: 1.15rem 0 0.35rem;
  }
  .nv-hero-badges {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0 auto 0.85rem;
    gap: 0.4rem;
  }
  .nv-hero-badge {
    width: fit-content;
    max-width: 100%;
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
    white-space: normal;
    line-height: 1.4;
    text-align: start;
  }
  .nv-hero-badge:nth-child(1) {
    align-self: flex-start;
  }
  .nv-hero-badge:nth-child(2) {
    align-self: center;
  }
  .nv-hero-badge:nth-child(3) {
    align-self: flex-end;
  }
  .nv-hero-proof {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin-top: 1.15rem;
    margin-inline: auto;
    gap: 0.45rem 0.7rem;
    border-radius: 999px;
    padding: 0.4rem 0.65rem 0.4rem 0.45rem;
  }
  .nv-hero-proof-copy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.15rem 0.35rem;
    white-space: normal;
    text-align: center;
    row-gap: 0.15rem;
  }
  .nv-hero-proof-copy b {
    font-size: 0.95rem;
  }
  .nv-hero-proof-copy span {
    font-size: 0.76rem;
  }
  .nv-hero-proof-copy em {
    flex: 0 0 auto;
    justify-content: center;
    margin-inline-start: 0.15rem;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    font-size: 0.68rem;
  }
  .nv-hero-proof-copy em::before {
    content: "·";
    margin-inline-end: 0.3rem;
    color: #94a3b8;
    font-weight: 900;
  }
  .nv-hero-proof-rule { display: none; }
  .nv-hero-avatars {
    justify-content: center;
    width: auto;
    padding-inline: 0;
    gap: 0.28rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }
  .nv-hero-avatars span {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 0.5rem;
  }
  .nv-hero-avatars span svg {
    width: 13px;
    height: 13px;
  }
  .nv-top-banner-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: center;
    gap: 0;
    padding: 0.45rem 0;
    min-height: 0;
  }
  .nv-top-announce {
    width: 100%;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.4rem;
    min-width: 0;
  }
  .nv-top-badge {
    margin-top: 0;
    flex-shrink: 0;
  }
  .nv-top-announce-text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.74rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: start;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
  }
  .nv-top-cta {
    display: none;
  }
  .nv-hero-stage {
    min-height: 0;
    margin-top: 1.55rem;
    width: 100%;
  }
  .nv-hero-ring,
  .nv-float { display: none; }
  .nv-dash {
    width: 100%;
    transform: none;
  }
  .nv-console-body { min-height: 11.5rem; }
  .nv-console-code { font-size: 0.72rem; min-height: 9.8rem; }
  .nv-why-row.is-flip .nv-why-art,
  .nv-why-row.is-flip .nv-why-copy { order: unset; }
}

/* Small phones + mobile nav scroll lock */
body.nv-nav-open {
  overflow: hidden;
  touch-action: none;
}
body.nv-nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 185;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(2px);
}
@media (max-width: 640px) {
  :root {
    --nv-shell: min(100% - 1.25rem, 1180px);
  }
  .nv-hero {
    padding: 0.85rem 0 0.25rem;
  }
  .nv-hero-badges {
    margin-bottom: 0.7rem;
    gap: 0.35rem;
  }
  .nv-top-banner-inner {
    padding-block: 0.4rem;
  }
  .nv-top-badge {
    font-size: 0.6rem;
    min-height: 1.3rem;
    padding: 0.08rem 0.42rem;
  }
  .nv-top-announce-text {
    font-size: 0.68rem;
    line-height: 1.25;
  }
  .nv-contact-stats li {
    min-width: 100%;
    flex: 1 1 100%;
  }
  .nv-hero-leadwrap {
    width: fit-content;
    max-width: 100%;
    gap: 0.3rem;
  }
  .nv-hero-free {
    font-size: 0.62rem;
    min-height: 1.9rem;
    height: 1.9rem;
    padding: 0 0.48rem 0 0.26rem;
  }
  .nv-hero-free-ico {
    width: 1rem;
    height: 1rem;
  }
  .nv-hero-leadbox {
    height: 2.05rem;
    max-width: min(100%, 14.25rem);
    padding: 0.1rem;
  }
  .nv-hero-actions.is-lead-open .nv-hero-leadbox {
    min-height: 3.1rem !important;
  }
  .nv-hero-cta {
    gap: 0.28rem;
    padding: 0 0.1rem 0 0.38rem;
  }
  .nv-hero-cta-label {
    font-size: 0.62rem;
  }
  .nv-hero-cta-action {
    min-height: 1.65rem;
    height: 1.65rem;
    padding: 0 0.58rem;
    font-size: 0.66rem;
  }
  .nv-hero-leadfield {
    min-height: 2.7rem;
  }
  .nv-hero-leadico {
    width: 1.95rem;
    height: 1.95rem;
  }
  .nv-hero-leadfield input {
    font-size: 0.84rem;
    letter-spacing: 0.04em;
  }
  .nv-hero-leadsubmit {
    min-height: 2.2rem;
    padding: 0 0.75rem;
    font-size: 0.74rem;
  }
  .nv-hero-proof {
    width: fit-content;
    max-width: 100%;
    margin-top: 0.95rem;
    padding: 0.35rem 0.55rem 0.35rem 0.4rem;
    gap: 0.35rem 0.55rem;
    border-radius: 999px;
  }
  .nv-hero-proof-copy b { font-size: 0.88rem; }
  .nv-hero-proof-copy span { font-size: 0.7rem; }
  .nv-hero-proof-copy em {
    font-size: 0.64rem;
    margin-inline-start: 0.1rem;
  }
  .nv-hero-avatars {
    gap: 0.22rem;
  }
  .nv-hero-avatars span {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 0.45rem;
  }
  .nv-hero-avatars span svg {
    width: 12px;
    height: 12px;
  }
  .nv-why-row {
    gap: 1.35rem;
    padding: 1.75rem 0;
  }
  .nv-why-art,
  .nv-why-art img {
    min-height: 12rem;
  }
  .nv-lic-grid {
    grid-template-columns: 1fr;
  }
  .nv-deal {
    padding: 0.9rem 0.8rem;
    gap: 0.75rem;
  }
  .nv-deal-badge {
    width: 5rem;
    height: 4rem;
  }
  .nv-deal-badge strong {
    font-size: 1.95rem;
  }
  .nv-deal-copy h3 {
    font-size: 0.88rem;
  }
  .nv-deal-code {
    padding: 0.5rem 0.55rem;
  }
  .nv-deal-code-btn {
    min-height: 2.15rem;
    font-size: 0.74rem;
  }
  .nv-deal-units {
    max-width: 100%;
    gap: 0.1rem;
  }
  .nv-deal-unit span {
    font-size: 0.6rem;
  }
  .nv-deal-unit b {
    min-width: 2rem;
    min-height: 2rem;
    font-size: 0.82rem;
    padding: 0.2rem;
    border-radius: 0.55rem;
  }
  .nv-deal-units > i {
    padding-bottom: 0.35rem;
    font-size: 0.75rem;
  }
  .nv-deal-timer p {
    font-size: 0.66rem;
  }
  .nv-plans-card {
    flex-basis: min(92vw, 21rem);
  }
  .nv-blog-card {
    flex-basis: min(92vw, 22rem);
  }
}
@media (max-width: 480px) {
  .nv-brand-sub {
    font-size: 0.62rem;
    max-width: min(11.5rem, calc(100vw - 7.5rem));
    white-space: normal;
    line-height: 1.25;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .nv-header-inner { min-height: 3.75rem; gap: 0.65rem; }
  .nv-top-announce-text {
    font-size: 0.64rem;
  }
  .nv-quote-slide {
    flex-basis: calc(100vw - 1.5rem);
    padding: 1.35rem 1.1rem;
  }
  .nv-cta {
    padding: 1.65rem 0.85rem 1.85rem;
  }
  .nv-cta-inner {
    padding: 1.2rem 0.85rem 1.35rem;
    border-radius: 12px;
  }
  .nv-cta h2 {
    font-size: 1rem;
  }
  .nv-cta-smile {
    width: 1.45rem;
    height: 1.35rem;
  }
  .nv-cta p {
    font-size: 0.82rem;
  }
  .nv-cta-btn {
    font-size: 0.84rem;
    min-height: 2.85rem;
    padding: 0.65rem 0.85rem;
  }
  .nv-cta-action span {
    font-size: 0.7rem;
  }
  .nv-footer-nav {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .nv-footer-meta {
    gap: 0.5rem 0.35rem;
  }
  .nv-footer-namads {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.25rem;
  }
  .nv-footer-namad {
    min-height: 0;
    padding: 0.18rem;
  }
  .nv-footer-namad img {
    height: 1.85rem;
  }
  .nv-footer-channel {
    padding: 0.45rem 0.4rem;
    gap: 0.35rem;
  }
  .nv-footer-channel-ico {
    width: 1.55rem;
    height: 1.55rem;
  }
  .nv-footer-channel b {
    font-size: 0.66rem;
  }
  .nv-footer-channel small {
    font-size: 0.6rem;
  }
  .nv-footer-bottom {
    border-radius: 0.85rem;
    padding: 0.75rem 0.8rem;
  }
  .nv-footer-bottom p,
  .nv-footer-copy {
    font-size: 0.66rem;
  }
}

/* —— Inner pages (about, services, portfolio, …) —— */
.nv-page-process .nv-process-flow {
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
}
.nv-inner-hero {
  padding: 3rem 0 2.5rem;
}
.nv-inner-hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nv-about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}
.nv-about-copy p {
  margin: 0 0 1.15rem;
  color: var(--nv-mute);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.95;
}
.nv-about-copy p:last-of-type { margin-bottom: 0; }
.nv-about-visual {
  min-height: 18rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(145deg, rgba(0, 102, 254, 0.12), rgba(245, 158, 11, 0.08)),
    url("../samples/portfolio/work-plan-arch.webp") center/cover no-repeat;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.35);
}
.nv-svc-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem 2rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.nv-svc-block:first-child { padding-top: 0; }
.nv-svc-block:last-child { border-bottom: 0; padding-bottom: 0; }
.nv-svc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  min-height: 2.35rem;
  margin: 0 0 0.65rem;
  border-radius: 0.55rem;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--nv-blue);
  background: rgba(0, 102, 254, 0.08);
  border: 1px solid rgba(0, 102, 254, 0.14);
}
.nv-svc-block h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 900;
  color: #0b1f44;
  line-height: 1.45;
}
.nv-svc-block .nv-svc-desc {
  margin: 0.75rem 0 0;
  color: var(--nv-mute);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.9;
  max-width: 36ch;
}
.nv-svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.nv-svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.75;
}
.nv-svc-list li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--nv-blue);
}
.nv-portfolio-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1.35rem;
}
.nv-portfolio-head h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 900;
  color: #0b1f44;
}
.nv-portfolio-head p {
  margin: 0.75rem 0 0;
  color: var(--nv-mute);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.85;
}
.nv-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.nv-portfolio-filter {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  color: #64748b;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.16s, border-color 0.16s, color 0.16s;
}
.nv-portfolio-filter.is-active,
.nv-portfolio-filter:hover {
  color: #fff;
  background: #0b1f44;
  border-color: #0b1f44;
}

.nv-portfolio-filter-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: 0.35rem;
}
.nv-portfolio-filter-ico svg {
  display: block;
}
.nv-portfolio-filter {
  gap: 0.15rem;
}
.nv-portfolio-filters[data-nv-portfolio-collapsed="1"] .nv-portfolio-filter.is-extra {
  display: none;
}
.nv-portfolio-filters[data-nv-portfolio-collapsed="0"] .nv-portfolio-more {
  display: none;
}
.nv-portfolio-more {
  letter-spacing: 0.12em;
  font-weight: 900;
  min-width: 2.6rem;
  justify-content: center;
}

.nv-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.nv-portfolio-card.is-hidden { display: none; }
.nv-portfolio-link {
  display: block;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 36px -24px rgba(15, 23, 42, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  color: inherit;
  text-decoration: none;
}
.nv-portfolio-link:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 254, 0.22);
  box-shadow: 0 22px 44px -22px rgba(0, 102, 254, 0.28);
}
.nv-portfolio-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #e2e8f0;
  overflow: hidden;
}
.nv-portfolio-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nv-portfolio-meta {
  padding: 1rem 1.05rem 1.1rem;
}
.nv-portfolio-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  color: #1a3d82;
  background: rgba(0, 102, 254, 0.08);
  border: 1px solid rgba(0, 102, 254, 0.12);
}
.nv-portfolio-meta h3 {
  margin: 0.65rem 0 0.35rem;
  font-size: 1rem;
  font-weight: 900;
  color: #0b1f44;
  line-height: 1.45;
}
.nv-portfolio-meta p {
  margin: 0;
  color: var(--nv-mute);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.75;
}
.nv-games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.nv-game-card {
  padding: 1.25rem 1.15rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 32px -24px rgba(15, 23, 42, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nv-game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 102, 254, 0.18);
  box-shadow: 0 18px 36px -22px rgba(0, 102, 254, 0.22);
}
.nv-game-ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: rgba(0, 102, 254, 0.08);
  border: 1px solid rgba(0, 102, 254, 0.12);
  margin-bottom: 0.85rem;
}
.nv-game-ico img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
}
.nv-game-card h2 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 900;
  color: #0b1f44;
  line-height: 1.45;
}
.nv-game-card p {
  margin: 0.55rem 0 0;
  color: var(--nv-mute);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.8;
}
.nv-page-cta {
  padding-top: 0;
  padding-bottom: 3.5rem;
}
.nv-page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
  padding: 1.35rem 1.25rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(135deg, rgba(0, 102, 254, 0.08), rgba(245, 158, 11, 0.06)),
    #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.28);
}
.nv-page-cta-copy h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
  color: #0b1f44;
  line-height: 1.45;
}
.nv-page-cta-copy p {
  margin: 0.45rem 0 0;
  color: var(--nv-mute);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.8;
  max-width: 42rem;
}
.nv-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
@media (max-width: 960px) {
  .nv-about-split,
  .nv-svc-block {
    grid-template-columns: 1fr;
  }
  .nv-portfolio-grid,
  .nv-games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nv-page-cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .nv-page-cta-actions {
    justify-content: center;
  }
  .nv-page-cta-actions .nv-btn { width: 100%; }
}
@media (max-width: 640px) {
  .nv-inner-hero { padding: 2.25rem 0 1.85rem; }
  .nv-about-visual { min-height: 14rem; }
  .nv-portfolio-grid,
  .nv-games-grid {
    grid-template-columns: 1fr;
  }
  .nv-portfolio-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
  }
  .nv-portfolio-filters::-webkit-scrollbar { display: none; }
  .nv-portfolio-filter { flex: 0 0 auto; }
}

/* filt5 20260915-024445 */
