.yl-new-footer {
    width: 100%;
    background:
        radial-gradient(circle at 18% 0%, rgba(24, 214, 232, .08), transparent 30%),
        radial-gradient(circle at 88% 100%, rgba(24, 214, 232, .05), transparent 28%),
        linear-gradient(135deg, #06111d 0%, #02070d 100%);
    border-top: 1px solid rgba(24, 214, 232, .14);
    font-family: "Montserrat", sans-serif;
    color: #fff;
    box-sizing: border-box;
}

.yl-new-footer * {
    box-sizing: border-box;
}

.yl-footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 58px 30px 24px;
}

.yl-footer-main {
    display: grid;
    grid-template-columns: 1.45fr .85fr .85fr 1fr;
    gap: 52px;
    align-items: start;
}

.yl-brand {
    max-width: 360px;
}

.yl-brand-lockup {
    margin-bottom: 16px;
}

.yl-brand-name {
    display: inline-block;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.6px;
    text-decoration: none;
}

.yl-brand-name:hover {
    color: #18d6e8;
}

.yl-brand-tagline {
    margin: 0 0 13px;
    color: #18d6e8;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.yl-brand-copy {
    margin: 0;
    color: #c1cdd4;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.yl-region-row {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.yl-region-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(24, 214, 232, .20);
    border-radius: 999px;
    background: rgba(255, 255, 255, .025);
    color: #cbd8de;
    font-size: 12px;
    font-weight: 500;
}

.yl-footer-column h3 {
    margin: 0 0 17px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.yl-footer-links,
.yl-footer-legal {
    list-style: none;
    margin: 0;
    padding: 0;
}

.yl-footer-links li {
    margin-bottom: 11px;
}

.yl-footer-links a {
    position: relative;
    display: inline-block;
    color: #c4d0d6;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: color .20s ease, transform .20s ease;
}

.yl-footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #18d6e8;
    transition: width .22s ease;
}

.yl-footer-links a:hover,
.yl-footer-links .current-menu-item > a {
    color: #18d6e8;
    transform: translateX(3px);
}

.yl-footer-links a:hover::after,
.yl-footer-links .current-menu-item > a::after {
    width: 100%;
}

.yl-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.yl-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 15px;
}

.yl-contact-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: rgba(24, 214, 232, .07);
    color: #18d6e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yl-contact-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yl-contact-content strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.yl-contact-content span,
.yl-contact-content a {
    display: block;
    color: #c1cdd4;
    font-size: 14px;
    line-height: 1.55;
    text-decoration: none;
}

.yl-contact-content a {
    color: #18d6e8;
}

.yl-contact-content a:hover {
    color: #fff;
}

.yl-social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.yl-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(24, 214, 232, .30);
    background: rgba(255, 255, 255, .02);
    color: #18d6e8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.yl-social-link:hover {
    background: #18d6e8;
    color: #041019;
    border-color: #18d6e8;
    transform: translateY(-3px);
    box-shadow: 0 9px 22px rgba(24, 214, 232, .16);
}

.yl-social-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.yl-brand-name:focus-visible,
.yl-footer-links a:focus-visible,
.yl-contact-content a:focus-visible,
.yl-social-link:focus-visible,
.yl-footer-legal a:focus-visible {
    outline: 2px solid #18d6e8;
    outline-offset: 3px;
}

.yl-footer-rule {
    height: 1px;
    margin-top: 46px;
    background: linear-gradient(90deg, transparent, rgba(24, 214, 232, .26), transparent);
}

.yl-footer-bottom {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.yl-footer-copy {
    color: #82939d;
    font-size: 13px;
    line-height: 1.5;
}

.yl-footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.yl-footer-legal li {
    margin: 0;
    padding: 0;
}

.yl-footer-legal a {
    color: #8fa0aa;
    font-size: 13px;
    text-decoration: none;
    transition: color .2s ease;
}

.yl-footer-legal a:hover,
.yl-footer-legal .current-menu-item > a {
    color: #18d6e8;
}

@media (max-width: 950px) {
    .yl-footer-main {
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 42px 30px;
    }

    .yl-brand {
        grid-column: 1 / -1;
        max-width: 650px;
    }
}

@media (max-width: 680px) {
    .yl-footer-wrap {
        padding: 48px 20px 22px;
    }

    .yl-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
    }

    .yl-brand {
        grid-column: 1 / -1;
    }

    .yl-brand-name {
        font-size: 24px;
    }

    .yl-brand-copy,
    .yl-footer-links a {
        font-size: 15px;
    }

    .yl-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 470px) {
    .yl-footer-main {
        grid-template-columns: 1fr;
    }

    .yl-brand {
        grid-column: auto;
    }

    .yl-brand-name {
        font-size: 23px;
    }
}
