/* Centered CTA Home Description */
.cta-home-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 540px;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(200, 220, 255, .92);
    font-weight: 450;
}
:root {
    --mk-navy: #0a1628;
    --mk-navy-2: #0d1e35;
    --mk-navy-3: #060e1c;
    --mk-blue: #0052cc;
    --mk-blue-d: #003a99;
    --mk-blue-l: #1a6fe6;
    --mk-cyan: #22b8bf;
    --mk-cyan-2: #00c2ff;
    --mk-teal: #5dcaa5;
    --mk-purple: #8443ce;
    --mk-purple-d: #6230a8;
    --mk-gold: #f5a623;
    --mk-dark: #1a1a2e;
    --mk-grey: #556070;
    --mk-lgrey: #a0b8cc;
    --mk-off: #f8f9fc;
    --mk-light: #f0f4fa;
    --mk-radius: 10px;
    --mk-shadow: 0 4px 24px rgba(0, 82, 204, .10);
    --mk-shadow-lg: 0 12px 40px rgba(0, 82, 204, .18);
}

.mk-homepage {
    font-family: "Roboto", Arial, sans-serif;
    color: var(--mk-dark);
    background: #fff;
    overflow: hidden;
}

.mk-homepage *,
.mk-homepage *::before,
.mk-homepage *::after {
    box-sizing: border-box;
}

.mk-homepage a {
    text-decoration: none;
}

.mk-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.mk-tag {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--mk-blue);
}

.mk-tag--cyan {
    color: var(--mk-cyan);
}

.mk-tag--purple {
    color: var(--mk-purple);
}

.mk-sec-title {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--mk-dark);
}

.mk-sec-sub {
    max-width: 680px;
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--mk-grey);
}

.mk-section {
    padding: 96px 0;
    background: #fff;
}

.mk-section--off {
    background: var(--mk-off);
}

.mk-section--dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, #040c1a 0%, #0a1628 55%, #0d1840 100%);
    color: #fff;
}

.mk-section--dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 35%, rgba(0, 82, 204, .24), transparent 28%),
        radial-gradient(circle at 82% 55%, rgba(34, 184, 191, .16), transparent 30%);
    pointer-events: none;
}

.mk-center {
    text-align: center;
}

.mk-center .mk-sec-sub {
    margin-left: auto;
    margin-right: auto;
}

.mk-btn,
.mk-view-all,
.mk-tcard-dl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    font-weight: 700;
    transition: transform .2s, box-shadow .25s, background .25s, color .25s, border-color .25s;
}

.mk-btn:hover,
.mk-view-all:hover,
.mk-tcard-dl:hover {
    transform: translateY(-2px);
}

.mk-btn-primary {
    padding: 14px 28px;
    background: var(--mk-blue);
    color: #fff;
    box-shadow: 0 8px 28px rgba(0, 82, 204, .25);
}

.mk-btn-primary:hover {
    background: var(--mk-blue-d);
    color: #fff;
}

.mk-btn-light {
    padding: 12px 26px;
    background: #fff;
    color: var(--mk-blue);
}

.mk-btn-light:hover {
    color: var(--mk-blue);
    background: #e8f0fc;
    box-shadow: 0 10px 28px rgba(255, 255, 255, .22);
}

.mk-btn-outline {
    padding: 11px 26px;
    border: 1.5px solid rgba(255, 255, 255, .6);
    color: #fff;
}

.mk-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.reveal,
.reveal-l {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}

.reveal {
    transform: translateY(30px);
}

.reveal-l {
    transform: translateX(-30px);
}

.reveal.on,
.reveal-l.on {
    opacity: 1;
    transform: translate(0, 0);
}

.mk-hero {
    position: relative;
    min-height: calc(100vh - 64px);
    padding-top: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(135deg, #0052cc 0%, #003a99 38%, #6230a8 100%);
}

.mk-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.mk-star-field,
#mkDotWaveCanvas {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
}

#mkGlobeCanvas {
    display: none;
}

.mk-hero-glow-a,
.mk-hero-glow-b {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    pointer-events: none;
    z-index: 2;
}

.mk-hero-main {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 60px max(40px, calc((100vw - 1440px) / 2 + 40px)) 32px;
}

