/* service-expansion.css — supplemental H2 content sections on service pages */

.svc-exp-section {
  padding: 80px 24px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-exp-container {
  max-width: 860px;
  margin: 0 auto;
}

.svc-exp-h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.svc-exp-container h2.svc-exp-h2:not(:first-child) {
  margin-top: 48px;
}

.svc-exp-h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 28px 0 12px;
  line-height: 1.3;
}

.svc-exp-body {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.70);
  margin: 0 0 22px;
  max-width: 740px;
}

.svc-exp-body:last-child {
  margin-bottom: 0;
}

/* Industry grid */
.svc-exp-industry {
  padding-bottom: 100px;
}

.svc-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 36px;
}

.svc-industry-link {
  display: block;
  padding: 11px 15px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  line-height: 1.4;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.svc-industry-link:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.20);
  color: #ffffff;
}

@media (max-width: 991px) {
  .svc-exp-h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .svc-exp-section {
    padding: 56px 20px;
  }
  .svc-industry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 479px) {
  .svc-exp-section {
    padding: 48px 16px;
  }
  .svc-industry-grid {
    grid-template-columns: 1fr;
  }
}
