.kkm-about-intro {
    --kkm-about-intro-container-width: 1400px;
    --kkm-about-intro-visual-ratio: 0.925;
    position: relative;
    padding: 90px 20px 76px;
    background: #ffffff;
    overflow: hidden;
}

.kkm-about-intro,
.kkm-about-intro * {
    box-sizing: border-box;
}

.kkm-about-intro__container {
    width: min(100%, var(--kkm-about-intro-container-width));
    max-width: var(--kkm-about-intro-container-width);
    margin: 0 auto;
}

.kkm-about-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    gap: 70px;
    align-items: center;
}

.kkm-about-intro--image-right .kkm-about-intro__visual {
    order: 2;
}

.kkm-about-intro--image-right .kkm-about-intro__content {
    order: 1;
}

.kkm-about-intro__visual,
.kkm-about-intro__content {
    min-width: 0;
}

.kkm-about-intro__collage {
    position: relative;
    width: 100%;
    max-width: 650px;
    aspect-ratio: 1 / var(--kkm-about-intro-visual-ratio);
    margin: 0;
}

.kkm-about-intro--image-right .kkm-about-intro__collage {
    margin-left: auto;
}

.kkm-about-intro__main-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #eef4fb;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.kkm-about-intro__main-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 44%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.48) 76%, rgba(255,255,255,0.74) 100%);
    pointer-events: none;
}

.kkm-about-intro__main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.kkm-about-intro__side-stack {
    position: absolute;
    top: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    width: 38%;
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.kkm-about-intro__side-card {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border: 4px solid #ffffff;
    border-radius: 12px;
    background: #eef4fb;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.28);
}

.kkm-about-intro__side-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.kkm-about-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 17px;
    color: #ff6a00;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.kkm-about-intro__eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    display: block;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #ff6a00;
}

