/* ================================================================
   KwikestCRM — product-service-crm.css
   Styles specific to the Service Management CRM product page.
================================================================ */


/* ----------------------------------------------------------------
   PAGE HERO
---------------------------------------------------------------- */
.product-hero {
  background: var(--gradient-hero);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.product-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,70,229,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}

.product-hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,.28) 0%, transparent 70%);
  top: -120px;
  left: -120px;
  animation: float-glow 7s ease-in-out infinite;
  pointer-events: none;
}

.product-hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,.18) 0%, transparent 70%);
  bottom: -60px;
  right: 5%;
  animation: float-glow 9s ease-in-out infinite reverse;
  pointer-events: none;
}

.product-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,70,229,.2);
  border: 1px solid rgba(79,70,229,.4);
  color: var(--primary-light);
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  letter-spacing: .04em;
}

.product-hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.product-hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.72);
  line-height: 1.78;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

/* Hero stat pills */
.hero-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2.5rem;
}

.hero-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  padding: 8px 18px;
  backdrop-filter: blur(8px);
}

.hero-stat-pill-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
}

.hero-stat-pill-label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* Hero visual card */
.product-hero-visual {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-2xl);
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
}

.hero-visual-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-dot.r { background: #ff5f56; }
.hero-dot.y { background: #ffbd2e; }
.hero-dot.g { background: #27c93f; }

.hero-visual-url {
  flex: 1;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  margin-left: 10px;
}

/* Ticket row inside visual */
.ticket-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 6px;
  transition: var(--transition);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
}

.ticket-row:hover { background: rgba(255,255,255,.08); }

.ticket-id {
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary-light);
  white-space: nowrap;
  min-width: 64px;
}

.ticket-title {
  font-size: .78rem;
  color: rgba(255,255,255,.8);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticket-badge {
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .04em;
}

.tb-open    { background: rgba(79,70,229,.25); color: #a5b4fc; }
.tb-inprog  { background: rgba(245,158,11,.2); color: #fcd34d; }
.tb-closed  { background: rgba(16,185,129,.2); color: #6ee7b7; }
.tb-overdue { background: rgba(239,68,68,.2);  color: #fca5a5; }

.ticket-timer {
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}

/* SLA bar inside ticket row */
.sla-mini-bar {
  width: 60px;
  height: 4px;
  border-radius: 100px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}

.sla-mini-fill {
  height: 100%;
  border-radius: 100px;
}

.sla-g { background: #10b981; }
.sla-y { background: #f59e0b; }
.sla-r { background: #ef4444; }


/* ----------------------------------------------------------------
   BREADCRUMB
---------------------------------------------------------------- */
.breadcrumb-wrap {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.breadcrumb {
  margin: 0;
  font-size: .82rem;
}

.breadcrumb-item a {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumb-item.active { color: var(--text-muted); }

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: var(--text-muted);
}


/* ----------------------------------------------------------------
   OVERVIEW STRIP
---------------------------------------------------------------- */
.overview-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.overview-strip-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.overview-strip-inner::-webkit-scrollbar { display: none; }

.overview-nav-link {
  flex-shrink: 0;
  padding: 16px 22px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.overview-nav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary-light);
}

.overview-nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}


/* ----------------------------------------------------------------
   MODULE SECTION  — shared wrapper
---------------------------------------------------------------- */
.module-section {
  padding: 100px 0;
}

.module-section.alt { background: var(--surface); }
.module-section.dark {
  background: var(--gradient-dark);
}

/* Module section label */
.module-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: white;
  font-size: .78rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  margin-right: 10px;
  flex-shrink: 0;
}

.module-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}

.module-heading.light { color: var(--white); }

.module-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2rem;
}

.module-desc.light { color: rgba(255,255,255,.7); }


/* ----------------------------------------------------------------
   FEATURE DETAIL CARDS
---------------------------------------------------------------- */
.feature-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.feature-detail-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-detail-card:hover::before { transform: scaleX(1); }

.fdc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.fdc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.fdc-desc {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.fdc-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fdc-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .825rem;
  color: var(--text-secondary);
  padding: 4px 0;
  line-height: 1.5;
}

.fdc-points li i {
  color: var(--accent-green);
  font-size: .72rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Dark variant */
.feature-detail-card.dark-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}

.feature-detail-card.dark-card:hover {
  border-color: rgba(79,70,229,.4);
  background: rgba(255,255,255,.08);
}

.feature-detail-card.dark-card .fdc-title { color: var(--white); }
.feature-detail-card.dark-card .fdc-desc  { color: rgba(255,255,255,.6); }
.feature-detail-card.dark-card .fdc-points li { color: rgba(255,255,255,.6); }


/* ----------------------------------------------------------------
   TICKET MODULE VISUAL
---------------------------------------------------------------- */
.ticket-lifecycle {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.ticket-lifecycle-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79,70,229,.2) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.lifecycle-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}

.lifecycle-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 46px;
  width: 2px;
  height: calc(100% - 14px);
  background: linear-gradient(
    to bottom,
    rgba(79,70,229,.5),
    rgba(79,70,229,.1)
  );
}

.lifecycle-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.lifecycle-dot.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 0 0 4px rgba(79,70,229,.2);
}

.lifecycle-dot.idle {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.4);
}

.lifecycle-content { padding-top: 6px; }

.lifecycle-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.lifecycle-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
}

