/* ArcCRM Product Page — light palette + Inter (matches home) */
.crm-product {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: #111111;
  -webkit-font-smoothing: antialiased;
  --crm-navy: #0f172a;
  --crm-navy-mid: #334155;
  --crm-navy-light: #475569;
  --crm-purple: #028dc1;
  --crm-purple-dark: #027eac;
  --crm-purple-light: #17a8e0;
  --crm-accent: #028dc1;
  --crm-accent-dark: #027eac;
  --crm-accent-light: #17a8e0;
  --crm-surface: #f8f9fb;
  --crm-surface-alt: #f1f5f9;
  --crm-surface-dark: #eef1f6;
  --crm-border: #e5e7eb;
  --crm-border-input: #c7d2e0;
  --crm-text-mid: #111111;
  --crm-text-light: #64748b;
  --crm-green: #16a34a;
  --green: #16a34a;
  --green-light: #22c55e;
  --blue-brand: #028dc1;
  --blue-soft: #17a8e0;
  --crm-success: #16a34a;
  --crm-success-bg: #ecfdf5;
  --crm-success-border: #86efac;
  --crm-warning: #d97706;
  --crm-warning-bg: #fffbeb;
  --crm-warning-border: #fcd34d;
  --crm-danger: #dc2626;
  --crm-danger-bg: #fef2f2;
  --crm-danger-border: #fca5a5;
  --crm-info-bg: #eef2ff;
  --crm-shadow-md: 0 4px 24px rgba(15, 23, 42, 0.08);
  --crm-shadow-card: 0 2px 8px rgba(15, 23, 42, 0.06);
  --crm-radius: 10px;
  --crm-radius-lg: 12px;
  --crm-gradient-special: linear-gradient(135deg, #663399 0%, #e74c3c 100%);
  --crm-gradient-tab: linear-gradient(90deg, #027eac 0%, #17a8e0 55%, #7dd3fc 100%);
  --crm-gradient: linear-gradient(90deg, #027eac 0%, #17a8e0 100%);
  --crm-gradient-soft: linear-gradient(135deg,
      rgba(243, 236, 253, 0.85) 0%,
      rgba(242, 215, 236, 0.55) 48%,
      rgba(196, 228, 255, 0.75) 100%);
}

.crm-product h1,
.crm-product h2,
.crm-product h3,
.crm-product h4,
.crm-product h5 {
  font-family: 'Inter', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
}








/* BREADCRUMB */
.crm-product .breadcrumb-bar {
  background: #7C7BFF26;
  padding: 12px 48px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #028dc1;
  letter-spacing: 0.02em;
}

.crm-product .breadcrumb-bar a {
  color: #028dc1;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.breadcrumb-bar a:hover {
  opacity: 1;
}

.breadcrumb-sep {
  opacity: 0.4;
}

/* ============ HERO ============ */
.crm-product .hero {
  background: linear-gradient(102deg,
      #064b89 0%,
      #0f64b1 12.5%,
      #198aef 25%,
      #0f64b1 37.5%,
      #064b89 50%,
      #0f64b1 62.5%,
      #198aef 75%,
      #0f64b1 87.5%,
      #064b89 100%);
  background-size: 200% 180%;
  background-position: 0% 55%;
  animation: hero-flag-flow 20s linear infinite;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 65px 0px;
  position: relative;
  overflow: hidden;
  will-change: background-position;
}

.crm-product .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(102deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.04) 42%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0.04) 58%,
      rgba(255, 255, 255, 0) 100%);
  background-size: 200% 180%;
  background-position: 0% 55%;
  animation: hero-flag-flow 20s linear infinite;
  will-change: background-position;
}

.crm-product .hero::after {
  content: none;
}

/* Angled left-to-right flag wave (seamless loop) */
@keyframes hero-flag-flow {
  0% {
    background-position: 0% 58%;
  }

  100% {
    background-position: 100% 42%;
  }
}

.crm-product .hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.crm-product .hero-grid>* {
  min-width: 0;
}

.hero-left {
  max-width: 560px;
}

.crm-product .hero h1 {
  font-size: clamp(36px, 4.2vw, 50px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.crm-product .hero h1 .gold {
  color: #fbbc04;
}

.crm-product .hero-sub {
  font-size: 18px;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 42px;
  max-width: 540px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.crm-product .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  /* background: linear-gradient(135deg, #027eac 0%, #028dc1 55%, #17a8e0 100%); */
  background-color: #fbbc04;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  border: none;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(2, 141, 193, 0.3);
}

.crm-product .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(2, 141, 193, 0.38);
  color: #fff;
}

.crm-product .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #111827;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.crm-product .btn-ghost:hover {
  transform: translateY(-3px);
  border-color: #94a3b8;
  background: #fff;
  color: #111827;
}

.crm-product .play-icon {
  width: 28px;
  height: 28px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fbbc04;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

/* HERO VISUAL - Three-pane CRM dashboard (product-frame layout) */
.crm-product .hero-visual.product-frame {
  padding: 0;
  overflow: hidden;
  box-shadow: var(--crm-shadow-md);
  border: 1px solid var(--crm-border);
  position: relative;
}

.crm-product .hero-visual-body {
  padding: 18px 20px 20px;
}

.crm-product .hv-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.crm-product .hv-toolbar-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #0E0D59;
  letter-spacing: 0.5px;
}

.crm-product .hv-head-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.crm-product .live-dot {
  width: 7px;
  height: 7px;
  background: var(--crm-green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.45);
  animation: pulse 1.6s infinite;
}

.crm-product .hv-3pane {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.crm-product .hv-pane {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 11px;
}

.crm-product .hv-pane-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #0E0D59;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hv-pane-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.crm-product .hv-pane-row {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 8px;
  padding: 8px 9px;
  margin-bottom: 6px;
  font-size: 11px;
  color: #334155;
}

.hv-pane-row:last-child {
  margin-bottom: 0;
}

.crm-product .hv-pane-row.alert {
  background: rgba(214, 59, 46, 0.16);
  border: 1px solid rgba(214, 59, 46, 0.35);
}

.crm-product .hv-pane-row.warn {
  background: rgba(14, 13, 89, 0.08);
  border: 1px solid rgba(14, 13, 89, 0.18);
}

.crm-product .hv-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.crm-product .hv-row-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #0E0D59;
  font-size: 11px;
}

.crm-product .hv-row-val {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #111111;
  font-size: 11px;
}

.crm-product .hv-row-meta {
  font-size: 10px;
  color: #64748b;
  line-height: 1.35;
}

/* ============ SECTIONS ============ */
.crm-product>section {
  padding: 80px 0;
}

.crm-product .section-tag {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #ff393c;
  margin-bottom: 20px;
}

.crm-product .section-tag.center {
  text-align: center;
}

.crm-product .section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #0E0D59;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-title .gold {
  color: var(--crm-accent-dark);
}

.crm-product .section-sub {
  font-size: 18px;
  color: #111111;
  line-height: 1.75;
  max-width: 580px;
}

.section-sub.center {
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

/* Split layout - asymmetric gives better breathing room */
.crm-product .split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  gap: 80px;
  align-items: center;
}

.crm-product .split-grid>* {
  min-width: 0;
}

.crm-product .split-grid.reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
}

.split-grid .split-text {
  max-width: 500px;
}

/* Product frame - shared by all product mockups */
.crm-product .product-frame {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: var(--crm-radius-lg);
  box-shadow: var(--crm-shadow-md);
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

.pf-dots {
  display: flex;
  gap: 5px;
}

.pf-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.pf-dot:nth-child(1) {
  background: #FF8B81;
}

.pf-dot:nth-child(2) {
  background: #FDD84E;
}

.pf-dot:nth-child(3) {
  background: #6FCB8E;
}

.crm-product .pf-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #0E0D59;
  letter-spacing: 0.5px;
}

