.industries {
  padding: 110px 5%;
  background: var(--blue-ghost);
}
.industries-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.industries-head {
  max-width: 540px;
  margin-bottom: 3.5rem;
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
}
.ind-card {
  background: var(--white);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.ind-card:hover {
  border-bottom-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11, 36, 71, 0.08);
}
.ind-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
}
.ind-label {
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 400px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
}
