.mk-landing {
    --mk-primary: #396EB0;
    --mk-secondary: #33639E;
    --mk-dark: #2E588D;
    --mk-white: #FFFFFF;
    --mk-ink: #396EB0;
    --mk-muted: #5B6B7C;
    --mk-line: #E4EAF2;
    --mk-soft: #F4F7FB;
    --mk-radius: 12px;
    --mk-shadow: 0 16px 40px rgba(46, 88, 141, 0.12);
    --mk-font: 'Poppins', sans-serif;
    background: var(--mk-white);
    color: var(--mk-ink);
    font-family: var(--mk-font);
}

.mk-landing .fa-solid,
.mk-landing .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    font-style: normal;
}

.mk-landing .fa-regular,
.mk-landing .far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400;
    font-style: normal;
}

.mk-landing .fa-brands,
.mk-landing .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
    font-style: normal;
}

.mk-landing section {
    position: relative;
}

.mk-landing .mk-container {
    width: min(1420px, calc(100% - 24px));
    margin: 0 auto;
}

.mk-landing .mk-section {
    padding: 56px 0;
}

.mk-landing .mk-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(57, 110, 176, 0.18);
    border-radius: 999px;
    background: #EEF4FB;
    color: var(--mk-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mk-landing .mk-title {
    margin: 0 0 16px;
    color: #396EB0;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.2;
}

.mk-landing .mk-subtitle,
.mk-landing .mk-lead {
    margin: 0;
    color: var(--mk-muted);
    font-size: 16px;
    line-height: 1.7;
}

.mk-landing .mk-section-head {
    max-width: 820px;
    margin: 0 auto 28px;
    text-align: center;
}

.mk-landing .mk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mk-landing .mk-btn-primary {
    background: var(--mk-primary);
    color: var(--mk-white);
    box-shadow: 0 10px 24px rgba(57, 110, 176, 0.24);
}

.mk-landing .mk-btn-primary:hover,
.mk-landing .mk-btn-primary:focus {
    background: var(--mk-dark);
    color: var(--mk-white);
    transform: translateY(-2px);
}

.mk-landing .mk-btn-ghost {
    background: var(--mk-white);
    border-color: var(--mk-primary);
    color: var(--mk-primary);
}

.mk-landing .mk-btn-ghost:hover,
.mk-landing .mk-btn-ghost:focus {
    background: var(--mk-primary);
    color: var(--mk-white);
    transform: translateY(-2px);
}

.mk-hero {
    overflow: hidden;
    padding: 40px 0 32px;
    background:
        radial-gradient(circle at 88% 12%, rgba(57, 110, 176, 0.12), transparent 28%),
        linear-gradient(180deg, #FFFFFF 0%, #F7FAFD 100%);
}

.mk-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}

.mk-hero-copy h1 {
    max-width: 640px;
}

.mk-hero-copy p {
    max-width: 540px;
    margin-bottom: 28px;
}

.mk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.mk-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--mk-muted);
    font-size: 13px;
    font-weight: 500;
}

.mk-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mk-hero-meta i {
    color: var(--mk-primary);
}

.mk-hero-visual {
    position: relative;
}

.mk-hero-visual img,
.mk-module-media img,
.mk-placeholder img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.mk-module-media img {
    height: 210px;
    object-fit: cover;
}

.mk-hero-visual img {
    max-height: 460px;
    object-fit: cover;
    box-shadow: var(--mk-shadow);
}

.mk-float-card {
    position: absolute;
    z-index: 2;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--mk-white);
    box-shadow: var(--mk-shadow);
}

.mk-float-card.top {
    top: -18px;
    right: -8px;
}

.mk-float-card.bottom {
    left: -12px;
    bottom: 24px;
}

.mk-float-card strong {
    display: block;
    color: #396EB0;
    font-size: 14px;
}

.mk-float-card small {
    color: var(--mk-muted);
    font-size: 12px;
}

.mk-solutions {
    background: var(--mk-white);
}

.mk-module-grid,
.mk-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mk-module-card,
.mk-feature-card,
.mk-form-card {
    height: 100%;
    padding: 16px;
    border: 1px solid var(--mk-line);
    border-radius: 12px;
    background: var(--mk-white);
    box-shadow: 0 8px 24px rgba(27, 36, 48, 0.04);
    transition: all 0.3s ease;
}

