/* Page-specific tweaks */
.nc-page { padding-bottom: 24px; }

[data-theme="dark"] .nc-header-logo img,
html[data-theme="system"] .nc-header-logo img { filter: none; }

/* ── Full-page layout (no sidebar) ─────────────────────────────── */
.nc-main-full {
  width: 100%;
  min-height: calc(100vh - 56px);
}

/* ── Dashboard / Home ──────────────────────────────────────────── */
.nc-home {
  padding: 64px 32px 64px;
  min-height: 100vh;
  background: var(--nc-bg);
}

.nc-home-hero {
  max-width: 1200px;
  margin: 0 auto 48px;
  text-align: center;
}
.nc-home-logo {
  height: 52px;
  margin-bottom: 24px;
  object-fit: contain;
}
.nc-home-h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--nc-dark-text);
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.nc-home-lead {
  font-size: 17px;
  color: var(--nc-body);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Product grid on home */
.nc-product-home-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.nc-product-home-card {
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  cursor: pointer;
}
.nc-product-home-card:hover {
  border-color: var(--nc-primary);
  box-shadow: 0 10px 28px rgba(127,86,217,0.14);
  transform: translateY(-3px);
}
.nc-product-home-card.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.3);
}
.nc-product-home-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--nc-primary), var(--nc-primary-light));
}
.nc-product-home-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nc-product-home-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  margin-bottom: 20px;
  max-width: 260px;
}
.nc-product-home-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--nc-dark-text);
  margin: 0 0 16px;
}
.nc-product-home-blurb {
  font-size: 15px;
  color: var(--nc-body);
  line-height: 1.6;
  margin: 0 0 24px;
  flex: 1;
}
.nc-product-home-btn {
  align-self: flex-start;
  padding: 12px 24px;
  background: var(--nc-primary);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.nc-product-home-card:hover .nc-product-home-btn {
  background: var(--nc-primary-dark);
}
.nc-product-home-btn--muted {
  background: var(--nc-muted);
  cursor: default;
}
.nc-badge-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--nc-secondary);
  background: rgba(255,255,255,0.15);
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 6px;
}

/* ── Hub header nav (top tabs) ──────────────────────────────────── */
.nc-hub-topnav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  overflow-x: auto;
}
.nc-hub-topnav-link {
  color: var(--nc-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s;
}
.nc-hub-topnav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nc-hub-topnav-link.is-active { color: #fff; background: rgba(127,86,217,0.35); }

.nc-header-product-sep {
  color: var(--nc-muted);
  margin: 0 4px;
  font-weight: 400;
}
.nc-header-product-name {
  color: var(--nc-primary-light);
  font-weight: 600;
  font-size: 14px;
}
.nc-desktop-only { display: inline; }

/* ── Hub landing (styles in hub/index.php) ─────────────────────── */

/* ── Hub Section Pages (sales / features / learning / CPT) ──────── */
.nc-hub-section-page {
  display: flex;
  min-height: calc(100vh - 56px);
}

/* Sidebar (320px) */
.nc-hub-section-sidebar {
  position: fixed;
  left: 0;
  top: 56px;
  width: 320px;
  height: calc(100vh - 56px);
  background: var(--nc-white);
  border-right: 1px solid var(--nc-border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 50;
}
.nc-hss-header {
  padding: 24px;
  border-bottom: 1px solid var(--nc-border);
  flex-shrink: 0;
}
.nc-hss-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nc-primary), var(--nc-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.nc-hss-icon img { filter: brightness(100) saturate(0); }
.nc-hss-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--nc-dark-text);
  margin-bottom: 4px;
}
.nc-hss-role {
  font-size: 11px;
  font-weight: 600;
  color: var(--nc-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nc-hss-filters {
  padding: 12px 16px;
  border-bottom: 1px solid var(--nc-border);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.nc-hss-filter-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--nc-secondary);
  background: var(--nc-card);
  border: 1px solid var(--nc-border);
  border-radius: 20px;
  padding: 4px 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.nc-hss-filter-item:hover,
.nc-hss-filter-item.is-active {
  background: var(--nc-primary);
  color: #fff;
  border-color: var(--nc-primary);
}
.nc-hss-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}
.nc-hss-section-title {
  font-size: 9px;
  font-weight: 700;
  color: var(--nc-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 12px 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--nc-border);
}
.nc-hss-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--nc-body);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 2px;
}
.nc-hss-item:hover { background: var(--nc-card); color: var(--nc-dark-text); }
.nc-hss-item.is-active {
  background: #F0EBFA;
  color: var(--nc-dark-text);
  font-weight: 600;
  border-left: 3px solid var(--nc-primary);
}
[data-theme="dark"] .nc-hss-item.is-active { background: rgba(127,86,217,0.2); }
.nc-hss-item--overview.is-active { border-left-color: var(--nc-primary); }

