/* ============================================
   INDUSTRY SOLUTIONS SECTION
   Industry-specific expertise showcase
   ============================================ */

/* Industries Section */
.industries-section {
  padding: 120px 24px;
  background: var(--grey-50);
}

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

/* Section Header */
.industries-section .section-header {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center;
}

.industries-section .section-overline {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-600);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.industries-section .section-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.industries-section .section-subtitle {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--grey-600);
  line-height: 1.7;
}

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

/* Industry Card */
.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--grey-200);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--orange-500);
}

/* Industry Icon */
.industry-icon {
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1;
}

/* Industry Title */
.industry-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

/* Industry Description */
.industry-description {
  font-size: 15px;
  color: var(--grey-600);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Industry Locations */
.industry-locations {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
}

/* Industry Arrow */
.industry-arrow {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange-500);
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-arrow {
  transform: translateX(4px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (≤ 968px) */
@media (max-width: 968px) {
  .industries-section {
    padding: 80px 24px;
  }

  .industries-section .section-header {
    margin-bottom: 48px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .industry-card {
    padding: 32px;
  }
}

/* Mobile (≤ 640px) */
@media (max-width: 640px) {
  .industries-section {
    padding: 60px 20px;
  }

  .industries-section .section-header {
    margin-bottom: 40px;
  }

  .industry-card {
    padding: 28px;
  }

  .industry-icon {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .industry-title {
    font-size: 20px;
  }

  .industry-description {
    font-size: 14px;
  }
}
