:root {
  --nops-bg: #050912;
  --nops-surface: #0d1421;
  --nops-surface-2: #111b2c;
  --nops-card: #f4f7fb;
  --nops-card-dark: #101a2a;
  --nops-text: #0c1320;
  --nops-text-soft: #41506b;
  --nops-text-on-dark: #e9f2ff;
  --nops-line: rgba(13, 40, 81, 0.16);
  --nops-accent: #36b4ff;
  --nops-accent-2: #21d49f;
  --nops-warning: #f2b94b;
  --nops-radius: 16px;
  --nops-shadow: 0 20px 50px rgba(4, 13, 31, 0.16);
  --nops-header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.nops-body {
  margin: 0;
  font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  color: var(--nops-text);
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(35, 110, 255, 0.12), transparent 60%),
    radial-gradient(900px 420px at -10% 10%, rgba(33, 212, 159, 0.08), transparent 65%),
    linear-gradient(180deg, #f8fbff, #eef4fb);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.nops-shell {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.nops-main {
  min-height: calc(100vh - 320px);
}

.nops-skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  z-index: 1000;
}

.nops-skip-link:focus {
  left: 10px;
}

.nops-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 9, 18, 0.9);
  border-bottom: 1px solid rgba(222, 236, 255, 0.14);
}

.nops-header[data-scrolled='1'] {
  box-shadow: 0 14px 40px rgba(2, 8, 21, 0.4);
}

.nops-header-inner {
  min-height: var(--nops-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.nops-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--nops-text-on-dark);
}

.nops-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(125deg, #36b4ff, #21d49f);
  color: #041024;
  overflow: hidden;
}

.nops-brand-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nops-brand-text {
  display: grid;
  line-height: 1.05;
}

.nops-brand-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.03rem;
}

.nops-brand-text small {
  font-size: 0.74rem;
  color: rgba(233, 242, 255, 0.66);
}

.nops-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.nops-nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}

.nops-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nops-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nops-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nops-nav-list > li > a {
  color: rgba(233, 242, 255, 0.82);
  padding: 0.55rem 0.68rem;
  border-radius: 10px;
  font-size: 0.93rem;
}

.nops-nav-list > li > a:hover,
.nops-nav-list > li.current-menu-item > a {
  color: #f5f9ff;
  background: rgba(255, 255, 255, 0.08);
}

/* ─── DROPDOWN ─── */
.nops-has-dropdown {
  position: relative;
}

.nops-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(233, 242, 255, 0.82);
  padding: 0.55rem 0.68rem;
  border-radius: 10px;
  font-size: 0.93rem;
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.nops-dropdown-toggle:hover {
  color: #f5f9ff;
  background: rgba(255, 255, 255, 0.08);
}

.nops-dropdown-arrow {
  transition: transform 0.2s ease;
}

.nops-has-dropdown.is-open .nops-dropdown-arrow {
  transform: rotate(180deg);
}

