.solutions-section {
  padding: 120px 0 110px;
  background: rgba(248, 248, 248, 1);

}
.hyk-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0px 40px;
}
.solutions-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.solutions-section-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 6px;
  line-height: 28px;
}
.solutions-section-title {
  font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 6px 0;
    line-height: 54px;
}
.solutions-section-subtitle {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.80);
  line-height: 28px;
  max-width: 853px;
  width: 100%;
  margin: 0 auto;
  font-weight: 400;
}

/* ── Ready-Built Products Card ── */
.products-card {
  background: #ffffff;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 20px;
    border: 1px solid #E2E8F0;
}

.products-card__title {
  	font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 11px;
    line-height: 27px;
}

.products-card__intro {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.80);
  line-height: 22px;
  margin: 0 0 8px;
}

/* ── Product List ── */
.product-list {
  list-style: none;
  margin: 11px 0 0 0;
  padding: 0;
}

.product-item {
  padding: 10px 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 22px;
    list-style-type: none;
    font-weight: 400;
}

.product-name {
  font-weight: 700;
}
.product-item:before {
  display: none;
}

.product-desc {
  color: #555;
}

.products-card__more {
      padding: 10px 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 22px;
    list-style-type: none;
    font-weight: 400;
    margin: 0 0 11px
}

.products-card__note {
  font-size: 14px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 22px;
    font-weight: 500;
  margin: 0;
}

/* ── Solutions 3-col Grid ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-card {
  background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 1);
}

.solution-card__title {
  font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 6px 0;
    padding: 0;
    line-height: 27px;
}

.solution-card__text {
  font-size: 14px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 25px;
    font-weight: 400;
  margin:0;
}

/* ── Responsive: Solutions ── */
@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .solutions-section {
    padding: 56px 20px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .products-card {
    padding: 28px 24px;
  }
}
