:root {
    --primary-color: rgb(39, 161, 185);
    --section-padding-y: 48px;
    --container-padding-x: 0;
    --container-padding-x-mobile: 16px;
    --header-margin-bottom: 0;
    --card-gap: 16px;
    --card-padding: 20px;
    --card-padding-mobile: 18px;
    --title-margin-bottom: 0;
    --text-margin-bottom: 0;
    --card-radius: 20px;
}

.mks-hosting-services {
    position: relative;
    z-index: 5;
    margin-top: 0;
    padding: var(--section-padding-y) 0;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.mks-hosting-services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
}

.mks-hosting-services-header {
    max-width: 760px;
    margin: 0 auto var(--header-margin-bottom);
    text-align: center;
}

.mks-hosting-services-eyebrow {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.mks-hosting-services-title {
    margin: 0 0 var(--title-margin-bottom);
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.mks-hosting-services-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #64748b;
}

.mks-hosting-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--card-gap);
    align-items: stretch;
}

.mks-hosting-service-card {
    min-width: 0;
    height: 100%;
}

.mks-hosting-service-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 250px;
    padding: 30px var(--card-padding) var(--card-padding);
    border-radius: var(--card-radius);
    background: linear-gradient(145deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid rgba(219, 228, 238, 0.9);
    box-shadow:
        0 16px 34px rgba(15, 23, 42, 0.06),
        0 6px 14px rgba(39, 161, 185, 0.04);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.mks-hosting-service-card:hover .mks-hosting-service-card-inner {
    transform: translateY(-6px);
    border-color: rgba(39, 161, 185, 0.22);
    box-shadow:
        0 24px 40px rgba(15, 23, 42, 0.10),
        0 10px 18px rgba(39, 161, 185, 0.08);
}

.mks-hosting-service-top-line {
    width: 42px;
    height: 3px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), rgba(39, 161, 185, 0.35));
}

.mks-hosting-service-title {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.mks-hosting-service-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #64748b;
}

@media (max-width: 900px) {
    .mks-hosting-services {
        margin-top: 0;
        padding: 72px 0;
    }

    .mks-hosting-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mks-hosting-services {
        margin-top: 0;
        padding: 64px 0 56px;
    }

    .mks-hosting-services-container {
        padding: 0 var(--container-padding-x-mobile);
    }

    .mks-hosting-services-header {
        margin-bottom: 40px;
    }

    .mks-hosting-services-title {
        font-size: 28px;
    }

    .mks-hosting-services-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .mks-hosting-service-card-inner {
        min-height: auto;
        padding: 26px var(--card-padding-mobile) var(--card-padding-mobile);
        border-radius: 22px;
    }

    .mks-hosting-service-title {
        font-size: 22px;
    }

    .mks-hosting-service-description {
        font-size: 15px;
        line-height: 1.7;
    }
}