.mk-module-card:hover,
.mk-feature-card:hover {
    border-color: rgba(57, 110, 176, 0.28);
    box-shadow: var(--mk-shadow);
    transform: translateY(-6px);
}

.mk-module-media {
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
    background: var(--mk-soft);
}

.mk-module-card h3,
.mk-feature-card h3 {
    margin: 0 0 10px;
    color: #396EB0;
    font-size: 20px;
    font-weight: 600;
}

.mk-module-card p,
.mk-feature-card p {
    margin: 0;
    color: var(--mk-muted);
    font-size: 15px;
    line-height: 1.7;
}

.mk-features {
    background: var(--mk-soft);
}

.mk-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #E8F0F9;
    color: var(--mk-primary);
    font-size: 22px;
}

.mk-faq {
    background: var(--mk-white);
}

.mk-accordion {
    max-width: 860px;
    margin: 0 auto;
}

.mk-accordion .accordion-item {
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--mk-line);
    border-radius: 12px;
    background: var(--mk-white);
}

.mk-accordion .accordion-button {
    padding: 20px 24px;
    box-shadow: none;
    background: var(--mk-white);
    color: var(--mk-ink);
    font-size: 16px;
    font-weight: 600;
}

.mk-accordion .accordion-button:not(.collapsed) {
    background: #EEF4FB;
    color: var(--mk-primary);
}

.mk-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.mk-accordion .accordion-button::after {
    filter: hue-rotate(175deg);
}

.mk-accordion .accordion-body {
    padding: 0 24px 22px;
    color: var(--mk-muted);
    font-size: 15px;
    line-height: 1.7;
}

.mk-contact {
    background:
        linear-gradient(180deg, #F7FAFD 0%, #FFFFFF 100%);
}

.mk-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
    align-items: stretch;
}

.mk-contact-copy {
    padding: 36px;
    border-radius: 12px;
    background: linear-gradient(160deg, var(--mk-primary) 0%, var(--mk-dark) 100%);
    color: var(--mk-white);
    box-shadow: var(--mk-shadow);
}

.mk-about {
    background: #F8FAFC;
}

.mk-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mk-about-card {
    padding: 28px;
    border: 1px solid rgba(57, 110, 176, 0.12);
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(27, 36, 48, 0.04);
    transition: all 0.3s ease;
}

.mk-about-card:hover {
    border-color: rgba(57, 110, 176, 0.28);
    box-shadow: var(--mk-shadow);
    transform: translateY(-4px);
}

.mk-about-card h3 {
    margin: 0 0 12px;
    color: #396EB0;
    font-size: 22px;
    font-weight: 600;
}

.mk-about-card p {
    margin: 0;
    color: var(--mk-muted);
    font-size: 15px;
    line-height: 1.75;
}

.mk-contact-copy img {
    width: 78px;
    height: auto;
    max-height: 78px;
    margin-bottom: 24px;
    object-fit: contain;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
}

.mk-landing .mk-contact-copy .mk-title,
.mk-landing .mk-contact-copy p,
.mk-landing .mk-contact-copy li {
    color: var(--mk-white);
}

.mk-contact-copy p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.mk-contact-copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mk-contact-copy li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.mk-form-card .form-label {
    margin-bottom: 6px;
    color: var(--mk-ink);
    font-size: 13px;
    font-weight: 600;
}

.mk-form-card .form-control {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--mk-line);
    border-radius: 10px;
    background: var(--mk-white);
    color: var(--mk-ink);
    font-size: 14px;
    transition: all 0.3s ease;
}

.mk-form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.mk-form-card .form-control:focus {
    border-color: var(--mk-primary);
    box-shadow: 0 0 0 4px rgba(57, 110, 176, 0.12);
}

.mk-form-card .mk-btn {
    width: 100%;
    border: 0;
}

.mk-placeholder {
    display: grid;
    place-items: center;
    min-height: 180px;
    border: 1px dashed #B9C8D8;
    border-radius: 12px;
    background: var(--mk-soft);
    color: var(--mk-muted);
    font-size: 13px;
    text-align: center;
}

.mk-capabilities {
    background: #F8FAFC;
}

