.home-v5 {
    min-height: 100vh;
    color: #fff;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.home-v5 .entry-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    background: url("../../img/index-v5/background.png") center center no-repeat;
    background-size: cover;
}

.home-v5 .brand-bar {
    flex-shrink: 0;
    padding: clamp(12px, 2.08vw, 20px) clamp(20px, 5.21vw, 100px) 0;
}

.home-v5 .brand {
    display: flex;
    align-items: center;
    width: fit-content;
    color: #fff;
    text-decoration: none;
}

.home-v5 .brand img {
    width: clamp(32px, 2.08vw, 40px);
    height: clamp(32px, 2.08vw, 40px);
    margin-right: 16px;
}

.home-v5 .brand span {
    overflow: hidden;
    font-size: clamp(20px, 1.46vw, 28px);
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-v5 .entry-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding-top: clamp(72px, 11.84vh, 116px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.home-v5 .entry-title {
    display: block;
    width: min(514px, 42vw);
    height: auto;
}

.home-v5 .quick-services {
    display: grid;
    grid-template-columns: repeat(6, clamp(54px, 4.69vw, 90px));
    grid-auto-rows: auto;
    column-gap: clamp(18px, 4.69vw, 90px);
    margin-top: auto;
    margin-bottom: clamp(56px, 15vh, 147px);
}

.home-v5 .quick-services a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.home-v5 .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-v5 .service-icon img {
    width: 77.78%;
    height: 77.78%;
    object-fit: contain;
}

.home-v5 .service-name {
    margin-top: 20px;
    font-size: clamp(15px, 1.15vw, 22px);
    font-weight: 700;
    line-height: 31px;
    white-space: nowrap;
}

.home-v5 .quick-services a:hover .service-icon,
.home-v5 .quick-services a:focus .service-icon {
    background-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-3px);
}

.home-v5 .quick-services a:focus {
    outline: none;
}

.home-v5 .quick-services a:focus .service-icon {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.55);
}

.home-v5 .stats-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(1050px, 86vw);
    height: clamp(84px, 10.41vh, 102px);
    margin: 0 auto;
    border: 0;
    border-radius: 12px 12px 0 0;
}

.home-v5 .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0 8px;
    box-shadow: none;
    position: relative;
}

.home-v5 .stat-item + .stat-item {
    border-left: 0;
}

.home-v5 .stat-item + .stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 62px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.home-v5 .stat-item p {
    margin: 0;
    color: #fff;
    line-height: 30px;
}

.home-v5 .stat-item p span {
    font-size: clamp(22px, 1.56vw, 30px);
    font-weight: 700;
}

.home-v5 .stat-item p small {
    margin-left: 2px;
    font-size: clamp(13px, 0.83vw, 16px);
    font-weight: 500;
}

.home-v5 .stat-item > span {
    margin-top: 8px;
    font-size: clamp(12px, 0.73vw, 14px);
    line-height: 14px;
}

@media (max-width: 992px) {
    .home-v5 .entry-screen {
        height: auto;
        min-height: 100vh;
    }

    .home-v5 .entry-content {
        padding-top: 8vh;
    }

    .home-v5 .entry-title {
        width: min(514px, 78vw);
    }

    .home-v5 .quick-services {
        grid-template-columns: repeat(3, 56px);
        column-gap: 28px;
        row-gap: 24px;
        margin-top: 8vh;
        margin-bottom: 7vh;
    }

    .home-v5 .service-name {
        margin-top: 10px;
        font-size: 15px;
        line-height: 21px;
    }

    .home-v5 .stats-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 92vw;
        height: auto;
        padding: 6px 0;
    }

    .home-v5 .stat-item {
        padding: 12px 8px;
    }

    .home-v5 .stat-item + .stat-item {
        border-left: 0;
    }

    .home-v5 .stat-item + .stat-item::before {
        display: none;
        height: 40px;
    }

    .home-v5 .stat-item:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .home-v5 .stat-item:nth-child(2n) {
        border-left: 0;
    }

    .home-v5 .stat-item:nth-child(2n)::before {
        display: block;
    }
}

@media (max-width: 360px) {
    .home-v5 .quick-services {
        column-gap: 18px;
    }

    .home-v5 .service-name {
        font-size: 14px;
    }
}