.nops-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  padding: 0.5rem;
  margin: 0;
  list-style: none;
  background: rgba(10, 16, 28, 0.96);
  border: 1px solid rgba(233, 242, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.nops-has-dropdown.is-open .nops-dropdown {
  display: block;
  animation: nops-dropdown-in 0.2s ease;
}

@keyframes nops-dropdown-in {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nops-dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.88rem;
  color: rgba(233, 242, 255, 0.8);
  transition: background 0.15s ease, color 0.15s ease;
}

.nops-dropdown li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nops-dropdown-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nops-nav-cta {
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(125deg, #36b4ff, #21d49f);
  color: #041024;
}

.nops-nav-portal {
  border-radius: 999px;
  border: 1px solid rgba(220, 233, 255, 0.28);
  padding: 0.52rem 0.82rem;
  font-size: 0.84rem;
  color: #dce9ff;
}

.nops-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid rgba(220, 233, 255, 0.18);
  border-radius: 999px;
  padding: 0.14rem;
}

.nops-lang-item {
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1;
  color: rgba(220, 233, 255, 0.82);
  padding: 0.35rem 0.45rem;
  font-weight: 700;
}

.nops-lang-item.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.nops-section {
  padding: clamp(2.1rem, 5vw, 4.2rem) 0;
}

.nops-section-dark {
  background:
    radial-gradient(1000px 420px at 10% -20%, rgba(54, 180, 255, 0.2), transparent 60%),
    radial-gradient(800px 320px at 90% -20%, rgba(33, 212, 159, 0.16), transparent 65%),
    linear-gradient(150deg, #070d18, #0d1727 60%, #0b1320);
  color: var(--nops-text-on-dark);
}

.nops-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #3f8cff;
  font-weight: 700;
}

.nops-lead {
  margin: 0;
  color: var(--nops-text-soft);
  font-size: clamp(1.03rem, 1.8vw, 1.18rem);
  line-height: 1.5;
}

.nops-hero {
  color: var(--nops-text-on-dark);
  background:
    radial-gradient(980px 560px at 82% 7%, rgba(54, 180, 255, 0.26), transparent 65%),
    radial-gradient(920px 560px at -6% -5%, rgba(33, 212, 159, 0.16), transparent 68%),
    linear-gradient(160deg, #050a14 0%, #0a1322 45%, #08111f 100%);
  padding: clamp(3rem, 6vw, 5.6rem) 0 clamp(2.8rem, 5.5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.nops-hero::after {
  content: '';
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 34% 66% 66% 34% / 44% 30% 70% 56%;
  background: linear-gradient(120deg, rgba(54, 180, 255, 0.45), rgba(33, 212, 159, 0.22));
  filter: blur(20px);
}

.nops-hero-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: start;
}

.nops-hero-copy h1 {
  font-size: clamp(1.95rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 0.95rem;
  max-width: 13ch;
}

.nops-hero-copy .nops-lead {
  color: rgba(233, 242, 255, 0.84);
  margin-bottom: 1.15rem;
  max-width: 64ch;
}

.nops-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.nops-btn {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.66rem 1.02rem;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.nops-btn-primary {
  background: linear-gradient(125deg, #36b4ff, #21d49f);
  color: #031025;
}

.nops-btn-secondary {
  border-color: rgba(233, 242, 255, 0.24);
  color: #e9f2ff;
}

.nops-btn-secondary-dark {
  border-color: rgba(12, 18, 33, 0.22);
  color: #0b1930;
  background: rgba(255, 255, 255, 0.65);
}

.nops-hero-panel {
  border: 1px solid rgba(233, 242, 255, 0.2);
  background: rgba(13, 20, 33, 0.75);
  border-radius: var(--nops-radius);
  padding: 1rem 1.05rem;
}

.nops-hero-panel h2 {
  font-size: 1.08rem;
  margin-bottom: 0.6rem;
}

.nops-hero-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.48rem;
  color: rgba(233, 242, 255, 0.82);
  font-size: 0.94rem;
}

.nops-section-head {
  max-width: 70ch;
  margin-bottom: 1.15rem;
}

.nops-section-head h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
}

.nops-section-head p {
  margin: 0;
  color: var(--nops-text-soft);
}

.nops-section-dark .nops-section-head p {
  color: rgba(233, 242, 255, 0.74);
}

.nops-card-grid {
  display: grid;
  gap: 1rem;
}

.nops-card-grid-products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nops-card-grid-solutions,
.nops-card-grid-resources {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nops-card-grid-cases {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nops-card {
  background: var(--nops-card);
  border: 1px solid var(--nops-line);
  border-radius: var(--nops-radius);
  overflow: hidden;
  box-shadow: var(--nops-shadow);
  color: var(--nops-text);
}

.nops-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: block;
}

.nops-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.nops-card:hover .nops-card-media img {
  transform: scale(1.06);
}

.nops-card-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(54, 180, 255, 0.2), rgba(33, 212, 159, 0.24));
}

.nops-card-fallback-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.nops-card-body {
  padding: 0.9rem 0.95rem 1rem;
}

.nops-card-body h2,
.nops-card-body h3 {
  margin: 0.32rem 0 0.5rem;
  font-size: clamp(1.05rem, 1.9vw, 1.24rem);
  line-height: 1.2;
}

.nops-card-body p {
  margin: 0;
  color: var(--nops-text-soft);
  font-size: 0.95rem;
}

.nops-inline-link {
  display: inline-flex;
  margin-top: 0.65rem;
  font-weight: 700;
  color: #0e66cb;
  font-size: 0.9rem;
}

.nops-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(14, 102, 203, 0.11);
  color: #0e66cb;
}

.nops-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nops-meta-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #5a6881;
  font-size: 0.82rem;
}

.nops-tag-cloud {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.58rem;
  flex-wrap: wrap;
}

.nops-tag-cloud a,
.nops-tag-cloud li a {
  border-radius: 999px;
  border: 1px solid var(--nops-line);
  padding: 0.45rem 0.7rem;
  display: inline-flex;
  background: #fff;
  font-size: 0.86rem;
  font-weight: 600;
}

.nops-section-dark .nops-tag-cloud a,
.nops-section-dark .nops-tag-cloud li a {
  background: rgba(255, 255, 255, 0.06);
  color: #e9f2ff;
  border-color: rgba(233, 242, 255, 0.24);
}

.nops-empty {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px dashed var(--nops-line);
  background: #fff;
  color: var(--nops-text-soft);
}

.nops-page-hero h1,
.nops-blog-hero h1,
.nops-article-hero h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.12;
}

.nops-page-hero .nops-lead,
.nops-blog-hero .nops-lead,
.nops-article-hero .nops-lead {
  max-width: 70ch;
}

.nops-prose-wrap {
  padding-top: 0;
}

.nops-prose {
  line-height: 1.72;
  color: #1d2b45;
  max-width: 74ch;
}

.nops-prose p,
.nops-prose ul,
.nops-prose ol,
.nops-prose blockquote {
  margin: 0 0 1rem;
}

.nops-prose h2,
.nops-prose h3,
.nops-prose h4 {
  margin: 1.5rem 0 0.55rem;
}

.nops-prose a {
  color: #0e66cb;
  text-decoration: underline;
}

.nops-article-layout,
.nops-lead-engine-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
}

