:root {
    --primary-color: rgb(39, 161, 185);
}

.mks-left {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 36px;
    padding-right: 36px;
    box-sizing: border-box;

    display: flex;
    justify-content: space-between;
    gap: 72px;
    align-items: center;
    padding-top: 96px;

    font-family: 'Montserrat', sans-serif;
}

.mks-left-inner {
    max-width: 620px;
    animation: mks-fade-up-left 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.12s;
}

.mks-eyebrow {
    margin: 0 0 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.mks-title {
    margin: 0 0 24px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0f172a;
}

.mks-description {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #51657f;
}

.mks-description-secondary {
    margin-top: 20px;
    opacity: 0.9;
}

@keyframes mks-fade-up-left {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .mks-left {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .mks-left {
        padding: 64px 24px 24px;
    }

    .mks-title {
        font-size: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mks-left,
    .mks-left-inner {
        animation: none !important;
        transition: none !important;
    }
}