.contacts-page {
    padding: 60px 0;
    background: linear-gradient(90deg, rgba(7, 5, 42, 0.7) 0%, rgba(7, 5, 42, 0.8) 58%, rgba(7, 5, 42, 0.72) 100%), url(../../assets/images/contacts/bg-page-contacts.svg) center / cover no-repeat;
}

.contacts-page__inner {
    max-width: 1380px;
}

.contacts-page__card {
    border-radius: 36px;
    padding: 34px 44px 28px;
    background: linear-gradient(90deg, #2a2a2a 0%, #262626 50%, #2a2a2a 100%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.contacts-page__title {
    margin: 0;
    color: #f3f3f3;
    font-size: clamp(34px, 3vw, 58px);
    line-height: 1.1;
    font-weight: 700;
}

.contacts-page__line {
    width: min(540px, 62%);
    height: 4px;
    background: #f2552c;
    margin-top: 20px;
}

.contacts-page__item {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 14px;
    align-items: center;
}

.contacts-page__icon {
    width: 62px;
    height: 62px;
    color: #25cfff;
}

.contacts-page__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.contacts-page__label {
    color: #f0f0f0;
    font-size: clamp(14px, 1.05vw, 20px);
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

.contacts-page__value {
    margin-top: 4px;
    color: #7a7a7a;
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.2;
    font-weight: 400;
}

.contacts-page__value a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .contacts-page {
        padding: 14px 0 24px;
    }

    .contacts-page__card {
        padding: 20px 16px;
        border-radius: 18px;
        min-height: 0;
    }

    .contacts-page__item {
        grid-template-columns: 44px 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .contacts-page__icon {
        width: 44px;
        height: 44px;
    }

    .contacts-page__line {
        width: 70%;
        margin-top: 12px;
    }
}