/* ============ SECTION: SALES EXECUTION (pipeline view) ============ */
.sales-section {
  background: var(--crm-surface);
}

.crm-product .pipeline-banner {
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--crm-navy) 0%, var(--crm-navy-light) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.crm-product .pb-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.crm-product .pb-stat {
  display: flex;
  flex-direction: column;
}

.crm-product .pb-stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--crm-accent);
  line-height: 1;
}

.crm-product .pb-stat-label {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
  letter-spacing: 0.3px;
}

.crm-product .pb-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.18);
}

.crm-product .pb-alert {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--crm-accent-light);
  padding: 5px 12px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.crm-product .pb-alert-dot {
  width: 6px;
  height: 6px;
  background: var(--crm-accent);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

.crm-product .pipeline-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px 14px;
  background: var(--crm-surface);
}

.crm-product .pipe-col {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 10px;
  padding: 10px 9px;
  min-height: 200px;
  box-shadow: var(--crm-shadow-card);
}

.crm-product .pipe-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--crm-border);
}

.crm-product .pipe-col-name {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  color: #0E0D59;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.crm-product .pipe-col-count {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  background: var(--crm-surface);
  color: var(--crm-text-mid);
  padding: 2px 8px;
  border-radius: 100px;
}

.crm-product .deal-card {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 10px;
  box-shadow: var(--crm-shadow-card);
  padding: 9px 9px;
  margin-bottom: 6px;
  transition: all 0.2s;
}

.deal-card:last-child {
  margin-bottom: 0;
}

.crm-product .deal-card.stalled {
  border-color: var(--crm-warning-border);
  background: var(--crm-warning-bg);
}

.deal-card.stalled .deal-name {
  color: var(--crm-accent-dark);
}

.crm-product .deal-name {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #0E0D59;
  margin-bottom: 4px;
  line-height: 1.25;
}

.crm-product .deal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  color: var(--crm-text-light);
}

.crm-product .deal-value {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--crm-navy);
}

.crm-product .deal-owner {
  width: 16px;
  height: 16px;
  background: var(--crm-accent);
  color: var(--crm-navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 800;
}

.deal-card.stalled .deal-owner {
  background: var(--amber);
}

/* Combined animated network background (Recovery -> Workflows) */
.crm-product .crm-network-band {
  position: relative;
  overflow: hidden;
  /* background: radial-gradient(120% 90% at 50% 0%, #f5f8ff 0%, #edf4ff 52%, #f8fbff 100%); */
  padding-top: 40px;
  padding-bottom: 40px;
}

.crm-product .crm-network-band>.network-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.crm-product .crm-network-band>*:not(.network-bg) {
  position: relative;
  z-index: 1;
}

.crm-product .crm-network-band .recovery-section,
.crm-product .crm-network-band .sdr-section,
.crm-product .crm-network-band .campaign-section,
.crm-product .crm-network-band .field-section,
.crm-product .crm-network-band .support-section,
.crm-product .crm-network-band .workflow-section {
  background: transparent;
  padding-top: 56px;
  padding-bottom: 56px;
}

/* ArcPayroll uses different section classnames inside the canvas band */
.crm-product .crm-network-band .sim-section,
.crm-product .crm-network-band .connected-section,
.crm-product .crm-network-band .tasks-section,
.crm-product .crm-network-band .pay-section,
.crm-product .crm-network-band .forms-section,
.crm-product .crm-network-band .templates-section {
  background: transparent;
  padding-top: 56px;
  padding-bottom: 56px;
}

.crm-product .crm-network-band .recovery-section::before,
.crm-product .crm-network-band .recovery-section::after,
.crm-product .crm-network-band .sdr-section::before,
.crm-product .crm-network-band .campaign-section::before {
  display: none;
}

/* ============ SECTION: LEAD RECOVERY ============ */
.crm-product .recovery-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.crm-product .recovery-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(2, 141, 193, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.crm-product .recovery-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(43, 126, 212, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Product mock header: full-width Arc CRM bar, no side gaps */
.crm-product .product-frame-head {
  padding: 0;
  margin: 0;
  border-bottom: none;
  background: #12344d;
  display: block;
  overflow: hidden;
  line-height: 0;
}

.crm-product .product-frame-head>svg {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  vertical-align: top;
}

/* Top pane: Single-Touch Recovery Engine */
.crm-product .recovery-top {
  padding: 18px 20px;
  border-bottom: 1px solid var(--crm-border);
  background: #fff;
}

.crm-product .recovery-top-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.crm-product .recovery-engine-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(2, 141, 193, 0.16) 0%, rgba(2, 141, 193, 0.06) 100%);
  border: 1.5px solid rgba(2, 141, 193, 0.45);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  color: #028dc1;
  letter-spacing: 0.4px;
}

.crm-product .recovery-engine-tag-dot {
  width: 7px;
  height: 7px;
  background: #028dc1;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.crm-product .recovery-top-summary {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--crm-text-light);
  font-weight: 600;
}

.crm-product .recovery-top-summary strong {
  color: var(--crm-navy);
  font-weight: 800;
  font-size: 13px;
}

.crm-product .recovery-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.crm-product .rec-card {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 10px;
  padding: 10px 11px;
  position: relative;
  transition: all 0.2s;
  box-shadow: var(--crm-shadow-card);
}

.crm-product .rec-card.hot {
  background: #fff;
  border: 2px solid var(--crm-purple);
  box-shadow: 0 0 0 3px rgba(2, 141, 193, 0.1), var(--crm-shadow-card);
}

.crm-product .rec-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #0E0D59;
  margin-bottom: 3px;
  line-height: 1.25;
}

.crm-product .rec-card-meta {
  font-size: 9.5px;
  color: var(--crm-text-light);
  margin-bottom: 8px;
  line-height: 1.4;
}

.crm-product .rec-card-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #027eac 0%, #028dc1 55%, #17a8e0 100%);
  color: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.crm-product .rec-card-action-arrow {
  font-size: 10px;
}

/* Bottom pane: SDR Recovery Queue */
.crm-product .recovery-bottom {
  padding: 16px 20px;
  background: var(--crm-surface);
}

.crm-product .recovery-bottom-label {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--crm-text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crm-product .recovery-queue-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--crm-navy);
  color: #fff;
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: none;
}

.crm-product .recovery-queue-tag-icon {
  color: var(--crm-accent);
  font-size: 11px;
}

.crm-product .sdr-recovery-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--crm-border);
}

.sdr-recovery-row:last-child {
  border-bottom: none;
}

.crm-product .sdr-recovery-row.active {
  background: #fff;
  padding: 10px 12px;
  margin: 0;
  border-radius: 10px;
  border: 2px solid var(--crm-purple);
  box-shadow: var(--crm-shadow-card);
}

.crm-product .sdr-rec-name {
  display: flex;
  align-items: center;
  gap: 9px;
}

.crm-product .sdr-rec-avatar {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #027eac 0%, #028dc1 55%, #17a8e0 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.crm-product .sdr-rec-name-text {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #0E0D59;
  line-height: 1.1;
}

.crm-product .sdr-rec-name-count {
  font-size: 9.5px;
  color: var(--crm-text-light);
  margin-top: 2px;
}

.crm-product .sdr-rec-queue {
  display: flex;
  gap: 6px;
  overflow: hidden;
}