/* CPT sidebar uses <button> elements — reset browser defaults */
.nc-hss-item--cpt {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
}
.nc-hss-item--disabled { opacity: 0.45; cursor: default; pointer-events: none; }
.nc-hss-item-label { flex: 1; }
.nc-hss-item-badge { font-size: 11px; color: var(--nc-secondary); white-space: nowrap; flex-shrink: 0; }
.nc-hss-footer {
  border-top: 1px solid var(--nc-border);
  padding: 16px;
  flex-shrink: 0;
}
.nc-hss-back-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--nc-card);
  border: 1px solid var(--nc-border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nc-body);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.nc-hss-back-btn:hover { background: var(--nc-primary); color: #fff; border-color: var(--nc-primary); }

/* Section content area */
.nc-hub-section-content {
  margin-left: 320px;
  flex: 1;
  min-height: calc(100vh - 56px);
  overflow-y: auto;
}

/* Full width beside sidebar: remove global .nc-main 1100px cap on hub / learning */
.nc-app-body > .nc-main:has(.nc-hub-section-page),
.nc-app-body > .nc-main:has(#nc-learn-root) {
  max-width: none;
  width: 100%;
}

/* Intro inside sections */
.nc-hss-intro {
  padding: 48px 40px 40px;
}
.nc-hss-intro-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--nc-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.nc-hss-intro-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--nc-dark-text);
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.nc-hss-intro-desc {
  font-size: 16px;
  color: var(--nc-body);
  line-height: 1.6;
  margin-bottom: 28px;
}
.nc-hss-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: var(--nc-primary);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.nc-hss-start-btn:hover { background: var(--nc-primary-dark); transform: translateY(-1px); }

.nc-hss-whats-inside,
.nc-hss-resources {
  padding: 0 40px 40px;
}
.nc-hss-section-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--nc-dark-text);
  margin: 0 0 20px;
}
.nc-hss-module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.nc-hss-module-card {
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.nc-hss-module-card:hover {
  border-color: var(--nc-primary);
  box-shadow: 0 4px 12px rgba(127,86,217,0.1);
  transform: translateY(-2px);
}
.nc-hss-module-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--nc-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nc-hss-module-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--nc-dark-text);
  line-height: 1.3;
}
.nc-hss-module-summary {
  font-size: 13px;
  color: var(--nc-body);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.nc-hss-module-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--nc-card);
}

