.industries-wrapper {
  background: #f4f8f2;
  padding: 90px 20px;
  font-family: 'Inter', sans-serif;
}

.industries-container {
  max-width: 1250px;
  margin: auto;
}

/* HEADER */
.industries-header {
  text-align: center;
  margin-bottom: 80px;
}

.industries-header h1 {
  font-size: 44px;
  color: #2f4f2f;
  margin-bottom: 15px;
}

.industries-header p {
  font-size: 18px;
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
  color: #444;
}

/* GRID */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

@media(max-width: 1000px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 650px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.industry-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #6b8e23, #9acd32);
}

.industry-card:hover {
  transform: translateY(-8px);
}

.industry-icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.industry-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2f4f2f;
}

.industry-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
}

/* TRUST */
.industries-trust {
  margin-top: 90px;
  text-align: center;
}

.industries-trust h2 {
  font-size: 32px;
  color: #2f4f2f;
  margin-bottom: 20px;
}

.industries-trust p {
  max-width: 900px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}