.mk-hero-video-frame {
    position: relative;
    flex: 0 0 50%;
    max-width: 720px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1.5px rgba(255, 255, 255, .13),
        0 32px 72px rgba(0, 0, 0, .55),
        0 0 80px rgba(34, 184, 191, .16),
        0 0 36px rgba(0, 82, 204, .28);
}

.mk-hero-video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, .12);
    pointer-events: none;
    z-index: 2;
}

.mk-hero-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.mk-hero-glow-a {
    right: 7%;
    top: 14%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 184, 191, .18), transparent 66%);
}

.mk-hero-glow-b {
    right: 20%;
    bottom: 12%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(132, 67, 206, .22), transparent 68%);
}

.mk-hero-content {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 620px;
}

.mk-cta-band .center-descritption{
    text-align:center;
    max-width:800px;
    margin:12px auto 0;
}

.mk-hero-kicker {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    color: var(--mk-gold);
    line-height: 1.4;
}

.mk-hero h1 {
    max-width: 660px;
    display: block;
    margin: 0 0 38px;
    margin-block-start: 0;
    margin-block-end: 38px;
    margin-inline-start: 0;
    margin-inline-end: 0;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.28;
    color: #fff;
    unicode-bidi: isolate;
}

.mk-hero h2 {
    max-width: 660px;
    display: block;
    margin: 0 0 4px;
    margin-block-start: 0;
    margin-block-end: 4px;
    margin-inline-start: 0;
    margin-inline-end: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
    unicode-bidi: isolate;
}

.mk-hero-desc {
    max-width: 540px;
    margin: 0 0 36px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 450;
    color: rgba(200, 220, 255, .82);
}

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

.mk-hero-actions .mk-btn {
    min-height: 0;
    padding-left: 26px;
    padding-right: 26px;
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 500;
}

.mk-stats-bar {
    position: relative;
    z-index: 10;
    margin-top: auto;
    width: 100%;
    padding: 28px 0 48px;
    background: #062f6f;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.mk-stats-bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22b8bf 45%, #9b6bff 70%, transparent);
    opacity: .7;
}

.mk-stats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
}

.mk-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 0 48px;
    text-align: center;
    gap: 6px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.mk-stat-item:last-child {
    border-right: 0;
}

.mk-stat-num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: var(--mk-cyan);
}

.mk-stat-label {
    display: block;
    margin-top: 0;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--mk-teal);
}

#clients {
    padding: 32px 0;
    background: #fff;
}

.mk-clients-top .mk-tag {
    font-size: 20px;
}

#services {
    padding-top: 72px;
}

#surveys {
    padding-bottom: 56px;
}

#industries {
    padding: 72px 0;
}

.mk-clients-top {
    text-align: center;
    margin-bottom: 24px;
}

.mk-clients-title {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: var(--mk-dark);
}

.mk-clients-title span {
    color: var(--mk-blue);
}

.mk-home-section-divider-wrap {
    width: 100%;
}

.mk-home-section-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 10px 16px 0;
}

@media (max-width: 767px) {
    .mk-home-section-divider {
        margin-left: 12px;
        margin-right: 12px;
    }
}

.mk-logo-track-wrap {
    position: relative;
    overflow: hidden;
}

.mk-logo-track-wrap::before,
.mk-logo-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 84px;
    pointer-events: none;
}

.mk-logo-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.mk-logo-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.mk-logo-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: mk-marquee 28s linear infinite;
}

.mk-logo-track-wrap:hover .mk-logo-track {
    animation-play-state: paused;
}

.mk-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 86px;
    padding: 14px 18px;
    border: 1px solid #e8eff8;
    border-radius: 10px;
    background: #fff;
    color: #31445c;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 6px 20px rgba(10, 22, 40, .04);
}

.mk-logo-item img {
    max-width: 148px;
    max-height: 62px;
    object-fit: contain;
}

@keyframes mk-marquee {
    to {
        transform: translateX(-50%);
    }
}

.mk-services-grid,
.mk-tcard-grid,
.mk-survey-grid,
.mk-industries-grid,
.mk-regions-grid,
.mk-testimonial-grid {
    display: grid;
    gap: 22px;
}

.mk-services-grid,
.mk-tcard-grid,
.mk-testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mk-trending-carousel {
    margin-top: 0;
}

.mk-trending-carousel .reveal,
.mk-trending-carousel .reveal.on {
    opacity: 1;
    transform: none;
}