.crm-product .rec-chip {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 6px;
  padding: 6px 9px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.crm-product .rec-chip.p1 {
  border-color: var(--crm-danger-border);
  background: var(--crm-danger-bg);
}

.crm-product .rec-chip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.crm-product .rec-chip-name {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  color: var(--crm-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.crm-product .rec-chip-prio {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.crm-product .rec-chip-prio.p1 {
  background: var(--crm-danger-bg);
  color: var(--crm-danger);
  border: 1px solid var(--crm-danger-border);
}

.crm-product .rec-chip-prio.p2 {
  background: var(--crm-warning-bg);
  color: var(--crm-warning);
  border: 1px solid var(--crm-warning-border);
}

.crm-product .rec-chip-prio.p3 {
  background: var(--crm-surface-alt);
  color: var(--crm-text-mid);
  border: 1px solid var(--crm-border);
}

.crm-product .rec-chip-reason {
  font-size: 8.5px;
  color: var(--crm-text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============ SECTION: SDR PRODUCTIVITY ============ */
.crm-product .sdr-section {
  background: #fff;
  position: relative;
}

.crm-product .sdr-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  width: 400px;
  height: 400px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(2, 141, 193, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Capability tag - used to highlight named USPs */
.crm-product .capability-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(2, 141, 193, 0.12) 0%, rgba(2, 141, 193, 0.04) 100%);
  border: 1.5px solid rgba(2, 141, 193, 0.4);
  border-radius: 100px;
}

.crm-product .capability-tag-icon {
  width: 26px;
  height: 26px;
  background: var(--crm-accent);
  color: var(--crm-navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.crm-product .capability-tag-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--crm-accent-dark);
  letter-spacing: 0.5px;
}

/* Effort Allocation Engine - three-zone horizontal routing visual */
.crm-product .eae-canvas {
  display: grid;
  grid-template-columns: 1fr 24px 1.05fr 24px 1fr;
  gap: 0;
  padding: 20px 18px;
  background: var(--crm-surface);
  border-bottom: 1px solid var(--crm-border);
  align-items: stretch;
}

.crm-product .eae-arrow-right {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crm-accent);
  font-size: 18px;
  font-weight: 800;
}

.crm-product .eae-zone {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.crm-product .eae-zone-label {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  color: var(--crm-text-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Left zone: incoming follow-ups */
.crm-product .eae-followup {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 8px;
  padding: 9px 11px;
  position: relative;
}

.crm-product .eae-followup.matched {
  border-color: var(--crm-accent);
  background: linear-gradient(135deg, rgba(2, 141, 193, 0.08) 0%, #fff 100%);
  box-shadow: 0 0 0 3px rgba(2, 141, 193, 0.12);
}

.crm-product .eae-fu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.crm-product .eae-fu-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--crm-navy);
}

.crm-product .eae-fu-val {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--crm-accent-dark);
}

.crm-product .eae-fu-meta {
  font-size: 9.5px;
  color: var(--crm-text-light);
}

.crm-product .eae-fu-pulse {
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--crm-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(2, 141, 193, 0.3);
  animation: pulse 1.4s infinite;
}

/* Middle zone: engine */
.crm-product .eae-engine {
  background: linear-gradient(135deg, var(--crm-navy) 0%, var(--crm-navy-mid) 100%);
  border-radius: 12px;
  padding: 14px 14px;
  color: #fff;
  position: relative;
  box-shadow: var(--crm-shadow-md);
}

.crm-product .eae-engine-tag {
  display: inline-block;
  background: var(--crm-accent);
  color: var(--crm-navy);
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 9px;
}

.crm-product .eae-engine-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.crm-product .eae-criteria {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.crm-product .eae-criterion {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.crm-product .eae-crit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.crm-product .eae-crit-name {
  font-size: 10.5px;
  color: #fff;
  font-weight: 500;
}

.crm-product .eae-crit-weight {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--crm-accent-light);
}

.crm-product .eae-crit-bar {
  height: 4px;
  background: rgb(255 255 255);
  border-radius: 100px;
  overflow: hidden;
}

.crm-product .eae-crit-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--crm-accent) 0%, var(--crm-accent-light) 100%);
  border-radius: 100px;
}

.crm-product .eae-engine-status {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9.5px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.3px;
}

/* Right zone: reps */
.crm-product .eae-rep {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 8px;
  padding: 9px 10px;
  position: relative;
}

.crm-product .eae-rep.matched {
  border-color: var(--crm-accent);
  box-shadow: 0 0 0 3px rgba(2, 141, 193, 0.15);
  background: linear-gradient(135deg, rgba(2, 141, 193, 0.06) 0%, #fff 100%);
}

.crm-product .eae-rep-banner {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--crm-accent);
  color: var(--crm-border);
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(2, 141, 193, 0.35);
}

.crm-product .eae-rep-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}

.crm-product .eae-rep-avatar {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--crm-navy) 0%, var(--crm-navy-light) 100%);
  color: var(--crm-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
}

.crm-product .eae-rep-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--crm-navy);
}

.crm-product .eae-rep-stats {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.crm-product .eae-rep-stat {
  flex: 1;
  text-align: center;
  background: var(--crm-surface);
  border-radius: 5px;
  padding: 3px 4px;
}

.crm-product .erp-lbl {
  display: block;
  font-size: 7.5px;
  color: var(--crm-text-light);
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.crm-product .erp-val {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--crm-navy);
  margin-top: 1px;
}

/* Footer strip with Dials/Live Connects metrics */
.crm-product .eae-footer-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 12px 18px;
  background: #fff;
}

.crm-product .eae-foot-metric {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid var(--crm-border);
}

.eae-foot-metric:last-child {
  border-right: none;
}

.crm-product .eae-foot-val {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--crm-navy);
  line-height: 1;
}

.eae-foot-metric.hl .eae-foot-val {
  color: var(--crm-accent-dark);
}

.crm-product .eae-foot-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--crm-text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 5px;
}

.crm-product .sdr-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 18px 18px 14px;
}

.crm-product .sdr-metric {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  box-shadow: var(--crm-shadow-card);
}

.crm-product .sdr-metric.hl {
  background: #fff;
  border: 2px solid var(--crm-purple);
  box-shadow: 0 0 0 3px rgba(2, 141, 193, 0.1), var(--crm-shadow-card);
}

.crm-product .sdr-metric-value {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--crm-navy);
  line-height: 1;
}

.sdr-metric.hl .sdr-metric-value {
  color: var(--crm-accent-dark);
}

.crm-product .sdr-metric-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--crm-text-light);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-top: 6px;
}

.crm-product .sdr-rep-section {
  padding: 8px 18px 18px;
}

.crm-product .sdr-rep-label {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--crm-text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.crm-product .sdr-rep-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  background: var(--crm-surface);
  border-radius: 8px;
  margin-bottom: 6px;
}

.sdr-rep-row:last-child {
  margin-bottom: 0;
}

.crm-product .sdr-rep-name {
  display: flex;
  align-items: center;
  gap: 9px;
}

.crm-product .sdr-rep-avatar {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--crm-navy) 0%, var(--crm-navy-light) 100%);
  color: var(--crm-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.crm-product .sdr-rep-info-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--crm-navy);
}

.crm-product .sdr-rep-info-meta {
  font-size: 10px;
  color: var(--crm-text-light);
}

.crm-product .sdr-rep-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crm-product .sdr-rep-stat-val {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--crm-navy);
}

.crm-product .sdr-rep-stat-lbl {
  font-size: 9px;
  color: var(--crm-text-light);
  margin-top: 2px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.crm-product .sdr-rep-bar {
  height: 6px;
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  margin-top: 3px;
}

.crm-product .sdr-rep-bar-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--crm-accent) 0%, var(--crm-accent-dark) 100%);
  border-radius: 100px;
}

