/**
 * ONE PLUS footer — single stylesheet (desktop + tablet + mobile).
 * Stage 2: all footer CSS lives here; removed from style.css / style.min.css.
 * Rollback: see _backup-footer-stage2-* / STAGE2.md
 *
 * Load order inside this file:
 *   1) Shell (bg, back-to-top, funding plaques, bottom bar, legacy base)
 *   2) Unified cards + mobile/tablet overrides (wins by cascade)
 */

/* ==========================================================================
   1) Footer shell (from former style.css / style.min.css)
   ========================================================================== */

:root {
    --ft-mnav-grad-from: #092B96;
    --ft-mnav-grad-to: #086CDC;
}

.op-footer {
    max-width: 1920px;
    margin: 88px auto 0;
    background: url(../img/main/bg-footer.png) no-repeat right top/100%;
    border-radius: 50px 0 50px 50px;
    position: relative;
}

.op-footer-top {
    position: absolute;
    right: 15px;
    top: 3px;
    width: 16%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    padding: 26px;
    font-size: 18px;
    color: #000;
    font-weight: 700;
    border-radius: 14px;
    background: #F6F8FB;
}

.op-footer-top svg {
    -webkit-animation: bounceArrow 2s ease-in-out infinite;
    animation: bounceArrow 2s ease-in-out infinite;
}

@-webkit-keyframes bounceArrow {
    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
        background-color: #f6f8fb;
    }
}

@keyframes bounceArrow {
    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
        background-color: #f6f8fb;
    }
}

.op-footer-top span {
    position: relative;
}

.op-footer-top span::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: -1px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.op-footer-top span:hover::after {
    width: 100%;
}

.op-footer-top span:hover::after {
    width: 0;
}

.op-footer-top:hover span::after {
    width: 100%;
}

.op-footer::after {
    content: "";
    display: block;
    width: 100%;
    height: 70%;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #f6f8fb;
    border-radius: 0 0 50px 50px;
}

.op-footer-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    padding: 20px 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.op-footer-wrap__top {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.op-footer-wrap__nav {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.op-footer-wrap__nav--legal {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    max-width: 100%;
    width: 100%;
}

.op-footer-wrap__nav--legal .op-footer-wrap__nav--menu-title {
    display: none;
}

.op-footer-wrap__bottom {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.op-footer-wrap__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5px;
    padding-right: 10%;
    margin-bottom: 45px;
}

.op-footer-wrap__top--logo {
    display: block;
    max-width: 176px;
    padding-top: 3px;
}

.op-footer-wrap__top--logo img {
    width: 176px;
    max-width: 100%;
    height: auto;
    display: block;
}

.op-footer-wrap__top--gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}

.op-footer-wrap__top--gallery .op-item {
    width: 100%;
    max-width: 173px;
    height: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
	-webkit-filter: saturate(0);
	        filter: saturate(0);
	-webkit-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

.op-footer-wrap__top--gallery .op-item:first-child img,
.op-footer-wrap__top--gallery .op-item:nth-child(2) img,
.op-footer-wrap__top--gallery .op-item:nth-child(3) img {
	-webkit-transform: scale(1.3);
	    -ms-transform: scale(1.3);
	        transform: scale(1.3);
}

.op-footer-wrap__top--gallery .op-item:hover {
	-webkit-filter: saturate(1);
	        filter: saturate(1);
	cursor: pointer;
}

.op-footer-wrap__top--gallery .op-item img {
    max-height: 35px;
    width: auto;
}

.op-footer-wrap__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    padding-right: 10%;
    margin-bottom: 36px;
}

.op-footer-wrap__nav--contacts {
    width: 100%;
    max-width: 250px;
}

.op-footer-wrap__nav--contacts .op-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    color: #667085;
    margin-bottom: 20px;
}

.op-footer-wrap__nav--contacts .op-item svg {
    min-width: 22px;
}

.op-footer-wrap__nav--contacts .op-item-text {
    font-weight: 700;
    font-size: clamp(0.875rem, calc(0.8260188088rem + 0.0020898642 * 100vw), 1rem);
    max-width: calc(100% - 22px);
}