.mk-trending-carousel .owl-stage {
    display: flex;
}

.mk-trending-carousel .owl-item {
    display: flex;
}

.mk-trending-carousel .mk-home-report-card {
    width: 100%;
    height: 100%;
}

.mk-home-report-card {
    overflow: hidden;
    border: 1px solid #e7edf6;
    background: #fff;
    box-shadow: 0 8px 20px rgba(18, 36, 74, .08);
    font-family: 'Roboto', sans-serif;
}

.mk-home-report-image {
    display: block;
    background: #f4f6fb;
}

.mk-home-report-image img {
    display: block;
    width: 100%;
    height: 305px;
    object-fit: cover;
}

.mk-home-report-image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 305px;
    padding: 24px;
    color: #1a3c6e;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.mk-home-report-body {
    padding: 14px 20px 24px;
}

.mk-home-report-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
    color: #4b5563;
    font-size: 12px;
    font-weight: 500;
}

.mk-home-report-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mk-home-report-body h4 {
    margin: 0;
    min-height: 104px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
    color: #6b7280;
}

.mk-home-report-body h4 a {
    color: inherit;
    text-decoration: none;
}

.mk-home-report-body h4 a:hover {
    color: #1a3c6e;
}

.mk-trending-carousel .owl-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

.mk-trending-carousel .owl-nav,
.mk-trending-carousel .owl-dots {
    display: none !important;
}

.mk-trending-carousel .owl-nav button.owl-prev,
.mk-trending-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    border: 1.5px solid #2a67cb !important;
    border-radius: 999px;
    background: #fff !important;
    color: #2a67cb !important;
    font-size: 18px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, border-color .2s;
}

.mk-trending-carousel .owl-nav button.owl-prev:hover,
.mk-trending-carousel .owl-nav button.owl-next:hover {
    background: #2a67cb !important;
    color: #fff !important;
    border-color: #2a67cb !important;
}

.mk-trending-carousel .owl-nav button.owl-prev.disabled,
.mk-trending-carousel .owl-nav button.owl-next.disabled {
    opacity: .45;
}

.mk-services-grid {
    margin-top: 44px;
    gap: 24px;
}

.mk-service-card,
.mk-tcard,
.mk-survey-card,
.mk-industry-card,
.mk-region-card,
.mk-testimonial-card {
    border-radius: var(--mk-radius);
    transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
}

.mk-service-card {
    position: relative;
    overflow: hidden;
    padding: 34px 28px;
    border: 1.5px solid #e8eff8;
    background: #fff;
}

.mk-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mk-blue), var(--mk-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.mk-service-card:hover {
    transform: translateY(-7px);
    border-color: var(--mk-blue);
    box-shadow: var(--mk-shadow-lg);
}

.mk-service-card:hover::before {
    transform: scaleX(1);
}

.mk-visual-banner,
.mk-tcard-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 7px;
    color: rgba(255, 255, 255, .88);
    font-size: 38px;
    font-weight: 900;
}

.mk-visual-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mk-visual-banner::before,
.mk-tcard-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, .16), transparent 64%);
}

