.modeling-page {
    color: #1a1a1a;
    background: #fff;
}

.modeling-page * {
    box-sizing: border-box;
}

.modeling-hero {
    height: 400px;
    padding: 0 24px;
    background: #172b47 url('/static/newindex/img/modeling/banner.webp') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modeling-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.25;
}

.modeling-hero p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
}

.modeling-section {
    padding: 72px 24px;
}

.modeling-section--gray {
    background: #f5f7fa;
}

.modeling-inner {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

.modeling-heading {
    text-align: center;
}

.modeling-heading h2 {
    margin: 0;
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.35;
}

.modeling-heading p {
    max-width: 800px;
    margin: 16px auto 0;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
}

.modeling-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.modeling-service {
    min-height: 349px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 38px 1px rgba(0, 0, 0, .1);
}

.modeling-service h3 {
    margin: 0;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.modeling-service p {
    min-height: 40px;
    margin: 12px 0 0;
    color: #999;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.modeling-service__image {
    height: 219px;
    margin-top: 12px;
    border-radius: 12px;
    background-position: center;
    background-size: cover;
}

.modeling-service--one .modeling-service__image {
    background-image: url('/static/newindex/img/modeling/1.webp');
}

.modeling-service--two .modeling-service__image {
    background-image: url('/static/newindex/img/modeling/2.webp');
}

.modeling-service--three .modeling-service__image {
    background-image: url('/static/newindex/img/modeling/3.webp');
}

.modeling-project {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    margin-top: 64px;
    overflow: hidden;
    border-radius: 16px;
    background: #dfe5ed url('/static/newindex/img/modeling/case.webp') center / cover no-repeat;
    box-shadow: 0 6px 10px 1px rgba(0, 0, 0, .1);
}

.modeling-project__open {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    /* border: 1px solid rgba(255, 255, 255, .55); */
    border-radius: 50%;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
}

.modeling-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.modeling-process__item {
    min-height: 321px;
    padding: 44px 24px 30px;
    border-radius: 16px;
    background: #fff url('/static/newindex/img/modeling/process-card.png') center / 100% 100% no-repeat;
    text-align: center;
}

.modeling-process__item:nth-child(odd) {
    margin-top: 54px;
}

.modeling-process__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    background: #1a1a1a;
}

.modeling-process__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.modeling-process h3 {
    margin: 32px 0 0;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.modeling-process p {
    margin: 20px 0 0;
    color: #999;
    font-size: 14px;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .modeling-hero {
        height: 40vw;
        min-height: 180px;
    }

    .modeling-hero h1 {
        font-size: 22px;
    }

    .modeling-hero p {
        margin-top: 12px;
        font-size: 12px;
    }

    .modeling-section {
        padding: 40px 16px;
    }

    .modeling-heading h2 {
        font-size: 22px;
    }

    .modeling-heading p {
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.65;
    }

    .modeling-services,
    .modeling-process {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .modeling-service {
        min-height: 0;
    }

    .modeling-service__image {
        height: 200px;
    }

    .modeling-project {
        height: 50vw;
        min-height: 200px;
        margin-top: 28px;
    }

    .modeling-project__open {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }

    .modeling-process {
        gap: 16px;
    }

    .modeling-process__item,
    .modeling-process__item:nth-child(odd) {
        min-height: 0;
        margin-top: 0;
        padding: 30px 20px;
    }

    .modeling-process h3 {
        margin-top: 16px;
    }

    .modeling-process p {
        margin-top: 12px;
    }
}