/* ── Library grid (resource library page) ──────────────────────────── */
.nc-lib-grid { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.nc-lib-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--nc-surface); border: 1px solid var(--nc-border);
  border-radius: 8px; padding: 13px 16px;
  text-decoration: none; transition: border-color 0.15s, background 0.15s;
}
.nc-lib-card:hover { border-color: var(--nc-primary); background: var(--nc-surface-2); }
.nc-lib-card-icon { font-size: 20px; flex-shrink: 0; width: 28px; text-align: center; }
.nc-lib-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.nc-lib-card-title { font-size: 13.5px; font-weight: 600; color: var(--nc-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nc-lib-card:hover .nc-lib-card-title { color: var(--nc-primary); }
.nc-lib-card-desc { font-size: 12px; color: var(--nc-text-2); }
.nc-lib-card-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.nc-lib-tag {
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px;
  padding: 2px 7px; background: var(--nc-surface-2); border: 1px solid var(--nc-border);
  border-radius: 10px; color: var(--nc-muted);
}
.nc-lib-card-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nc-lib-type-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 3px 8px; border-radius: 10px;
}
.nc-lib-type-video   { background: rgba(239,68,68,0.1); color: #dc2626; }
.nc-lib-type-pdf     { background: rgba(249,115,22,0.1); color: #ea580c; }
.nc-lib-type-deck    { background: rgba(var(--nc-primary-rgb,91,59,183),0.1); color: var(--nc-primary); }
.nc-lib-type-one_pager { background: rgba(16,185,129,0.1); color: #059669; }
.nc-lib-type-link    { background: var(--nc-surface-2); color: var(--nc-text-2); }
.nc-lib-type-other   { background: var(--nc-surface-2); color: var(--nc-muted); }
.nc-lib-arrow { font-size: 14px; color: var(--nc-muted); }
.nc-lib-card:hover .nc-lib-arrow { color: var(--nc-primary); }
.nc-lib-header { margin-bottom: 20px; }
.nc-lib-count {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--nc-muted); margin: 12px 0 8px;
}

/* Resource list (used in hub sidebar panels) */
.nc-resource-list { display: flex; flex-direction: column; gap: 10px; }
.nc-resource-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: 8px;
  padding: 14px 16px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.nc-resource-row:hover { border-color: var(--nc-primary); background: var(--nc-bg); }
.nc-resource-icon { font-size: 22px; flex-shrink: 0; }
.nc-resource-info { flex: 1; }
.nc-resource-title { display: block; font-size: 14px; font-weight: 600; color: var(--nc-dark-text); margin-bottom: 3px; }
.nc-resource-meta { display: block; font-size: 12px; color: var(--nc-secondary); }
.nc-resource-type {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 2px 8px;
  background: var(--nc-card);
  border-radius: 4px;
  color: var(--nc-secondary);
  margin-right: 6px;
}
.nc-resource-arrow { font-size: 14px; color: var(--nc-muted); transition: color 0.2s; flex-shrink: 0; }
.nc-resource-row:hover .nc-resource-arrow { color: var(--nc-primary); }

/* ── Feature page (styles in features.php <style> block) ──────── */

/* ── CPT tool (native embed) ────────────────────────────────────── */
.nc-cpt-tool {
  width: 100%;
  min-height: calc(100vh - 56px);
}

/* Badges for progress status */
.nc-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 4px; text-transform: capitalize; }
.nc-badge-not_started { background: var(--nc-card); color: var(--nc-secondary); }
.nc-badge-in_progress { background: #FEF3C7; color: #D97706; }
.nc-badge-completed    { background: #D1FAE5; color: #059669; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nc-home { padding: 40px 20px 40px; }
  .nc-home-hero { margin-bottom: 32px; }
  .nc-product-home-grid { grid-template-columns: 1fr; padding: 0; gap: 16px; }

  .nc-hub-topnav { max-width: 55vw; overflow-x: auto; }
  .nc-hub-topnav-link { font-size: 11px; padding: 5px 9px; }
  .nc-desktop-only { display: none; }

  .nc-hub-section-sidebar { transform: translateX(-100%); transition: transform 0.2s; width: 280px; }
  .nc-hub-section-sidebar.is-open { transform: translateX(0); }
  .nc-hub-section-content { margin-left: 0; }

}

/* ── Sales module page ───────────────────────────────────────────────── */
.nc-sales-module-page {
  padding: 40px 48px 80px;
  max-width: 860px;
}
.nc-sales-mod-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.nc-sales-mod-num {
  font-size: 20px; font-weight: 800; color: var(--nc-text); line-height: 1.2;
}
.nc-sales-mod-tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 3px 10px; border-radius: 20px;
}
.nc-sales-mod-tag--required { background: rgba(var(--nc-primary-rgb, 91,59,183),0.12); color: var(--nc-primary); }
.nc-sales-mod-tag--nonnegotiable { background: rgba(239,68,68,0.1); color: #dc2626; }
.nc-sales-mod-tag--criticalforclinics,
.nc-sales-mod-tag--requiredfirst { background: rgba(var(--nc-primary-rgb, 91,59,183),0.12); color: var(--nc-primary); }
.nc-sales-mod-tag--comingsoon { background: var(--nc-surface-2); color: var(--nc-muted); }
.nc-sales-mod-tag--postale,
.nc-sales-mod-tag--operations,
.nc-sales-mod-tag--core { background: var(--nc-surface-2); color: var(--nc-text-2); }

.nc-sales-mod-title {
  font-size: 28px; font-weight: 800; color: var(--nc-text); line-height: 1.15; margin-bottom: 10px;
}
.nc-sales-mod-subtitle {
  font-size: 15px; color: var(--nc-text-2); line-height: 1.65; max-width: 680px;
  margin-top: 8px; padding-bottom: 20px;
}
.nc-sales-download-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; background: var(--nc-primary); color: #fff;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  text-decoration: none; margin-bottom: 24px; transition: background 0.15s;
}
.nc-sales-download-btn:hover { background: var(--nc-primary-dark, #5b3bb7); }
.nc-sales-content-body {
  padding-top: 8px;
}

/* ── kb-embed — styles for rendered module HTML content ──────────────── */
.kb-embed { max-width: 100%; }
.kb-embed h1 { font-size: 26px; font-weight: 800; margin: 36px 0 12px; color: var(--nc-text); }
.kb-embed h2 {
  font-size: 20px; font-weight: 700; margin: 36px 0 10px;
  padding-top: 20px; border-top: 1px solid var(--nc-border); color: var(--nc-text);
}
.kb-embed h2:first-of-type { border-top: none; padding-top: 0; margin-top: 20px; }
.kb-embed h3 {
  font-size: 16px; font-weight: 700; margin: 26px 0 10px; color: var(--nc-primary);
  padding-bottom: 6px; border-bottom: 2px solid var(--nc-border);
}
.kb-embed h4 {
  font-size: 12px; font-weight: 700; margin: 16px 0 6px; color: var(--nc-primary);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.kb-embed p { font-size: 14px; color: var(--nc-text-2); margin-bottom: 10px; line-height: 1.7; }
.kb-embed p em { color: var(--nc-text); font-weight: 600; font-style: normal; }
.kb-embed strong { color: var(--nc-text); font-weight: 700; }
.kb-embed ul, .kb-embed ol { margin: 0 0 14px 22px; }
.kb-embed li { font-size: 14px; color: var(--nc-text-2); margin-bottom: 5px; line-height: 1.65; }
.kb-embed li strong { color: var(--nc-text); }
.kb-embed blockquote {
  border-left: 4px solid var(--nc-primary);
  background: var(--nc-surface-2); padding: 12px 16px; margin: 16px 0;
  border-radius: 6px; color: var(--nc-text);
}
.kb-embed blockquote p { color: var(--nc-text); margin-bottom: 0; }
.kb-embed hr { border: none; border-top: 1px solid var(--nc-border); margin: 28px 0; }
.kb-embed code {
  font-family: 'SF Mono', Consolas, monospace;
  background: var(--nc-surface-2); padding: 2px 5px; border-radius: 4px;
  font-size: 12px; color: var(--nc-primary);
}
.kb-embed pre {
  background: var(--nc-surface-2); border: 1px solid var(--nc-border);
  padding: 14px 16px; border-radius: 8px; overflow-x: auto;
  font-family: 'SF Mono', Consolas, monospace; font-size: 12px;
  margin: 16px 0; line-height: 1.5;
}
.kb-embed pre code { background: none; padding: 0; color: var(--nc-text); }
.kb-embed table {
  width: 100%; border-collapse: collapse; margin: 16px 0;
  background: var(--nc-surface); border: 1px solid var(--nc-border);
  border-radius: 8px; overflow: hidden; font-size: 13px;
}
.kb-embed th {
  background: var(--nc-surface-2); padding: 9px 13px; text-align: left;
  font-weight: 700; color: var(--nc-text); font-size: 11.5px;
  border-bottom: 1px solid var(--nc-border);
}
.kb-embed td {
  padding: 9px 13px; border-bottom: 1px solid var(--nc-border);
  color: var(--nc-text-2); vertical-align: top; line-height: 1.5;
}
.kb-embed tr:last-child td { border-bottom: none; }
.kb-embed tr:hover td { background: var(--nc-surface-2); }
.kb-embed td strong { color: var(--nc-text); }
.kb-embed a { color: var(--nc-primary); text-decoration: none; font-weight: 600; }
.kb-embed a:hover { text-decoration: underline; }

/* Prototype-specific classes used in embedded module HTML */
.kb-embed .section-hero {
  background: var(--nc-surface-2); border: 1px solid var(--nc-border);
  border-left: 4px solid var(--nc-primary); border-radius: 8px;
  padding: 20px 24px; margin: 20px 0;
}
.kb-embed .section-hero-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--nc-primary); margin-bottom: 4px;
}
.kb-embed .section-hero-title { font-size: 18px; font-weight: 700; color: var(--nc-text); margin-bottom: 6px; }
.kb-embed .section-hero-desc { font-size: 13.5px; color: var(--nc-text-2); line-height: 1.65; margin: 0; }

.kb-embed .stat-pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0; }
.kb-embed .stat-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; background: var(--nc-surface); border: 1px solid var(--nc-border);
  border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--nc-text);
}