.mk-banner-blue {
    background: linear-gradient(135deg, #0a1628, #0d3060);
}

.mk-banner-teal {
    background: linear-gradient(135deg, #061c15, #093030);
}

.mk-banner-navy {
    background: linear-gradient(135deg, #0d1628, #1a2a50);
}

.mk-banner-cyan {
    background: linear-gradient(135deg, #0a1820, #0d2840);
}

.mk-banner-purple {
    background: linear-gradient(135deg, #1c0a28, #2a0a4e);
}

.mk-banner-darkteal {
    background: linear-gradient(135deg, #061818, #0a2828);
}

.mk-service-card h4,
.mk-tcard h4,
.mk-industry-card h4,
.mk-region-card h4 {
    margin: 0;
    color: var(--mk-dark);
}

.mk-service-card h4 {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 800;
}

.mk-service-card p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--mk-grey);
}

.mk-service-card a {
    display: inline-flex;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--mk-blue);
    transition: gap .2s;
}

.mk-service-card a:hover {
    gap: 10px;
}

.mk-section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.mk-view-all {
    flex: 0 0 auto;
    padding: 9px 22px;
    border: 1.5px solid var(--mk-blue);
    color: var(--mk-blue);
    font-size: 14px;
}

.mk-view-all:hover {
    background: var(--mk-blue);
    color: #fff;
}

.mk-tcard {
    overflow: hidden;
    border: 1.5px solid #e8eff8;
    background: #fff;
}

.mk-tcard:hover {
    transform: translateY(-6px);
    border-color: var(--mk-blue);
    box-shadow: var(--mk-shadow-lg);
}

.mk-tcard-banner {
    margin: 0;
    border-radius: 0;
    font-size: 40px;
    color: #fff;
}

.mk-tcard-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mk-tcard-body {
    padding: 22px;
}

.mk-tcard-cat {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.mk-cat-energy {
    background: rgba(0, 168, 168, .12);
    color: #00856f;
}

.mk-cat-logistics {
    background: rgba(245, 166, 35, .15);
    color: #9b6500;
}

.mk-cat-auto {
    background: rgba(0, 82, 204, .10);
    color: var(--mk-blue);
}

.mk-tcard h4 {
    min-height: 62px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.mk-tcard p {
    margin: 9px 0 16px;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--mk-grey);
}

.mk-tcard-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #edf1f8;
}

.mk-tcard-region {
    color: var(--mk-lgrey);
    font-size: 12px;
    font-weight: 700;
}

.mk-tcard-foot .mk-tcard-dl {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    background: #fff;
    padding: 8px 18px;
    border: 1.5px solid #1e63d5;
    border-radius: 8px;
    color: var(--mk-blue);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.mk-tcard-foot .mk-tcard-dl:hover {
    background: var(--mk-blue);
    color: #fff;
}

.mk-homepage-sample-modal {
    z-index: 99120;
}

.mk-homepage-sample-modal ~ .modal-backdrop,
.mk-homepage-sample-modal ~ .modal-backdrop.show {
    z-index: 99110;
}

.mk-sample-modal-dialog {
    max-width: 580px;
    margin: 88px auto 24px;
}

.mk-sample-modal-content {
    overflow: hidden;
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767.98px) {
    .mk-sample-modal-dialog {
        max-width: calc(100vw - 24px);
        margin: 78px auto 16px;
    }

    .mk-sample-modal-header {
        padding: 16px 18px 18px;
    }

    .mk-sample-modal-body {
        padding: 20px 18px;
    }
}

.mk-sample-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border: none;
    background: #234883;
    color: #fff;
    padding: 18px 28px 20px;
}

.mk-sample-modal-header .close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.85;
    cursor: pointer;
    pointer-events: auto;
    text-shadow: none;
}

.mk-sample-modal-header .close span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.mk-sample-modal-header .close:hover {
    opacity: 1;
}

.mk-sample-modal-kicker {
    margin-bottom: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.mk-sample-modal-header h5.modal-title {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.mk-sample-modal-body {
    padding: 28px;
    background: #fff;
}

.mk-sample-label {
    display: block;
    margin-bottom: 10px;
    color: #334155;
    font-size: 15px;
    font-weight: 700;
}

.mk-sample-optional {
    color: #7b8794;
    font-weight: 400;
}

.mk-sample-input {
    height: 42px;
    border: 1px solid #c7d2e3;
    border-radius: 6px;
    box-shadow: none;
    color: #334155;
    font-size: 14px;
    padding: 10px 14px;
}

.mk-sample-input:focus {
    border-color: #8aa4cf;
    box-shadow: none;
}

.mk-sample-submit-btn {
    width: 100%;
    border: none;
    border-radius: 6px;
    background: #ef3131;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    padding: 18px 20px;
    transition: background 0.2s ease;
}

.mk-sample-submit-btn:hover {
    background: #d92a2a;
}

.mk-sample-submit-btn:disabled {
    background: #f08d8d;
    cursor: not-allowed;
}

.mk-sample-warn {
    display: none;
    margin-top: 4px;
    color: #c0392b;
    font-size: 12px;
}

.mk-sample-privacy {
    margin-top: 14px;
    color: #999;
    font-size: 11px;
    text-align: center;
}

.mk-sample-privacy i {
    margin-right: 4px;
}

.mk-ai-strip {
    position: relative;
    overflow: hidden;
    padding: 52px 0;
    background: linear-gradient(135deg, #060e1c 0%, #0d1840 50%, #120830 100%);
}

.mk-ai-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(132, 67, 206, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(132, 67, 206, .05) 1px, transparent 1px);
    background-size: 44px 44px;
}

.mk-ai-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.mk-ai-copy {
    flex: 1;
}

.mk-ai-copy h2 {
    margin: 0;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 800;
    color: #fff;
}

.mk-ai-copy h2 span {
    color: var(--mk-purple);
}

.mk-ai-copy p {
    max-width: 620px;
    margin: 10px 0 18px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(200, 210, 240, .75);
}

.mk-ai-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mk-ai-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border: 1px solid rgba(132, 67, 206, .32);
    border-radius: 30px;
    background: rgba(132, 67, 206, .15);
    color: rgba(200, 178, 255, .9);
    font-size: 12px;
    font-weight: 700;
    animation: mk-ai-glow 3s ease-in-out infinite;
}

.mk-ai-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
}

@keyframes mk-ai-glow {
    50% {
        box-shadow: 0 0 20px rgba(132, 67, 206, .24);
    }
}

.mk-ai-metrics {
    display: flex;
    flex: 0 0 auto;
    gap: 36px;
}

.mk-ai-metric strong {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--mk-purple);
}

.mk-ai-metric span {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(200, 178, 255, .7);
}

.mk-survey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 44px;
}

