.industry-product-stack {
  width: min(1180px, calc(100% - 32px));
  margin: 70px auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0, rgba(37, 99, 235, 0.09), transparent 30%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 68px rgba(15, 23, 42, 0.08);
}

.industry-product-stack__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.industry-product-stack__eyebrow {
  margin: 0 0 10px;
  color: #2563eb;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.industry-product-stack h2 {
  margin: 0;
  color: #101827;
  font: 900 clamp(2rem, 4.2vw, 4.4rem)/0.96 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.06em;
}

.industry-product-stack__intro {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

.industry-product-stack__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.industry-product-stack__card {
  min-height: 176px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  color: #111827;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industry-product-stack__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eef4ff;
  color: #2563eb;
  font-weight: 900;
}

.industry-product-stack__mark img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.industry-product-stack__card h3 {
  margin: 20px 0 8px;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.industry-product-stack__card p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .industry-product-stack__head,
  .industry-product-stack__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .industry-product-stack {
    width: min(100% - 24px, 1180px);
    margin: 46px auto;
    padding: 20px 14px;
    border-radius: 22px;
  }
}