/* ============ SECTION: SMART LEAD ROUTING ============ */
.crm-product .campaign-section {
  background: linear-gradient(180deg, #fff 0%, var(--crm-surface) 100%);
  position: relative;
}

.crm-product .campaign-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 400px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(2, 141, 193, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Three-row vertical matching grid */
.crm-product .slr-row {
  padding: 16px 18px;
  border-bottom: 1px solid var(--crm-border);
}

.slr-row:last-child {
  border-bottom: none;
}

.crm-product .slr-row-label {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  color: var(--crm-text-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Row 1: incoming leads */
.crm-product .slr-leads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.crm-product .slr-lead {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: var(--crm-shadow-card);
}

.crm-product .slr-lead.matched {
  background: #fff;
  border: 2px solid var(--crm-purple);
  box-shadow: 0 0 0 3px rgba(2, 141, 193, 0.12), var(--crm-shadow-card);
}

.crm-product .slr-lead.matched .slr-lead-name {
  color: #028dc1;
}

.crm-product .slr-lead-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--crm-navy);
  line-height: 1.2;
  margin-bottom: 2px;
}

.crm-product .slr-lead-meta {
  font-size: 9.5px;
  color: var(--crm-text-light);
}

/* Row 2: match logic */
.crm-product .slr-match-row {
  background: linear-gradient(135deg, #027eac 0%, #028dc1 55%, #17a8e0 100%);
  color: #fff;
}

.crm-product .slr-match-row .slr-row-label {
  color: rgba(255, 255, 255, 0.85);
}

.crm-product .slr-match-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.crm-product .slr-criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.crm-product .slr-criterion {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #fff;
  color: #fff;
  letter-spacing: 0.3px;
}

.crm-product .slr-criterion.lit {
  background: #fff;
  color: #028dc1;
  border-color: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.crm-product .slr-match-result {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.crm-product .slr-match-arrow {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.crm-product .slr-match-badge {
  background: #fff;
  color: var(--crm-navy);
  padding: 5px 12px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* Row 3: active campaigns */
.crm-product .slr-active-row {
  background: linear-gradient(180deg, #f8f9ff 0%, var(--crm-surface) 100%);
}

.crm-product .slr-campaigns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.crm-product .slr-campaign {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 8px;
  padding: 10px 11px;
}

.crm-product .slr-camp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.crm-product .slr-camp-tier {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.crm-product .slr-camp-tier.tier-1 {
  background: var(--crm-gradient);
  color: #fff;
}

.crm-product .slr-camp-tier.tier-2 {
  background: var(--blue-brand);
  color: #fff;
}

.crm-product .slr-camp-tier.tier-3 {
  background: #e2e8f0;
  color: #475569;
}

.crm-product .slr-camp-count {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--crm-navy);
}

.crm-product .slr-camp-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #0E0D59;
  margin-bottom: 7px;
  line-height: 1.3;
}

.crm-product .slr-camp-channels {
  display: flex;
  gap: 5px;
}

.crm-product .slr-ch {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}

.crm-product .slr-ch.email {
  background: var(--blue-brand);
}

.crm-product .slr-ch.call {
  background: var(--green);
}

.crm-product .slr-ch.whatsapp {
  background: var(--crm-purple-dark);
}

/* ============ SECTION: FIELD SALES ============ */
.crm-product .field-section {
  background: #fff;
}

.crm-product .field-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--crm-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
}

.crm-product .field-head-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0E0D59;
  letter-spacing: -0.02em;
}

.crm-product .field-head-date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--crm-text-light);
  font-weight: 600;
  white-space: nowrap;
}

.crm-product .field-body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  align-items: stretch;
  min-height: 340px;
}

.crm-product .field-visits-list {
  background: var(--crm-surface);
  padding: 16px;
  border-right: 1px solid var(--crm-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.crm-product .visit-card {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.crm-product .visit-card:last-child {
  margin-bottom: 0;
}

.crm-product .visit-card.active,
.crm-product .visit-card.in-progress.active {
  background: #fff;
  border: 2px solid var(--crm-purple);
  box-shadow: 0 0 0 3px rgba(2, 141, 193, 0.1), var(--crm-shadow-card);
}

.crm-product .visit-row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.crm-product .visit-customer {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0E0D59;
  line-height: 1.25;
}

.crm-product .visit-status {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.crm-product .visit-status.done {
  background: var(--crm-success-bg);
  color: var(--crm-success);
  border: 1px solid var(--crm-success-border);
}

.crm-product .visit-status.live {
  background: var(--crm-info-bg);
  color: var(--crm-purple-dark);
  border: 1px solid rgba(2, 141, 193, 0.35);
}

.crm-product .visit-status.pending {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.crm-product .visit-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--crm-text-light);
  line-height: 1.4;
}

.crm-product .visit-time {
  color: var(--crm-text-mid);
  font-weight: 600;
}

.crm-product .field-detail {
  padding: 20px 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.crm-product .field-detail-customer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--crm-border);
}

.crm-product .field-detail-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--crm-gradient);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.crm-product .field-detail-cust-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #0E0D59;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.crm-product .field-detail-cust-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--crm-text-light);
  margin-top: 4px;
}

.crm-product .field-detail-info {
  margin-bottom: 16px;
}

.crm-product .field-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--crm-border);
  font-size: 12px;
}

.crm-product .field-info-row:last-child {
  border-bottom: none;
}

.crm-product .field-info-label {
  font-family: 'Inter', sans-serif;
  color: var(--crm-text-light);
  font-weight: 500;
}

.crm-product .field-info-val {
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  font-weight: 700;
  text-align: right;
}

.crm-product .field-rep-notes {
  margin-top: auto;
  padding: 14px 14px 14px 16px;
  background: #7c7bff26;
  border-radius: 10px;
  border-left: 4px solid #028dc1;
}

.crm-product .field-rep-notes-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #028dc1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.crm-product .field-rep-notes-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--crm-text-mid);
  line-height: 1.55;
}

.crm-product .field-bottom-metrics {
  padding: 16px 22px;
  background: var(--crm-surface);
  border-top: 1px solid var(--crm-border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.crm-product .field-metric {
  text-align: center;
  padding: 4px 8px;
}

.crm-product .field-metric-val {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.crm-product .field-metric:nth-child(2) .field-metric-val {
  color: #028dc1;
}

.crm-product .field-metric:nth-child(3) .field-metric-val {
  color: #64748b;
}

.crm-product .field-metric:nth-child(4) .field-metric-val {
  color: var(--green);
}

.crm-product .field-metric-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--crm-text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}

/* ============ SECTION: SUPPORT ============ */
.support-section {
  background: var(--crm-surface);
}

.crm-product .ticket-body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
}

.crm-product .ticket-customer-panel {
  padding: 18px 20px;
  border-right: 1px solid var(--crm-border);
  background: var(--crm-surface);
}

.crm-product .ticket-customer-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--crm-border);
}

.crm-product .ticket-customer-logo {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--crm-accent-dark) 0%, var(--crm-accent) 100%);
  color: var(--crm-navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.crm-product .ticket-customer-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--crm-navy);
  line-height: 1.1;
}

.crm-product .ticket-customer-meta {
  font-size: 11px;
  color: var(--crm-text-light);
  margin-top: 3px;
}

.crm-product .ticket-context-section {
  margin-bottom: 12px;
}

.crm-product .ticket-context-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 800;
  color: var(--crm-text-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.crm-product .ticket-context-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 11px;
  color: var(--crm-text-mid);
}

.crm-product .ticket-context-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 9px;
  flex-shrink: 0;
}

.tci-deal {
  background: var(--green);
}

.tci-tkt {
  background: var(--blue-brand);
}

.tci-visit {
  background: var(--crm-accent-dark);
}

.crm-product .ticket-detail-panel {
  padding: 18px 20px;
  background: #fff;
}

.crm-product .ticket-detail-id {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--crm-text-light);
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.crm-product .ticket-detail-subject {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--crm-navy);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.crm-product .ticket-timeline {
  margin-bottom: 14px;
}

.crm-product .timeline-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 11px;
}

.crm-product .timeline-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
}

.crm-product .timeline-icon.current {
  background: var(--crm-accent);
  color: var(--crm-navy);
  animation: pulse 2s infinite;
}

.crm-product .timeline-icon.pending {
  background: #fff;
  border: 1.5px solid var(--crm-border);
  color: var(--crm-text-light);
}

.crm-product .timeline-step-text {
  color: var(--crm-text-mid);
}

.crm-product .timeline-step.done .timeline-step-text {
  color: var(--crm-navy);
  font-weight: 600;
}

