.site-footer .footer-widgets,
.site-footer .site-info {
    display: none !important;
}

.site-footer {
    background: #142b4b;
}

.kh-site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(73, 173, 232, .16), transparent 34%),
        linear-gradient(145deg, #19375e 0%, #132b4b 58%, #10233f 100%);
    color: #dce8f7;
}

.kh-site-footer::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    content: '';
    background: linear-gradient(90deg, transparent, #42b6ed 24%, #ffca3a 50%, #42b6ed 76%, transparent);
}

.kh-footer-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 58px 0 24px;
}

.kh-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
    gap: 46px;
}

.kh-footer-logo {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: #fff;
    text-decoration: none;
}

.kh-footer-logo img {
    display: block;
    width: auto;
    max-width: 265px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.kh-footer-logo strong {
    color: #fff;
    font-size: 1.55rem;
}

.kh-footer-brand p {
    max-width: 340px;
    margin: 20px 0 22px;
    color: #b8cbe2;
    font-size: .98rem;
    line-height: 1.7;
}

.kh-footer-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 17px;
    border: 1px solid rgba(255, 202, 58, .48);
    border-radius: 999px;
    background: rgba(255, 202, 58, .1);
    color: #ffdb70;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.kh-footer-discover:hover,
.kh-footer-discover:focus-visible {
    background: #ffca3a;
    color: #173358;
    transform: translateY(-2px);
}

.kh-footer-column h2 {
    position: relative;
    margin: 4px 0 20px;
    padding-bottom: 12px;
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.3;
    text-transform: uppercase;
}

.kh-footer-column h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    border-radius: 999px;
    content: '';
    background: #ffca3a;
}

.kh-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.kh-footer-column li + li {
    margin-top: 5px;
}

.kh-footer-column a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px;
    margin-left: -10px;
    border-radius: 9px;
    color: #c7d7e9;
    font-size: .95rem;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.kh-footer-column a span:last-child {
    color: #55bdef;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .18s ease, transform .18s ease;
}

.kh-footer-column a:hover,
.kh-footer-column a:focus-visible {
    background: rgba(255,255,255,.07);
    color: #fff;
    transform: translateX(3px);
}

.kh-footer-column a:hover span:last-child,
.kh-footer-column a:focus-visible span:last-child {
    opacity: 1;
    transform: translateX(0);
}

.kh-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid rgba(202, 220, 240, .16);
    color: #94abc5;
    font-size: .82rem;
}

@media (max-width: 960px) {
    .kh-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 52px;
    }
}

@media (max-width: 620px) {
    .kh-footer-inner {
        width: min(100% - 30px, 520px);
        padding-top: 42px;
    }

    .kh-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 22px;
    }

    .kh-footer-brand {
        grid-column: 1 / -1;
    }

    .kh-footer-logo img {
        max-width: 235px;
        height: 52px;
    }

    .kh-footer-column:last-child {
        grid-column: 1 / -1;
    }

    .kh-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 36px;
    }
}

@media (max-width: 390px) {
    .kh-footer-grid {
        grid-template-columns: 1fr;
    }

    .kh-footer-brand,
    .kh-footer-column:last-child {
        grid-column: auto;
    }
}
