/* Product detail — icon panel + software catalog */
.product-detail {
  background: #fff;
}

.product-icon-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 40px 24px 32px;
  background: linear-gradient(160deg, #F3FAFA 0%, #e8f8f4 100%);
  border-radius: 16px;
  border: 1px solid rgba(3, 166, 128, 0.15);
  box-shadow: 0 12px 36px rgba(3, 166, 128, 0.08);
}

.product-icon-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 24px;
  background: #fff;
  border: 2px solid rgba(3, 166, 128, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(3, 166, 128, 0.12);
}
.product-icon-wrap i {
  font-size: 3.25rem;
  color: #03A680;
  line-height: 1;
  opacity: 0.9;
}

.product-icon-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000 !important;
  letter-spacing: 0.01em;
  line-height: 1.35;
  margin: 0 0 8px;
}

.product-icon-tagline {
  font-size: 0.85rem;
  color: #03A680;
  font-weight: 600;
  margin: 0;
}

.product-desc-lead {
  color: #333;
  line-height: 1.75;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.product-desc-list {
  margin: 0 0 1.5rem;
  padding: 0;
}
.product-desc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.55rem 0;
  border-bottom: 1px dashed #e8eef5;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.65;
}
.product-desc-list li:last-child {
  border-bottom: none;
}
.product-desc-list li i {
  color: #03A680;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.product-desc-list li span {
  flex: 1;
}

.product-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #03A680;
  display: inline-block;
}

.product-menu-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* All software grid */
.product-catalog {
  background: #F3FAFA;
}

.product-catalog-title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #000 !important;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.product-mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  padding: 18px 10px 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}
.product-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(3, 166, 128, 0.12);
  border-color: #03A680;
  color: inherit;
}
.product-mini-card.is-active {
  border-color: #03A680;
  background: #e8f8f4;
  box-shadow: 0 8px 24px rgba(3, 166, 128, 0.15);
}

.product-mini-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #F3FAFA;
  border: 1px solid rgba(3, 166, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.product-mini-icon i {
  font-size: 1.5rem;
  color: #03A680;
  line-height: 1;
  opacity: 0.85;
}

.product-mini-heading {
  font-size: 0.72rem;
  font-weight: 700;
  color: #000 !important;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-icon-panel .panel-line-tr,
.product-icon-panel .panel-line-bl {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
}
.product-icon-panel .panel-line-tr {
  top: 8px;
  right: 8px;
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 70 70'%3E%3Cline x1='0' y1='50' x2='50' y2='0' stroke='%2303A680' stroke-width='1.2' opacity='0.22'/%3E%3C/svg%3E");
}
.product-icon-panel .panel-line-bl {
  bottom: 8px;
  left: 8px;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 56 56'%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke='%2303A680' stroke-width='1.2' opacity='0.18'/%3E%3C/svg%3E");
}
.product-icon-wrap,
.product-icon-heading,
.product-icon-tagline {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .product-icon-panel { margin-bottom: 1rem; }
  .product-icon-wrap { width: 96px; height: 96px; }
  .product-icon-wrap i { font-size: 2.5rem; }
}

@media (max-width: 575px) {
  .product-mini-heading { font-size: 0.68rem; }
  .product-mini-icon { width: 44px; height: 44px; }
  .product-mini-icon i { font-size: 1.25rem; }
}

/* Software development listing */
.product-list-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #F3FAFA;
  border: 1px solid rgba(3, 166, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-list-icon i {
  font-size: 1.75rem;
  color: #03A680;
  line-height: 1;
}
.product-list-heading {
  font-weight: 700;
  color: #000 !important;
  letter-spacing: 0.01em;
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
