.content-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.content-hero {
    position: relative;
    width: 100%;
    background: #e8f6ff;
}

.content-hero__title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.content-hero__image {
    width: 100%;
    height: auto;
    display: block;
}

.content-hero__actions {
    position: absolute;
    z-index: 2;
    top: 70%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 2vw, 58px);
    transform: translateX(-50%);
}

.content-hero__button {
    display: inline-flex;
    width: clamp(128px, 8.55vw, 246px);
    border-radius: 999px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.content-hero__button:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 18px rgba(47, 101, 230, 0.18));
}

.content-hero__button:focus-visible {
    outline: 2px solid #2e69ff;
    outline-offset: 4px;
}

.content-hero__button img {
    display: block;
    width: 100%;
    height: auto;
}

.content-system {
    width: min(1180px, calc(100% - 96px));
    margin: 0 auto;
    padding: 86px 0 0;
}

.content-system + .content-system {
    padding-top: 104px;
}

.content-system:last-child {
    padding-bottom: 118px;
}

.content-system__head {
    text-align: center;
}

.content-system__title {
    color: #24272f;
    font-size: 30px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: 0;
}

.content-system__list {
    margin-top: 62px;
    display: grid;
    gap: 64px;
}

.content-feature {
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 560px);
    gap: 96px;
    align-items: center;
    justify-content: center;
}

.content-feature__copy {
    min-width: 0;
}

.content-feature__title {
    color: #24272f;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 600;
    letter-spacing: 0;
}

.content-feature__text {
    margin-top: 18px;
    color: #667080;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0;
}

.content-feature__media {
    position: relative;
    min-height: 320px;
    aspect-ratio: 560 / 320;
    border-radius: 8px;
    background: #f4f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(28, 49, 82, 0.08);
}

.content-feature__image,
.content-feature__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.content-feature__media--video {
    background: #101520;
}

.content-feature__media--model {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 246, 251, 0.94)),
        linear-gradient(160deg, #dce7f3 0%, #f7f9fc 52%, #e7eff8 100%);
}

.content-model-viewer {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    cursor: grab;
    touch-action: none;
}

.content-model-viewer:active {
    cursor: grabbing;
}

.content-model-viewer canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.content-model-viewer__status {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f7b8b;
    font-size: 14px;
    line-height: 1.5;
    pointer-events: none;
}

@media (max-width: 960px) {
    .content-system {
        width: min(820px, calc(100% - 48px));
    }

    .content-feature {
        grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
        gap: 44px;
    }
}

@media (max-width: 680px) {
    .content-system {
        width: calc(100% - 40px);
        padding-top: 58px;
    }

    .content-system + .content-system {
        padding-top: 72px;
    }

    .content-system__title {
        font-size: 24px;
    }

    .content-system__list {
        margin-top: 38px;
        gap: 42px;
    }

    .content-feature {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .content-feature__title {
        font-size: 20px;
    }

    .content-feature__media,
    .content-model-viewer {
        min-height: 240px;
    }

}
