/* --- Values Grid & Cards --- */
.values-grid {
    display: grid;
    gap: 2rem;
}

.values-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.values-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.values-card .button {
    margin-top: 1rem;
}

.values-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: var(--daikin-blue);
    /*border-radius: 0.75rem;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    border-radius: .75rem;
}

.values-icon-wrapper img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    border-radius: 0.75rem;
}

.values-icon {
    height: 2rem;
    width: 2rem;
    color: white;
}

.values-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--daikin-dark-navy);
    margin-bottom: 1rem;
}

.values-card-text {
    color: var(--gray-600);
    line-height: 1.625;
}

.values-card:has(.button) .values-icon-wrapper {
    background: transparent;
    border-radius: 0;
}

.values-card:has(.button) .values-icon-wrapper img {
    width: 100%;
    height: 100%;
}

.plane-pintile-block.values-grid {
    gap: 1rem;
    margin-block: 3rem;
}

.plane-pintile-block .values-card {
    box-shadow: none;
    padding-inline: 0;
}

.plane-pintile-block .values-card:hover {
    box-shadow: none;
    transform: translateY(0px);
}

.plane-pintile-block .values-card-title {
    color: rgb(2, 8, 23);
}

.plane-pintile-block .values-icon-wrapper {
    border-radius: 60px;
}

.plane-pintile-block.values-grid {
    gap: 1rem;
    margin-block: 3rem;
}

.plane-pintile-block .values-card {
    box-shadow: none;
    padding-inline: 0;
}

.plane-pintile-block .values-card:hover {
    box-shadow: none;
    transform: translateY(0px);
}

.plane-pintile-block .values-card-title {
    color: rgb(2, 8, 23);
}

.plane-pintile-block .values-icon-wrapper {
    border-radius: 60px;
}

.lgHovertileWrap .values-icon-wrapper {
    background: rgb(0 151 211 / 10%);
    width: 4.5rem;
    height: 4.5rem;
}

.lgHovertileWrap .values-icon-wrapper img {
    width: 2.5rem;
    height: 2.5rem;
}

.lgHovertileWrap .values-card-title {
    color: var(--gray-800);
    font-size: 1.125rem;
}

.lgHovertileWrap .values-card-text {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.lgHovertileWrap .values-card:hover {
    background: var(--daikin-blue);
}

.lgHovertileWrap .values-card:hover .values-icon-wrapper img {
    filter: brightness(0) invert(1);
}

.lgHovertileWrap .values-card:hover .values-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.lgHovertileWrap .values-card:hover :is(.values-card-title, .values-card-text ) {
    color: var(--white);
}