.mk-survey-card {
    display: flex;
    flex-direction: column;
    min-height: 310px;
    padding: 32px 28px;
    border: 2px solid var(--card-color, var(--mk-blue));
    background: #fff;
}

.mk-survey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
}

.mk-survey-card h4 {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 800;
}

.mk-survey-card strong {
    display: block;
    color: var(--stat-color, var(--card-color));
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.mk-survey-card em {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--card-color);
}

.mk-survey-headline {
    display: block;
    margin-top: 10px;
    color: var(--mk-dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.mk-survey-geo {
    display: block;
    margin: 10px 0 12px;
    color: var(--card-color);
    font-size: 13px;
    font-weight: 700;
}

.mk-survey-card p {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.68;
    color: var(--mk-grey);
}

.mk-survey-method {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--mk-grey);
}

.mk-survey-method b {
    color: var(--stat-color, var(--card-color));
}

.mk-impact-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 20px;
    overflow: hidden;
    border-radius: var(--mk-radius);
}

.mk-impact-item {
    padding: 28px 20px;
    text-align: center;
    border-top: 3px solid var(--mk-blue);
    border-right: 1px solid rgba(255, 255, 255, .04);
    background: #0f2040;
}

.mk-impact-item:last-child {
    border-right: 0;
}

.mk-impact-item strong {
    display: block;
    color: var(--mk-cyan);
    font-size: 30px;
    font-weight: 800;
}

.mk-impact-item span {
    display: block;
    margin-top: 6px;
    color: rgba(160, 190, 230, .7);
    font-size: 13.5px;
    line-height: 1.45;
}

.mk-industries-grid,
.mk-regions-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 52px;
    gap: 16px;
}

.mk-industry-card {
    min-height: 190px;
    padding: 22px 16px;
    border: 1.5px solid #e8eff8;
    background: #fff;
    text-align: center;
    color: inherit;
    overflow: hidden;
}

.mk-industry-media {
    position: relative;
    height: 112px;
    margin: -22px -16px 18px;
    overflow: hidden;
    background: #0f2040;
}

.mk-industry-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.04) brightness(.92);
    mix-blend-mode: normal;
}

.mk-industry-media::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .56;
}

.mk-tone-blue::before {
    background: linear-gradient(135deg, rgba(0, 82, 204, .9), rgba(20, 111, 230, .82));
}

.mk-tone-green::before {
    background: linear-gradient(135deg, rgba(56, 142, 60, .92), rgba(123, 179, 66, .84));
}

.mk-tone-purple::before {
    background: linear-gradient(135deg, rgba(132, 67, 206, .92), rgba(98, 48, 168, .84));
}

.mk-tone-red::before {
    background: linear-gradient(135deg, rgba(198, 40, 40, .92), rgba(229, 57, 53, .84));
}

.mk-industry-card:hover {
    transform: translateY(-6px);
    border-color: var(--mk-blue);
    background: var(--mk-off);
    box-shadow: var(--mk-shadow);
}

.mk-ind-ico {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    font-size: 34px;
    transform: translate(-50%, -50%);
    line-height: 1;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18));
}

.mk-industry-card h4 {
    font-size: 14px;
    font-weight: 800;
}

