.mks-hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    background: #0f172a;
    animation: mks-hero-fade-in 1s ease-out both;
}

.mks-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mks-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: mks-hero-bg-scale 1.6s ease-out both;
}

.mks-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.60) 0%, rgba(15, 23, 42, 0.70) 100%),
        rgba(15, 23, 42, 0.28);
}

.mks-hero-container {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 36px 96px;
}

.mks-hero-content {
    max-width: 860px;
    animation: mks-hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.12s;
}

.mks-hero-eyebrow {
    margin: 0 0 20px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #10a7da;
}

.mks-hero-title {
    margin: 0 0 24px;
    max-width: 980px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(15, 23, 42, 0.18);
}

.mks-hero-description {
    margin: 0;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.mks-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
    animation: mks-hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.26s;
}

.mks-hero-button,
.mks-hero-button:link,
.mks-hero-button:visited,
.mks-hero-button:hover,
.mks-hero-button:focus,
.mks-hero-button:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 9999px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.mks-hero-button-primary {
    background: #ffffff;
    color: #0f172a !important;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.mks-hero-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.24);
    background: #f8fafc;
}

.mks-hero-button-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.36);
    color: #ffffff !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mks-hero-button-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.56);
}

@keyframes mks-hero-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mks-hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mks-hero-bg-scale {
    from {
        opacity: 0;
        transform: scale(1.04);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1100px) {
    .mks-hero-container {
        padding: 110px 30px 88px;
    }

    .mks-hero-content {
        max-width: 760px;
    }
}

@media (max-width: 767px) {
    .mks-hero-section,
    .mks-hero-container {
        min-height: 72vh;
    }

    .mks-hero-container {
        padding: 104px 24px 72px;
    }

    .mks-hero-title {
        font-size: 30px;
    }

    .mks-hero-description {
        font-size: 17px;
        line-height: 1.7;
    }

    .mks-hero-actions {
        margin-top: 28px;
        gap: 12px;
    }

    .mks-hero-button,
    .mks-hero-button:link,
    .mks-hero-button:visited,
    .mks-hero-button:hover,
    .mks-hero-button:focus,
    .mks-hero-button:active {
        min-height: 46px;
        padding: 0 20px;
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mks-hero-section,
    .mks-hero-bg img,
    .mks-hero-content,
    .mks-hero-actions,
    .mks-hero-button {
        animation: none !important;
        transition: none !important;
    }
}