@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
:root {
    --primary-color: rgb(39, 161, 185);
    --primary-color-light: rgba(39, 161, 185, 0.08);
    --primary-color-medium: rgba(39, 161, 185, 0.16);
    --primary-color-strong: rgba(39, 161, 185, 0.28);
    --primary-shadow-soft: rgba(39, 161, 185, 0.18);
    --primary-shadow-strong: rgba(39, 161, 185, 0.30);
    --section-padding-y: 48px;
    --section-padding-y-mobile: 40px;
    --container-padding-x: 20px;
    --container-padding-x-mobile: 16px;
    --header-margin-bottom: 0;
    --eyebrow-margin-bottom: 0;
    --title-margin-bottom: 0;
    --description-margin-bottom: 0;
    --actions-margin-top: 24px;
    --grid-gap: 16px;
    --button-gap: 12px;
    --hero-min-height: 620px;
    --hero-min-height-mobile: 560px;
    --hero-padding-top: 100px;
    --hero-padding-bottom: 0;
    --hero-padding-top-mobile: 80px;
    --hero-padding-bottom-mobile: 0;
}

.mks-hosting-hero {
    position: relative;
    min-height: var(--hero-min-height);
    overflow: hidden;
    background: #020b2d;
    font-family: 'Montserrat', sans-serif;
}

.mks-hosting-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mks-hosting-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--grid-gap);
    background: linear-gradient(rgba(10, 18, 56, 0.92));
}

.mks-hosting-benefits-header {
    max-width: 760px;
    margin: 0 auto var(--header-margin-bottom);
    text-align: center;
    background: linear-gradient(rgba(10, 18, 56, 0.92));
}

.mks-hosting-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mks-hosting-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(2, 11, 45, 0.58) 0%, rgba(2, 11, 45, 0.82) 100%),
        rgba(2, 11, 45, 0.30);
}

.mks-hosting-hero-container {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    min-height: var(--hero-min-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--hero-padding-top) var(--container-padding-x) var(--hero-padding-bottom);
    text-align: center;
}

.mks-hosting-hero-content {
    max-width: 940px;
}

.mks-hosting-hero-eyebrow {
    margin: 0 0 var(--eyebrow-margin-bottom);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.mks-hosting-hero-title {
    margin: 0 0 var(--title-margin-bottom);
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.mks-hosting-hero-description {
    margin: 0 auto var(--description-margin-bottom);
    max-width: 860px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.84);
}

.mks-hosting-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--button-gap);
    margin-top: var(--actions-margin-top);
}

.mks-hosting-hero-button,
.mks-hosting-hero-button:link,
.mks-hosting-hero-button:visited,
.mks-hosting-hero-button:hover,
.mks-hosting-hero-button:focus,
.mks-hosting-hero-button:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 32px;
    border-radius: 9999px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mks-hosting-hero-button-primary {
    background: var(--primary-color);
    color: #ffffff !important;
    box-shadow: 0 14px 30px var(--primary-shadow-soft);
}

.mks-hosting-hero-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px var(--primary-shadow-strong);
}

.mks-hosting-hero-button-secondary {
    border: 1px solid var(--primary-color-medium);
    background: var(--primary-color-light);
    color: #ffffff !important;
}

.mks-hosting-hero-button-secondary:hover {
    background: var(--primary-color-medium);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .mks-hosting-hero {
        min-height: var(--hero-min-height-mobile);
    }

    .mks-hosting-hero-container {
        min-height: var(--hero-min-height-mobile);
        padding: var(--hero-padding-top-mobile) var(--container-padding-x-mobile) var(--hero-padding-bottom-mobile);
    }

    .mks-hosting-hero-title {
        font-size: 30px;
    }

    .mks-hosting-hero-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .mks-hosting-hero-actions {
        gap: 12px;
        margin-top: 28px;
    }

    .mks-hosting-hero-button,
    .mks-hosting-hero-button:link,
    .mks-hosting-hero-button:visited,
    .mks-hosting-hero-button:hover,
    .mks-hosting-hero-button:focus,
    .mks-hosting-hero-button:active {
        min-height: 46px;
        padding: 0 22px;
        font-size: 14px;
    }
}