.mk-industry-card p {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--mk-grey);
}

.mk-section--dark .mk-wrap {
    position: relative;
    z-index: 1;
}

.mk-section--dark .mk-sec-title {
    color: #fff;
}

.mk-section--dark .mk-sec-sub {
    color: rgba(180, 210, 255, .72);
}

.mk-global-subtitle {
    margin: 8px 0 0;
    font-size: 20px;
    font-weight: 600;
}

.mk-region-card {
    padding: 0;
    border: 1px solid rgba(0, 194, 255, .14);
    background: rgba(255, 255, 255, .04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mk-region-card:hover {
    transform: translateY(-5px);
    border-color: var(--mk-cyan);
    background: rgba(0, 82, 204, .12);
}

.mk-region-img-wrap {
    width: 100%;
    height: 170px;
    overflow: hidden;
    flex-shrink: 0;
}

.mk-region-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s ease;
}

.mk-region-card:hover .mk-region-img {
    transform: scale(1.06);
}

.mk-region-body {
    padding: 22px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mk-region-card h4 {
    color: var(--mk-cyan);
    font-size: 18px;
    font-weight: 800;
}

.mk-region-card p {
    margin: 10px 0 0;
    color: rgba(160, 200, 240, .75);
    font-size: 12px;
    line-height: 1.65;
}

.mk-region-body p:last-child {
    padding-top: 12px;
    border-top: 1px solid rgba(0, 194, 255, .1);
    color: rgba(180, 215, 255, .6);
    margin-top: auto;
    padding-top: 14px;
}

.mk-spotlight-title {
    margin-bottom: 56px;
    text-align: center;
}

.mk-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.mk-spotlight-visual {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 16px;
    background: #0a1628;
    box-shadow: none;
}

.mk-spotlight-visual svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mk-spotlight-copy h4 {
    margin: 0 0 12px;
}

.mk-spotlight-copy h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.32;
    color: var(--mk-dark);
}

.mk-spotlight-copy h3 span {
    color: var(--mk-purple);
}

.mk-spotlight-copy p {
    margin: 26px 0 0;
    color: var(--mk-grey);
    font-size: 16px;
    line-height: 1.7;
}

.mk-spotlight-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin: 30px 0;
}

.mk-spotlight-stat {
    padding: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
}