.crm-product .timeline-step.pending .timeline-step-text {
  color: var(--crm-text-light);
}

.crm-product .ticket-next-action {
  padding: 11px 12px;
  background: var(--crm-surface);
  border-left: 3px solid var(--crm-accent);
  border-radius: 8px;
}

.crm-product .ticket-next-label {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--crm-accent-dark);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.crm-product .ticket-next-text {
  font-size: 11.5px;
  color: var(--crm-text-mid);
  line-height: 1.5;
}

/* ============ SECTION: WORKFLOWS ============ */
.crm-product .workflow-section {
  background: #fff;
}

.crm-product .workflow-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 360px;
}

.crm-product .workflow-canvas {
  padding: 20px 22px;
  background: var(--crm-surface);
  border-right: 1px solid var(--crm-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.crm-product .wf-triggers-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 6px;
}

.crm-product .wf-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #028dc1;
  border-radius: 100px;
  padding: 9px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0E0D59;
  box-shadow: 0 2px 8px rgba(2, 141, 193, 0.08);
  margin-bottom: 0;
  width: max-content;
  max-width: 100%;
}

.crm-product .wf-trigger-dot {
  width: 8px;
  height: 8px;
  background: #028dc1;
  border-radius: 50%;
  flex-shrink: 0;
}

.crm-product .wf-arrow {
  width: 100%;
  text-align: center;
  color: #028dc1;
  font-size: 22px;
  line-height: 1;
  margin: 8px 0 10px;
  font-weight: 700;
}

.crm-product .wf-decision {
  width: 100%;
  max-width: 300px;
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 auto 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.crm-product .wf-decision-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: #028dc1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.crm-product .wf-decision-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #0E0D59;
  font-weight: 600;
  line-height: 1.35;
}

.crm-product .wf-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.crm-product .wf-branch {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 10px;
  padding: 12px 12px;
  text-align: center;
}

.crm-product .wf-branch.yes {
  border-color: var(--crm-success-border);
  background: var(--crm-success-bg);
}

.crm-product .wf-branch.no {
  border-color: var(--crm-warning-border);
  background: var(--crm-warning-bg);
}

.crm-product .wf-branch-yn {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.crm-product .wf-branch.yes .wf-branch-yn {
  color: var(--green);
}

.crm-product .wf-branch.no .wf-branch-yn {
  color: #d97706;
}

.crm-product .wf-branch-action {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #334155;
  font-weight: 600;
  line-height: 1.45;
}

.crm-product .workflow-perms {
  padding: 20px 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-sizing: border-box;
}

.crm-product .wf-perms-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.crm-product .workflow-perms .perm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  background: var(--crm-surface);
  border: 1px solid var(--crm-border);
  border-radius: 10px;
  margin-bottom: 8px;
}

.crm-product .workflow-perms .perm-row:last-child {
  margin-bottom: 0;
}

.crm-product .workflow-perms .perm-role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0E0D59;
  flex: 1;
  min-width: 0;
}

.crm-product .workflow-perms .perm-checks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-shrink: 0;
  margin-left: auto;
}

.crm-product .perm-check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.crm-product .perm-check.on {
  background: var(--crm-gradient);
  color: #fff;
  border: none;
}

.crm-product .perm-check.off {
  background: #fff;
  border: 1.5px solid #d8dcf5;
  color: transparent;
}

/* ============ INDUSTRIES ============ */
.industry-section {
  background-color: var(--crm-surface);
  background-image: url("/assets/img/arc-crm-industries-bg-2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.crm-product .industry-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.crm-product .industry-box {
  background: linear-gradient(270deg, #cdebff 0%, #ffffff 100%);
  border: 1px solid rgba(205, 235, 255, 0.9);
  border-radius: var(--crm-radius-lg);
  padding: 36px 32px;
  box-shadow: 4px 6px 9.4px 0 #00364c33;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.crm-product .industry-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crm-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.crm-product .industry-box:hover::before {
  transform: scaleX(1);
}

.crm-product .industry-box:hover {
  border-color: rgba(2, 141, 193, 0.35);
  box-shadow: 6px 10px 14px 0 rgba(0, 54, 76, 0.26);
  transform: translateY(-3px);
}

.crm-product .industry-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  background: #0c506a;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 54, 76, 0.18);
}

.crm-product .industry-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}

.crm-product .industry-box h4 {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--crm-navy);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.crm-product .industry-box p {
  font-size: 14.5px;
  color: var(--crm-text-mid);
  line-height: 1.7;
}

/* ============ FINAL CTA ============ */
.crm-product .final-cta {
  position: relative;
  /* margin: 65px 0 80px; */
}

.crm-product .final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.07) 0%, transparent 60%); */
  pointer-events: none;
}

.crm-product .final-cta-inner {
  background-color: #0e3f6c;
  background-image:
    linear-gradient(180deg, rgba(6, 35, 65, 0.28) 0%, rgba(6, 35, 65, 0.28) 100%),
    url("/assets/img/arc-crm-final-cta-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 72px 48px;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
}

.crm-product .final-cta h2 {
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 18px;
}

.crm-product .final-cta h2 .gold {
  color: #fbbc04;
}

.crm-product .final-cta p {
  font-size: 26px;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 34px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 800;
}

.crm-product .final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.crm-product .final-cta .btn-gold {
  padding: 15px 22px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  background: #fbbc04;
  color: #0a0f1a;
}

.crm-product .final-cta .btn-gold .play-icon {
  width: 24px;
  height: 24px;
  background: #0a0f1a;
  color: #fbbc04;
  font-size: 9px;
}

.crm-product .final-cta .btn-ghost {
  padding: 15px 22px;
  border-radius: 12px;
  border: 1.5px solid #fbbc04;
  background: rgba(9, 35, 67, 0.22);
  color: #f5f8ff;
  font-size: 18px;
  font-weight: 700;
}

/* ANIMATIONS */
.crm-product .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.08s;
}

.stagger-2 {
  transition-delay: 0.16s;
}