.kkm-about-intro__title {
    margin: 0 0 22px;
    color: #0d3474;
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.kkm-about-intro__description {
    max-width: 660px;
    margin: 0;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.kkm-about-intro__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.kkm-about-intro__feature {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    background: #ffffff;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.10);
}

.kkm-about-intro__feature-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff6a00;
    border-radius: 999px;
    color: #ff6a00;
    background: #ffffff;
}

.kkm-about-intro__feature-icon svg,
.kkm-about-intro__feature-icon i {
    width: 17px;
    height: 17px;
    font-size: 16px;
    fill: currentColor;
}

.kkm-about-intro__feature-title {
    min-width: 0;
    display: block;
    color: #111827;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

@media (min-width: 768px) {
    .kkm-about-intro__container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1280px) {
    .kkm-about-intro__grid {
        gap: 44px;
    }

    .kkm-about-intro__title {
        font-size: 39px;
    }

    .kkm-about-intro__feature {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 1100px) {
    .kkm-about-intro__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .kkm-about-intro__visual,
    .kkm-about-intro__content {
        max-width: 760px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .kkm-about-intro__collage {
        max-width: 760px;
    }

    .kkm-about-intro--image-right .kkm-about-intro__visual,
    .kkm-about-intro--image-right .kkm-about-intro__content {
        order: initial;
    }

    .kkm-about-intro--mobile-image-no .kkm-about-intro__content {
        order: 1;
    }

    .kkm-about-intro--mobile-image-no .kkm-about-intro__visual {
        order: 2;
    }

    .kkm-about-intro__description {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .kkm-about-intro {
        padding: 50px 16px;
    }

    .kkm-about-intro__grid {
        gap: 30px;
    }

    .kkm-about-intro__collage {
        aspect-ratio: auto;
        max-width: 100%;
    }

    .kkm-about-intro__main-image {
        position: relative;
        inset: auto;
        aspect-ratio: 16 / 10.8;
    }

    .kkm-about-intro__main-image::after {
        display: none;
    }

    .kkm-about-intro__side-stack {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        margin-top: 12px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 10px;
    }

    .kkm-about-intro__side-card {
        aspect-ratio: 16 / 10;
        border-width: 3px;
    }

    .kkm-about-intro__title {
        font-size: 31px;
        letter-spacing: -0.03em;
    }

    .kkm-about-intro__description {
        font-size: 15px;
        line-height: 1.72;
    }

    .kkm-about-intro__features {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .kkm-about-intro__feature {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .kkm-about-intro__side-stack {
        grid-template-columns: 1fr;
    }

    .kkm-about-intro__side-card {
        aspect-ratio: 16 / 9;
    }

    .kkm-about-intro__title {
        font-size: 28px;
    }
}

/* KKM v9.0.7 full-page same-width alignment patch
   Keeps every KKM widget aligned to the header container width. */
:root {
    --kkm-global-container-width: 1400px;
}

body:not(.elementor-editor-active) .elementor-widget-kkm_2026_header,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_footer,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_hero,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_about,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_about_page_hero,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_about_intro,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_about_why_choose,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_about_final_cta,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_why_choose,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_core_services,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_process,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_products,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_project_experience,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_industries,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_vision_mission,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_final_cta,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_contact,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_website_fix,
body:not(.elementor-editor-active) .elementor-widget-kkm_2026_partners {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.elementor-widget-kkm_2026_header .elementor-widget-container,
.elementor-widget-kkm_2026_footer .elementor-widget-container,
.elementor-widget-kkm_2026_hero .elementor-widget-container,
.elementor-widget-kkm_2026_about .elementor-widget-container,
.elementor-widget-kkm_2026_about_page_hero .elementor-widget-container,
.elementor-widget-kkm_2026_about_intro .elementor-widget-container,
.elementor-widget-kkm_2026_about_why_choose .elementor-widget-container,
.elementor-widget-kkm_2026_about_final_cta .elementor-widget-container,
.elementor-widget-kkm_2026_why_choose .elementor-widget-container,
.elementor-widget-kkm_2026_core_services .elementor-widget-container,
.elementor-widget-kkm_2026_process .elementor-widget-container,
.elementor-widget-kkm_2026_products .elementor-widget-container,
.elementor-widget-kkm_2026_project_experience .elementor-widget-container,
.elementor-widget-kkm_2026_industries .elementor-widget-container,
.elementor-widget-kkm_2026_vision_mission .elementor-widget-container,
.elementor-widget-kkm_2026_final_cta .elementor-widget-container,
.elementor-widget-kkm_2026_contact .elementor-widget-container,
.elementor-widget-kkm_2026_website_fix .elementor-widget-container,
.elementor-widget-kkm_2026_partners .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
}

.kkm-header__container,
.kkm-footer__container,
.kkm-hero__container,
.kkm-about__container,
.kkm-about-page-hero__container,
.kkm-about-intro__container,
.kkm-about-why__container,
.kkm-about-final-cta__container,
.kkm-why__container,
.kkm-core-services__container,
.kkm-process__container,
.kkm-products__container,
.kkm-project-exp__container,
.kkm-industries__container,
.kkm-vm__container,
.kkm-final-cta__container,
.kkm-contact__container,
.kkm-webfix__container,
.kkm-partners__container {
    width: min(100%, var(--kkm-global-container-width)) !important;
    max-width: var(--kkm-global-container-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

@media (min-width: 768px) {
    .kkm-header__container,
    .kkm-footer__container,
    .kkm-hero__container,
    .kkm-about__container,
    .kkm-about-page-hero__container,
    .kkm-about-intro__container,
    .kkm-about-why__container,
    .kkm-about-final-cta__container,
    .kkm-why__container,
    .kkm-core-services__container,
    .kkm-process__container,
    .kkm-products__container,
    .kkm-project-exp__container,
    .kkm-industries__container,
    .kkm-vm__container,
    .kkm-final-cta__container,
    .kkm-contact__container,
    .kkm-webfix__container,
    .kkm-partners__container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 767px) {
    .kkm-header__container,
    .kkm-footer__container,
    .kkm-hero__container,
    .kkm-about__container,
    .kkm-about-page-hero__container,
    .kkm-about-intro__container,
    .kkm-about-why__container,
    .kkm-about-final-cta__container,
    .kkm-why__container,
    .kkm-core-services__container,
    .kkm-process__container,
    .kkm-products__container,
    .kkm-project-exp__container,
    .kkm-industries__container,
    .kkm-vm__container,
    .kkm-final-cta__container,
    .kkm-contact__container,
    .kkm-webfix__container,
    .kkm-partners__container {
        width: 100% !important;
        max-width: 100% !important;
    }
}
