/* =========================================================
   AGÊNCIA DIGITAL WEBARTY — FOOTER
   ПОЛНЫЙ CSS НА ЗАМЕНУ
   ========================================================= */

.wa-site-footer,
.wa-site-footer *,
.wa-site-footer *::before,
.wa-site-footer *::after {
    box-sizing: border-box;
}


/* =========================================================
   FOOTER
   ========================================================= */

.wa-site-footer {
    --wa-footer-dark: #17233d;
    --wa-footer-dark-deep: #111b31;

    --wa-footer-teal: #00a78e;
    --wa-footer-teal-hover: #008f7a;
    --wa-footer-green: #36c88a;

    --wa-footer-white: #ffffff;
    --wa-footer-text: rgba(255, 255, 255, 0.74);
    --wa-footer-muted: rgba(255, 255, 255, 0.52);
    --wa-footer-border: rgba(255, 255, 255, 0.11);

    position: relative;
    isolation: isolate;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 82px 0 0;

    overflow: hidden;

    color: var(--wa-footer-white);

    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(0, 167, 142, 0.22) 0%,
            rgba(0, 167, 142, 0) 32%
        ),
        radial-gradient(
            circle at 9% 87%,
            rgba(54, 200, 138, 0.08) 0%,
            rgba(54, 200, 138, 0) 31%
        ),
        linear-gradient(
            125deg,
            var(--wa-footer-dark-deep) 0%,
            var(--wa-footer-dark) 53%,
            #144a55 100%
        );
}


/* =========================================================
   DECORATIVE CIRCLES
   ========================================================= */

.wa-site-footer__decor {
    position: absolute;
    z-index: -1;

    border-radius: 50%;

    pointer-events: none;
}

.wa-site-footer__decor--top {
    top: -430px;
    right: -220px;

    width: 750px;
    height: 750px;

    border: 1px solid rgba(255, 255, 255, 0.055);
}

.wa-site-footer__decor--bottom {
    bottom: -430px;
    left: -310px;

    width: 680px;
    height: 680px;

    border: 1px solid rgba(54, 200, 138, 0.085);
}


/* =========================================================
   CONTAINER
   ТА ЖЕ ЛОГИКА ШИРИНЫ, ЧТО И У HEADER
   ========================================================= */

.wa-site-footer__container {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 96px), 1400px);

    margin-right: auto;
    margin-left: auto;
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.wa-site-footer__main {
    display: grid;

    grid-template-columns:
        minmax(310px, 1.22fr)
        minmax(210px, 0.9fr)
        minmax(250px, 1.05fr)
        minmax(270px, 1.08fr);

    align-items: start;
    justify-items: stretch;

    gap: clamp(32px, 3vw, 54px);

    width: 100%;

    padding-bottom: 60px;
}


/* =========================================================
   BRAND COLUMN
   ========================================================= */

.wa-site-footer__brand {
    width: 100%;
    min-width: 0;
    max-width: none;
}


/* =========================================================
   LOGO
   ========================================================= */

.wa-site-footer__logo,
.wa-site-footer__logo:visited {
    display: inline-flex;

    width: fit-content;
    max-width: 100%;

    align-items: center;

    margin: 0;
    padding: 0;

    text-decoration: none !important;
}