.stagger-3 {
  transition-delay: 0.24s;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  nav {
    padding: 0 24px;
  }

  section {
    padding: 70px 24px;
  }

  .hero {
    padding: 50px 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .nav-links {
    display: none;
  }

  .breadcrumb-bar {
    font-size: 11px;
    padding: 10px 24px;
  }

  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split-grid .split-text {
    max-width: 100%;
  }

  .industry-boxes {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 26px;
  }

  .final-cta h2 {
    font-size: 26px;
  }

  .pipeline-board {
    grid-template-columns: 1fr 1fr;
  }

  .sdr-metrics-row {
    grid-template-columns: 1fr 1fr;
  }

  .crm-product .field-body,
  .crm-product .ticket-body {
    grid-template-columns: 1fr;
  }

  .crm-product .field-visits-list,
  .crm-product .ticket-customer-panel,
  .crm-product .workflow-canvas {
    border-right: none;
    border-bottom: 1px solid var(--crm-border);
  }

  .crm-product .workflow-perms {
    padding: 18px 20px;
  }

  .sdr-rep-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .seg-row {
    grid-template-columns: 1fr;
  }

  .pipeline-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ============ PRODUCT MOCKS — HR dashboard sample pattern ============ */
.crm-product .product-frame {
  border: 1px solid var(--crm-border);
  border-radius: var(--crm-radius-lg);
  box-shadow: var(--crm-shadow-md);
  background: #fff;
}

.crm-product .product-frame [class*="card"],
.crm-product .product-frame .eae-followup,
.crm-product .product-frame .eae-rep-card,
.crm-product .product-frame .slr-campaign,
.crm-product .product-frame .rec-chip,
.crm-product .product-frame .ticket-next-action {
  box-shadow: var(--crm-shadow-card);
}

.crm-product .recovery-engine-tag {
  background: var(--crm-info-bg);
  border: 1px solid rgba(2, 141, 193, 0.28);
  color: var(--crm-purple-dark);
}

.crm-product .recovery-engine-tag-dot {
  background: var(--crm-purple);
}

.crm-product .sdr-rec-avatar {
  background: var(--crm-gradient);
  color: #fff;
  font-weight: 800;
}

.crm-product .eae-followup.matched {
  border: 2px solid var(--crm-purple);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(2, 141, 193, 0.1), var(--crm-shadow-card);
}

.crm-product .slr-campaign {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 10px;
  box-shadow: var(--crm-shadow-card);
}

.crm-product .slr-camp-tier.tier-1 {
  background: var(--crm-danger-bg);
  color: var(--crm-danger);
  border: 1px solid var(--crm-danger-border);
}

.crm-product .slr-camp-tier.tier-2 {
  background: var(--crm-warning-bg);
  color: var(--crm-warning);
  border: 1px solid var(--crm-warning-border);
}

.crm-product .slr-camp-tier.tier-3 {
  background: var(--crm-success-bg);
  color: var(--crm-success);
  border: 1px solid var(--crm-success-border);
}

.crm-product .ticket-customer-logo,
.crm-product .field-detail-logo {
  color: #fff;
}

.crm-product .ticket-next-action {
  background: #fff;
  border: 1px solid var(--crm-border);
  border-left: 3px solid var(--crm-purple);
}

.crm-product .wf-trigger {
  border-color: var(--crm-purple);
  box-shadow: var(--crm-shadow-card);
}

/* —— Light theme refinements (home-aligned) —— */
.crm-product .gold,
.crm-product .section-title .gold,
.crm-product h2 .gold {
  color: #028dc1;
}

.crm-product .recovery-section {
  background: var(--crm-surface);
}

.crm-product .sdr-section {
  background: linear-gradient(180deg, #fff 0%, var(--crm-surface) 100%);
}

.crm-product .campaign-section {
  background: #fff;
}

.crm-product .field-section {
  background: #fff;
}

.crm-product .support-section {
  background: var(--crm-surface);
}

.crm-product .workflow-section {
  background: #fff;
}


.crm-product .capability-tag {
  background: #7C7BFF26;
  border-color: rgba(2, 141, 193, 0.25);
}

.crm-product .capability-tag-icon {
  background: linear-gradient(135deg, #027eac 0%, #028dc1 55%, #17a8e0 100%);
  color: #fff;
}

.crm-product .capability-tag-text {
  color: var(--crm-navy);
}

.crm-product .product-frame {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.crm-product .product-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}

.crm-product .eae-engine {
  background: var(--crm-gradient);
}

.crm-product .eae-engine-tag,
.crm-product .recovery-engine-tag-dot {
  background: var(--crm-gradient);
  color: #fff;
}


.crm-product .live-dot {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

/* Product sub-navigation */
.crm-page-nav {
  position: sticky;
  top: 72px;
  z-index: 8;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--crm-border);
  padding: 0;
}

.crm-product .navbar.navbar-expand-md.global-header {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.crm-page-nav .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.crm-page-nav a {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.crm-page-nav a:hover {
  background: var(--crm-surface);
  color: var(--crm-accent-dark);
}

.crm-page-nav a.is-active {
  background: #7C7BFF26;
  color: #028dc1;
}

.crm-product .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.crm-product .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.crm-product .hero-visual {
  animation: crmFloat 6s ease-in-out infinite;
}

@keyframes crmFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .crm-product .hero {
    animation: none;
    background-size: cover;
    background-position: 50% 50%;
  }

  .crm-product .hero::before {
    animation: none;
    background-position: 50% 50%;
    background-size: 100% 100%;
  }

  .crm-product .hero-visual {
    animation: none;
  }

  .crm-product .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.crm-product .hero-left {
  max-width: 560px;
}

.crm-product .breadcrumb-bar a:hover {
  opacity: 1;
}

.crm-product .breadcrumb-sep {
  opacity: 0.4;
}

.crm-product>section {
  padding: 80px 0;
}

/* Prevent horizontal scroll from wide mocks / decorative bleed */
.crm-product {
  overflow-x: clip;
}

@media (max-width: 1000px) {
  .crm-product .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .crm-product .hero h1 {
    font-size: 34px;
  }

  .crm-product .split-grid,
  .crm-product .split-grid.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .crm-product .split-grid .split-text {
    max-width: 100%;
  }

  .crm-product .hv-3pane {
    grid-template-columns: 1fr;
  }

  .crm-product .recovery-cards {
    grid-template-columns: 1fr 1fr;
  }

  .crm-product .industry-boxes {
    grid-template-columns: 1fr;
  }

  .crm-product .eae-canvas {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .crm-product .eae-arrow-right {
    transform: rotate(90deg);
  }

  .crm-product .field-body,
  .crm-product .ticket-body,
  .crm-product .workflow-body {
    grid-template-columns: 1fr;
  }

  .crm-product .section-title {
    font-size: 28px;
  }

  .crm-product .final-cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .crm-page-nav {
    top: 0;
  }

  .crm-product .hero {
    padding: 48px 0 64px;
    min-height: auto;
  }

  .crm-product>section {
    padding: 56px 0;
  }

  .crm-product .final-cta {
    margin: 20px 0 56px;
  }

  .crm-product .final-cta-inner {
    padding: 48px 20px;
    border-radius: 12px;
  }

  .crm-product .final-cta-btns {
    gap: 10px;
  }
}

footer {
  background-color: #000000;
}

footer .aboutus-company .abt-us p,
footer .aboutus-company .footer-section .company-footer ul li a,

footer .aboutus-company .footer-section .support-footer ul li a {
  font-size: 16px;
}

footer .aboutus-company .footer-section .follow-footer ul li a {
  font-size: 26px;
}

/* CRM page footer color override */
.crm-product footer .aboutus-company {
  background-color: #000000;
}

.crm-product footer .aboutus-company h5,
.crm-product footer .aboutus-company p,
.crm-product footer .aboutus-company a,
.crm-product footer .aboutus-company .copy-right p,
.crm-product footer .aboutus-company .contact ul li a {
  color: #ffffff;
}

/* Header nav alignment override for CRM page */
.crm-product .navbar-nav.mb-lg-0 {
  margin-left: 0 !important;
}

.crm-product #navbarTogglerDemo02 .navbar-nav {
  margin-left: 0 !important;
}

/* ============================================================
   ArcPayroll add-ons (prototype migration)
   Keep base layout + tokens aligned with ArcCRM.
   ============================================================ */

/* Alias legacy prototype variables to CRM tokens */
.crm-product {
  --navy: var(--crm-navy);
  --navy-mid: var(--crm-navy-mid);
  --navy-light: var(--crm-navy-light);
  --gold: #fbbc04;
  --gold-dark: #d9a200;
  --gold-light: #fdd84e;
  --green: var(--crm-success);
  --green-light: #22c55e;
  --blue-brand: var(--crm-accent);
  --blue-soft: var(--crm-accent-light);
  --red-brand: var(--crm-danger);
  --amber: var(--crm-warning);
  --white: #ffffff;
  --cream: var(--crm-surface);
  --cream-dark: var(--crm-surface-dark);
  --text-dark: #111111;
  --text-mid: #334155;
  --text-light: var(--crm-text-light);
  --border: var(--crm-border);
  --shadow-sm: var(--crm-shadow-card);
  --shadow-md: var(--crm-shadow-md);
  --radius: 12px;
  --radius-lg: 14px;
}

/* Hide prototype-only underline glyphs used in section tags */
.crm-product .section-tag-line {
  display: none !important;
}

/* --- HERO mock (ArcPayroll `hv-*`) — light theme (ArcCRM-aligned) --- */
.crm-product .hero-visual.product-frame {
  border-color: var(--crm-border);
  box-shadow: var(--crm-shadow-md);
}

.crm-product .hero-visual.product-frame .hero-visual-body {
  background: #ffffff;
  padding: 18px 20px 20px;
}

.crm-product .hero-visual.product-frame .hv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.crm-product .hero-visual.product-frame .hv-head-title {
  font-size: 11px;
  font-weight: 800;
  color: #0e0d59;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crm-product .hero-visual.product-frame .hv-head-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.crm-product .hero-visual.product-frame .live-dot {
  width: 7px;
  height: 7px;
  background: var(--crm-green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.45);
  animation: pulse 1.6s infinite;
}

.crm-product .hero-visual.product-frame .hv-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.crm-product .hero-visual.product-frame .hv-summary-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 12px;
}

.crm-product .hero-visual.product-frame .hv-summary-label {
  font-size: 9px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.crm-product .hero-visual.product-frame .hv-summary-value {
  font-size: 16px;
  font-weight: 800;
  color: #0e0d59;
  line-height: 1;
}

.crm-product .hero-visual.product-frame .hv-summary-value.gold {
  color: #d97706;
}

.crm-product .hero-visual.product-frame .hv-summary-sub {
  font-size: 9.5px;
  color: #64748b;
  margin-top: 3px;
}

.crm-product .hero-visual.product-frame .hv-task-label {
  font-size: 9.5px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 6px 0 10px;
}

.crm-product .hero-visual.product-frame .hv-task-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px 12px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 8px;
}

.crm-product .hero-visual.product-frame .hv-task-row:last-child {
  margin-bottom: 0;
}

.crm-product .hero-visual.product-frame .hv-task-name {
  font-weight: 700;
  color: #0e0d59;
  font-size: 11px;
}

.crm-product .hero-visual.product-frame .hv-task-meta {
  font-size: 9px;
  color: #64748b;
  margin-top: 1px;
}

.crm-product .hero-visual.product-frame .hv-task-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  min-height: 20px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.crm-product .hero-visual.product-frame .hv-task-status.done {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  border-color: rgba(22, 163, 74, 0.35);
}

.crm-product .hero-visual.product-frame .hv-task-status.progress {
  background: rgba(251, 191, 36, 0.14);
  color: #b45309;
  border-color: rgba(251, 191, 36, 0.35);
}

.crm-product .hero-visual.product-frame .hv-task-status.queued {
  background: #f1f5f9;
  color: #64748b;
  border-color: #cbd5e1;
}

/* --- Simulation mock --- */
.crm-product .sim-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--crm-surface) 100%);
  position: relative;
}

.crm-product .sim-canvas {
  padding: 18px 18px;
}

.crm-product .sim-head {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  color: #0e0d59;
  margin-bottom: 14px;
}

.crm-product .sim-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.crm-product .sim-head-label {
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.crm-product .sim-head-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(251, 191, 36, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.55);
  color: #92400e;
  padding: 4px 10px;
  min-height: 20px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 100px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.crm-product .sim-head-tag-dot {
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

.crm-product .sim-head-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.crm-product .sim-head-num {
  text-align: center;
}

.crm-product .sim-head-num-val {
  font-size: 18px;
  font-weight: 800;
  color: #0e0d59;
  line-height: 1;
}

.crm-product .sim-head-num-val.red {
  color: var(--red-brand);
}

.crm-product .sim-head-num-val.gold {
  color: #d97706;
}

.crm-product .sim-head-num-lbl {
  font-size: 9.5px;
  color: #64748b;
  margin-top: 3px;
  letter-spacing: 0.3px;
}

.crm-product .sim-table-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.crm-product .sim-row {
  display: grid;
  grid-template-columns: 26px 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  background: var(--cream);
  border-radius: 8px;
  margin-bottom: 5px;
}

.crm-product .sim-row:last-child {
  margin-bottom: 0;
}

.crm-product .sim-row.flag-red {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.06) 0%, var(--cream) 100%);
  border-left: 3px solid var(--red-brand);
}

.crm-product .sim-row.flag-amber {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.06) 0%, var(--cream) 100%);
  border-left: 3px solid var(--amber);
}