.mk-spotlight-stat strong {
    display: block;
    color: var(--mk-blue);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.mk-spotlight-stat span {
    display: block;
    margin-top: 8px;
    color: var(--mk-grey);
    font-size: 12px;
}

.mk-quote {
    margin: 0 0 32px;
    padding: 22px 26px;
    border-left: 4px solid var(--mk-purple);
    background: var(--mk-off);
    color: var(--mk-dark);
    font-size: 16px;
    font-style: italic;
    line-height: 1.65;
}

.mk-quote strong {
    font-weight: 800;
}

.mk-testimonial-card {
    padding: 28px;
    border: 1.5px solid #e8eff8;
    background: #fff;
}

.mk-testimonial-card p {
    margin: 0;
    color: var(--mk-grey);
    font-size: 14px;
    line-height: 1.75;
}

.mk-testimonial-card strong {
    display: block;
    margin-top: 22px;
    color: var(--mk-dark);
    font-size: 16px;
}

.mk-testimonial-card span {
    display: block;
    margin-top: 4px;
    color: var(--mk-lgrey);
    font-size: 12px;
}

.mk-testimonial-stars {
    margin-top: 16px;
    color: #F5A623;
    font-size: 15px;
    letter-spacing: 2px;
}

.mk-home-carousel,
.mk-media-carousel {
    margin-top: 38px;
}

.mk-home-blog-section {
    position: relative;
    padding: 76px 0 84px;
    background: linear-gradient(rgba(10, 22, 40, .84), rgba(10, 22, 40, .84)), url('/assets/images/background/common-header-c.jpg') center/cover no-repeat;
}

.mk-home-blog-section__heading {
    margin-bottom: 32px;
    text-align: center;
}

.mk-home-blog-section__title {
    margin: 0 0 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.mk-home-blog-carousel .owl-stage {
    display: flex;
}

.mk-home-blog-carousel .owl-item {
    display: flex;
}

.mk-home-blog-carousel .mk-blog-card {
    width: 100%;
}

.mk-blog-card {
    height: 100%;
    overflow: hidden;
    border: 1.5px solid #e8eff8;
    border-radius: var(--mk-radius);
    background: #fff;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.mk-blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--mk-blue);
    box-shadow: var(--mk-shadow-lg);
}

.mk-blog-card__media {
    display: block;
    height: 170px;
    background: linear-gradient(135deg, #0a1628, #0d3060);
}

.mk-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mk-blog-card__body {
    padding: 20px;
}

.mk-blog-card__category {
    display: block;
    margin-bottom: 8px;
    color: var(--mk-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mk-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
}

.mk-blog-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mk-blog-card__body h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
}

.mk-blog-card__body h4 a {
    color: var(--mk-dark);
}

.mk-blog-card__body p {
    margin: 10px 0 0;
    color: var(--mk-grey);
    font-size: 13px;
    line-height: 1.65;
}

.mk-media-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 22px;
    border: 1.5px solid #e8eff8;
    border-radius: var(--mk-radius);
    background: var(--mk-off);
    color: var(--mk-dark);
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    transition: transform .3s, box-shadow .3s, border-color .3s, color .3s;
}

.mk-media-card:hover {
    transform: translateY(-4px);
    border-color: var(--mk-cyan);
    color: var(--mk-blue);
    box-shadow: var(--mk-shadow);
}

.mk-cta-band {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background: linear-gradient(135deg, var(--mk-blue) 0%, #0b49ab 42%, var(--mk-purple-d) 100%);
    color: #fff;
}

.mk-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .35;
}

.mk-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.mk-cta-copy {
    max-width: 980px;
}

.mk-cta-band h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
}

.mk-cta-band p {
    max-width: 680px;
    margin: 12px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.7;
}

.mk-cta-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.mk-cta-btn {
    min-width: 280px;
    min-height: 60px;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
}

.mk-cta-btn--primary {
    background: #fff;
    color: var(--mk-blue);
}

.mk-cta-btn--primary:hover {
    background: #fff;
    color: var(--mk-blue);
    box-shadow: 0 10px 34px rgba(0, 0, 0, .22);
}

.mk-cta-btn--secondary {
    border: 2px solid rgba(255, 255, 255, .55);
    background: transparent;
    color: #fff;
}

.mk-cta-btn--secondary:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff;
}

.mk-cta-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1199px) {
    .mk-hero-main {
        gap: 24px;
        padding: 50px 24px 28px;
    }

    .mk-hero-video-frame {
        flex: 0 0 44%;
    }

    .mk-stat-item {
        min-width: 0;
        padding: 0 48px;
    }

    .mk-services-grid,
    .mk-tcard-grid,
    .mk-industries-grid,
    .mk-regions-grid,
    .mk-testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mk-ai-inner,
    .mk-spotlight,
    .mk-cta-inner {
        grid-template-columns: 1fr;
    }

    .mk-ai-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mk-cta-actions {
        justify-content: center;
    }
}

@media (min-width: 993px) and (max-height: 560px) {
    .mk-hero {
        min-height: calc(100vh - 64px);
        padding-top: 4px;
        padding-bottom: 57px;
    }

    .mk-hero-main {
        padding-top: 20px;
        padding-bottom: 16px;
    }

    .mk-hero-video-frame {
        flex: 0 0 min(38vw, 420px);
    }

    .mk-hero-glow-a {
        right: 3%;
        top: 18%;
        width: 240px;
        height: 240px;
    }

    .mk-hero-glow-b {
        right: 16%;
        bottom: 5%;
        width: 200px;
        height: 200px;
    }

    .mk-hero-content {
        width: min(620px, calc(100% - 80px));
        max-width: 620px;
        margin-left: max(40px, calc((100vw - 1440px) / 2 + 40px));
        padding: 10px 0 8px;
    }

    .mk-hero-kicker {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .mk-hero h1 {
        max-width: 560px;
        margin: 0 0 18px;
        margin-block-start: 0;
        margin-block-end: 18px;
        font-size: 32px;
        line-height: 1.18;
    }

    .mk-hero h2 {
        max-width: 700px;
        margin: 0 0 4px;
        margin-block-start: 0;
        margin-block-end: 4px;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.3;
    }

    .mk-hero-desc {
        max-width: 500px;
        margin-bottom: 10px;
        font-size: 12px;
        font-weight: 450;
        line-height: 1.45;
    }

    .mk-hero-actions {
        gap: 14px;
        margin-bottom: 38px;
    }

    .mk-hero-actions .mk-btn {
        min-height: 34px;
        padding: 11px 26px;
        font-size: 11.5px;
    }

    .mk-stats-bar {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin-top: 0;
        padding: 10px 0 12px;
    }

    .mk-stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 150px;
        padding: 0 20px;
        gap: 4px;
    }

    .mk-stat-num {
        font-size: 20px;
    }

    .mk-stat-label {
        margin-top: 0;
        font-size: 9.5px;
        line-height: 1.28;
    }
}