.nops-article-sidebar {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.nops-sidebar-card {
  border-radius: 14px;
  border: 1px solid var(--nops-line);
  background: #fff;
  padding: 0.88rem;
}

.nops-sidebar-card h2 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.nops-sidebar-card p,
.nops-sidebar-card ul {
  margin: 0;
  color: var(--nops-text-soft);
  font-size: 0.92rem;
}

.nops-sidebar-card ul {
  padding-left: 1rem;
  display: grid;
  gap: 0.38rem;
  margin-top: 0.45rem;
}

.nops-pagination {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.nops-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--nops-line);
  border-radius: 9px;
  margin: 0 0.2rem;
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.nops-pagination .page-numbers.current {
  background: #0f4f9a;
  color: #fff;
  border-color: #0f4f9a;
}

.nops-category-strip {
  padding-top: 0;
}

.nops-footer {
  background: linear-gradient(150deg, #060b15, #0a1221);
  color: #dce9ff;
  padding-top: 2.2rem;
  margin-top: 2rem;
}

.nops-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 1.2rem;
}

.nops-footer h3,
.nops-footer h4 {
  margin: 0 0 0.5rem;
}

.nops-footer p,
.nops-footer li,
.nops-footer a {
  color: rgba(220, 233, 255, 0.78);
  font-size: 0.92rem;
}

.nops-footer ul,
.nops-footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.nops-footer-cta {
  margin-top: 0.65rem;
  display: inline-flex;
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(220, 233, 255, 0.24);
  font-weight: 700;
}

.nops-footer-bottom {
  border-top: 1px solid rgba(220, 233, 255, 0.18);
  margin-top: 1.45rem;
  padding: 0.8rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nops-footer-bottom p {
  margin: 0;
}

.nops-footer-brand {
  margin-bottom: 0.6rem;
}

/* ─── HERO BADGE ─── */
.nops-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(233, 242, 255, 0.15);
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: rgba(233, 242, 255, 0.8);
}

.nops-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #21d49f;
  animation: nops-pulse 2s ease-in-out infinite;
}

.nops-pulse-dot.small {
  width: 6px;
  height: 6px;
}

@keyframes nops-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nops-gradient-text {
  background: linear-gradient(90deg, #21d49f, #36b4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nops-hero-sub {
  margin: 0;
  color: rgba(233, 242, 255, 0.5);
  font-size: 0.95rem;
}

.nops-btn-lg {
  padding: 0.88rem 1.6rem;
  font-size: 1rem;
  border-radius: 14px;
  gap: 0.5rem;
}

/* ─── DASHBOARD MOCKUP ─── */
.nops-hero-visual {
  position: relative;
  display: none;
}

.nops-dashboard-mock {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(233, 242, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.nops-mock-bar {
  background: var(--nops-surface-2);
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(233, 242, 255, 0.08);
}

.nops-mock-dots {
  display: flex;
  gap: 5px;
}

.nops-mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.nops-mock-dots span:nth-child(1) { background: rgba(239, 68, 68, 0.6); }
.nops-mock-dots span:nth-child(2) { background: rgba(234, 179, 8, 0.6); }
.nops-mock-dots span:nth-child(3) { background: rgba(34, 197, 94, 0.6); }

.nops-mock-url {
  flex: 1;
  background: var(--nops-surface);
  border-radius: 6px;
  padding: 0.22rem 0.55rem;
  font-family: monospace;
  font-size: 0.65rem;
  color: rgba(233, 242, 255, 0.4);
}

.nops-mock-body {
  background: var(--nops-bg);
  padding: 0.75rem;
  display: flex;
  gap: 0.6rem;
}

.nops-mock-sidebar {
  width: 54px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nops-mock-sidebar-item {
  height: 14px;
  border-radius: 4px;
  background: var(--nops-surface-2);
}

.nops-mock-sidebar-item.active {
  background: rgba(6, 182, 212, 0.2);
}

.nops-mock-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nops-mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.nops-mock-kpi {
  border-radius: 8px;
  background: var(--nops-surface);
  border: 1px solid rgba(233, 242, 255, 0.06);
  padding: 0.5rem;
}

.nops-mock-kpi-label {
  height: 6px;
  width: 60%;
  border-radius: 3px;
  background: rgba(233, 242, 255, 0.08);
  margin-bottom: 0.35rem;
}

.nops-mock-kpi-value {
  height: 14px;
  width: 40%;
  border-radius: 4px;
}

.nops-mock-kpi-value.green { background: rgba(34, 197, 94, 0.3); }
.nops-mock-kpi-value.cyan { background: rgba(6, 182, 212, 0.3); }
.nops-mock-kpi-value.violet { background: rgba(139, 92, 246, 0.3); }

.nops-mock-chart {
  border-radius: 8px;
  background: var(--nops-surface);
  border: 1px solid rgba(233, 242, 255, 0.06);
  padding: 0.55rem;
}

.nops-mock-chart-label {
  height: 6px;
  width: 80px;
  border-radius: 3px;
  background: rgba(233, 242, 255, 0.08);
  margin-bottom: 0.5rem;
}

.nops-mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 60px;
}

.nops-mock-bars > div {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(6, 182, 212, 0.4), rgba(6, 182, 212, 0.1));
}

.nops-mock-list {
  border-radius: 8px;
  background: var(--nops-surface);
  border: 1px solid rgba(233, 242, 255, 0.06);
  padding: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.nops-mock-list-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0;
}

.nops-mock-list-row::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--nops-surface-2);
  flex-shrink: 0;
}

.nops-mock-list-row::after {
  content: '';
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: var(--nops-surface-2);
}