.wa-site-footer__logo-image {
    display: block;

    width: 220px;
    max-width: 100%;
    height: auto;

    margin: 0;
    padding: 0;

    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   BRAND TITLE
   ========================================================= */

.wa-site-footer__brand-title {
    margin: 25px 0 0 !important;
    padding: 0 !important;

    color: rgba(255, 255, 255, 0.56) !important;

    font-family: inherit !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;

    letter-spacing: 0.085em !important;
    text-transform: uppercase !important;
}


/* =========================================================
   BRAND TEXT
   ========================================================= */

.wa-site-footer__brand-text {
    width: 100%;
    max-width: 390px;

    margin: 14px 0 0 !important;
    padding: 0 !important;

    color: var(--wa-footer-text) !important;

    font-family: inherit;
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================================
   EXPERTISE TAGS
   ========================================================= */

.wa-site-footer__expertise {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    width: 100%;

    margin-top: 21px;
}

.wa-site-footer__expertise span {
    display: inline-flex;

    min-height: 29px;

    align-items: center;
    justify-content: center;

    padding: 5px 10px;

    border: 1px solid rgba(85, 220, 202, 0.2);
    border-radius: 999px;

    color: #6de0ce;

    background: rgba(0, 167, 142, 0.1);

    font-family: inherit;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.055em;
    text-transform: uppercase;
}


/* =========================================================
   COMPACT BUTTONS
   ========================================================= */

.wa-site-footer__actions {
    display: grid;

    grid-template-columns: 1fr;

    gap: 9px;

    width: 180px;
    max-width: 100%;

    margin-top: 24px;
}

.wa-site-footer__button,
.wa-site-footer__button:visited {
    display: inline-flex;

    width: 100%;
    min-width: 0;
    min-height: 44px;

    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 9px 14px;

    border-radius: 999px;

    box-shadow: none;

    font-family: inherit;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;

    letter-spacing: 0.035em;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.wa-site-footer__button--primary,
.wa-site-footer__button--primary:visited {
    border: 1px solid var(--wa-footer-teal);

    color: #ffffff !important;

    background: var(--wa-footer-teal);
}

.wa-site-footer__button--primary:hover,
.wa-site-footer__button--primary:focus-visible {
    border-color: var(--wa-footer-teal-hover);

    color: #ffffff !important;

    background: var(--wa-footer-teal-hover);
}

.wa-site-footer__button--secondary,
.wa-site-footer__button--secondary:visited {
    border: 1px solid rgba(255, 255, 255, 0.24);

    color: #ffffff !important;

    background: rgba(255, 255, 255, 0.055);
}

.wa-site-footer__button--secondary:hover,
.wa-site-footer__button--secondary:focus-visible {
    border-color: rgba(85, 220, 202, 0.58);

    color: #67dfcb !important;

    background: rgba(0, 167, 142, 0.1);
}


/* =========================================================
   COLUMNS
   ========================================================= */

.wa-site-footer__column {
    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0;
}

.wa-site-footer__column--solutions,
.wa-site-footer__column--company {
    padding-left: 0;
}


/* =========================================================
   COLUMN TITLES
   ========================================================= */

.wa-site-footer__column-title {
    position: relative;

    margin: 3px 0 23px !important;
    padding: 0 0 13px !important;

    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;

    letter-spacing: 0.01em !important;
    text-transform: none !important;
}

.wa-site-footer__column-title::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 34px;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--wa-footer-teal),
            var(--wa-footer-green)
        );
}

.wa-site-footer__column-title--sub {
    margin-top: 34px !important;
}

.wa-site-footer__subcolumn,
.wa-site-footer__contacts-block {
    width: 100%;

    margin: 0;
    padding: 0;
}


/* =========================================================
   LINKS
   ========================================================= */

