/* ===== INDUSTRIES PAGE ===== */

.industries-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  overflow: hidden;
}

.industries-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.industries-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.industries-hero .hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 22, 40, 0.85) 100%);
}

.industries-hero .hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.industries-hero-inner {
  max-width: 660px;
  text-align: center;
  margin: 0 auto;
}

.industries-hero-inner h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.industries-hero-inner h1 .highlight-blue {
  display: block;
}

.industries-hero-inner .hero-sub {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Industry grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.industry-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(30, 144, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.industry-icon .material-symbols-outlined {
  font-size: 24px;
  color: var(--blue);
}

.industry-icon--teal {
  background: rgba(0, 212, 170, 0.08);
}

.industry-icon--teal .material-symbols-outlined {
  color: var(--teal);
}

.industry-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.industry-desc {
  font-size: 14px;
  color: #5a6577;
  line-height: 1.7;
  margin-bottom: 16px;
}

.industry-card h4 {
  font-size: 12px;
  font-weight: 600;
  color: #8a95a5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.industry-points {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.industry-points li {
  font-size: 13px;
  color: #5a6577;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.industry-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}

.industry-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.industry-features span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  background: rgba(0, 212, 170, 0.06);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}

.industry-features .material-symbols-outlined {
  font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .industries-hero {
    padding: 120px 0 60px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .industry-card {
    padding: 24px;
  }
}
