.existing-tools-section .hyk-products {
    padding: 100px 0 100px;
      background: #FBFCFE;
}
.existing-tools-section span.hyk-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;
}
.button-payment-icon a.hyk-selector-not-sure__link {
    color: #3040CF;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
  transition: all 0.3s ease 0s;
      text-decoration: none;
  display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid transparent;
    padding-bottom:1px;
}
.button-payment-icon a.hyk-selector-not-sure__link:hover {
    border-bottom: 1px solid #3040CF;
}
.button-payment-icon a.hyk-selector-not-sure__link  svg {
    margin-top: 3px;
}
.existing-tools-section .button-payment-icon {
    text-align: center;
    margin-top: 50px;
}
.existing-tools-section .hyk-product-card .learn-more-btn a{
    color: #3040CF;
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0;
}
.existing-tools-section .hyk-product-card .learn-more-btn svg path{
  fill:#3040CF;
}
.existing-tools-section .hyk-product-card:hover .learn-more-btn{
  opacity:0.8;
}
.existing-tools-section .hyk-products .hyk-container {
  max-width: 1480px;
    margin: 0 auto;
  padding: 0 40px;
}
.existing-tools-section .hyk-products__header {
    margin-bottom: 50px;
    text-align: center;
}

.existing-tools-section .hyk-products__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    margin-top: 8px;
}

.existing-tools-section .hyk-products__desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    margin: 0 auto;
}

.existing-tools-section .hyk-product-category {
    margin-bottom: 39px;
}

.existing-tools-section .hyk-product-category:last-of-type {
    margin-bottom: 0;
}

.existing-tools-section .hyk-category-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    height: 28px;
    line-height: 28px;
    margin-bottom: 10px;
}

/* Product row (horizontal flex)
   Figma: cards are 334px each, gap 21px; max 4 cards per row */
.existing-tools-section .hyk-product-row {
     /* display: flex; */
     /* gap: 21px; */
     min-height: 114px;
     flex-wrap: wrap;
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 25px;
}


.existing-tools-section .hyk-product-card {
    padding: 21px 30px 28px 30px;
    background: #FFFFFF;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 2px 4px rgba(0, 0, 0, 0.14);
    border-radius: 16px;
    border-radius: 8px;
    transition: all 0.3s ease 0s;
    position: relative;
    flex-wrap: wrap;
    text-decoration: none;

}
.existing-tools-section .hyk-product-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius:8px;
     margin-bottom: 13px;
}

.existing-tools-section .hyk-product-card__icon img {
    width:24px;
    height:24px;
    object-fit: contain;
    border-radius: 10px;
}

.existing-tools-section .hyk-product-card__info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px;
    line-height: 23px;
}

.existing-tools-section .hyk-product-card__info p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.70);
    line-height: 22px;
    margin: 0;
    /* min-height: 84px; */
}

/* Products action buttons */
.existing-tools-section .hyk-products__actions {
    display: flex;
    gap: 13px;
    margin-top: 54px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
.existing-tools-section .hyk-product-row {
        flex-wrap: wrap;
        height: auto;
        gap: 16px;
    }
.existing-tools-section .hyk-product-card {
        flex: 0 0 calc(50% - 8px);
        height: auto;
        min-height: 100px;
    }
  .existing-tools-section .hyk-products .hyk-container {
    padding: 0 20px;
}
}

@media (max-width: 768px) {
.existing-tools-section .hyk-products {
        padding: 60px 0;
    }
.existing-tools-section .hyk-products__title {
        font-size: 28px;
    }
.existing-tools-section .hyk-product-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        height: auto;
    }
.existing-tools-section .hyk-product-card {
        flex: 0 0 260px;
        min-height: 100px;
        height: auto;
    }
}

@media (max-width:767px) {
.existing-tools-section .hyk-product-card {
        flex: 0 0 220px;
    }
.existing-tools-section .hyk-products__actions {
        flex-direction: column;
    }
.existing-tools-section .hyk-products .hyk-container {
    padding: 0 15px;
}
.existing-tools-section .hyk-product-row {
    grid-template-columns: repeat(1, 1fr);
}
.existing-tools-section .hyk-products__title {
    font-size:32px;
    line-height:48px;
}
}
