/* HCT CLIENT02 (Fujin Việt Nam) — HOME SECTION: WHY_CHOOSE_US / layout_why_choose_01 rendered as "Giải Pháp" cards */
.hctclient02-home-solutions-01 {
    padding: clamp(56px, 7vw, 105px) 0;
    background: var(--hctclient02-color-surface-soft);
}

.hctclient02-home-solutions-01__heading {
    display: grid;
    grid-template-columns: 1fr .7fr;
    align-items: end;
    gap: clamp(28px, 5vw, 90px);
    margin-bottom: clamp(32px, 4vw, 55px);
}

.hctclient02-home-solutions-01__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--hctclient02-color-primary);
    font-size: var(--hctclient02-text-caption);
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hctclient02-home-solutions-01__eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: currentColor;
}

.hctclient02-home-solutions-01__title {
    margin: 0;
    color: var(--hctclient02-color-heading);
    font-family: var(--hctclient02-font-family-heading);
    font-weight: 400;
    font-size: clamp(1.9rem, 1.5rem + 1.6vw, 3.1rem);
    line-height: 1.1;
}

.hctclient02-home-solutions-01__description {
    margin: 0;
    color: var(--hctclient02-color-text-muted);
    font-size: var(--hctclient02-text-body);
    line-height: var(--hctclient02-line-height-relaxed);
}

.hctclient02-home-solutions-01__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--hctclient02-color-border);
}

.hctclient02-home-solutions-01__card {
    padding: 34px 26px;
    background: #fff;
    border-right: 1px solid var(--hctclient02-color-border);
    min-height: 300px;
    position: relative;
    transition: background var(--hctclient02-duration-slow) var(--hctclient02-ease), color var(--hctclient02-duration-slow) var(--hctclient02-ease), transform var(--hctclient02-duration-slow) var(--hctclient02-ease);
}

.hctclient02-home-solutions-01__card:last-child {
    border-right: 0;
}

.hctclient02-home-solutions-01__card:hover {
    transform: translateY(-6px);
    color: #fff;
    background: var(--hctclient02-color-secondary);
}
.hctclient02-home-solutions-01__card:hover h3{color: #fff;}

.hctclient02-home-solutions-01__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 10px 0 22px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--hctclient02-color-primary-soft);
    color: var(--hctclient02-color-primary);
    font-size: 1.3rem;
}

.hctclient02-home-solutions-01__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hctclient02-home-solutions-01__card h3 {
    margin: 0 0 12px;
    font-family: var(--hctclient02-font-family-heading);
    font-weight: 400;
    font-size: 1.3rem;
}

.hctclient02-home-solutions-01__card p {
    margin: 0;
    color: var(--hctclient02-color-text-muted);
    font-size: .85rem;
    line-height: 1.7;
}

.hctclient02-home-solutions-01__card:hover p {
    color: #cddcd4;
}

@media (max-width: 900px) {
    .hctclient02-home-solutions-01__heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hctclient02-home-solutions-01__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hctclient02-home-solutions-01__cards {
        grid-template-columns: 1fr;
    }

    .hctclient02-home-solutions-01__card {
        border-right: 0;
        border-bottom: 1px solid var(--hctclient02-color-border);
        min-height: 0;
    }

    .hctclient02-home-solutions-01__card:last-child {
        border-bottom: 0;
    }
}