.mk-capability-stack {
    display: grid;
    gap: 24px;
}

.mk-capability-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 24px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(27, 36, 48, 0.04);
}

.mk-capability-row.is-reverse .mk-capability-media {
    order: 2;
}

.mk-capability-row.is-reverse .mk-capability-copy {
    order: 1;
}

.mk-capability-media,
.mk-capability-graphic {
    overflow: hidden;
    min-height: 240px;
    border-radius: 10px;
    background: #F8FAFC;
}

.mk-capability-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

.mk-capability-graphic {
    display: grid;
    place-items: center;
    color: #396EB0;
    font-size: 48px;
}

.mk-capability-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(57, 110, 176, 0.1);
    color: #396EB0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mk-capability-copy h3 {
    margin: 0 0 12px;
    color: #396EB0;
    font-size: 24px;
    font-weight: 600;
}

.mk-capability-copy p {
    margin: 0;
    color: var(--mk-muted);
    font-size: 15px;
    line-height: 1.7;
}

.mk-pipeline {
    background: #FFFFFF;
}

.mk-pipeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mk-pipeline-card {
    position: relative;
    height: 100%;
    padding: 28px 24px 24px;
    border: 1px solid #E2E8F0;
    border-top: 3px solid #396EB0;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(27, 36, 48, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mk-pipeline-card:hover {
    box-shadow: var(--mk-shadow);
    transform: translateY(-4px);
}

.mk-pipeline-step {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #33639E;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.mk-pipeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: rgba(57, 110, 176, 0.1);
    color: #396EB0;
    font-size: 22px;
}

.mk-pipeline-media {
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: 10px;
    background: #F8FAFC;
}

.mk-pipeline-media img {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.mk-pipeline-card h3 {
    margin: 0 0 10px;
    color: #396EB0;
    font-size: 20px;
    font-weight: 600;
}

.mk-pipeline-card p {
    margin: 0;
    color: var(--mk-muted);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .mk-hero-grid,
    .mk-contact-grid,
    .mk-module-grid,
    .mk-feature-grid,
    .mk-about-grid,
    .mk-capability-row,
    .mk-pipeline-grid {
        grid-template-columns: 1fr;
    }

    .mk-capability-row.is-reverse .mk-capability-media,
    .mk-capability-row.is-reverse .mk-capability-copy {
        order: initial;
    }

    .mk-hero {
        padding-top: 40px;
    }

    .mk-float-card.top,
    .mk-float-card.bottom {
        position: static;
        margin-top: 12px;
    }

    .mk-landing .mk-section {
        padding: 40px 0;
    }
}

.mk-page-hero {
    padding-top: 48px;
}

.mk-page-badges {
    margin-bottom: 28px;
}

.mk-page-badges span {
    padding: 8px 14px;
    border: 1px solid rgba(57, 110, 176, 0.18);
    border-radius: 999px;
    background: #EEF4FB;
    color: #396EB0;
}

.mk-page-features {
    background: #F8FAFC;
}

@media (max-width: 575px) {
    .mk-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mk-contact-copy,
    .mk-form-card,
    .mk-module-card,
    .mk-feature-card {
        padding: 20px;
    }
}

.mk-custom-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(57, 110, 176, 0.08), transparent 28%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.mk-custom-section.is-alt {
    background:
        radial-gradient(circle at 88% 12%, rgba(57, 110, 176, 0.08), transparent 28%),
        #F8FAFC;
}

.mk-custom-section-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.mk-custom-section-grid.is-text-only {
    grid-template-columns: minmax(0, 640px);
    justify-content: end;
}

.mk-custom-section-media {
    overflow: hidden;
    border-radius: 12px;
    background: #F8FAFC;
    box-shadow: var(--mk-shadow);
}

.mk-custom-section-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
}

.mk-custom-section-copy {
    text-align: left;
}

.mk-custom-section-copy .mk-title {
    max-width: 640px;
    font-size: clamp(28px, 4vw, 42px);
}

.mk-custom-section-copy .mk-subtitle {
    max-width: 540px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .mk-custom-section-grid,
    .mk-custom-section-grid.is-text-only {
        grid-template-columns: 1fr;
        gap: 24px;
        justify-content: stretch;
    }
}
