/* =========================================================================
   NEXVIGIL AI — Smadlytics Solutions Page
   ========================================================================= */

.nv-page {
  --nv-navy-900: #002d5c;
  /* Smadlytics deep blue text */
  --nv-navy-800: #003366;
  --nv-navy-700: #004c70;
  --nv-navy-600: #006494;
  --nv-blue-500: #0077b6;
  /* Smadlytics primary blue */
  --nv-blue-600: #0096c7;
  --nv-teal-400: #00b4d8;
  /* Cyan/Teal data accent */
  --nv-accent-orange: #ff4a17;
  /* Signature Smadlytics orange */
  --nv-amber-500: #d97706;
  /* medium risk */
  --nv-coral-500: #dc2626;
  /* high risk */
  --nv-ink: #0d1b2a;
  --nv-slate-600: #4a5568;
  --nv-slate-400: #64748b;
  --nv-mist-50: #f8fafc;
  --nv-mist-100: #e8f3f8;
  --nv-line: #e2e7f0;
  --nv-line-dark: #cbd5e1;
  --nv-white: #ffffff;

  --nv-font-display: "Poppins", "Segoe UI", Arial, sans-serif;
  --nv-font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --nv-radius-sm: 8px;
  --nv-radius-md: 14px;
  --nv-radius-lg: 22px;
  --nv-radius-pill: 999px;

  --nv-shadow-card: 0 4px 20px rgba(0, 45, 92, 0.05), 0 12px 32px -16px rgba(0, 45, 92, 0.08);
  --nv-shadow-lift: 0 15px 40px -15px rgba(0, 45, 92, 0.15);

  --nv-container: 1180px;
  --nv-gutter: clamp(20px, 5vw, 64px);

  font-family: var(--nv-font-body);
  color: var(--nv-ink);
  background: var(--nv-white);
  -webkit-font-smoothing: antialiased;
}

.nv-page *,
.nv-page *::before,
.nv-page *::after {
  box-sizing: border-box;
}

.nv-page img {
  max-width: 100%;
  display: block;
}

.nv-page h1,
.nv-page h2,
.nv-page h3,
.nv-page h4 {
  font-family: var(--nv-font-display);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

.nv-page p {
  margin: 0;
}

.nv-container {
  max-width: var(--nv-container);
  margin-inline: auto;
  padding-inline: var(--nv-gutter);
}

.nv-section {
  padding-block: clamp(56px, 9vw, 108px);
  background: #ffffff;
}

.nv-section--tight {
  padding-block: clamp(40px, 6vw, 72px);
}

.nv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nv-font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nv-accent-orange);
  margin-bottom: 14px;
}

.nv-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nv-accent-orange);
  box-shadow: 0 0 0 4px rgba(255, 74, 23, 0.18);
}

.nv-h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  color: #002d5c;
  max-width: 720px;
}

.nv-lede {
  font-size: clamp(16px, 1.6vw, 18.5px);
  color: var(--nv-slate-600);
  max-width: 620px;
  margin-top: 16px;
  line-height: 1.6;
}

.nv-section-head {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.nv-section-head--center {
  text-align: center;
  margin-inline: auto;
}

.nv-section-head--center .nv-lede {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.nv-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: var(--nv-font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--nv-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.nv-btn:focus-visible {
  outline: 3px solid var(--nv-accent-orange);
  outline-offset: 2px;
}

.nv-btn--primary {
  background: linear-gradient(135deg, #ff4a17 0%, #e03e0f 100%);
  color: var(--nv-white);
  box-shadow: 0 8px 25px rgba(255, 74, 23, 0.35);
}

.nv-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 74, 23, 0.45);
  color: #fff;
}

.nv-btn--ghost {
  background: transparent;
  color: #0077b6;
  border: 2px solid #0077b6;
}

.nv-btn--ghost:hover {
  border-color: #0077b6;
  background: #0077b6;
  transform: translateY(-1px);
  color: #fff;
}

.nv-btn--ghost-dark {
  background: transparent;
  color: var(--nv-ink);
  border: 1.5px solid var(--nv-line);
}

.nv-btn--ghost-dark:hover {
  border-color: var(--nv-slate-400);
  transform: translateY(-1px);
}

.nv-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* ================================= HERO (NORMAL WHITE BACKGROUND) ================================= */
.nv-hero {
  position: relative;
  background: #ffffff;
  color: var(--nv-ink);
  overflow: hidden;
  padding-block: clamp(64px, 10vw, 110px) clamp(48px, 7vw, 90px);
}

.nv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 119, 182, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 119, 182, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70% 60% at 70% 30%, black, transparent);
  pointer-events: none;
}

