.kmcta-section {
    --kmcta-height: 190px;
    --kmcta-max-width: 1440px;
    --kmcta-bg: #090909;
    --kmcta-text: #ffffff;
    --kmcta-accent: #f5c400;
    --kmcta-map-position: center center;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 43%) minmax(0, 57%);
    width: 100vw;
    min-height: var(--kmcta-height);
    margin: 0 0 0 calc(50% - 50vw) !important;
    padding: 0 !important;
    overflow: hidden;
    background-color: var(--kmcta-bg);
    color: var(--kmcta-text);
    font-family: Poppins, Arial, Helvetica, sans-serif;
    border-bottom: 2px solid var(--kmcta-accent);
    isolation: isolate;
}
.kmcta-section *,
.kmcta-section *::before,
.kmcta-section *::after {
    box-sizing: border-box;
}
.kmcta-map {
    position: relative;
    min-height: var(--kmcta-height);
    overflow: hidden;
    background: #e9e9e9;
    clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
    z-index: 2;
}
.kmcta-map__image,
.kmcta-map__iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: var(--kmcta-height);
    border: 0;
}
.kmcta-map__image {
    object-fit: cover;
    object-position: var(--kmcta-map-position);
}
.kmcta-map__iframe {
    filter: saturate(.8) contrast(.95);
}
.kmcta-marker {
    position: absolute;
    top: 32px;
    left: clamp(24px, 16vw, 250px);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 54px;
    padding: 8px 20px 8px 10px;
    color: #c90000;
    background: rgba(255,255,255,.96);
    border-radius: 3px;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}
.kmcta-marker__icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 38px;
    color: #c90000;
}
.kmcta-marker__icon .kmcta-icon {
    width: 31px;
    height: 38px;
}
.kmcta-panel {
    position: relative;
    min-height: var(--kmcta-height);
    background: var(--kmcta-bg);
}
.kmcta-panel__inner {
    width: min(calc(100% - 60px), calc(var(--kmcta-max-width) * .57));
    min-height: var(--kmcta-height);
    margin-right: auto;
    padding: 24px 46px 24px 52px;
    display: grid;
    grid-template-columns: 78px minmax(280px, 1fr) auto;
    align-items: center;
    gap: 26px;
}
.kmcta-panel__phone-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border: 2px solid var(--kmcta-accent);
    border-radius: 50%;
    color: var(--kmcta-accent);
}
.kmcta-panel__phone-icon .kmcta-icon {
    width: 38px;
    height: 38px;
}
.kmcta-panel__copy {
    min-width: 0;
}
.kmcta-panel__title {
    margin: 0 0 8px;
    color: var(--kmcta-text);
    font-size: clamp(19px, 1.35vw, 25px);
    font-weight: 700;
    line-height: 1.18;
}
.kmcta-panel__text,
.kmcta-panel__text p {
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: clamp(13px, .86vw, 16px);
    line-height: 1.55;
}
.kmcta-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 218px;
    min-height: 58px;
    padding: 10px 24px;
    border: 1.5px solid var(--kmcta-accent);
    border-radius: 5px;
    color: var(--kmcta-text);
    background: rgba(0,0,0,.18);
    text-decoration: none;
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.kmcta-phone:hover {
    transform: translateY(-2px);
    background: rgba(245,196,0,.08);
    box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.kmcta-phone__icon {
    display: grid;
    place-items: center;
    color: var(--kmcta-accent);
}
.kmcta-phone__icon .kmcta-icon {
    width: 31px;
    height: 31px;
}
.kmcta-phone strong {
    color: var(--kmcta-text);
    font-size: clamp(20px, 1.4vw, 26px);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
@media (max-width: 1180px) {
    .kmcta-section {
        grid-template-columns: minmax(0, 38%) minmax(0, 62%);
    }
    .kmcta-panel__inner {
        width: calc(100% - 24px);
        padding-inline: 34px 24px;
        grid-template-columns: 64px minmax(230px, 1fr) auto;
        gap: 18px;
    }
    .kmcta-panel__phone-icon {
        width: 62px;
        height: 62px;
    }
    .kmcta-panel__phone-icon .kmcta-icon {
        width: 31px;
        height: 31px;
    }
    .kmcta-phone {
        min-width: 210px;
        padding-inline: 18px;
    }
    .kmcta-marker {
        left: 35px;
    }
}
@media (max-width: 860px) {
    .kmcta-section {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: 0 !important;
        border-bottom-width: 2px;
    }
    .kmcta-map {
        min-height: 220px;
        clip-path: none;
    }
    .kmcta-map__image,
    .kmcta-map__iframe {
        min-height: 220px;
    }
    .kmcta-marker {
        top: 22px;
        left: 22px;
    }
    .kmcta-panel,
    .kmcta-panel__inner {
        min-height: auto;
    }
    .kmcta-panel__inner {
        width: 100%;
        padding: 30px 22px 34px;
        grid-template-columns: 58px 1fr;
        gap: 18px;
    }
    .kmcta-panel__phone-icon {
        width: 56px;
        height: 56px;
    }
    .kmcta-panel__phone-icon .kmcta-icon {
        width: 28px;
        height: 28px;
    }
    .kmcta-phone {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 4px;
    }
}
@media (max-width: 520px) {
    .kmcta-map {
        min-height: 185px;
    }
    .kmcta-map__image,
    .kmcta-map__iframe {
        min-height: 185px;
    }
    .kmcta-marker {
        top: 16px;
        left: 14px;
        min-height: 46px;
        padding-right: 13px;
        font-size: 12px;
    }
    .kmcta-marker__icon {
        width: 28px;
        height: 31px;
    }
    .kmcta-marker__icon .kmcta-icon {
        width: 26px;
        height: 31px;
    }
    .kmcta-panel__inner {
        grid-template-columns: 48px 1fr;
        padding-inline: 16px;
    }
    .kmcta-panel__phone-icon {
        width: 48px;
        height: 48px;
    }
    .kmcta-panel__phone-icon .kmcta-icon {
        width: 24px;
        height: 24px;
    }
    .kmcta-panel__title {
        font-size: 20px;
    }
    .kmcta-panel__text,
    .kmcta-panel__text p {
        font-size: 14px;
    }
    .kmcta-phone {
        min-height: 58px;
    }
    .kmcta-phone strong {
        font-size: 23px;
    }
}