.kb-embed .callout-box {
  background: var(--nc-surface); border: 1px solid var(--nc-border);
  border-left: 4px solid var(--nc-primary); border-radius: 8px; margin: 16px 0;
}
.kb-embed .callout-title { font-size: 13px; font-weight: 700; color: var(--nc-primary); padding: 12px 16px 0; }
.kb-embed .callout-body { padding: 10px 16px 12px; }
.kb-embed .callout-body p { font-size: 13.5px; margin-bottom: 5px; }

.kb-embed .info-grid {
  background: var(--nc-surface); border: 1px solid var(--nc-border);
  border-radius: 8px; overflow: hidden; margin: 16px 0;
}
.kb-embed .info-row { display: flex; border-bottom: 1px solid var(--nc-border); }
.kb-embed .info-row:last-child { border-bottom: none; }
.kb-embed .info-key {
  flex: 0 0 160px; padding: 10px 14px; font-size: 12.5px; font-weight: 700;
  color: var(--nc-text); background: var(--nc-surface-2); border-right: 1px solid var(--nc-border);
}
.kb-embed .info-val { flex: 1; padding: 10px 14px; font-size: 13px; color: var(--nc-text-2); line-height: 1.5; }

.kb-embed .steps-list { margin: 16px 0; }
.kb-embed .step-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--nc-border); }
.kb-embed .step-item:last-child { border-bottom: none; }
.kb-embed .step-num {
  flex: 0 0 30px; height: 30px; background: var(--nc-primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.kb-embed .step-text { flex: 1; font-size: 13.5px; color: var(--nc-text-2); line-height: 1.55; }

.kb-embed .checklist-group {
  background: var(--nc-surface); border: 1px solid var(--nc-border);
  border-radius: 8px; padding: 6px 0; margin: 16px 0;
}
.kb-embed .checklist-item {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 7px 16px; font-size: 13.5px; color: var(--nc-text-2); line-height: 1.55;
}
.kb-embed .check-box { flex-shrink: 0; font-size: 15px; color: var(--nc-primary); margin-top: 1px; }

.kb-embed .module-download-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; background: var(--nc-primary); color: #fff;
  border: none; border-radius: 8px; font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none; margin-bottom: 24px;
}
.kb-embed .module-download-btn:hover { background: var(--nc-primary-dark, #5b3bb7); }
.nc-sales-section {
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--nc-border);
}
.nc-sales-section:last-of-type { border-bottom: none; }
.nc-sales-section-heading {
  font-size: 15px; font-weight: 700; color: var(--nc-text); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.nc-sales-section-heading::before {
  content: ''; display: block; width: 3px; height: 16px;
  background: var(--nc-primary); border-radius: 2px; flex-shrink: 0;
}
.nc-sales-body {
  font-size: 14px; color: var(--nc-text-2); line-height: 1.75; margin-bottom: 10px;
  white-space: pre-wrap;
}
.nc-sales-list {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px;
}
.nc-sales-list li {
  font-size: 13.5px; color: var(--nc-text-2); line-height: 1.6;
  padding-left: 20px; position: relative;
}
.nc-sales-list li::before {
  content: '→'; position: absolute; left: 0; color: var(--nc-primary); font-weight: 700; font-size: 12px;
}
.nc-sales-link { color: var(--nc-primary); text-decoration: none; font-weight: 600; }
.nc-sales-link:hover { text-decoration: underline; }

.nc-sales-table-wrap { overflow-x: auto; margin-top: 4px; }
.nc-sales-table {
  width: 100%; border-collapse: collapse; font-size: 13px;
}
.nc-sales-table th {
  text-align: left; padding: 9px 14px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--nc-muted);
  border-bottom: 2px solid var(--nc-border); white-space: nowrap;
}
.nc-sales-table td {
  padding: 10px 14px; color: var(--nc-text-2); border-bottom: 1px solid var(--nc-border);
  vertical-align: top; line-height: 1.5;
}
.nc-sales-table tr:last-child td { border-bottom: none; }
.nc-sales-table tr:hover td { background: var(--nc-surface-2); }

.nc-sales-assets {
  margin-top: 32px; padding: 20px 24px; background: var(--nc-surface-2);
  border-radius: 10px; border: 1px solid var(--nc-border);
}
.nc-sales-assets-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--nc-muted); margin-bottom: 12px;
}
.nc-sales-assets-list { display: flex; flex-wrap: wrap; gap: 8px; }
.nc-sales-asset-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--nc-primary);
  background: rgba(var(--nc-primary-rgb,91,59,183),0.08); padding: 6px 12px;
  border-radius: 20px; border: 1px solid rgba(var(--nc-primary-rgb,91,59,183),0.18);
  text-decoration: none; transition: background 0.15s;
}
.nc-sales-asset-chip:hover { background: rgba(var(--nc-primary-rgb,91,59,183),0.15); }
.nc-sales-asset-chip--static { color: var(--nc-text-2); background: var(--nc-surface); border-color: var(--nc-border); }

