/* ===========================
   KLIEN ENTERPRISE
=========================== */
.about-enterprise-new {
  padding: 80px 0;
  background: #fff;
}

.about-enterprise-inner-new {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-x);
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.about-enterprise-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.about-enterprise-text-col {
  flex: 1;
  max-width: 500px;
}

.about-enterprise-stats-row {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.about-ent-stat {
  display: flex;
  flex-direction: column;
}

.about-ent-stat-num {
  background: linear-gradient(135deg, #1080FB 0%, #004DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: var(--font-geist);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
}

.about-ent-stat-label {
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--color-gray);
}

.about-client-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
}

.about-client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-client-logo-item img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  /* filter: grayscale(100%) opacity(0.7); */
  transition: filter 0.3s, transform 0.3s;
}

.about-client-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .about-enterprise-top-row {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 40px;
  }

  .about-enterprise-text-col {
    max-width: 100%;
    text-align: left;
  }

  .about-enterprise-text-col .section-heading,
  .about-enterprise-text-col .section-subtext {
    text-align: left !important;
  }

  .about-enterprise-stats-row {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-client-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .about-enterprise-stats-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
  }

  .about-ent-stat {
    align-items: flex-start !important;
    text-align: left !important;
  }
}