/* SLA meter */
.sla-meter-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 16px;
}

.sla-meter-label {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
  font-weight: 600;
}

.sla-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.sla-row:last-child { margin-bottom: 0; }

.sla-type {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  width: 90px;
  flex-shrink: 0;
  font-weight: 500;
}

.sla-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 100px;
  overflow: hidden;
}

.sla-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.5s ease;
}

.sla-pct {
  font-size: .72rem;
  font-weight: 700;
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}


/* ----------------------------------------------------------------
   ASSET MODULE VISUAL
---------------------------------------------------------------- */
.asset-table-mock {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.asset-table-header {
  background: var(--primary);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.asset-table-title {
  font-size: .85rem;
  font-weight: 700;
  color: white;
}

.asset-table-actions {
  display: flex;
  gap: 6px;
}

.ata-btn {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .7rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.ata-btn:hover { background: rgba(255,255,255,.3); }

.asset-table-body { padding: 8px; }

.asset-row {
  display: grid;
  grid-template-columns: 1fr 1fr .8fr .8fr .6fr;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  transition: var(--transition);
  align-items: center;
}

.asset-row.header-row {
  background: var(--surface);
}

.asset-row:not(.header-row):hover {
  background: var(--primary-xlight);
}

.asset-cell {
  font-size: .78rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.asset-cell.col-head {
  font-weight: 700;
  color: var(--text-muted);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.asset-status {
  display: inline-flex;
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.as-active   { background: #d1fae5; color: #065f46; }
.as-transfer { background: #fef3c7; color: #92400e; }
.as-disposed { background: #fee2e2; color: #991b1b; }
.as-repair   { background: #e0e7ff; color: #3730a3; }

/* Asset lifecycle timeline */
.asset-timeline {
  position: relative;
  padding-left: 28px;
}

.asset-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 2px;
}

.at-item {
  position: relative;
  margin-bottom: 20px;
}

.at-item:last-child { margin-bottom: 0; }

.at-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--white);
  z-index: 1;
}

.at-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.at-meta {
  font-size: .775rem;
  color: var(--text-muted);
}


/* ----------------------------------------------------------------
   NOTIFICATION PREVIEW CARD
---------------------------------------------------------------- */
.notif-preview-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notif-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.notif-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}

.notif-card.nc-generate::before { background: var(--primary); }
.notif-card.nc-assign::before   { background: var(--accent-amber); }
.notif-card.nc-close::before    { background: var(--accent-green); }
.notif-card.nc-report::before   { background: var(--secondary); }

.notif-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.notif-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.notif-subject {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.notif-preview-text {
  font-size: .775rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.notif-time {
  font-size: .7rem;
  color: var(--text-muted);
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Email template mock */
.email-mock {
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.email-header {
  background: var(--gradient-primary);
  padding: 20px 24px;
}

.email-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
}

.email-body {
  padding: 24px;
  background: white;
}

.email-greeting {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.email-content {
  font-size: .825rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.email-detail-table {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.edt-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: .8rem;
  border-bottom: 1px solid var(--border-light);
}

.edt-row:last-child { border-bottom: none; }

.edt-label { color: var(--text-muted); font-weight: 500; }
.edt-value { color: var(--text-primary); font-weight: 700; }

.email-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-primary);
  color: white;
  font-size: .82rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-md);
}

.email-footer-strip {
  background: var(--surface);
  padding: 14px 24px;
  font-size: .72rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}


/* ----------------------------------------------------------------
   COMMON FEATURES MODULE
---------------------------------------------------------------- */
.common-feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.common-feat-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.cfc-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cfc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cfc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cfc-desc {
  font-size: .855rem;
  color: var(--text-secondary);
  line-height: 1.68;
}

.cfc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.cfc-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Invoice mock */
.invoice-mock {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.invoice-mock-header {
  background: var(--gradient-primary);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.invoice-mock-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: white;
}

.invoice-mock-num {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  text-align: right;
}

.invoice-mock-body { padding: 20px 24px; }

.invoice-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: .8rem;
  border-bottom: 1px solid var(--border-light);
}

.invoice-line:last-child { border-bottom: none; }

.il-item  { color: var(--text-primary); font-weight: 500; flex: 1; }
.il-qty   { color: var(--text-muted); width: 40px; text-align: center; }
.il-price { color: var(--text-primary); font-weight: 700; text-align: right; width: 72px; }

.invoice-total-strip {
  background: var(--surface);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--border);
}

.it-label { font-size: .85rem; font-weight: 700; color: var(--text-primary); }
.it-value {
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-display);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ----------------------------------------------------------------
   INDUSTRIES SERVED (mini)
---------------------------------------------------------------- */
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.industry-pill:hover {
  background: var(--primary-xlight);
  border-color: var(--primary-light);
  color: var(--primary);
}

.industry-pill i {
  color: var(--primary);
  font-size: .9rem;
}


/* ----------------------------------------------------------------
   CTA BANNER (inline)
---------------------------------------------------------------- */
.inline-cta-banner {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.inline-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,.06) 0%, transparent 50%);
  pointer-events: none;
}

.icb-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.icb-subtitle {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}

.icb-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}


/* ----------------------------------------------------------------
   TESTIMONIAL (single — product page)
---------------------------------------------------------------- */
.product-testimonial {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 28px 32px;
}

.pt-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.pt-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pt-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  color: white;
  flex-shrink: 0;
}

.pt-name { font-size: .9rem; font-weight: 700; color: var(--text-primary); }
.pt-role { font-size: .78rem; color: var(--text-muted); }


/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .product-hero    { padding: 130px 0 72px; }
  .module-section  { padding: 72px 0; }
  .inline-cta-banner { padding: 32px 28px; }

  .asset-row {
    grid-template-columns: 1fr 1fr .8fr;
  }
  .asset-row > .asset-cell:nth-child(4),
  .asset-row > .asset-cell:nth-child(5) { display: none; }
}

@media (max-width: 767.98px) {
  .product-hero    { padding: 110px 0 60px; }
  .module-section  { padding: 56px 0; }
  .overview-strip  { top: 60px; }

  .hero-stat-row   { gap: 8px; }
  .inline-cta-banner { padding: 28px 20px; text-align: center; justify-content: center; }
  .icb-actions     { justify-content: center; width: 100%; }

  .ticket-row      { flex-wrap: wrap; }
  .ticket-timer,
  .sla-mini-bar    { display: none; }
}