@media (max-width: 767px) {
    .mk-wrap {
        padding: 0 20px;
    }

    .mk-section {
        padding: 72px 0;
    }

    #services {
        padding-top: 56px;
    }

    .mk-tag {
        font-size: 18px;
    }

    .mk-hero {
        min-height: auto;
        padding-top: 18px;
    }

    .mk-hero-content {
        width: auto;
        margin: 0;
        padding: 56px 20px 34px;
    }

    .mk-hero h1 {
        font-size: 32px;
        line-height: 1.14;
    }

    .mk-hero h2 {
        margin-bottom: 4px;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.3;
    }

    .mk-hero-main {
        flex-direction: column;
        padding: 40px 20px 24px;
    }

    .mk-hero-video-frame {
        display: none;
    }

    .mk-hero-actions,
    .mk-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mk-btn {
        width: 100%;
    }

    .mk-stats-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 24px 0;
    }

    .mk-stat-item {
        min-width: 0;
        padding: 18px 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .mk-section-head-row,
    .mk-tcard-foot {
        align-items: flex-start;
        flex-direction: column;
    }

    .mk-trending-footer {
        justify-content: stretch;
    }

    .mk-trending-footer .mk-view-all {
        width: 100%;
    }

    .mk-tcard-dl {
        width: 100%;
    }

    .mk-services-grid,
    .mk-tcard-grid,
    .mk-survey-grid,
    .mk-industries-grid,
    .mk-regions-grid,
    .mk-testimonial-grid,
    .mk-impact-bar,
    .mk-spotlight-stats {
        grid-template-columns: 1fr;
    }

    .mk-ai-metrics {
        width: 100%;
        flex-wrap: wrap;
    }

    .mk-spotlight {
        gap: 36px;
    }

    .mk-spotlight-visual {
        min-height: 300px;
    }

    .mk-sample-modal-header {
        padding: 16px 20px;
    }

    .mk-sample-modal-kicker {
        font-size: 17px;
    }

    .mk-sample-modal-header h5.modal-title {
        font-size: 13px;
    }

    .mk-sample-modal-body {
        padding: 20px;
    }
}

/* ── Our Blogs section ─────────────────────────────────────────── */
.mk-section--dark .mk-tag {
    color: rgba(180, 210, 255, .9);
}

.mk-view-all--white {
    padding: 9px 22px;
    border: 1.5px solid #fff;
    color: #fff;
    font-size: 14px;
}

.mk-view-all--white:hover {
    background: #fff;
    color: var(--mk-blue);
}

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

.mk-home-report-card__media {
    display: block;
    overflow: hidden;
    background: #f4f6fb;
}

.mk-home-report-card__media img {
    display: block;
    width: 100%;
    height: 305px;
    object-fit: cover;
    transition: transform .4s;
}

.mk-home-report-card__media:hover img {
    transform: scale(1.04);
}

.mk-home-report-card__body {
    padding: 14px 20px 24px;
}

.mk-home-report-card__meta {
    display: block;
    margin-bottom: 10px;
    color: #4b5563;
    font-size: 12px;
    font-weight: 500;
}

.mk-home-report-card--blog h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
    color: #1a3c6e;
}

.mk-home-report-card--blog h3 a {
    color: inherit;
    text-decoration: none;
}

.mk-home-report-card--blog h3 a:hover {
    color: var(--mk-blue);
}

.mk-home-report-card--blog p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.mk-home-report-card--blog .mk-home-report-card__body > a:last-child {
    color: var(--mk-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.mk-home-report-card--blog .mk-home-report-card__body > a:last-child:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .mk-home-card-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .mk-home-card-grid--3 {
        grid-template-columns: 1fr;
    }
}