.nc-sales-mod-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--nc-border);
}
.nc-sales-prev { color: var(--nc-text-2) !important; }
.nc-sales-next { margin-left: auto; }

/* Sidebar module number badge */
.nc-hss-item-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--nc-surface-2); border: 1px solid var(--nc-border);
  font-size: 10px; font-weight: 700; color: var(--nc-text-2);
  flex-shrink: 0; margin-right: 4px;
}
.nc-hss-item.is-active .nc-hss-item-num {
  background: var(--nc-primary); border-color: var(--nc-primary); color: #fff;
}
.nc-hss-badge-warn { color: #dc2626 !important; }
.nc-hss-badge-primary { color: var(--nc-primary) !important; }
.nc-hss-badge-muted { color: var(--nc-muted) !important; }

@media (max-width: 900px) {
  .nc-sales-module-page { padding: 28px 20px 60px; }
  .nc-sales-mod-title { font-size: 22px; }
  .nc-sales-mod-nav { flex-direction: column; gap: 12px; }
  .nc-sales-next { margin-left: 0; }
}

@media (max-width: 600px) {
  .nc-home-logo { height: 40px; margin-bottom: 16px; }
  .nc-product-home-body { padding: 20px; }
  .nc-product-home-logo { height: 44px; margin-bottom: 14px; }
  .nc-product-home-blurb { font-size: 13px; }
  .nc-hss-intro { padding: 28px 20px 20px; }
  .nc-hss-whats-inside, .nc-hss-resources { padding: 0 20px 28px; }
}