.nops-mock-notification {
  position: absolute;
  right: -10px;
  top: 60px;
  background: var(--nops-surface);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  animation: nops-float 3s ease-in-out infinite;
}

.nops-mock-notif-text {
  font-size: 0.68rem;
  color: #06b6d4;
  font-weight: 600;
}

@keyframes nops-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ─── STATS BAR ─── */
.nops-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(233, 242, 255, 0.12);
}

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

.nops-stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.nops-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(233, 242, 255, 0.55);
  line-height: 1.3;
}

/* ─── PROBLEM SECTION ─── */
.nops-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.nops-problem-card {
  background: #fff;
  border: 1px solid var(--nops-line);
  border-radius: var(--nops-radius);
  padding: 1.4rem;
  position: relative;
  box-shadow: var(--nops-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nops-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(4, 13, 31, 0.22);
}

.nops-problem-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.55rem;
  line-height: 1.2;
}

.nops-problem-card p {
  margin: 0 0 0.8rem;
  color: var(--nops-text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.nops-problem-cost {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  font-weight: 700;
  font-size: 0.88rem;
}

.nops-problem-summary {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  text-align: center;
}

.nops-problem-summary p {
  margin: 0;
  font-weight: 600;
  color: #b91c1c;
}

/* ─── MODULE PIPELINE ─── */
.nops-module-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.nops-module-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--mod-color) 30%, transparent);
  background: color-mix(in srgb, var(--mod-color) 4%, transparent);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, border-color 0.25s ease;
  color: #e9f2ff;
  text-decoration: none;
}

.nops-module-card:hover {
  transform: scale(1.04);
  border-color: color-mix(in srgb, var(--mod-color) 60%, transparent);
}

.nops-module-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mod-color);
  flex-shrink: 0;
}

.nops-module-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--mod-color);
}

.nops-module-info span {
  font-size: 0.78rem;
  color: rgba(233, 242, 255, 0.6);
}

.nops-pipeline-connector {
  width: 28px;
  height: 2px;
  background: rgba(233, 242, 255, 0.18);
  flex-shrink: 0;
}

/* ─── ROI SECTION ─── */
.nops-roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.nops-roi-card {
  background: linear-gradient(135deg, rgba(33, 212, 159, 0.06), rgba(54, 180, 255, 0.04));
  border: 1px solid rgba(33, 212, 159, 0.15);
  border-radius: var(--nops-radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.nops-roi-card:hover {
  transform: translateY(-3px);
}

.nops-roi-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(90deg, #21d49f, #36b4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.nops-roi-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.nops-roi-card p {
  margin: 0;
  color: var(--nops-text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ─── SAVINGS TABLE ─── */
.nops-savings-table-wrap {
  background: #fff;
  border: 1px solid var(--nops-line);
  border-radius: var(--nops-radius);
  padding: 1.3rem;
  box-shadow: var(--nops-shadow);
}

.nops-savings-table-wrap h3 {
  font-size: 1.1rem;
  margin: 0 0 0.8rem;
}

.nops-savings-table {
  width: 100%;
  border-collapse: collapse;
}

.nops-savings-table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.92rem;
}

.nops-savings-table td:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
  color: var(--nops-text);
}

.nops-savings-table td:first-child {
  color: var(--nops-text-soft);
}

.nops-savings-table tfoot td {
  border-bottom: none;
  border-top: 2px solid var(--nops-text);
  font-weight: 700;
  font-size: 1rem;
  padding-top: 0.75rem;
  color: var(--nops-text);
}

/* ─── USP GRID ─── */
.nops-usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.nops-usp-card {
  padding: 1.3rem;
  border-radius: var(--nops-radius);
  border: 1px solid var(--nops-line);
  background: var(--nops-card);
  transition: border-color 0.25s ease, transform 0.3s, box-shadow 0.3s;
}

.nops-usp-card:hover {
  border-color: var(--nops-accent);
  transform: translateY(-2px);
  box-shadow: var(--nops-shadow);
}

.nops-usp-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--nops-text);
}

