/* ================================
   INDUSTRY PAGES – ONLY
================================ */

.industry-hero {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.industry-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.industry-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
}

.industry-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.industry-hero p {
  font-size: 18px;
  line-height: 1.6;
}

.industry-section {
  padding: 80px 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.industry-content h2 {
  margin-bottom: 15px;
}

.industry-content h3 {
  margin-top: 30px;
}

.industry-content ul {
  padding-left: 18px;
}

.industry-checklist {
  list-style: none;
  padding-left: 0;
}

.industry-checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}

.industry-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.industry-cta {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}
