.apln-products-section {
    padding: 22px 0 8px;
}
.apln-products-section .apln-products {
    padding: 0;
}
.apln-products-section .apln-products .hyk-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Grid */
.apln-products-section .apln-product-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.apln-products-section .apln-product-card {
    display: flex;
    flex-direction: column;
    padding: 25px 30px;
    background: #ffffff;
    border-radius: 16px;
    transition: box-shadow 0.2s ease;
    text-decoration: none;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.14), 0px 0px 2px 0px rgba(0, 0, 0, 0.12);
}

/* Icon */
.apln-products-section .apln-product-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    min-width: 50px;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1)
}
.apln-products-section .apln-product-card__icon img {
    object-fit: contain;
}

/* Category label */
.apln-products-section .apln-product-card__category {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.50);
    margin-bottom: 10px;
    line-height: 15px;
}

/* Product name */
.apln-products-section .apln-product-card__name {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px;
    line-height: 32px;
}

/* Description */
.apln-products-section .apln-product-card__desc {
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.70);
    line-height: 20px;
    margin: 0 0 29px;
    flex: 1;
}

/* Learn more link */
.apln-products-section .apln-product-card__link {
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    color: #3040CF;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.2s ease 0s;
    width: auto;
    gap: 6px;
    align-items: center;
}
.apln-products-section .apln-product-card__link svg {
    transition: all 0.2s ease 0s;
    margin-top: 3px;
}
.apln-products-section .apln-product-card__link:hover {
    opacity: 0.7;
}
.apln-products-section .apln-product-card__link:hover svg {
    transform: translateX(5px);
}

/* Responsive — Tablet (2 columns) */
@media (max-width: 1024px) {
    .apln-products-section .apln-products .hyk-container {
        padding: 0 20px;
    }
    .apln-products-section .apln-product-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Responsive — Mobile (1 column) */
@media (max-width: 767px) {
    .apln-products-section {
        padding: 22px 0 8px;
    }
    .apln-products-section .apln-products .hyk-container {
        padding: 0 15px;
    }
    .apln-products-section .apln-product-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .apln-products-section .apln-product-card__name {
        font-size: 22px;
    }
}