.crm-product .sim-row-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 9.5px;
  font-weight: 800;
}

.crm-product .sim-row-icon.green {
  background: var(--green);
}
.crm-product .sim-row-icon.red {
  background: var(--red-brand);
}
.crm-product .sim-row-icon.amber {
  background: var(--amber);
}

.crm-product .sim-row-name {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
}

.crm-product .sim-row-note {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 1px;
}

.crm-product .sim-row-delta {
  font-weight: 800;
  font-size: 11.5px;
}
.crm-product .sim-row-delta.red {
  color: var(--red-brand);
}
.crm-product .sim-row-delta.amber {
  color: var(--amber);
}
.crm-product .sim-row-delta.green {
  color: var(--green);
}

.crm-product .sim-row-amount {
  font-weight: 800;
  color: var(--navy);
  font-size: 11.5px;
}

.crm-product .sim-footer {
  margin-top: 14px;
  padding: 11px 14px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crm-product .sim-footer-text {
  font-size: 11px;
  color: var(--text-mid);
}

.crm-product .sim-footer-text strong {
  color: var(--navy);
  font-weight: 800;
}

.crm-product .sim-footer-btn {
  background: var(--crm-surface-alt);
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* --- Connected time mock --- */
.crm-product .connected-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--crm-surface) 100%);
  position: relative;
  overflow: hidden;
}

.crm-product .connected-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  gap: 0;
}

.crm-product .connected-pane {
  padding: 18px 16px;
  background: var(--cream);
}

.crm-product .connected-pane-right {
  background: linear-gradient(135deg, rgba(251, 188, 4, 0.06) 0%, var(--cream) 100%);
  border-left: 1px solid var(--border);
}

.crm-product .connected-pane-head {
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.crm-product .connected-pane-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.crm-product .connected-pane-head-right .connected-pane-label {
  color: var(--crm-accent);
}

.crm-product .connected-pane-sub {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 2px;
}

.crm-product .connected-step {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 5px;
}

.crm-product .connected-step:last-child {
  margin-bottom: 0;
}

.crm-product .connected-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 10.5px;
  font-weight: 800;
  background: var(--crm-danger);
}

.crm-product .connected-step-name {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
}

.crm-product .connected-step-meta {
  font-size: 9.5px;
  color: var(--text-light);
  margin-top: 1px;
}

.crm-product .connected-route {
  background: var(--white);
  border: 1.5px solid rgba(2, 141, 193, 0.35);
  border-radius: 10px;
  padding: 11px 12px;
  margin-bottom: 8px;
  box-shadow: 0 0 0 3px rgba(2, 141, 193, 0.08);
}

.crm-product .connected-route-tag {
  font-size: 8.5px;
  font-weight: 800;
  background: var(--crm-gradient);
  color: #fff;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.crm-product .connected-route-flow {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 5px;
}

.crm-product .connected-route-from,
.crm-product .connected-route-to {
  background: var(--crm-surface-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 9px;
  text-align: center;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--navy);
}

.crm-product .connected-route-to {
  background: #ffffff;
  color: #0e0d59;
  border-color: rgba(2, 141, 193, 0.35);
}

.crm-product .connected-route-arrow {
  text-align: center;
  color: var(--crm-accent-dark);
  font-size: 16px;
  font-weight: 800;
}

.crm-product .connected-route-note {
  font-size: 9.5px;
  color: var(--text-light);
  margin-top: 2px;
}

.crm-product .connected-status {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.08) 0%, var(--white) 100%);
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 4px;
}

.crm-product .connected-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.crm-product .connected-status-label {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--navy);
}

.crm-product .connected-status-tag {
  font-size: 8.5px;
  font-weight: 800;
  background: var(--green);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.crm-product .connected-status-meta {
  font-size: 9.5px;
  color: var(--text-light);
}

/* --- Tasks mock --- */
.crm-product .tasks-section {
  background: var(--crm-surface);
  position: relative;
}

.crm-product .tasks-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px 16px;
  background: var(--white);
}

.crm-product .task-col {
  background: var(--cream);
  border-radius: 10px;
  padding: 10px;
  min-height: 250px;
}