.nops-usp-card p,
.nops-usp-card li {
  margin: 0;
  color: var(--nops-text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.nops-section-dark .nops-usp-card {
  border-color: rgba(233, 242, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
.nops-section-dark .nops-usp-card:hover {
  border-color: rgba(233, 242, 255, 0.25);
}
.nops-section-dark .nops-usp-card h3 {
  color: #fff;
}
.nops-section-dark .nops-usp-card p,
.nops-section-dark .nops-usp-card li {
  color: rgba(233, 242, 255, 0.7);
}

/* ─── COMPARE TABLE ─── */
.nops-compare-table-wrap {
  border-radius: var(--nops-radius);
  border: 1px solid rgba(233, 242, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.2rem;
}

.nops-compare-table-wrap h3 {
  font-size: 1rem;
  margin: 0 0 0.7rem;
  color: #fff;
}

.nops-compare-table {
  width: 100%;
  border-collapse: collapse;
}

.nops-compare-table td {
  padding: 0.55rem 0.5rem;
  border-bottom: 1px solid rgba(233, 242, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(233, 242, 255, 0.7);
}

.nops-compare-table td:first-child {
  font-weight: 600;
  color: #e9f2ff;
  width: 180px;
}

.nops-compare-highlight td {
  border-bottom: none;
  border-top: 2px solid #21d49f;
  color: #21d49f !important;
  font-weight: 700;
}

.nops-compare-highlight td:first-child {
  color: #21d49f;
}

/* ─── TAG & CALL — FEATURE SPLIT ─── */
.nops-feature-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.nops-feature-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.nops-check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.nops-check-list li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--nops-text-soft);
  line-height: 1.45;
}

.nops-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #21d49f;
  font-size: 1.05rem;
}

/* Phone mockup */
.nops-qr-demo {
  display: flex;
  justify-content: center;
}

.nops-phone-frame {
  width: 220px;
  background: #0f172a;
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(233, 242, 255, 0.12);
}

.nops-phone-screen {
  background: linear-gradient(180deg, #0d1421, #111b2c);
  border-radius: 18px;
  padding: 1rem;
  min-height: 280px;
}

.nops-phone-header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(233, 242, 255, 0.1);
}

.nops-phone-title {
  font-weight: 700;
  color: #21d49f;
  font-size: 0.82rem;
}

.nops-phone-data {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.nops-phone-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
}

.nops-phone-row span:first-child {
  color: rgba(233, 242, 255, 0.5);
}

.nops-phone-row span:last-child {
  color: #e9f2ff;
  font-weight: 600;
}

.nops-phone-btn {
  background: linear-gradient(125deg, #36b4ff, #21d49f);
  color: #041024;
  border-radius: 10px;
  padding: 0.55rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.78rem;
}

/* ─── PERSONA GRID ─── */
.nops-persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.nops-persona-card {
  padding: 1.3rem;
  border-radius: var(--nops-radius);
  border: 1px solid rgba(233, 242, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease;
}

.nops-persona-card:hover {
  border-color: rgba(33, 212, 159, 0.3);
}

.nops-persona-role {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(54, 180, 255, 0.12);
  color: #36b4ff;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nops-persona-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: #fff;
  font-style: italic;
}

.nops-persona-card p {
  margin: 0;
  color: rgba(233, 242, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ─── SECURITY GRID ─── */
.nops-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.nops-security-card {
  background: #fff;
  border: 1px solid var(--nops-line);
  border-radius: var(--nops-radius);
  padding: 1.3rem;
  box-shadow: var(--nops-shadow);
  transition: transform 0.3s ease;
}

.nops-security-card:hover {
  transform: translateY(-3px);
}

.nops-security-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(33, 212, 159, 0.1), rgba(54, 180, 255, 0.1));
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
  color: #0e66cb;
}

.nops-security-card h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.nops-security-card p {
  margin: 0;
  color: var(--nops-text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ─── INDUSTRIES TAG CLOUD CENTER ─── */
.nops-tag-cloud-center {
  justify-content: center;
}

.nops-tag-cloud-center li span {
  border-radius: 999px;
  border: 1px solid rgba(233, 242, 255, 0.2);
  padding: 0.5rem 0.85rem;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  color: #e9f2ff;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.25s ease;
}

.nops-tag-cloud-center li span:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ─── FINAL CTA ─── */
.nops-final-cta {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(33, 212, 159, 0.15), transparent 60%),
    radial-gradient(600px 300px at 50% 100%, rgba(54, 180, 255, 0.1), transparent 60%),
    linear-gradient(180deg, #f8fbff, #eef4fb);
  padding: clamp(3rem, 6vw, 5rem) 0 !important;
}

.nops-final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.12;
  margin: 0;
}

/* ─── ANIMATIONS ─── */
.nops-animate {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.nops-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 941px) {
  .nops-hero-visual {
    display: block;
  }
}

@media (max-width: 1120px) {
  .nops-card-grid-products,
  .nops-card-grid-cases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nops-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nops-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nops-roi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 940px) {
  .nops-hero-grid,
  .nops-lead-engine-grid,
  .nops-article-layout {
    grid-template-columns: 1fr;
  }

  .nops-feature-split {
    grid-template-columns: 1fr;
  }

  .nops-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .nops-problem-grid {
    grid-template-columns: 1fr;
  }

  .nops-persona-grid,
  .nops-usp-grid {
    grid-template-columns: 1fr;
  }

  .nops-roi-grid {
    grid-template-columns: 1fr;
  }

  .nops-module-pipeline {
    flex-direction: column;
  }

  .nops-pipeline-connector {
    width: 2px;
    height: 20px;
  }

  .nops-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nops-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(5, 9, 18, 0.98);
    border-bottom: 1px solid rgba(220, 233, 255, 0.16);
    padding: 0.7rem 4vw 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nops-nav.is-open {
    display: flex;
  }

  .nops-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nops-nav-list > li > a {
    display: block;
  }

  .nops-nav-cta {
    margin-top: 0.45rem;
    text-align: center;
  }

  .nops-nav-actions {
    flex-wrap: wrap;
  }

  /* Mobile dropdown */
  .nops-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0.2rem 0 0.4rem;
    padding: 0.3rem;
  }

  .nops-has-dropdown.is-open .nops-dropdown {
    animation: none;
  }

  @keyframes nops-dropdown-in {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
}

/* ─── Accessibility ─── */
@media (prefers-reduced-motion: reduce) {
  .nops-animate {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .nops-pulse-dot {
    animation: none !important;
  }
}

:focus-visible {
  outline: 2px solid var(--nops-accent);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .nops-card-grid-products,
  .nops-card-grid-solutions,
  .nops-card-grid-cases,
  .nops-card-grid-resources {
    grid-template-columns: 1fr;
  }

  .nops-footer-grid {
    grid-template-columns: 1fr;
  }

  .nops-security-grid {
    grid-template-columns: 1fr;
  }

  .nops-stats-bar {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   PRODUCT SINGLE PAGE
   ═══════════════════════════════════════════ */

/* ─── Breadcrumb ─── */
.nops-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  margin-bottom: 1.2rem;
}

.nops-breadcrumb a {
  color: rgba(233, 242, 255, 0.55);
  transition: color 0.2s;
}

.nops-breadcrumb a:hover {
  color: #e9f2ff;
}

.nops-breadcrumb span[aria-hidden] {
  color: rgba(233, 242, 255, 0.3);
}

.nops-breadcrumb > span:last-child {
  color: rgba(233, 242, 255, 0.85);
  font-weight: 600;
}

/* ─── Product Hero ─── */
.nops-product-hero {
  color: var(--nops-text-on-dark);
  background:
    radial-gradient(900px 500px at 80% 10%, color-mix(in srgb, var(--mod-color) 20%, transparent), transparent 60%),
    radial-gradient(700px 400px at -5% -5%, rgba(33, 212, 159, 0.08), transparent 65%),
    linear-gradient(160deg, #050a14 0%, #0a1322 45%, #08111f 100%);
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.nops-product-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.nops-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid color-mix(in srgb, var(--mod-color) 30%, transparent);
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.nops-product-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nops-product-hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 0.8rem;
}

.nops-product-hero-copy .nops-lead {
  color: rgba(233, 242, 255, 0.8);
  margin-bottom: 1.2rem;
  max-width: 58ch;
}

/* Product stats grid */
.nops-product-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.nops-product-stat {
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(233, 242, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.nops-product-stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mod-color, #36b4ff);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.nops-product-stat-label {
  font-size: 0.72rem;
  color: rgba(233, 242, 255, 0.55);
}

/* Active module card in pipeline */
.nops-module-card-active {
  border-color: var(--mod-color) !important;
  background: color-mix(in srgb, var(--mod-color) 12%, transparent) !important;
  box-shadow: 0 0 20px color-mix(in srgb, var(--mod-color) 15%, transparent);
}

/* ═══════════════════════════════════════════
   PRICING PAGE TEMPLATE
   ═══════════════════════════════════════════ */

.nops-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.nops-pricing-card {
  background: #fff;
  border: 1px solid var(--nops-line);
  border-radius: var(--nops-radius);
  padding: 1.5rem;
  box-shadow: var(--nops-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.nops-pricing-card:hover {
  transform: translateY(-4px);
}

.nops-pricing-card-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--nops-line);
}

.nops-pricing-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.nops-pricing-name .nops-product-dot {
  width: 10px;
  height: 10px;
}

.nops-pricing-subtitle {
  color: var(--nops-text-soft);
  font-size: 0.88rem;
  margin: 0 0 0.6rem;
}

.nops-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.nops-pricing-from {
  font-size: 0.8rem;
  color: var(--nops-text-soft);
}

.nops-pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--nops-text);
}

.nops-pricing-period {
  font-size: 0.82rem;
  color: var(--nops-text-soft);
}

.nops-pricing-tiers {
  font-size: 0.82rem;
  color: var(--nops-text-soft);
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

.nops-pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}

.nops-pricing-features li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--nops-text-soft);
  line-height: 1.4;
}

.nops-pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #21d49f;
  font-weight: 700;
}

.nops-pricing-card .nops-btn {
  margin-top: 1rem;
  text-align: center;
  width: 100%;
  justify-content: center;
}

/* Included features grid */
.nops-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.nops-included-card {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--nops-line);
  background: #fff;
}

.nops-included-card h3 {
  font-size: 0.95rem;
  margin: 0 0 0.3rem;
}

.nops-included-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--nops-text-soft);
  line-height: 1.45;
}

/* Bundle banner */
.nops-bundle-banner {
  background: linear-gradient(135deg, rgba(33, 212, 159, 0.08), rgba(54, 180, 255, 0.06));
  border: 1px solid rgba(33, 212, 159, 0.2);
  border-radius: var(--nops-radius);
  padding: 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
}

.nops-bundle-banner h2 {
  font-size: 1.3rem;
  margin: 0 0 0.4rem;
}

.nops-bundle-banner p {
  margin: 0 0 1rem;
  color: var(--nops-text-soft);
  max-width: 60ch;
  margin-inline: auto;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — PRODUCT & PRICING
   ═══════════════════════════════════════════ */

@media (max-width: 940px) {
  .nops-product-hero-grid {
    grid-template-columns: 1fr;
  }

  .nops-product-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nops-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nops-product-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nops-included-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   SOCIAL SHARING
   ═══════════════════════════════════════════ */

.nops-share-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nops-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(233, 242, 255, 0.65);
  transition: background 0.2s, color 0.2s;
  border: 1px solid rgba(233, 242, 255, 0.12);
}

.nops-share-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #e9f2ff;
}

/* ═══════════════════════════════════════════
   ENTITY HERO (dark, colored accent)
   ═══════════════════════════════════════════ */

.nops-entity-hero {
  background:
    radial-gradient(700px 400px at 75% 15%, color-mix(in srgb, var(--mod-color, #36b4ff) 12%, transparent), transparent 55%),
    linear-gradient(160deg, #050a14, #0a1322 45%, #08111f);
}

.nops-entity-hero .nops-eyebrow {
  color: var(--mod-color, #36b4ff);
}

.nops-entity-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.1;
  margin: 0.2rem 0 0.6rem;
}

.nops-entity-hero .nops-lead {
  color: rgba(233, 242, 255, 0.78);
}

/* ═══════════════════════════════════════════
   ARTICLE HERO (blog, dark)
   ═══════════════════════════════════════════ */

.nops-article-hero {
  background: linear-gradient(160deg, #050a14, #0a1322 45%, #08111f);
  color: var(--nops-text-on-dark);
}

.nops-article-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.12;
  margin: 0.2rem 0 0.5rem;
  max-width: 70ch;
}

.nops-article-hero .nops-lead {
  color: rgba(233, 242, 255, 0.78);
}

/* ═══════════════════════════════════════════
   HERO ACTIONS (dark context overrides)
   ═══════════════════════════════════════════ */

.nops-section-dark .nops-btn-secondary,
.nops-hero .nops-btn-secondary,
.nops-product-hero .nops-btn-secondary,
.nops-entity-hero .nops-btn-secondary {
  color: rgba(233, 242, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(233, 242, 255, 0.15);
}

.nops-section-dark .nops-btn-secondary:hover,
.nops-hero .nops-btn-secondary:hover,
.nops-product-hero .nops-btn-secondary:hover,
.nops-entity-hero .nops-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(233, 242, 255, 0.3);
}

.nops-section-dark .nops-meta-row {
  color: rgba(233, 242, 255, 0.5);
}

.nops-article-hero .nops-meta-row {
  color: rgba(233, 242, 255, 0.5);
  margin-top: 0.6rem;
}

/* ═══════════════════════════════════════════
   PRODUCT FEATURE GRID
   ═══════════════════════════════════════════ */

.nops-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.nops-feature-item {
  padding: 1.5rem;
  border-radius: var(--nops-radius);
  border: 1px solid var(--nops-line);
  background: #fff;
  box-shadow: var(--nops-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nops-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mod-color, #36b4ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nops-feature-item:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--mod-color) 35%, transparent);
  box-shadow: 0 24px 60px rgba(4, 13, 31, 0.18), 0 0 0 1px color-mix(in srgb, var(--mod-color) 10%, transparent);
}

.nops-feature-item:hover::before {
  opacity: 1;
}

.nops-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--mod-color) 10%, transparent), color-mix(in srgb, var(--mod-color) 5%, transparent));
  color: var(--mod-color, #36b4ff);
}

.nops-feature-item h3 {
  font-size: 1.08rem;
  margin: 0 0 0.45rem;
  color: var(--nops-text);
}

.nops-feature-item p {
  margin: 0;
  color: var(--nops-text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── BEFORE / AFTER COMPARISON ─── */

.nops-ba-grid {
  display: grid;
  gap: 0.8rem;
}

.nops-ba-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.8rem;
  align-items: center;
}

.nops-ba-before,
.nops-ba-after {
  padding: 1rem 1.1rem;
  border-radius: 12px;
}

.nops-ba-before {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.nops-ba-after {
  background: color-mix(in srgb, var(--mod-color, #21d49f) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--mod-color, #21d49f) 25%, transparent);
}

.nops-ba-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.nops-ba-before .nops-ba-label {
  color: rgba(239, 68, 68, 0.7);
}

.nops-ba-after .nops-ba-label {
  color: color-mix(in srgb, var(--mod-color, #21d49f) 80%, white);
}

.nops-ba-before p,
.nops-ba-after p {
  margin: 0;
  color: rgba(233, 242, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
}

.nops-ba-arrow {
  font-size: 1.3rem;
  color: rgba(233, 242, 255, 0.3);
  font-weight: 700;
}

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

  .nops-ba-row {
    grid-template-columns: 1fr;
  }

  .nops-ba-arrow {
    text-align: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 940px) {
  .nops-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Industry Cards ─── */
.nops-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.nops-industry-card {
  background: var(--nops-card);
  border-radius: var(--nops-radius);
  padding: 2rem;
  border: 1px solid var(--nops-line);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.nops-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nops-shadow);
}
.nops-industry-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--nops-text);
}
.nops-industry-card p {
  font-size: 0.95rem;
  color: var(--nops-text-soft);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}
.nops-industry-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.nops-industry-module-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--nops-text);
  background: color-mix(in srgb, var(--mod-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--mod-color) 25%, transparent);
  transition: background 0.2s;
}
.nops-industry-module-pill:hover {
  background: color-mix(in srgb, var(--mod-color) 20%, transparent);
}
.nops-industry-stat {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--nops-accent);
  padding-top: 0.5rem;
  border-top: 1px solid var(--nops-line);
  margin-top: auto;
}

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

/* ─── Tier Pricing Cards ─── */
.nops-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.nops-tier-card {
  background: var(--nops-card);
  border: 1px solid var(--nops-line);
  border-radius: var(--nops-radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nops-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nops-shadow);
}
.nops-tier-popular {
  border-color: var(--mod-color);
  box-shadow: 0 0 0 1px var(--mod-color), var(--nops-shadow);
}
.nops-tier-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mod-color);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
}
.nops-tier-name {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--nops-text);
}
.nops-tier-price {
  margin-bottom: 0.25rem;
}
.nops-tier-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--nops-text);
  line-height: 1;
}
.nops-tier-currency {
  font-size: 1.4rem;
  font-weight: 600;
}
.nops-tier-period {
  font-size: 0.85rem;
  color: var(--nops-text-soft);
  margin-left: 0.15rem;
}
.nops-tier-users {
  font-size: 0.85rem;
  color: var(--mod-color);
  font-weight: 600;
  margin: 0.25rem 0 1rem;
}
.nops-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
  display: grid;
  gap: 0.45rem;
}
.nops-tier-features li {
  font-size: 0.88rem;
  color: var(--nops-text-soft);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.4;
}
.nops-tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--mod-color, #21d49f);
  font-size: 0.92rem;
}
.nops-tier-features li:first-child {
  font-weight: 600;
  color: var(--nops-text);
  padding-left: 0;
}
.nops-tier-features li:first-child::before {
  display: none;
}

