.industries-section {
  padding: 7rem 1rem;
  position: relative;
  background: #0a0a0a;
  color: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.section-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 4rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ef4444;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.highlight {
  background: linear-gradient(90deg, #ef4444, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

/* Card */
.industry-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
}

.industry-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.industry-card:hover {
  transform: translateY(-12px);
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

/* Spotlight Effect */
.industry-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 1;
}

.industry-card:hover::before {
  opacity: 1;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #ef4444;
}

.industry-card:hover .icon-wrapper {
  background: rgba(239, 68, 68, 0.2);
  transform: scale(1.12);
}

.industry-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.industry-card-link {
  color: inherit;
  text-decoration: none;
}

.industry-card-link:hover {
  color: inherit;
}

/* Responsive */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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