.kkm-footer {
    --kkm-footer-container-width: 1400px;
    --kkm-footer-bg-start: #021b4e;
    --kkm-footer-bg-end: #002b7a;
    --kkm-footer-overlay: rgba(2, 18, 65, 0.76);
    --kkm-footer-separator: rgba(255, 255, 255, 0.82);
    position: relative;
    overflow: hidden;
    padding: 54px 20px 24px;
    background: linear-gradient(90deg, var(--kkm-footer-bg-start) 0%, #01245e 48%, var(--kkm-footer-bg-end) 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.kkm-footer * {
    box-sizing: border-box;
}

.kkm-footer__inner-surface {
    position: relative;
    min-height: 100%;
}

.kkm-footer__inner-surface::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 40%, rgba(255, 255, 255, 0.07), transparent 28%),
        radial-gradient(circle at 100% 16%, rgba(255, 255, 255, 0.06), transparent 18%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 35%);
    pointer-events: none;
    opacity: 1;
}

.kkm-footer:not(.kkm-footer--no-pattern) .kkm-footer__inner-surface::after {
    content: "";
    position: absolute;
    inset: auto -10% -50px -8%;
    height: 220px;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 70%, rgba(67, 196, 255, 0.45) 0 1px, transparent 2px),
        radial-gradient(circle at 20% 72%, rgba(67, 196, 255, 0.15) 0 2px, transparent 3px),
        linear-gradient(182deg, transparent 43%, rgba(255, 255, 255, 0.42) 44%, transparent 45%),
        linear-gradient(175deg, transparent 56%, rgba(124, 220, 255, 0.28) 57%, transparent 58%),
        linear-gradient(167deg, transparent 63%, rgba(70, 190, 255, 0.18) 64%, transparent 65%);
    opacity: 0.88;
}

.kkm-footer__bg-image,
.kkm-footer__overlay-image {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.kkm-footer__bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--kkm-footer-overlay);
}

.kkm-footer__overlay-image {
    opacity: 0.22;
    background-position: right center;
    mix-blend-mode: screen;
}

.kkm-footer__container {
    width: min(100%, var(--kkm-footer-container-width));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.kkm-footer__top-grid {
    display: grid;
    grid-template-columns: 1.65fr 0.9fr 1.2fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.kkm-footer__col {
    min-width: 0;
}

.kkm-footer__brand-logo {
    margin-bottom: 18px;
}

.kkm-footer__brand-logo img {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
}

.kkm-footer__company {
    margin: 0 0 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.kkm-footer__description {
    max-width: 430px;
    margin: 0;
    font-size: 16px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.92);
}

.kkm-footer__heading {
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #ff7a00;
}

.kkm-footer__menu-list,
.kkm-footer__social-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kkm-footer__menu-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.kkm-footer__menu-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

.kkm-footer__menu-link::before {
    content: "\00BB";
    color: #ff7a00;
    font-size: 19px;
    line-height: 1;
    margin-top: -1px;
}

.kkm-footer__menu-link:hover,
.kkm-footer__menu-link:focus {
    color: #ff7a00;
    transform: translateX(2px);
}

.kkm-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.kkm-footer__contact-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
}

.kkm-footer__contact-icon {
    width: 32px;
    height: 32px;
    border: 1px solid #ff7a00;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff7a00;
    flex-shrink: 0;
}

.kkm-footer__contact-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.kkm-footer__contact-link,
.kkm-footer__contact-text {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
}

.kkm-footer__contact-link:hover,
.kkm-footer__contact-link:focus {
    color: #ff7a00;
}

.kkm-footer__social-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.kkm-footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #041e4f;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.kkm-footer__social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.kkm-footer__social-list li:first-child .kkm-footer__social-link {
    background: #ff7a00;
    color: #ffffff;
}

.kkm-footer__social-link:hover,
.kkm-footer__social-link:focus {
    transform: translateY(-2px);
    background: #ff7a00;
    color: #ffffff;
}

.kkm-footer__cta-wrap {
    max-width: 100%;
}

.kkm-footer__cta {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
    padding: 24px 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    background: rgba(5, 24, 73, 0.28);
    backdrop-filter: blur(1px);
}

.kkm-footer__cta-icon {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 2px solid #ff7a00;
    color: #ff7a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kkm-footer__cta-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.kkm-footer__cta-text {
    margin: 3px 0 16px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
}

.kkm-footer__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 188px;
    padding: 13px 28px;
    border-radius: 8px;
    background: #ff7a00;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.kkm-footer__cta-button:hover,
.kkm-footer__cta-button:focus {
    background: #e86d00;
    color: #ffffff;
    transform: translateY(-1px);
}

.kkm-footer__cta-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
}

.kkm-footer__cta-button-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.kkm-footer__bottom {
    margin-top: 46px;
    padding-top: 18px;
    border-top: 1px solid var(--kkm-footer-separator);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.kkm-footer__bottom-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    color: #ffffff;
}

.kkm-footer__bottom-text--right {
    text-align: right;
}

@media (max-width: 1200px) {
    .kkm-footer__top-grid {
        grid-template-columns: 1.3fr 0.9fr 1fr 1.15fr;
        gap: 30px;
    }

    .kkm-footer__description {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .kkm-footer {
        padding-top: 42px;
    }

    .kkm-footer__top-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
    }

    .kkm-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .kkm-footer__bottom-text--right {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .kkm-footer {
        padding: 36px 16px 20px;
    }

    .kkm-footer__top-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .kkm-footer__heading {
        margin-bottom: 18px;
    }

    .kkm-footer__cta {
        grid-template-columns: 1fr;
    }

    .kkm-footer__cta-icon {
        margin-bottom: 6px;
    }

    .kkm-footer__cta-button {
        width: 100%;
        min-width: 0;
    }

    .kkm-footer__bottom {
        margin-top: 30px;
        gap: 8px;
    }

    .kkm-footer__bottom-text {
        font-size: 12px;
    }
}