/* Dark section overrides for tier cards */
.nops-section-dark .nops-tier-card {
  background: var(--nops-card-dark);
  border-color: rgba(233, 242, 255, 0.1);
}
.nops-section-dark .nops-tier-popular {
  border-color: var(--mod-color);
  box-shadow: 0 0 0 1px var(--mod-color);
}
.nops-section-dark .nops-tier-name {
  color: #fff;
}
.nops-section-dark .nops-tier-amount {
  color: #fff;
}
.nops-section-dark .nops-tier-period {
  color: rgba(233, 242, 255, 0.6);
}
.nops-section-dark .nops-tier-features li {
  color: rgba(233, 242, 255, 0.7);
}
.nops-section-dark .nops-tier-features li:first-child {
  color: rgba(233, 242, 255, 0.9);
}

@media (max-width: 940px) {
  .nops-tier-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ─── PHOTO-BASED VISUALS ─── */

/* Hero background photo layer */
.nops-hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.nops-hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  mix-blend-mode: luminosity;
}

.nops-hero .nops-shell {
  position: relative;
  z-index: 1;
}

/* Hero screenshot in browser frame */
.nops-hero-screenshot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(233, 242, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.nops-hero-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Problem card image */
.nops-problem-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 880 / 400;
}

.nops-problem-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tag & Call — photo + phone stack */
.nops-feature-photo-stack {
  position: relative;
}

