/* ==========================================================================
   services.css — Nexron Services (all products) page styles
   Extends product-base.css. No raw hex values.
   ========================================================================== */

/* Active nav */
.pg-services .nx-nav__dropdown-menu a[href="services.html"],
.pg-services .nx-nav__mobile a[href="services.html"] {
  color: var(--nx-orange-dark);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Quick nav bar
   -------------------------------------------------------------------------- */
.services-qnav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: var(--nx-surface);
  border-bottom: 1px solid var(--nx-line);
  padding: var(--nx-s-2) 0;
}

.services-qnav__inner {
  display: flex;
  align-items: center;
  gap: var(--nx-s-2);
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 var(--nx-s-5);
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.services-qnav__inner::-webkit-scrollbar {
  display: none;
}

.services-qnav__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: var(--nx-r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--nx-ink-soft);
  background: var(--nx-surface-warm);
  border: 1px solid var(--nx-line);
  text-decoration: none;
  transition: background 150ms, color 150ms, border-color 150ms;
  cursor: pointer;
}

.services-qnav__btn:hover,
.services-qnav__btn.active {
  background: var(--nx-orange-tint);
  color: var(--nx-orange-dark);
  border-color: var(--nx-orange);
}

/* --------------------------------------------------------------------------
   Featured product card (Vision)
   -------------------------------------------------------------------------- */
.pg-product-featured {
  background: var(--nx-surface-warm);
  border: 1.5px solid var(--nx-orange);
  border-radius: var(--nx-r-lg);
  padding: var(--nx-s-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--nx-s-6);
  margin-bottom: var(--nx-s-8);
}

@media (min-width: 768px) {
  .pg-product-featured {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.pg-product-featured__body {
  display: flex;
  flex-direction: column;
  gap: var(--nx-s-4);
}

.pg-product-featured__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nx-orange-dark);
}

.pg-product-featured h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--nx-ink);
  margin: 0;
}

.pg-product-featured p {
  font-size: 1rem;
  color: var(--nx-ink-soft);
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}

.pg-product-featured__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--nx-s-2);
}

.pg-product-featured__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--nx-s-2);
  font-size: 0.9375rem;
  color: var(--nx-ink-soft);
}

.pg-product-featured__list li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%23E07D0A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pg-product-featured__actions {
  display: flex;
  gap: var(--nx-s-3);
  flex-wrap: wrap;
  padding-top: var(--nx-s-2);
}

.pg-product-featured__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  background: var(--nx-orange-tint);
  border-radius: var(--nx-r-lg);
  color: var(--nx-orange-dark);
  flex-shrink: 0;
}

.pg-product-featured__visual svg {
  width: 80px;
  height: 80px;
  stroke: currentColor;
}

/* --------------------------------------------------------------------------
   Product card grid
   -------------------------------------------------------------------------- */
.pg-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--nx-s-5);
}

@media (min-width: 640px) {
  .pg-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pg-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual product card */
.pg-product-card {
  background: var(--nx-surface);
  border: 1px solid var(--nx-line);
  border-radius: var(--nx-r-lg);
  padding: var(--nx-s-6);
  display: flex;
  flex-direction: column;
  gap: var(--nx-s-3);
  transition: box-shadow 200ms, transform 200ms;
}

.pg-product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.pg-product-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--nx-r-md);
  background: var(--nx-orange-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nx-orange-dark);
  flex-shrink: 0;
}

.pg-product-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.pg-product-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nx-orange-dark);
}

.pg-product-card__soon {
  display: inline-flex;
  align-items: center;
  background: var(--nx-orange);
  color: var(--nx-ink);
  padding: 0.2rem 0.625rem;
  border-radius: var(--nx-r-pill);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pg-product-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--nx-ink);
  margin: 0;
}

.pg-product-card > p {
  font-size: 0.9375rem;
  color: var(--nx-ink-soft);
  line-height: 1.6;
  margin: 0;
}

.pg-product-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--nx-s-2);
  flex: 1;
}

.pg-product-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--nx-s-2);
  font-size: 0.875rem;
  color: var(--nx-ink-soft);
  line-height: 1.45;
}

.pg-product-card__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%23E07D0A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pg-product-card__cta {
  margin-top: var(--nx-s-2);
}
