/**
 * Product ecosystem cards — text-only application cards (visual only).
 * Layout: 4 / 2 / 1 columns; hover lift aligned with homepage card patterns.
 */

.product-ecosystem-section {
  position: relative;
  overflow: hidden;
}

.product-ecosystem-section .pattern-layer {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
}

.product-ecosystem-section .pattern-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/shape/shape-12.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.product-ecosystem-section .auto-container {
  position: relative;
  z-index: 2;
}

#products-ecosystem .sec-title > p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--text-body);
  line-height: var(--lh-body, 1.75);
}

#products-ecosystem .product-card-one {
  margin-bottom: 30px;
}

#products-ecosystem .product-card-one .inner-box {
  position: relative;
  display: block;
  background: var(--surface-page);
  border: 1px solid rgb(0 0 0 / 0.06);
  border-radius: 10px;
  padding: 40px 30px 34px;
  min-height: 160px;
  transition: all 0.3s ease;
}

#products-ecosystem .product-card-one .inner-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow);
}

#products-ecosystem .product-card-one .static-content h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-heading);
}

#products-ecosystem .product-card-one .static-content .product-category {
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-muted);
  margin-bottom: 0;
}

#products-ecosystem .product-card-one .overlay-content > p,
#products-ecosystem .product-card-one .overlay-content .btn-box {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: opacity 0.35s ease, max-height 0.35s ease;
}

#products-ecosystem .product-card-one .inner-box:hover .overlay-content > p {
  opacity: 1;
  max-height: 120px;
  margin: 16px 0 22px;
  transition: opacity 0.35s ease 0.12s, max-height 0.35s ease 0.12s;
}

#products-ecosystem .product-card-one .inner-box:hover .overlay-content .btn-box {
  opacity: 1;
  max-height: 60px;
  transition: opacity 0.35s ease 0.12s, max-height 0.35s ease 0.12s;
}

#products-ecosystem .product-card-one .overlay-content > p {
  color: var(--text-body);
  line-height: 1.65;
}

#products-ecosystem .product-card-one .overlay-content .theme-btn-one {
  padding: 13px 34px;
}

@media only screen and (max-width: 991px) {
  #products-ecosystem .product-card-one .inner-box {
    min-height: 150px;
  }
}