.nops-feature-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.nops-feature-photo-stack .nops-qr-demo {
  position: absolute;
  right: -20px;
  bottom: -20px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.25));
}

/* Visual break — full-width quote over photo */
.nops-visual-break {
  position: relative;
  overflow: hidden;
}

.nops-visual-break-inner {
  position: relative;
  height: clamp(280px, 35vw, 420px);
}

.nops-visual-break-inner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nops-visual-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 10, 20, 0.82), rgba(5, 10, 20, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.nops-visual-quote {
  max-width: 640px;
  text-align: center;
  margin: 0;
}

.nops-visual-quote p {
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 0.8rem;
}

.nops-visual-quote cite {
  font-style: normal;
  font-size: 0.92rem;
  color: rgba(233, 242, 255, 0.7);
}

/* Industries background photo */
.nops-industries-section {
  position: relative;
  overflow: hidden;
}

.nops-industries-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nops-industries-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

/* CTA team photo */
.nops-cta-team-photo {
  max-width: 640px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.nops-cta-team-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 940 / 400;
}

/* Mobile adjustments for photo elements */
@media (max-width: 940px) {
  .nops-feature-photo-stack .nops-qr-demo {
    position: static;
    margin-top: 1rem;
    filter: none;
    display: flex;
    justify-content: center;
  }

  .nops-visual-break-inner {
    height: 260px;
  }

  .nops-visual-quote p {
    font-size: 1.05rem;
  }

  .nops-problem-img-wrap {
    display: none;
  }

  .nops-cta-team-photo {
    max-width: 100%;
  }
}

/* Reverse feature split (image left, text right) */
.nops-feature-split-reverse {
  direction: rtl;
}
.nops-feature-split-reverse > * {
  direction: ltr;
}

@media (max-width: 940px) {
  .nops-feature-split-reverse {
    direction: ltr;
  }
}

/* Founder card on company page */
.nops-founder-card {
  text-align: center;
}

.nops-founder-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.2rem;
  border: 3px solid rgba(54, 180, 255, 0.3);
}

.nops-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nops-founder-info {
  color: rgba(233, 242, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.nops-founder-info strong {
  color: #e9f2ff;
  font-size: 1.1rem;
}

/* Persona avatars */
.nops-persona-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 2px solid rgba(54, 180, 255, 0.25);
}

.nops-persona-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section with background image */
.nops-section-with-bg {
  position: relative;
  overflow: hidden;
}

.nops-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.nops-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}

.nops-section-with-bg .nops-shell {
  position: relative;
  z-index: 1;
}

/* Industry card images */
.nops-industry-card-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.8rem;
  aspect-ratio: 880 / 400;
}

.nops-industry-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