.nv-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

.nv-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--nv-font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff4a17;
  background: rgba(255, 74, 23, 0.1);
  border: 1px solid rgba(255, 74, 23, 0.3);
  padding: 8px 14px;
  border-radius: var(--nv-radius-pill);
  margin-bottom: 22px;
}

.nv-hero-kicker .nv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4a17;
  animation: nvPulseDot 1.8s ease-in-out infinite;
}

.nv-hero h1 {
  font-size: clamp(15px, 1.4vw, 16px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 14px;
}

.nv-hero-headline {
  font-family: var(--nv-font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #002d5c;
  max-width: 16ch;
}

.nv-hero-headline em {
  font-style: normal;
  color: #ff4a17;
}

.nv-hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.65;
  color: #4a5568;
  max-width: 52ch;
}

.nv-hero-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.nv-hero-flow span {
  font-family: var(--nv-font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #002d5c;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 7px 13px;
  border-radius: var(--nv-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.nv-hero-flow span:not(:last-child)::after {
  content: "→";
  color: #0077b6;
  margin-left: 8px;
}

/* ── VISUAL MOCKUP 1: Hero visual (DARKISH BLUE THEME AS REQUESTED) ── */
.nv-hero-visual {
  position: relative;
  border-radius: var(--nv-radius-lg);
  background: linear-gradient(145deg, #0b1f3f 0%, #0d264d 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  box-shadow: 0 20px 50px -15px rgba(11, 31, 63, 0.4);
}

.nv-feed {
  position: relative;
  border-radius: var(--nv-radius-md);
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(160deg, #071326 0%, #0a1b36 65%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 26px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nv-feed-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(53, 215, 196, 0) 0%, rgba(53, 215, 196, 0.12) 50%, rgba(53, 215, 196, 0) 100%);
  animation: nvScan 4.2s linear infinite;
}

.nv-bbox {
  position: absolute;
  border: 2px solid #2bb8c4;
  border-radius: 4px;
  box-shadow: 0 0 0 3000px rgba(0, 0, 0, 0) inset;
}

.nv-bbox::after {
  content: attr(data-label);
  position: absolute;
  top: -22px;
  left: -1.5px;
  font-family: var(--nv-font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0b1f3f;
  background: #2bb8c4;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.nv-bbox--alert {
  border-color: #ff4a17;
}

.nv-bbox--alert::after {
  background: #ff4a17;
  color: var(--nv-white);
}

.nv-hero-readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.nv-readout-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--nv-radius-sm);
  padding: 10px 12px;
}

.nv-readout-chip .nv-r-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b98ad;
}

.nv-readout-chip .nv-r-value {
  font-family: var(--nv-font-display);
  font-size: 14.5px;
  font-weight: 650;
  color: #ffffff;
  margin-top: 3px;
}

.nv-readout-chip .nv-r-value.nv-status-live {
  color: #2bb8c4;
}

.nv-readout-chip .nv-r-value.nv-status-high {
  color: #ff4a17;
}

/* ============================ PROBLEM SECTION ============================ */
.nv-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.nv-compare-mini {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nv-compare-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--nv-radius-md);
  background: var(--nv-mist-50);
  border: 1px solid var(--nv-line);
}

.nv-compare-row .nv-tag {
  flex-shrink: 0;
  font-family: var(--nv-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--nv-radius-pill);
}

.nv-tag--before {
  background: #fdecea;
  color: #b3463b;
}

.nv-tag--after {
  background: #e6f9f6;
  color: #1b8f81;
}

.nv-compare-row p {
  color: var(--nv-slate-600);
  font-size: 15px;
  line-height: 1.55;
}

.nv-compare-row strong {
  color: var(--nv-ink);
}

/* ============================== HOW IT WORKS ============================== */
.nv-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: nvstep;
}

.nv-flow::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--nv-line) 0 10px, transparent 10px 18px);
  z-index: 0;
}

.nv-flow-step {
  position: relative;
  z-index: 1;
  padding-inline: 14px;
}

.nv-flow-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #ffffff;
  font-family: var(--nv-font-display);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 119, 182, 0.3);
}

.nv-flow-step h3 {
  font-size: 18px;
  font-weight: 650;
  color: #002d5c;
  margin-bottom: 8px;
}