.crm-product .task-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--border);
}

.crm-product .task-col-name {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.crm-product .task-col-count {
  font-size: 10px;
  font-weight: 700;
  background: var(--white);
  color: var(--text-mid);
  padding: 2px 8px;
  border-radius: 100px;
}

.crm-product .task-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 10px;
  margin-bottom: 6px;
}
.crm-product .task-card:last-child {
  margin-bottom: 0;
}
.crm-product .task-card.active {
  border-color: rgba(251, 188, 4, 0.7);
  background: linear-gradient(135deg, rgba(251, 188, 4, 0.08) 0%, var(--white) 100%);
}
.crm-product .task-card.done {
  opacity: 0.85;
}
.crm-product .task-card-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.crm-product .task-card-owner {
  display: flex;
  align-items: center;
  gap: 6px;
}
.crm-product .task-card-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0e0d59;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8.5px;
  font-weight: 800;
}
.crm-product .task-card-owner-name {
  font-size: 10px;
  color: var(--text-mid);
  font-weight: 600;
}
.crm-product .task-card-due {
  font-size: 9.5px;
  color: var(--text-light);
  margin-top: 4px;
}
.crm-product .task-card-due strong {
  color: var(--gold-dark);
  font-weight: 700;
}

/* --- Payment tracking mock --- */
.crm-product .pay-section {
  background: #fff;
  position: relative;
}

.crm-product .pay-head {
  padding: 14px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  color: #0e0d59;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crm-product .pay-head-label {
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.crm-product .pay-head-title {
  font-size: 13px;
  font-weight: 800;
  color: #0e0d59;
}

.crm-product .pay-head-stat-val {
  font-size: 18px;
  font-weight: 800;
  color: #d97706;
  line-height: 1;
}

.crm-product .pay-head-stat-lbl {
  font-size: 9.5px;
  color: #64748b;
  margin-top: 2px;
}

.crm-product .pay-statuses {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 14px 14px;
  background: var(--cream);
}

.crm-product .pay-status {
  background: var(--white);
  border-radius: 10px;
  padding: 12px 12px;
  border-top: 3px solid var(--border);
}

.crm-product .pay-status.green {
  border-top-color: var(--green);
}
.crm-product .pay-status.amber {
  border-top-color: var(--amber);
}
.crm-product .pay-status.red {
  border-top-color: var(--red-brand);
}

.crm-product .pay-status-label {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.crm-product .pay-status-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.crm-product .pay-status.red .pay-status-val {
  color: var(--red-brand);
}
.crm-product .pay-status.amber .pay-status-val {
  color: var(--amber);
}
.crm-product .pay-status.green .pay-status-val {
  color: var(--green);
}

.crm-product .pay-status-sub {
  font-size: 10.5px;
  color: var(--text-light);
  margin-top: 3px;
}

.crm-product .pay-status-action {
  margin-top: 8px;
  font-size: 9.5px;
  font-weight: 800;
  color: var(--red-brand);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.crm-product .pay-failed-list {
  padding: 14px 18px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.crm-product .pay-failed-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.crm-product .pay-failed-row {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, var(--white) 100%);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 6px;
}
.crm-product .pay-failed-row:last-child {
  margin-bottom: 0;
}
.crm-product .pay-failed-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}
.crm-product .pay-failed-name {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--navy);
}
.crm-product .pay-failed-amount {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--red-brand);
}
.crm-product .pay-failed-reason {
  font-size: 10.5px;
  color: var(--text-mid);
  line-height: 1.4;
}
.crm-product .pay-failed-reason strong {
  color: var(--gold-dark);
  font-weight: 700;
}

/* --- Forms & e-filing mock --- */
.crm-product .forms-section {
  background: var(--crm-surface);
  position: relative;
}

.crm-product .forms-tabs {
  display: flex;
  gap: 4px;
  padding: 14px 16px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.crm-product .forms-tab {
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  cursor: default;
}

.crm-product .forms-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  font-weight: 800;
}

.crm-product .forms-list {
  padding: 16px;
  background: var(--white);
}

.crm-product .form-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 6px;
}
.crm-product .form-row:last-child {
  margin-bottom: 0;
}
.crm-product .form-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}
.crm-product .form-info-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.crm-product .form-info-meta {
  font-size: 10.5px;
  color: var(--text-light);
}
.crm-product .form-status {
  font-size: 9.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.crm-product .form-status.filed {
  background: rgba(22, 163, 74, 0.15);
  color: var(--green);
  border: 1px solid rgba(22, 163, 74, 0.35);
}
.crm-product .form-status.ready {
  background: rgba(251, 188, 4, 0.18);
  color: #a16207;
  border: 1px solid rgba(251, 188, 4, 0.4);
}
.crm-product .form-confirmation {
  font-size: 9.5px;
  color: var(--text-light);
  font-weight: 600;
}

/* --- Templates mock --- */
.crm-product .templates-section {
  background: var(--crm-surface);
  position: relative;
  overflow: hidden;
}
.crm-product .templates-flow {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  padding: 18px 18px;
  background: var(--white);
  gap: 14px;
}
.crm-product .templates-list {
  background: var(--crm-surface-alt);
  border-radius: 12px;
  padding: 14px;
}
.crm-product .templates-list-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.crm-product .template-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  margin-bottom: 6px;
}
.crm-product .template-card:last-child {
  margin-bottom: 0;
}
.crm-product .template-card.active {
  border-color: rgba(251, 188, 4, 0.8);
  background: linear-gradient(135deg, rgba(251, 188, 4, 0.08) 0%, var(--white) 100%);
  box-shadow: 0 0 0 3px rgba(251, 188, 4, 0.12);
}
.crm-product .template-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.crm-product .template-name {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--navy);
}
.crm-product .template-tag {
  font-size: 8.5px;
  font-weight: 800;
  background: var(--crm-surface-dark);
  color: var(--text-mid);
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}
.crm-product .template-card.active .template-tag {
  background: var(--gold);
  color: #000;
}
.crm-product .template-meta {
  font-size: 10px;
  color: var(--text-light);
}
.crm-product .template-detail {
  background: var(--crm-surface-alt);
  border-radius: 12px;
  padding: 14px;
}
.crm-product .template-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.crm-product .template-detail-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}
.crm-product .template-detail-tag {
  font-size: 9px;
  font-weight: 800;
  background: var(--green);
  color: var(--white);
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}
.crm-product .template-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.crm-product .template-cat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 11px;
}
.crm-product .template-cat-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 6px;
}
.crm-product .template-cat-icon.earnings {
  background: #d9a200;
}
.crm-product .template-cat-icon.taxes {
  background: var(--crm-accent);
}
.crm-product .template-cat-icon.deductions {
  background: var(--crm-danger);
}
.crm-product .template-cat-icon.benefits {
  background: var(--green);
}
.crm-product .template-cat-icon.leave {
  background: var(--navy);
}
.crm-product .template-cat-name {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1px;
}
.crm-product .template-cat-meta {
  font-size: 9.5px;
  color: var(--text-light);
}

.crm-product .template-cat-wide {
  grid-column: span 2;
}

/* Emoji support for industries blocks on this page */
.crm-product .industry-emoji {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}

@media (max-width: 1000px) {
  .crm-product .hero-visual.product-frame .hv-summary {
    grid-template-columns: 1fr;
  }
  .crm-product .sim-head-numbers {
    grid-template-columns: 1fr;
  }
  .crm-product .connected-compare {
    grid-template-columns: 1fr;
  }
  .crm-product .connected-pane-right {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .crm-product .templates-flow {
    grid-template-columns: 1fr;
  }
  .crm-product .template-categories {
    grid-template-columns: 1fr;
  }
  .crm-product .tasks-board {
    grid-template-columns: 1fr 1fr;
  }
  .crm-product .pay-statuses {
    grid-template-columns: 1fr;
  }
}