.op-footer-wrap__nav--contacts .op-item:first-child {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.op-footer-wrap__nav--contacts .op-item:first-child .op-item-text {
    font-weight: 400;
}

.op-footer-wrap__nav--contacts .op-item:first-child .op-item-text strong {
    font-weight: 700;
}

.op-footer-wrap__nav--contacts a.op-item .op-item-text {
    position: relative;
}

.op-footer-wrap__nav--contacts a.op-item .op-item-text::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #667085;
    position: absolute;
    left: 0;
    bottom: -1px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.op-footer-wrap__nav--contacts a.op-item .op-item-text:hover::after {
    width: 100%;
}

.op-footer-wrap__nav--contacts a.op-item .op-item-text:hover::after {
    width: 0;
}

.op-footer-wrap__nav--contacts a.op-item:hover .op-item-text::after {
    width: 100%;
}

.op-footer-wrap__nav--contacts-title {
    margin: 48px 0 14px;
    font-weight: 700;
    font-size: clamp(0.875rem, calc(0.8260188088rem + 0.0020898642 * 100vw), 1rem);
}

.op-footer-wrap__nav--contacts-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.op-footer-wrap__nav--contacts-socials .op-item {
    display: block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 0;
}

.op-footer-wrap__nav--contacts-socials .op-item:hover {
    opacity: 0.75;
}

.op-footer-wrap__nav--menu {
    max-width: 241px;
}

.op-footer-wrap__nav--menu.op-footer-wrap__nav--legal {
    max-width: 100%;
    width: 100%;
}

.op-footer-wrap__nav--menu-icon {
    display: none;
}

.op-footer-mnav-icon,
.op-footer-mnav-chevron {
    display: none;
}

.op-footer-wrap__nav--menu-title {
    font-weight: 700;
    margin-bottom: 28px;
    font-size: clamp(1rem, calc(0.9510188088rem + 0.0020898642 * 100vw), 1.125rem);
}

.op-footer-wrap__nav--menu ul {
    list-style-type: none;
}

.op-footer-wrap__nav--menu ul li {
    margin-bottom: 13px;
}

.op-footer-wrap__nav--menu ul li:last-child {
    margin-bottom: 0;
}

.op-footer-wrap__nav--menu ul li a {
    color: #667085;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.op-footer-wrap__nav--menu ul li a:hover {
    color: #2483ed;
}

.op-footer-wrap__bottom {
    padding: 13px 0;
    border-top: solid 1px #dfdfdf;
    border-bottom: solid 1px #dfdfdf;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    font-size: 12px;
}

.op-footer-wrap__bottom ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.op-footer-wrap__bottom ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.op-footer-wrap__bottom ul li::after {
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    margin: 0 18px;
    background-color: #30343a;
}

.op-footer-wrap__bottom ul li a {
    color: #000;
    position: relative;
}

.op-footer-wrap__bottom ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: -1px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.op-footer-wrap__bottom ul li a:hover::after {
    width: 100%;
}

.op-footer-wrap__bottom ul li a::after {
    width: 100%;
}

.op-footer-wrap__bottom ul li a:hover::after {
    width: 0;
}

.op-footer-wrap__bottom ul li:last-child::after {
    display: none;
}

.op-footer-wrap__notice {
    margin-top: 10px;
    font-size: 11px;
    line-height: 16px;
    color: #667085;
    padding-bottom: 5px;
}

.op-footer-wrap__nav--legal .op-footer-wrap__notice {
    margin-top: 10px;
}

@media (max-width: 1700px) {
.op-footer-wrap__top {
        padding-right: 20%;
    }
}

@media (max-width: 1500px) {
.op-footer-top {
        padding: 20px;
    }
}

@media (max-width: 1400px) {
.op-footer-top {
        padding: 15px;
    }
}

@media (max-width: 1200px) {
.op-footer {
        background: #f6f8fb;
        border-radius: 20px;
    }

.op-footer-top {
        display: none;
    }

.op-footer-wrap {
        padding-top: 32px;
    }

.op-footer-wrap__top {
        padding-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 25px;
    }

.op-footer-wrap__nav {
        display: block;
        margin-bottom: 0;
        padding-right: 0;
    }

.op-footer-wrap__nav--contacts {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        max-width: 100%;
        width: 100%;
        padding-bottom: 51px;
        border-bottom: solid 1px #d6d6d6;
        margin-bottom: 20px;
    }

.op-footer-wrap__nav--contacts-title {
        margin-top: 0;
    }
}

@media (max-width: 1100px) {
.op-footer-wrap__nav--menu {
        width: 100%;
        max-width: 100%;
        margin-bottom: 12px;
        padding: 14px 16px;
        border: 1px solid #d7e6f7;
        border-radius: 20px;
        background: #fff;
        -webkit-box-shadow: 0 6px 18px rgba(10, 47, 154, 0.07);
        box-shadow: 0 6px 18px rgba(10, 47, 154, 0.07);
    }

.op-footer-wrap__nav--menu ul {
        display: none;
        margin-top: 14px;
        padding-top: 4px;
        overflow: hidden;
        list-style: none;
    }

.op-footer-wrap__nav--menu ul li {
        margin-bottom: 0;
        border-top: 1px solid #e6eef8;
    }

.op-footer-wrap__nav--menu ul li:first-child {
        border-top: none;
    }

.op-footer-wrap__nav--menu ul li a,
    .op-footer-wrap__nav--menu ul li a.op-footer-mnav-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 12px;
        min-height: 56px;
        padding: 8px 4px 8px 0;
        color: #0a2f9a;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.3;
        text-decoration: none;
        position: relative;
    }

.op-footer-wrap__nav--menu ul li a:hover {
        color: #086cdc;
    }

.op-footer-mnav-icon {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 50%;
        color: #086cdc;
        background-image: linear-gradient(145deg, #f3f8fd 0%, #e0edfa 100%);
    }

.op-footer-mnav-icon svg {
        display: block;
        width: 20px;
        height: 20px;
        color: inherit;
    }

.op-footer-mnav-icon svg * {
        stroke: url(#ft_mnav_grad) !important;
    }

.op-footer-mnav-icon[data-op-icon="ukraine"] svg * {
        stroke: none !important;
    }

.op-footer-mnav-label {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
        background: linear-gradient(91.91deg, var(--ft-mnav-grad-from, #092B96) 0%, var(--ft-mnav-grad-to, #086CDC) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: #0a2f9a;
    }

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
.op-footer-mnav-label {
            color: transparent;
        }
}

.op-footer-mnav-chevron {
        display: block;
        width: 10px;
        height: 10px;
        min-width: 10px;
        margin-left: auto;
        border-right: 2px solid #086cdc;
        border-bottom: 2px solid #086cdc;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0.9;
    }

.op-footer-wrap__nav--menu-title {
        margin-bottom: 0;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 12px;
        min-height: 46px;
        padding-right: 36px;
        cursor: pointer;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        font-weight: 700;
        font-size: 18px;
        line-height: 1.25;
        color: #0a2f9a;
    }

.op-footer-wrap__nav--menu-icon {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 50%;
        background: #e7f1fb;
    }

.op-footer-wrap__nav--menu-icon svg {
        display: block;
        width: 22px;
        height: 22px;
    }

.op-footer-wrap__nav--menu-text {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
    }

.op-footer-wrap__nav--menu-title::after {
        content: "";
        display: block;
        width: 20px;
        height: 12px;
        background: linear-gradient(90deg, var(--ft-mnav-grad-from, #092B96) 0%, var(--ft-mnav-grad-to, #086CDC) 100%);
        -webkit-mask: url(../img/main/arrow-footer.svg) no-repeat center center / contain;
        mask: url(../img/main/arrow-footer.svg) no-repeat center center / contain;
        position: absolute;
        right: 2px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        -o-transition: transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
    }

.op-footer-wrap__nav .open .op-footer-wrap__nav--menu-title::after,
    .op-footer-wrap__nav--menu.open .op-footer-wrap__nav--menu-title::after {
        -webkit-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
        transform: translateY(-50%) rotate(180deg);
    }

.op-footer-wrap__nav--legal {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-bottom: 12px;
        padding: 14px 16px;
        border: 1px solid #d7e6f7;
        border-radius: 20px;
        background: #fff;
        -webkit-box-shadow: 0 6px 18px rgba(10, 47, 154, 0.07);
        box-shadow: 0 6px 18px rgba(10, 47, 154, 0.07);
    }

.op-footer-wrap__nav--legal .op-footer-wrap__nav--menu-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

.op-footer-wrap__nav--legal .op-footer-wrap__notice {
        display: none;
        margin-top: 14px;
        overflow: hidden;
        font-size: 12px;
        line-height: 1.45;
        color: #667085;
        font-weight: 400;
    }

.op-footer-wrap__bottom {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        border-top: none;
        padding-top: 8px;
    }

.op-footer-wrap__bottom--nav {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
    }

.op-footer-wrap__bottom--copyright {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media (max-width: 720px) {
.op-footer-wrap__nav--contacts {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 21px 15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

.op-footer-wrap__nav--contacts .op-item:first-child {
        width: calc((100% - 15px) / 2);
    }

.op-footer-wrap__nav--contacts-row {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        max-width: calc((100% - 15px) / 2);
    }

.op-footer-wrap__nav--contacts-row:last-child {
        text-align: center;
    }

.op-footer-wrap__nav--contacts-row .op-item:nth-child(1n + 1) {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

.op-footer-wrap__nav--contacts-socials {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

.op-footer-wrap__nav--contacts-socials .op-item:nth-child(1n + 1) {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}

@media (max-width: 668px) {
.op-footer-wrap__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

.op-footer-wrap__bottom--nav {
        width: 100%;
        padding-bottom: 13px;
        border-bottom: solid 1px #d6d6d6;
    }

.op-footer-wrap__bottom--copyright {
        width: 100%;
        max-width: 100%;
        border-bottom: none;
        padding-bottom: 0;
        padding-top: 0;
    }
}

@media (max-width: 550px) {
.op-footer {
        margin-top: 50px;
    }

.op-footer-wrap {
        padding: 34px 6px;
    }

.op-footer-wrap__top {
        gap: 24px;
    }

.op-footer-wrap__top--logo {
        max-width: 176px;
    }

.op-footer-wrap__top--gallery {
        gap: 5px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

.op-footer-wrap__top--gallery .op-item {
        width: calc((100% - 5px) / 2);
    }

.op-footer-wrap__nav--menu {
        padding: 14px 16px;
        margin-bottom: 12px;
    }

.op-footer-wrap__nav--contacts {
        padding-bottom: 33px;
    }

.op-footer-wrap__nav--contacts-row:last-child {
        margin-top: -20px;
    }

.op-footer-wrap__bottom--nav {
        width: 100%;
    }

.op-footer-wrap__bottom--nav ul {
        gap: 5px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

.op-footer-wrap__bottom--nav ul li::after {
        display: none;
    }
}

/* ==========================================================================
   2) Unified cards + mobile/tablet (active layout)
   ========================================================================== */

/* --- Desktop defaults: wrappers transparent; hide mobile-only chrome --- */
.footer-mobile-brand,
.footer-mobile-funding {
    display: contents;
}

.footer-mobile-brand__tagline,
.footer-mobile-funding__label,
.footer-mobile-divider,
.footer-mobile-contact-card__hours,
.footer-mobile-company-card,
.footer-mobile-contact-card {
    display: none !important;
}

.footer-desktop-contact-card {
    display: flex;
    flex-direction: column;
}

.footer-desktop-address {
    display: none !important;
}

.footer-mobile-icon {
    display: contents;
}

.footer-mobile-icon > svg {
    display: block;
    min-width: 22px;
}

/* Email reveal — keep readable on desktop too (matches pre-redesign button look) */
.op-footer-email-reveal {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    font: inherit;
    font-weight: 700;
    font-size: clamp(0.875rem, calc(0.8260188088rem + 0.0020898642 * 100vw), 1rem);
    color: #667085;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.op-footer-email-reveal:focus-visible {
    outline: 2px solid #086cdc;
    outline-offset: 3px;
    border-radius: 4px;
}

.op-footer-email-link {
    font-weight: 700;
    color: #0a2f9a;
    word-break: break-all;
}

/* --- Mobile / tablet upper footer --- */
@media (max-width: 1024px) {
    .footer-desktop-contact-card,
    .footer-desktop-address {
        display: none !important;
    }

    .footer-mobile-company-card {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .footer-mobile-contact-card {
        display: flex !important;
    }
    .op-footer-wrap {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 28px;
        padding-bottom: 24px;
    }

    .op-footer-wrap__top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding-right: 0;
        margin-bottom: 24px;
        width: 100%;
    }

    .footer-mobile-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

    .footer-mobile-brand .op-footer-wrap__top--logo {
        max-width: 260px;
        padding-top: 0;
    }

    .footer-mobile-brand .op-footer-wrap__top--logo img {
        width: 240px;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .footer-mobile-brand__tagline {
        display: block;
        margin: 0;
        max-width: 28rem;
        color: #5b6b8c;
        font-size: 15px;
        line-height: 1.4;
        font-weight: 500;
    }

    .footer-mobile-funding {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 14px 16px 16px;
        border-radius: 20px;
        border: 1px solid #e4eef8;
        background: #f7fafc;
        box-sizing: border-box;
    }

    .footer-mobile-funding__label {
        display: block;
        margin: 0;
        width: 100%;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        font-size: 12px;
        font-weight: 700;
        color: #6b7a99;
        line-height: 1.3;
    }

    .op-footer-wrap__top--gallery.footer-mobile-funding__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        max-width: none;
    }

    .op-footer-wrap__top--gallery.footer-mobile-funding__grid .op-item {
        max-width: none !important;
        width: 100% !important;
        height: 58px;
        padding: 10px 12px;
        border-radius: 16px;
        border: 1px solid #d7e6f7;
        background: #fff;
        box-shadow: 0 4px 12px rgba(10, 47, 154, 0.05);
        /* Same muted → full-color interaction as desktop gallery */
        -webkit-filter: saturate(0);
        filter: saturate(0);
        -webkit-transition: filter 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        -o-transition: filter 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        transition: filter 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        box-sizing: border-box;
        cursor: pointer;
    }

    .op-footer-wrap__top--gallery.footer-mobile-funding__grid .op-item:hover,
    .op-footer-wrap__top--gallery.footer-mobile-funding__grid .op-item:focus-visible,
    .op-footer-wrap__top--gallery.footer-mobile-funding__grid .op-item:active {
        -webkit-filter: saturate(1);
        filter: saturate(1);
        border-color: #b8d4f0;
        box-shadow: 0 6px 16px rgba(10, 47, 154, 0.12);
    }

    .op-footer-wrap__top--gallery.footer-mobile-funding__grid .op-item:first-child img,
    .op-footer-wrap__top--gallery.footer-mobile-funding__grid .op-item:nth-child(2) img,
    .op-footer-wrap__top--gallery.footer-mobile-funding__grid .op-item:nth-child(3) img {
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
    }

    .op-footer-wrap__top--gallery.footer-mobile-funding__grid .op-item img {
        max-height: 34px;
        max-width: 100%;
        width: auto;
        object-fit: contain;
    }

    .op-footer-wrap__nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-right: 0;
        margin-bottom: 0;
        width: 100%;
    }

    /*
     * Kill legacy ≤720px half-width rules from style.min.css:
     *   .op-item:first-child { width: calc((100%-15px)/2) }
     *   .contacts-row { max-width: calc((100%-15px)/2) }
     */
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100% !important;
        max-width: 100% !important;
        padding-bottom: 0 !important;
        border-bottom: 0 !important;
        /* Match Navigation ↔ Services plaque gap (.op-footer-wrap__nav--menu { margin-bottom: 12px }) */
        margin-bottom: 12px !important;
        align-items: stretch;
        justify-content: stretch;
        flex-wrap: nowrap;
        box-sizing: border-box;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-company-card,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-contact-card,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .op-item:first-child,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .op-footer-wrap__nav--contacts-row {
        width: 100% !important;
        max-width: none !important;
        min-width: 0;
        min-height: 0;
        height: auto;
        box-sizing: border-box;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-company-card,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-contact-card {
        margin: 0;
        padding: 12px 10px;
        border-radius: 18px;
        border: 1px solid #d7e6f7;
        background: #fff;
        box-shadow: 0 6px 18px rgba(10, 47, 154, 0.07);
        color: #667085;
    }

    /*
     * Office card: [icon] text — icon top-aligned with first text line
     * (not centered against full card height when grid stretches cards).
     */
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-company-card.op-item {
        display: flex !important;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 8px;
    }

    .footer-mobile-company-card__body,
    .footer-mobile-company-card .op-item-text {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
        max-width: none !important;
        width: auto;
        font-size: 12px;
        line-height: 1.35;
    }

    /* Name sits on the same vertical centerline as the location icon badge */
    .footer-mobile-company-card__name {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 34px;
        padding-bottom: 2px;
        box-sizing: border-box;
        font-size: 11.5px;
        font-weight: 700;
        color: #0a2f9a;
        line-height: 1.15;
        letter-spacing: -0.035em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        text-decoration: none !important;
        cursor: pointer;
    }

    /* L→R underline — same as phone/email (scaleX; room via padding so overflow:hidden won't clip) */
    a.footer-mobile-company-card__name::after {
        content: "" !important;
        display: block !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: auto !important;
        max-width: none !important;
        height: 1.5px !important;
        background: linear-gradient(91.91deg, #092B96 0%, #086CDC 100%) !important;
        background-image: linear-gradient(91.91deg, #092B96 0%, #086CDC 100%) !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    a.footer-mobile-company-card__name:hover,
    a.footer-mobile-company-card__name:focus-visible {
        color: #086cdc;
        text-decoration: none !important;
    }

    a.footer-mobile-company-card__name:hover::after,
    a.footer-mobile-company-card__name:focus-visible::after {
        -webkit-transform: scaleX(1) !important;
        -ms-transform: scaleX(1) !important;
        transform: scaleX(1) !important;
    }

    .footer-mobile-company-card__line {
        color: #667085;
        font-weight: 400;
        font-size: 12px;
        line-height: 1.35;
    }

    .footer-mobile-company-card__regs {
        display: block;
        width: 100%;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid #e6eef8;
        font-size: 11px;
        line-height: 1.4;
        color: #5b6b8c;
    }

    .footer-mobile-company-card__regs b {
        font-weight: 700;
        color: #0a2f9a;
    }

    .footer-mobile-icon {
        display: inline-flex !important;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 50%;
        background: #e7f1fb;
    }

    .footer-mobile-icon > svg {
        width: 17px;
        height: 17px;
        min-width: 17px;
    }

    /* Contact card: stretch rows to fill equal-height card (space between phone / email / hours) */
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-contact-card {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        gap: 0;
        height: 100%;
        min-height: 100%;
        box-sizing: border-box;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid .footer-mobile-contact-card .op-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 0;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        color: #667085;
    }

    .footer-mobile-contact-card .op-item-text {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        width: auto;
        font-size: 12px;
        line-height: 1.35;
    }

    .footer-mobile-contact-card__phone {
        align-items: center !important;
        text-decoration: none !important;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid
    .footer-mobile-contact-card__phone.op-item
    .op-item-text {
        position: relative;
        flex: 0 0 auto !important;
        width: max-content;
        max-width: 100%;
        font-size: 12.5px !important;
        font-weight: 700 !important;
        color: #092b96 !important;
        white-space: nowrap;
        letter-spacing: -0.015em;
        -webkit-font-smoothing: antialiased;
        text-rendering: geometricPrecision;
        text-decoration: none !important;
    }

    /* L→R underline via scaleX (width anim is unreliable with !important / clip) */
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid
    .footer-mobile-contact-card__phone.op-item
    .op-item-text::after {
        content: "" !important;
        display: block !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: -2px !important;
        width: auto !important;
        max-width: none !important;
        height: 1.5px !important;
        background: linear-gradient(91.91deg, #092B96 0%, #086CDC 100%) !important;
        background-image: linear-gradient(91.91deg, #092B96 0%, #086CDC 100%) !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid
    .footer-mobile-contact-card__phone.op-item:hover
    .op-item-text,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid
    .footer-mobile-contact-card__phone.op-item:focus-visible
    .op-item-text {
        text-decoration: none !important;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid
    .footer-mobile-contact-card__phone.op-item:hover
    .op-item-text::after,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid
    .footer-mobile-contact-card__phone.op-item:focus-visible
    .op-item-text::after {
        -webkit-transform: scaleX(1) !important;
        -ms-transform: scaleX(1) !important;
        transform: scaleX(1) !important;
    }

    .footer-mobile-contact-card__email {
        align-items: center !important;
    }

    .footer-mobile-contact-card__email .op-footer-email-reveal {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        max-width: 100%;
        min-width: 0;
        min-height: 28px;
        padding: 3px 10px;
        border: 1.5px solid #0a2f9a;
        border-radius: 999px;
        color: #0a2f9a;
        font-size: 10.5px;
        font-weight: 700;
        line-height: 1.1;
        background: #fff;
        white-space: nowrap;
        text-align: center;
        box-sizing: border-box;
        text-decoration: none !important;
    }

    .footer-mobile-contact-card__email .op-footer-email-reveal:hover,
    .footer-mobile-contact-card__email .op-footer-email-reveal:focus-visible {
        background: #f3f8fd;
    }

    .footer-mobile-contact-card__email .op-footer-email-link {
        position: relative;
        display: inline-block;
        flex: 0 0 auto !important;
        width: max-content;
        max-width: 100%;
        min-width: 0;
        font-size: 12px;
        font-weight: 700;
        color: #0a2f9a;
        overflow-wrap: anywhere;
        word-break: break-word;
        text-decoration: none !important;
    }

    .footer-mobile-contact-card__email .op-footer-email-link::after {
        content: "" !important;
        display: block !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: -2px !important;
        width: auto !important;
        max-width: none !important;
        height: 1.5px !important;
        background: linear-gradient(91.91deg, #092B96 0%, #086CDC 100%) !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    .footer-mobile-contact-card__email .op-footer-email-link:hover,
    .footer-mobile-contact-card__email .op-footer-email-link:focus-visible {
        text-decoration: none !important;
    }

    .footer-mobile-contact-card__email .op-footer-email-link:hover::after,
    .footer-mobile-contact-card__email .op-footer-email-link:focus-visible::after {
        -webkit-transform: scaleX(1) !important;
        transform: scaleX(1) !important;
    }

    .footer-mobile-contact-card__hours {
        display: flex !important;
        align-items: flex-start !important;
    }

    .footer-mobile-contact-card__hours-text {
        display: flex;
        flex-direction: column;
        gap: 1px;
        min-width: 0;
        max-width: 100%;
        line-height: 1.25;
    }

    .footer-mobile-contact-card__hours-days {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: #0a2f9a;
        line-height: 1.25;
    }

    .footer-mobile-contact-card__hours-time {
        display: block;
        font-size: 12px;
        font-weight: 500;
        color: #667085;
        line-height: 1.3;
    }

    /*
     * Socials card (full-width under office/contact cards):
     * same white plaque language as company/contact cards.
     * Title hidden — icons only (matches desktop).
     */
    .footer-mobile-socials,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-socials {
        grid-column: 1 / -1;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 14px 12px;
        border-radius: 18px;
        border: 1px solid #d7e6f7;
        background: #fff;
        box-shadow: 0 6px 18px rgba(10, 47, 154, 0.07);
        box-sizing: border-box;
        text-align: center;
        color: #667085;
    }

    .footer-mobile-socials__title,
    .op-footer-wrap__nav--contacts-title.footer-mobile-socials__title {
        display: none !important;
    }

    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials .op-item {
        width: 42px !important;
        height: 42px;
        min-width: 42px;
        max-width: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        border-radius: 50%;
        flex: 0 0 auto;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials .op-item:hover,
    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials .op-item:focus-visible {
        opacity: 1;
        transform: translateY(-1px);
    }

    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials .op-item svg {
        width: 42px;
        height: 42px;
        display: block;
    }

    /* Spacer kept in markup; base rule has display:none !important — leave hidden */
    .footer-mobile-divider {
        display: none !important;
        margin: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }

    .op-footer-wrap__nav > .op-footer-wrap__nav--menu:first-of-type {
        margin-top: 0 !important;
    }
}

/* Keep two columns on all mobile widths; tighten density on very narrow screens */
@media (max-width: 375px) {
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-company-card,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-contact-card {
        padding: 10px 8px;
    }

    .footer-mobile-company-card__name {
        font-size: 10.5px;
        letter-spacing: -0.04em;
        min-height: 32px;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid
    .footer-mobile-contact-card__phone.op-item
    .op-item-text {
        font-size: 11.5px !important;
        letter-spacing: -0.02em;
    }

    .footer-mobile-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .footer-mobile-icon > svg {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }

    .footer-mobile-contact-card__email .op-footer-email-reveal {
        min-height: 26px;
        padding: 2px 9px;
        font-size: 10px;
    }

    .footer-mobile-brand .op-footer-wrap__top--logo img {
        width: 200px;
    }

    .footer-mobile-socials,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-socials {
        padding: 12px 10px;
        gap: 0;
    }

    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials {
        gap: 8px;
    }

    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials .op-item,
    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials .op-item svg {
        width: 38px;
        height: 38px;
        min-width: 38px;
        max-width: 38px;
    }
}

@media (min-width: 376px) and (max-width: 430px) {
    .footer-mobile-brand .op-footer-wrap__top--logo img {
        width: 220px;
    }

    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials .op-item,
    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials .op-item svg {
        width: 40px;
        height: 40px;
        min-width: 40px;
        max-width: 40px;
    }
}

/* Tablet: roomier 2-col — card type ~+3px vs previous tablet sizes */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer-mobile-brand .op-footer-wrap__top--logo img {
        width: 280px;
    }

    .footer-mobile-funding {
        max-width: 560px;
        padding: 16px 18px 18px;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid {
        gap: 14px;
        /* Same 12px as menu plaques — not larger than Navigation ↔ Services */
        margin-bottom: 12px !important;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-company-card,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-contact-card {
        padding: 16px 14px;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-company-card {
        gap: 12px;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-contact-card {
        gap: 0;
        justify-content: space-between;
    }

    .footer-mobile-company-card__name {
        font-size: 21px;
        letter-spacing: -0.02em;
        min-height: 44px;
    }

    .footer-mobile-company-card__line,
    .footer-mobile-company-card .op-item-text {
        font-size: 16px;
        line-height: 1.4;
    }

    .footer-mobile-company-card__regs {
        font-size: 14px;
        line-height: 1.45;
        margin-top: 10px;
        padding-top: 10px;
    }

    .footer-mobile-contact-card .op-item-text {
        font-size: 15px;
        line-height: 1.4;
    }

    .op-footer-wrap__nav--contacts.footer-mobile-company-grid
    .footer-mobile-contact-card__phone.op-item
    .op-item-text {
        font-size: 22px !important;
        font-weight: 700 !important;
        letter-spacing: -0.01em;
    }

    .footer-mobile-contact-card__hours-days {
        font-size: 17px;
    }

    .footer-mobile-contact-card__hours-time {
        font-size: 16px;
    }

    .footer-mobile-contact-card__email .op-footer-email-reveal {
        font-size: 19.5px;
        min-height: 40px;
        padding: 7px 16px;
    }

    .footer-mobile-contact-card__email .op-footer-email-link {
        font-size: 20px;
    }

    .footer-mobile-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .footer-mobile-icon > svg {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .footer-mobile-socials,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-socials {
        padding: 16px 14px;
        gap: 0;
        border-radius: 20px;
    }

    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials {
        gap: 16px;
    }

    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials .op-item,
    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials .op-item svg {
        width: 48px;
        height: 48px;
        min-width: 48px;
        max-width: 48px;
    }
}

/* 721–1024: same row as Privacy/Terms (not under them), copyright stays one line */
@media (min-width: 721px) and (max-width: 1024px) {
    .op-footer-wrap__bottom {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
        gap: 10px;
    }

    .op-footer-wrap__bottom--copyright {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto !important;
        max-width: none !important;
        white-space: nowrap !important;
        font-size: 11px;
        line-height: 1.3;
        letter-spacing: -0.015em;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }

    .op-footer-wrap__bottom--nav {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: auto !important;
        min-width: 0;
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }

    .op-footer-wrap__bottom--nav ul {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
        gap: 0;
    }

    .op-footer-wrap__bottom--nav ul li::after {
        margin: 0 10px;
    }
}

/* ==========================================================================
   Desktop ≥1025 — card layout (contact / menus / socials)
   Funding logos + back-to-top + bottom legal bar: keep existing style.css look.
   ========================================================================== */
@media (min-width: 1025px) {
    /* Logo in its own white card (funding + back-to-top untouched) */
    .footer-mobile-brand {
        display: inline-flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 16px 20px;
        margin: 0;
        background: #fff !important;
        border: 0;
        border-radius: 18px;
        box-shadow: none;
        box-sizing: border-box;
    }

    .footer-mobile-brand .op-footer-wrap__top--logo {
        display: block;
        max-width: 176px;
        padding: 0;
    }

    .footer-mobile-brand .op-footer-wrap__top--logo img {
        width: 160px;
        max-width: 100%;
        height: auto;
        display: block;
    }

    .footer-mobile-brand__tagline {
        display: none !important;
    }

    /* Keep cards clear of the footer's top-left radius */
    .op-footer-wrap {
        padding-top: 28px;
        padding-bottom: 14px; /* tighter under privacy notice */
    }

    .op-footer-wrap__top {
        margin-bottom: 20px;
    }

    /* Contact = content width; 3 menu cards share one width = widest by content */
    .op-footer-wrap__nav {
        display: grid;
        grid-template-columns: max-content repeat(3, 1fr);
        gap: 16px;
        align-items: start;
        width: max-content;
        max-width: 100%;
        padding-right: 0;
        margin-top: 22px;
        margin-bottom: 0; /* legal/bottom are inside nav — no extra gap under privacy */
        justify-content: start;
    }

    .op-footer-wrap__nav--contacts,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid {
        width: max-content;
        max-width: 100%;
        display: grid;
        grid-template-columns: max-content;
        justify-content: start;
        justify-items: stretch;
        gap: 14px;
    }

    /* Shared card surface — flat like funding plaques (no glow / no edge line) */
    .footer-desktop-contact-card,
    .footer-mobile-socials,
    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) {
        background: #fff;
        border: 0;
        border-radius: 18px;
        box-shadow: none;
        box-sizing: border-box;
    }

    /* --- Contact card: shrink to content width --- */
    .footer-desktop-contact-card {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 18px 65px 16px 18px;
        width: max-content;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .footer-desktop-contact-card__title {
        display: none !important;
    }

    .footer-desktop-contact-card__row {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin: 0;
        text-decoration: none;
        color: inherit;
    }

    .footer-desktop-contact-card__row--phone {
        align-items: center;
    }

    .footer-desktop-contact-card__row--email {
        align-items: center;
    }

    .footer-desktop-contact-card__icon {
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 50%;
        background: #e7f1fb;
    }

    .footer-desktop-contact-card__icon svg {
        width: 17px;
        height: 17px;
        display: block;
    }

    .footer-desktop-contact-card__body {
        display: flex;
        flex-direction: column;
        gap: 3px;
        min-width: 0;
        font-size: 15.5px;
        line-height: 1.4;
        color: #667085;
    }

    .footer-desktop-contact-card__company {
        position: relative;
        display: inline-block;
        width: max-content;
        max-width: 100%;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        line-height: 1.3;
        background: linear-gradient(91.91deg, var(--ft-mnav-grad-from, #092B96) 0%, var(--ft-mnav-grad-to, #086CDC) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    /* Underline as separate layer — background-clip:text would hide a painted ::after otherwise */
    .footer-desktop-contact-card__company::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px;
        height: 1.5px;
        background-color: #086CDC;
        background-image: linear-gradient(91.91deg, #092B96 0%, #086CDC 100%);
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        -webkit-text-fill-color: initial;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        pointer-events: none;
        z-index: 1;
    }

    .footer-desktop-contact-card__company:hover,
    .footer-desktop-contact-card__company:focus-visible {
        text-decoration: none;
    }

    .footer-desktop-contact-card__company:hover::after,
    .footer-desktop-contact-card__company:focus-visible::after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    .footer-desktop-contact-card__line {
        display: block;
        font-size: 15px;
        font-weight: 400;
        color: #667085;
        line-height: 1.4;
    }

    .footer-desktop-contact-card__phone {
        position: relative;
        display: inline-block;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: -0.01em;
        white-space: nowrap;
        text-decoration: none;
        background: linear-gradient(91.91deg, var(--ft-mnav-grad-from, #092B96) 0%, var(--ft-mnav-grad-to, #086CDC) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    /* Underline as separate layer — background-clip:text on parent would hide a painted ::after otherwise */
    .footer-desktop-contact-card__phone::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px;
        height: 1.5px;
        background-color: #086CDC;
        background-image: linear-gradient(91.91deg, #092B96 0%, #086CDC 100%);
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        -webkit-text-fill-color: initial;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        pointer-events: none;
        z-index: 1;
    }

    .footer-desktop-contact-card__row--phone:hover .footer-desktop-contact-card__phone,
    .footer-desktop-contact-card__row--phone:focus-visible .footer-desktop-contact-card__phone {
        text-decoration: none;
    }

    .footer-desktop-contact-card__row--phone:hover .footer-desktop-contact-card__phone::after,
    .footer-desktop-contact-card__row--phone:focus-visible .footer-desktop-contact-card__phone::after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    .footer-desktop-contact-card .op-footer-email-link {
        position: relative;
        display: inline-block;
        font-size: 15.5px;
        font-weight: 700;
        word-break: break-word;
        text-decoration: none !important;
        background: linear-gradient(91.91deg, var(--ft-mnav-grad-from, #092B96) 0%, var(--ft-mnav-grad-to, #086CDC) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    .footer-desktop-contact-card .op-footer-email-link::after {
        content: "" !important;
        display: block !important;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px;
        height: 1.5px;
        width: auto !important;
        background-color: #086CDC;
        background-image: linear-gradient(91.91deg, #092B96 0%, #086CDC 100%);
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform 0.3s ease;
        pointer-events: none;
        z-index: 1;
    }

    .footer-desktop-contact-card .op-footer-email-link:hover::after,
    .footer-desktop-contact-card .op-footer-email-link:focus-visible::after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    .footer-desktop-contact-card .op-footer-email-reveal {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 30px;
        padding: 3px 15px;
        border: 1.5px solid transparent;
        border-radius: 999px;
        font-size: 14.5px;
        font-weight: 700;
        line-height: 1.1;
        white-space: nowrap;
        text-decoration: none !important;
        color: transparent;
        -webkit-text-fill-color: transparent;
        background-image:
            linear-gradient(91.91deg, var(--ft-mnav-grad-from, #092B96) 0%, var(--ft-mnav-grad-to, #086CDC) 100%),
            linear-gradient(#fff, #fff),
            linear-gradient(91.91deg, var(--ft-mnav-grad-from, #092B96) 0%, var(--ft-mnav-grad-to, #086CDC) 100%);
        background-origin: border-box;
        background-clip: text, padding-box, border-box;
    }

    .footer-desktop-contact-card .op-footer-email-reveal:hover,
    .footer-desktop-contact-card .op-footer-email-reveal:focus-visible {
        filter: brightness(1.06);
    }

    .footer-desktop-contact-card__hours {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
    }

    .footer-desktop-contact-card__hours-days {
        font-size: 15.5px;
        font-weight: 700;
        line-height: 1.25;
        background: linear-gradient(91.91deg, var(--ft-mnav-grad-from, #092B96) 0%, var(--ft-mnav-grad-to, #086CDC) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    .footer-desktop-contact-card__hours-time {
        font-size: 15px;
        font-weight: 500;
        color: #667085;
        line-height: 1.3;
    }

    .footer-desktop-contact-card__regs {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-top: 4px;
        padding-top: 12px;
        border-top: 1px solid #e6eef8;
        font-size: 13px;
        line-height: 1.35;
        color: #5b6b8c;
    }

    .footer-desktop-contact-card__regs b {
        font-weight: 700;
        background: linear-gradient(91.91deg, var(--ft-mnav-grad-from, #092B96) 0%, var(--ft-mnav-grad-to, #086CDC) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    /* --- Social card: same width as contact card --- */
    .footer-mobile-socials,
    .op-footer-wrap__nav--contacts.footer-mobile-company-grid > .footer-mobile-socials {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        /* Match contact width: don't expand the column beyond contact */
        width: 0 !important;
        min-width: 100%;
        max-width: none !important;
        margin: 0;
        padding: 14px 12px;
        text-align: center;
        grid-column: auto;
        justify-self: stretch;
        box-sizing: border-box;
    }

    .footer-mobile-socials__title,
    .op-footer-wrap__nav--contacts-title.footer-mobile-socials__title {
        display: none !important;
    }

    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
    }

    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials .op-item,
    .footer-mobile-socials .op-footer-wrap__nav--contacts-socials .op-item svg {
        width: 30px;
        height: 30px;
        min-width: 30px;
        max-width: 30px;
    }

    /* --- Menu cards: equal width = widest of the three (via parent 1fr tracks) --- */
    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) {
        max-width: none;
        width: auto;
        min-width: 0;
        padding: 18px 24px 16px 18px;
        margin: 0;
        box-sizing: border-box;
    }

    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) .op-footer-wrap__nav--menu-title {
        display: block;
        margin: 0 0 14px;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: -0.01em;
        line-height: 1.25;
        background: linear-gradient(91.91deg, var(--ft-mnav-grad-from, #092B96) 0%, var(--ft-mnav-grad-to, #086CDC) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    /* Title plaque icons stay hidden on desktop (screenshot: text-only card titles) */
    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) .op-footer-wrap__nav--menu-icon {
        display: none !important;
    }

    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) ul li {
        margin: 0;
    }

    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) ul li a,
    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) ul li a.op-footer-mnav-link {
        display: flex;
        align-items: center;
        gap: 9px;
        min-height: 34px;
        padding: 4px 0;
        color: #0a2f9a;
        font-size: 14.5px;
        font-weight: 600;
        line-height: 1.25;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) ul li a:hover,
    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) ul li a:focus-visible {
        opacity: 0.85;
    }

    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) .op-footer-mnav-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        min-width: 28px;
        border-radius: 50%;
        background: #e7f1fb;
        background-image: linear-gradient(145deg, #f3f8fd 0%, #e0edfa 100%);
        color: #086cdc;
    }

    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) .op-footer-mnav-icon svg {
        display: block;
        width: 14px;
        height: 14px;
    }

    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) .op-footer-mnav-icon svg * {
        stroke: url(#ft_mnav_grad) !important;
    }

    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) .op-footer-mnav-icon[data-op-icon="ukraine"] svg * {
        stroke: none !important;
    }

    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) .op-footer-mnav-label {
        flex: 1 1 auto;
        min-width: 0;
        margin-right: 40px; /* space text → chevron; chevron stays at card edge */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        background: linear-gradient(91.91deg, var(--ft-mnav-grad-from, #092B96) 0%, var(--ft-mnav-grad-to, #086CDC) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    .op-footer-wrap__nav--menu:not(.op-footer-wrap__nav--legal) .op-footer-mnav-chevron {
        display: inline-block;
        flex: 0 0 auto;
        width: 7px;
        height: 7px;
        margin-left: 0;
        margin-right: 0;
        border-right: 2px solid transparent;
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(135deg, var(--ft-mnav-grad-from, #092B96), var(--ft-mnav-grad-to, #086CDC)) 1;
        transform: rotate(-45deg);
        opacity: 0.9;
    }

    /* Legal notice + bottom bar: same width as plaques row.
       width:0 + min-width:100% so spanning text does NOT expand max-content grid. */
    .op-footer-wrap__nav--menu.op-footer-wrap__nav--legal,
    .op-footer-wrap__bottom {
        grid-column: 1 / -1;
        width: 0;
        min-width: 100%;
        max-width: 100%;
        justify-self: stretch;
        box-sizing: border-box;
    }

    .op-footer-wrap__nav--menu.op-footer-wrap__nav--legal {
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
    }

    .op-footer-wrap__nav--legal .op-footer-wrap__notice {
        margin-top: 10px;
        padding-bottom: 0;
    }

    .op-footer-wrap__bottom {
        margin-top: 12px; /* with grid gap 16px ≈ previous 28px nav margin */
    }
}