.nv-flow-step p {
  color: var(--nv-slate-600);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ============================== CAPABILITY CARDS ============================== */
.nv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nv-card {
  background: var(--nv-white);
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-md);
  padding: 26px 24px;
  box-shadow: var(--nv-shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nv-shadow-lift);
}

.nv-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--nv-white);
  box-shadow: 0 5px 18px rgba(0, 119, 182, 0.25);
}

.nv-card h3 {
  font-size: 17px;
  font-weight: 650;
  color: #002d5c;
  margin-bottom: 9px;
}

.nv-card p {
  color: var(--nv-slate-600);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================== EDGE AI SECTION (WHITE BACKGROUND) ============================== */
.nv-edge {
  background: #ffffff;
  color: var(--nv-ink);
  position: relative;
  overflow: hidden;
}

.nv-edge .nv-eyebrow {
  color: #ff4a17;
}

.nv-edge .nv-eyebrow::before {
  background: #ff4a17;
}

.nv-edge .nv-h2 {
  color: #002d5c;
}

.nv-edge .nv-lede {
  color: #4a5568;
}

.nv-edge-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.nv-edge-points {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.nv-edge-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: #33415c;
}

.nv-edge-points li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #0077b6;
}

.nv-arch {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.nv-arch-node {
  background: #ffffff;
  border: 1px solid #e2e7f0;
  border-radius: var(--nv-radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.nv-arch-node .nv-arch-badge {
  font-family: var(--nv-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0077b6;
  width: 84px;
  flex-shrink: 0;
}

.nv-arch-node strong {
  display: block;
  font-family: var(--nv-font-display);
  font-size: 15px;
  font-weight: 650;
  color: #002d5c;
}

.nv-arch-node span.nv-arch-desc {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

.nv-arch-node--edge {
  border: 2px solid #0077b6;
  background: #f0f9ff;
}

.nv-arch-connector {
  width: 2px;
  height: 26px;
  margin-left: 40px;
  background: linear-gradient(#0077b6, transparent);
  position: relative;
  overflow: hidden;
}

.nv-arch-connector::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -20px;
  width: 6px;
  height: 20px;
  background: #0077b6;
  border-radius: 3px;
  filter: blur(1px);
  animation: nvFlowDown 2.4s ease-in infinite;
}

.nv-arch-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-left: 0;
}

/* ── VISUAL MOCKUP 2: Security Event Dashboard Mockup (DARKISH BLUE THEME AS REQUESTED) ── */
.nv-dash-wrap {
  display: flex;
  justify-content: center;
}

.nv-dash {
  width: 100%;
  max-width: 760px;
  background: #0b1f3f;
  border-radius: var(--nv-radius-lg);
  border: 1px solid #24406e;
  box-shadow: 0 20px 50px -15px rgba(11, 31, 63, 0.4);
  overflow: hidden;
  color: #ffffff;
}

.nv-dash-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nv-dash-titlebar .nv-dash-name {
  font-family: var(--nv-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b98ad;
}

.nv-dash-dots {
  display: flex;
  gap: 6px;
}

.nv-dash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.nv-dash-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
}

.nv-dash-cam {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #071326, #0a1b36 70%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 24px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.nv-dash-cam-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--nv-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 4px 9px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nv-dash-cam-label .nv-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4a17;
  animation: nvPulseDot 1.4s infinite;
}

.nv-dash-panel {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #0b1f3f;
}

.nv-dash-panel h4 {
  font-family: var(--nv-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b98ad;
}

.nv-detect-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 8px;
}

.nv-detect-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 11px;
  border-radius: 8px;
  color: #ffffff;
}

.nv-detect-list li b {
  font-weight: 650;
}

.nv-badge {
  font-family: var(--nv-font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: var(--nv-radius-pill);
}

.nv-badge--high {
  background: rgba(239, 106, 91, 0.2);
  color: #ff4a17;
}

.nv-badge--med {
  background: rgba(242, 169, 59, 0.2);
  color: var(--nv-amber-500);
}

.nv-badge--ok {
  background: rgba(53, 215, 196, 0.2);
  color: #2bb8c4;
}

.nv-dash-event {
  margin-top: auto;
  border-radius: var(--nv-radius-sm);
  border: 1px solid rgba(239, 106, 91, 0.4);
  background: rgba(239, 106, 91, 0.15);
  padding: 12px 14px;
}

.nv-dash-event .nv-event-title {
  font-family: var(--nv-font-display);
  font-weight: 650;
  font-size: 13.5px;
  color: #ffffff;
}

.nv-dash-event .nv-event-time {
  font-size: 12px;
  color: #8b98ad;
  margin-top: 2px;
}

.nv-dash-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.nv-dash-actions button {
  flex: 1;
  font-family: var(--nv-font-body);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}

.nv-dash-actions button.nv-primary-mini {
  background: #ff4a17;
  border-color: #ff4a17;
  color: #ffffff;
}

.nv-dash-caption {
  text-align: center;
  font-size: 13px;
  color: var(--nv-slate-600);
  margin-top: 16px;
}

/* ============================== USE CASE ============================== */
.nv-property {
  position: relative;
  border-radius: var(--nv-radius-lg);
  background: linear-gradient(135deg, #f8fafc 0%, #e8f3f8 100%);
  border: 1px solid var(--nv-line);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.nv-zone {
  background: var(--nv-white);
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nv-zone .nv-zone-name {
  font-family: var(--nv-font-display);
  font-weight: 650;
  font-size: 15px;
  color: #002d5c;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nv-zone p {
  font-size: 13.5px;
  color: var(--nv-slate-600);
  line-height: 1.5;
}

.nv-zone .nv-zone-status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nv-zone .nv-zone-status.nv-ok {
  color: #0077b6;
}

.nv-zone .nv-zone-status.nv-watch {
  color: #ff4a17;
}

/* ============================== WHY NEXVIGIL ============================== */
.nv-versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 4vw, 40px);
  align-items: center;
}

.nv-versus-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nv-versus-col h3 {
  font-family: var(--nv-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.nv-versus-col.nv-old h3 {
  color: var(--nv-slate-400);
}

.nv-versus-col.nv-new h3 {
  color: #0077b6;
}

.nv-versus-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  padding: 12px 14px;
  border-radius: var(--nv-radius-sm);
}

.nv-old .nv-versus-item {
  background: var(--nv-mist-50);
  color: var(--nv-slate-600);
}

.nv-new .nv-versus-item {
  background: linear-gradient(90deg, rgba(0, 119, 182, 0.08), rgba(0, 180, 216, 0.08));
  color: var(--nv-ink);
  font-weight: 600;
  border: 1px solid rgba(0, 119, 182, 0.15);
}

.nv-versus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0077b6;
  color: #ffffff;
  font-family: var(--nv-font-display);
  font-weight: 700;
  font-size: 13px;
}

/* ============================== FINAL CTA (LIGHT GREY CARD ABOVE FOOTER) ============================== */
.nv-final-cta {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f3f8 100%);
  color: var(--nv-ink);
  border: 1px solid #e2e7f0;
  border-radius: var(--nv-radius-lg);
  padding: clamp(40px, 7vw, 76px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 45, 92, 0.06);
}

.nv-final-cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(0, 180, 216, 0.1), transparent 55%);
}

.nv-final-cta>* {
  position: relative;
}

.nv-final-cta .nv-h2 {
  color: #002d5c;
  margin-inline: auto;
}

.nv-final-cta .nv-lede {
  color: #4a5568;
  margin-inline: auto;
}

.nv-final-cta .nv-cta-row {
  justify-content: center;
}

/* ============================== ANIMATIONS ============================== */
@keyframes nvPulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.8);
  }
}

@keyframes nvScan {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(340%);
  }
}

@keyframes nvFlowDown {
  0% {
    top: -20px;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.nv-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.nv-reveal.nv-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .nv-page * {
    animation: none !important;
    transition: none !important;
  }

  .nv-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 1024px) {
  .nv-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .nv-hero-grid,
  .nv-split,
  .nv-edge-grid {
    grid-template-columns: 1fr;
  }

  .nv-hero-visual {
    order: -1;
  }

  .nv-flow {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .nv-flow::before {
    display: none;
  }

  .nv-dash-body {
    grid-template-columns: 1fr;
  }

  .nv-dash-cam {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 720px) {
  .nv-cards {
    grid-template-columns: 1fr;
  }

  .nv-flow {
    grid-template-columns: 1fr;
  }

  .nv-property {
    grid-template-columns: 1fr;
  }

  .nv-versus {
    grid-template-columns: 1fr;
  }

  .nv-versus-divider {
    margin-inline: auto;
  }

  .nv-arch-split {
    grid-template-columns: 1fr;
  }

  .nv-hero-readout {
    grid-template-columns: 1fr 1fr;
  }

  .nv-btn {
    width: 100%;
    justify-content: center;
  }

  .nv-cta-row {
    flex-direction: column;
  }
}