.home-page .industry-solutions {
    width: 100%;
    padding: 72px 0 0;
    background: #fff;
    color: #142236;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    scroll-margin-top: 56px;
}

.industry-solutions__inner {
    width: calc(100% - 144px);
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 48px;
    border-bottom: 1px solid #e8f0f6;
}

.industry-solutions h2 {
    margin: 0 0 40px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.industry-solutions__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.industry-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e4edf4;
    border-radius: 18px;
    background: #f3f9fd;
    box-shadow: 0 10px 28px -20px rgba(33, 74, 104, .2);
}

.industry-card__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.6;
    object-fit: cover;
    background: #e8f0f6;
}

.industry-card__content {
    padding: 24px 22px 26px;
}

.industry-card h3 {
    margin: 0 0 14px;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.5;
}

.industry-card__problem {
    margin: 0;
    color: #6d7d90;
    font-size: 16px;
    line-height: 1.8;
}

.industry-card__value {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 20px 0 0;
    padding-top: 18px;
    border-top: 1px solid #dcebf5;
    color: #243d53;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
}

.industry-card__value > span {
    flex: 0 0 19px;
    margin-top: 3px;
    border-radius: 50%;
    background: #dff2fc;
    color: #009fe8;
    font-size: 12px;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
}

.industry-solutions__footer {
    margin-top: 28px;
    text-align: center;
}

.industry-solutions__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #009fe8;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
}

.industry-solutions__link:hover {
    color: #007bb7;
}

.industry-solutions__link:focus-visible {
    outline: 2px solid #03a9f4;
    outline-offset: 5px;
    border-radius: 3px;
}

@media (max-width: 1100px) {
    .industry-solutions__inner {
        width: calc(100% - 80px);
    }

    .industry-solutions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-page .industry-solutions {
        padding-top: 48px;
    }

    .industry-solutions__inner {
        width: calc(100% - 48px);
        padding-bottom: 36px;
    }

    .industry-solutions h2 {
        margin-bottom: 28px;
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .industry-solutions__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industry-solutions h2 {
        font-size: 25px;
    }

    .industry-card {
        border-radius: 16px;
    }

    .industry-card__content {
        padding: 22px 52px 24px 22px;
    }

    .industry-card h3 {
        font-size: 22px;
    }

    .industry-card__problem {
        font-size: 15px;
    }
}
