.get-in-touch {
    padding: 96px 0;
    background: var(--color-bg-white);
}

.get-in-touch__inner {
    max-width: 1408px;
    margin: 0 auto;
    padding: 0 16px;
}

.get-in-touch__panel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 120px;
    overflow: hidden;
    padding: 80px;
    border-radius: 32px;
    background: #08102A url("assets/background.png") top center / 1408px 788px no-repeat;
}

.get-in-touch__info {
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.get-in-touch__heading {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.get-in-touch__title {
    margin: 0;
    font-size: 66px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.015em;
}

.get-in-touch__title-accent,
.get-in-touch__title-white {
    display: block;
}

.get-in-touch__title-accent {
    color: var(--color-primary-alt);
}

.get-in-touch__title-white {
    color: var(--color-bg-white);
}

.get-in-touch__subtitle {
    margin: 0;
    max-width: 446px;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-bg-white);
    opacity: 0.7;
}

.get-in-touch__contacts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.get-in-touch__contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    text-decoration: none;
}

.get-in-touch__contact-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-bg-white);
    transition: background-color 0.15s ease;
}

.get-in-touch__contact-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.get-in-touch__contact-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.get-in-touch__contact-value {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--color-bg-white);
    white-space: nowrap;
    transition: color 0.15s ease;
}

.get-in-touch__contact:hover .get-in-touch__contact-icon {
    background: rgba(255, 255, 255, 0.18);
}

.get-in-touch__contact:hover .get-in-touch__contact-value {
    color: #BDC5FF;
}

@media (max-width: 1300px) {
    .get-in-touch__panel {
        gap: 64px;
        padding: 56px;
    }

    .get-in-touch__title {
        font-size: 52px;
    }
}

@media (max-width: 991px) {
    .get-in-touch {
        padding: 56px 0;
    }

    .get-in-touch__inner {
        padding: 0 var(--container-padding-sm);
    }

    .get-in-touch__panel {
        flex-direction: column;
        gap: 32px;
        padding: 32px 16px;
        border-radius: 24px;
        background-size: cover;
        background-position: center;
    }

    .get-in-touch__info {
        gap: 24px;
        text-align: center;
        align-items: center;
    }

    .get-in-touch__heading {
        align-items: center;
        text-align: center;
    }

    .get-in-touch__title {
        font-size: 32px;
        letter-spacing: -0.01em;
        text-align: center;
    }

    .get-in-touch__subtitle {
        font-size: 14px;
        text-align: center;
    }

    .get-in-touch__contacts {
        align-items: flex-start;
        gap: 16px;
    }

    .get-in-touch__contact-icon {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .get-in-touch__contact-icon svg {
        width: 16px;
        height: 16px;
    }

    .get-in-touch__contact-label {
        font-size: 9px;
    }

    .get-in-touch__contact-value {
        font-size: 16px;
    }
}