.wa-site-footer__links {
    display: flex;

    flex-direction: column;

    gap: 12px;

    width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.wa-site-footer__links li {
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.wa-site-footer__links li::marker {
    content: "";
}

.wa-site-footer__links a,
.wa-site-footer__links a:visited,
.wa-site-footer__static-link {
    position: relative;

    display: inline-flex;

    align-items: flex-start;

    gap: 9px;

    margin: 0;
    padding: 0;

    color: var(--wa-footer-text) !important;

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;

    text-decoration: none !important;
}

.wa-site-footer__links a {
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.wa-site-footer__links a::before,
.wa-site-footer__static-link::before {
    content: "";

    flex: 0 0 5px;

    width: 5px;
    height: 5px;

    margin-top: 0.58em;

    border-radius: 50%;

    background: rgba(85, 220, 202, 0.65);
}

.wa-site-footer__links a:hover,
.wa-site-footer__links a:focus-visible {
    color: #69e0cc !important;

    transform: translateX(3px);
}

.wa-site-footer__static-link {
    color: rgba(255, 255, 255, 0.48) !important;

    cursor: default;
}

.wa-site-footer__static-link::before {
    background: rgba(255, 255, 255, 0.27);
}


/* =========================================================
   CONTACTS
   ========================================================= */

.wa-site-footer__contacts {
    display: flex;

    flex-direction: column;

    gap: 16px;

    width: 100%;

    margin: 0;
    padding: 0;

    font-style: normal;
}

.wa-site-footer__contact,
.wa-site-footer__contact:visited {
    display: grid;

    grid-template-columns: 40px minmax(0, 1fr);

    align-items: start;

    gap: 11px;

    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0;

    color: var(--wa-footer-text) !important;

    font-family: inherit;
    font-size: 12.75px;
    font-weight: 500;
    line-height: 1.53;

    text-decoration: none !important;
}

a.wa-site-footer__contact {
    transition: color 0.2s ease;
}

a.wa-site-footer__contact:hover,
a.wa-site-footer__contact:focus-visible {
    color: #69e0cc !important;
}

.wa-site-footer__contact-icon {
    display: inline-flex;

    width: 40px;
    height: 40px;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(85, 220, 202, 0.21);
    border-radius: 50%;

    color: #62ddc9;

    background: rgba(0, 167, 142, 0.1);
}

.wa-site-footer__contact-icon svg {
    display: block;

    width: 19px;
    height: 19px;
}

.wa-site-footer__contact-copy {
    display: block;

    min-width: 0;

    overflow-wrap: anywhere;
}

.wa-site-footer__contact-copy small {
    display: block;

    margin-bottom: 3px;

    color: var(--wa-footer-muted);

    font-family: inherit;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.3;

    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.wa-site-footer__contact-copy strong {
    display: block;

    color: inherit;

    font: inherit;
    font-weight: 600;
}


/* =========================================================
   SOCIALS
   ========================================================= */

.wa-site-footer__socials {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 22px;
}

.wa-site-footer__socials a,
.wa-site-footer__socials a:visited {
    display: inline-flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    color: rgba(255, 255, 255, 0.8) !important;

    background: rgba(255, 255, 255, 0.055);

    text-decoration: none !important;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.wa-site-footer__socials a:hover,
.wa-site-footer__socials a:focus-visible {
    border-color: var(--wa-footer-teal);

    color: #ffffff !important;

    background: var(--wa-footer-teal);
}

.wa-site-footer__socials svg {
    display: block;

    width: 18px;
    height: 18px;
}


/* =========================================================
   BOTTOM
   ========================================================= */

.wa-site-footer__bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 32px;

    width: 100%;

    padding: 24px 0 26px;

    border-top: 1px solid var(--wa-footer-border);
}

.wa-site-footer__company-data {
    min-width: 0;
}

.wa-site-footer__company-data p {
    margin: 0 !important;
    padding: 0 !important;

    color: var(--wa-footer-muted) !important;

    font-family: inherit;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.55;
}

.wa-site-footer__company-data p + p {
    margin-top: 3px !important;
}

.wa-site-footer__company-data a,
.wa-site-footer__company-data a:visited {
    color: rgba(255, 255, 255, 0.67) !important;

    text-decoration: none !important;
}

.wa-site-footer__company-data a:hover,
.wa-site-footer__company-data a:focus-visible {
    color: #69e0cc !important;
}


/* =========================================================
   LEGAL LINKS
   ========================================================= */

.wa-site-footer__legal {
    display: flex;

    flex-wrap: wrap;

    align-items: center;
    justify-content: flex-end;

    gap: 8px 17px;
}

.wa-site-footer__legal a,
.wa-site-footer__legal a:visited,
.wa-site-footer__cookie-link {
    margin: 0;
    padding: 0;

    border: 0 !important;

    color: rgba(255, 255, 255, 0.6) !important;

    background: transparent !important;

    box-shadow: none !important;

    font-family: inherit !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;

    text-decoration: none !important;
    text-transform: none !important;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    transition: color 0.2s ease;
}

.wa-site-footer__legal a:hover,
.wa-site-footer__legal a:focus-visible,
.wa-site-footer__cookie-link:hover,
.wa-site-footer__cookie-link:focus-visible {
    color: #69e0cc !important;
}


/* =========================================================
   FOCUS
   ========================================================= */

.wa-site-footer a:focus-visible,
.wa-site-footer button:focus-visible {
    outline: 2px solid rgba(85, 220, 202, 0.85);
    outline-offset: 4px;
}


/* =========================================================
   DESKTOP AROUND 1280 PX
   ПО 40 PX СЛЕВА И СПРАВА
   ========================================================= */

@media (max-width: 1320px) {

    .wa-site-footer {
        padding-top: 74px;
    }

    .wa-site-footer__container {
        width: calc(100% - 80px);
        max-width: 1400px;
    }

    .wa-site-footer__main {
        grid-template-columns:
            minmax(285px, 1.24fr)
            minmax(190px, 0.88fr)
            minmax(225px, 1.02fr)
            minmax(245px, 1.06fr);

        gap: 26px;

        padding-bottom: 54px;
    }

    .wa-site-footer__logo-image {
        width: 200px;
    }

    .wa-site-footer__brand-text {
        max-width: 355px;

        font-size: 13.5px;
    }

    .wa-site-footer__actions {
        width: 176px;
    }

    .wa-site-footer__button,
    .wa-site-footer__button:visited {
        min-height: 43px;

        padding: 9px 12px;

        font-size: 9.75px;
    }

    .wa-site-footer__column-title {
        font-size: 14.5px !important;
    }

    .wa-site-footer__links a,
    .wa-site-footer__links a:visited,
    .wa-site-footer__static-link {
        font-size: 12.5px;
    }

    .wa-site-footer__contact,
    .wa-site-footer__contact:visited {
        grid-template-columns: 39px minmax(0, 1fr);

        gap: 10px;

        font-size: 12px;
    }

    .wa-site-footer__contact-icon {
        width: 39px;
        height: 39px;
    }
}


/* =========================================================
   TABLET / SMALL DESKTOP
   ПО 32 PX СЛЕВА И СПРАВА
   ========================================================= */

@media (max-width: 1160px) {

    .wa-site-footer {
        padding-top: 74px;
    }

    .wa-site-footer__container {
        width: calc(100% - 64px);
    }

    .wa-site-footer__main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 53px 48px;

        padding-bottom: 54px;
    }

    .wa-site-footer__brand {
        max-width: 520px;
    }

    .wa-site-footer__brand-text {
        max-width: 460px;

        font-size: 15px;
    }

    .wa-site-footer__actions {
        width: 180px;
    }

    .wa-site-footer__button,
    .wa-site-footer__button:visited {
        min-height: 44px;

        font-size: 10px;
    }

    .wa-site-footer__links a,
    .wa-site-footer__links a:visited,
    .wa-site-footer__static-link {
        font-size: 13.5px;
    }

    .wa-site-footer__contact,
    .wa-site-footer__contact:visited {
        grid-template-columns: 42px minmax(0, 1fr);

        gap: 12px;

        font-size: 13px;
    }

    .wa-site-footer__contact-icon {
        width: 42px;
        height: 42px;
    }

    .wa-site-footer__bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 22px;
    }

    .wa-site-footer__legal {
        justify-content: flex-start;
    }
}


/* =========================================================
   MOBILE
   ПО 24 PX СЛЕВА И СПРАВА
   ========================================================= */

@media (max-width: 640px) {

    .wa-site-footer {
        padding-top: 67px;
    }

    .wa-site-footer__decor {
        display: none;
    }

    .wa-site-footer__container {
        width: calc(100% - 48px);
    }

    .wa-site-footer__main {
        grid-template-columns: 1fr;

        gap: 46px;

        padding-bottom: 47px;
    }

    .wa-site-footer__brand {
        max-width: none;
    }

    .wa-site-footer__logo-image {
        width: 200px;
    }

    .wa-site-footer__brand-title {
        margin-top: 24px !important;

        font-size: 11px !important;
    }

    .wa-site-footer__brand-text {
        max-width: none;

        margin-top: 14px !important;

        font-size: 15px;
        line-height: 1.68;
    }

    .wa-site-footer__expertise {
        margin-top: 22px;
    }

    .wa-site-footer__actions {
        width: 100%;

        gap: 9px;

        margin-top: 25px;
    }

    .wa-site-footer__button,
    .wa-site-footer__button:visited {
        width: 100%;
        min-height: 50px;

        padding: 12px 17px;

        font-size: 11px;
    }

    .wa-site-footer__column-title {
        margin-bottom: 23px !important;

        font-size: 17px !important;
    }

    .wa-site-footer__column-title--sub {
        margin-top: 37px !important;
    }

    .wa-site-footer__links {
        gap: 15px;
    }

    .wa-site-footer__links a,
    .wa-site-footer__links a:visited,
    .wa-site-footer__static-link {
        font-size: 14.5px;
        line-height: 1.55;
    }

    .wa-site-footer__contacts {
        gap: 20px;
    }

    .wa-site-footer__contact,
    .wa-site-footer__contact:visited {
        grid-template-columns: 46px minmax(0, 1fr);

        gap: 14px;

        font-size: 14px;
    }

    .wa-site-footer__contact-icon {
        width: 46px;
        height: 46px;
    }

    .wa-site-footer__socials {
        margin-top: 26px;
    }

    .wa-site-footer__socials a,
    .wa-site-footer__socials a:visited {
        width: 47px;
        height: 47px;
    }

    .wa-site-footer__bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

        padding:
            27px
            0
            calc(112px + env(safe-area-inset-bottom));
    }

    .wa-site-footer__company-data p {
        font-size: 12px;
        line-height: 1.6;
    }

    .wa-site-footer__legal {
        align-items: flex-start;

        flex-direction: column;
        justify-content: flex-start;

        gap: 13px;
    }

    .wa-site-footer__legal a,
    .wa-site-footer__legal a:visited,
    .wa-site-footer__cookie-link {
        min-height: 22px;

        font-size: 13px !important;
        line-height: 1.55 !important;
    }
}


/* =========================================================
   SMALL MOBILE
   ПО 20 PX СЛЕВА И СПРАВА
   ========================================================= */

@media (max-width: 390px) {

    .wa-site-footer__container {
        width: calc(100% - 40px);
    }

    .wa-site-footer__logo-image {
        width: 185px;
    }

    .wa-site-footer__brand-text {
        font-size: 14.5px;
    }

    .wa-site-footer__main {
        gap: 43px;
    }

    .wa-site-footer__contact,
    .wa-site-footer__contact:visited {
        grid-template-columns: 44px minmax(0, 1fr);

        gap: 12px;

        font-size: 13.5px;
    }

    .wa-site-footer__contact-icon {
        width: 44px;
        height: 44px;
    }

    .wa-site-footer__bottom {
        padding-bottom:
            calc(108px + env(safe-area-inset-bottom));
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .wa-site-footer *,
    .wa-site-footer *::before,
    .wa-site-footer *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}