.industries-hero {
  padding-top: calc(var(--spacing-3xl) + 100px);
  padding-bottom: var(--spacing-2xl);
  text-align: center;
  background: linear-gradient(135deg, var(--obsidian-black) 0%, var(--graphite-dark) 100%);
}

.industries-hero h1 {
  margin-bottom: var(--spacing-md);
}

.industries-intro {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.industries-list {
  padding: var(--spacing-3xl) 0;
  background-color: var(--obsidian-black);
}

.industry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  padding: var(--spacing-2xl) 0;
  border-bottom: 1px solid rgba(192, 192, 192, 0.04);
  scroll-margin-top: 120px;
}

.industry-row:last-child {
  border-bottom: none;
}

.industry-content {
  max-width: 540px;
}

.industry-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--spacing-md);
  color: var(--white);
  text-align: left;
  line-height: 1.3;
}

.industry-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

.industry-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.industry-placeholder {
  width: 100%;
  max-width: 460px;
  height: 240px;
  background: linear-gradient(135deg, rgba(10, 103, 163, 0.08) 0%, rgba(10, 103, 163, 0.02) 100%);
  border: 1px solid rgba(192, 192, 192, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.industry-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(30, 144, 255, 0.05) 0%, transparent 70%);
}

.industry-row:nth-child(even) .industry-content {
  order: 2;
  margin-left: auto;
}

.industry-row:nth-child(even) .industry-visual {
  order: 1;
}

.industries-cta {
  padding: var(--spacing-3xl) 0;
  background-color: var(--graphite-dark);
  border-top: 1px solid rgba(192, 192, 192, 0.06);
  text-align: center;
}

.industries-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.industries-cta h2 {
  margin-bottom: var(--spacing-md);
}

.industries-cta p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 1024px) {
  .industry-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
  }

  .industry-row:nth-child(even) .industry-content {
    order: 1;
    margin-left: 0;
  }

  .industry-row:nth-child(even) .industry-visual {
    order: 2;
  }

  .industry-content {
    max-width: 100%;
  }

  .industry-content h2 {
    text-align: center;
  }

  .industry-row:nth-child(even) .industry-content h2 {
    text-align: center;
  }

  .industry-placeholder {
    max-width: 100%;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .industries-hero {
    padding-top: calc(var(--spacing-2xl) + 100px);
    padding-bottom: var(--spacing-xl);
  }

  .industries-hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .industries-intro {
    font-size: 1rem;
  }

  .industries-list {
    padding: var(--spacing-2xl) 0;
  }

  .industry-row {
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
  }

  .industry-content {
    text-align: center;
  }

  .industry-content h2 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  .industry-description {
    font-size: 1rem;
  }

  .industry-placeholder {
    height: 180px;
  }

  .industries-cta {
    padding: var(--spacing-2xl) 0;
  }
}

@media (max-width: 480px) {
  .industries-hero {
    padding-top: calc(var(--spacing-xl) + 90px);
    padding-bottom: var(--spacing-lg);
  }

  .industries-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .industries-intro {
    font-size: 0.9375rem;
  }

  .industries-list {
    padding: var(--spacing-xl) 0;
  }

  .industry-row {
    gap: var(--spacing-sm);
    padding: var(--spacing-md) 0;
  }

  .industry-content h2 {
    margin-bottom: var(--spacing-sm);
  }

  .industry-description {
    font-size: 0.9375rem;
  }

  .industry-placeholder {
    height: 160px;
  }

  .industries-cta {
    padding: var(--spacing-xl) 0;
  }

  .industries-cta p {
    font-size: 1rem;
  }
}
