/* ============================================================
   NPR Solutions — Industries Page Styles
   ============================================================ */

.industries-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
}
.industry-count-row {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
}
.industry-count {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--gray-200);
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.industry-count:last-child { border-right: none; }
.industry-count span {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 4px;
}

/* ── Industry Sections ── */
.industry-section { padding: var(--section-pad) 0; border-bottom: 1px solid var(--gray-100); }
.industry-section--alt { background: var(--off-white); }
.industry-section:last-of-type { border-bottom: none; }

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.industry-grid--reverse { direction: rtl; }
.industry-grid--reverse > * { direction: ltr; }

.industry-icon-large {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: var(--shadow-blue);
}
.industry-text p { color: var(--text-body); line-height: 1.75; margin-bottom: 0; }
.industry-needs {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.industry-needs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.5;
}
.industry-needs li i {
  color: var(--blue-bright);
  width: 18px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}
.industry-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform .4s ease;
}
.industry-image img:hover { transform: scale(1.02); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .industry-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .industry-grid { grid-template-columns: 1fr; gap: 28px; direction: ltr !important; }
  .industry-grid--reverse .industry-image { order: -1; }
  .industry-count-row { flex-wrap: wrap; }
  .industry-count { flex: 0 0 50%; border-bottom: 1px solid var(--gray-200); }
  .industry-count:nth-child(even) { border-right: none; }
  .industry-count:nth-last-child(-n+2) { border-bottom: none; }
}
