/* Minimal Newtech footer: contact actions, navigation and WhatsApp access. */
.origin-footer-shell,
.origin-footer-shell footer.origin-footer {
    background: #181c24;
}

.origin-footer-shell footer.origin-footer {
    max-width: none;
    border-radius: 0;
}

.origin-footer__content {
    grid-template-columns: minmax(260px, 1.25fr) minmax(120px, .5fr) minmax(164px, .6fr);
    gap: clamp(44px, 7vw, 104px);
}

.origin-footer__brand-column {
    gap: 28px;
}

.origin-footer__contact {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

footer.origin-footer .origin-footer__contact-pill {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 9px 14px;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    transform: translateZ(0);
    transition: transform 240ms ease;
}

.origin-footer__contact-pill-border,
.origin-footer__contact-pill-ripple {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.origin-footer__contact-pill-border {
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, .9);
}

.origin-footer__contact-pill-ripple {
    z-index: 0;
    overflow: hidden;
}

.origin-footer__contact-pill-ripple > span {
    position: absolute;
    inset: -2px;
    border-radius: 50% 50% 0 0;
    background: #fff;
    transform: translateY(105%);
    transition: border-radius 520ms cubic-bezier(.22, 1, .36, 1), transform 520ms cubic-bezier(.22, 1, .36, 1);
}

.origin-footer__contact-pill-title {
    position: relative;
    z-index: 2;
    display: block;
    overflow: hidden;
}

.origin-footer__contact-pill-title > span {
    position: relative;
    display: block;
    transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
}

.origin-footer__contact-pill-title > span::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: #181d24;
}

.origin-footer__contact-pill:active .origin-footer__contact-pill-ripple > span {
    border-radius: 0;
    transform: translateY(0);
}

.origin-footer__contact-pill:active .origin-footer__contact-pill-title > span {
    transform: translateY(-100%);
}

.origin-footer__contact .origin-footer__address {
    display: grid;
    gap: 2px;
    margin-top: 5px;
}

.origin-footer__address-label {
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
}

.origin-footer__address-lines {
    color: rgba(255, 255, 255, .88);
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.35;
}

footer.origin-footer .origin-footer__navigation {
    display: block;
    align-self: center;
}

footer.origin-footer .origin-footer__link-group ul {
    gap: 18px;
}

footer.origin-footer .origin-footer__link-group a {
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
}

.origin-footer__connect {
    display: flex;
    min-width: 164px;
    align-items: center;
    align-self: center;
    flex-direction: column;
    justify-content: center;
}

.origin-footer__connect-title,
.origin-footer__connect-note {
    margin: 0;
    text-align: center;
}

.origin-footer__connect-title {
    margin-bottom: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.origin-footer__qr-link {
    display: inline-flex;
    padding: 8px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
    transition: transform 220ms ease;
}

.origin-footer__qr-link img {
    display: block;
    width: 148px;
    height: 148px;
    border-radius: 13px;
}

.origin-footer__connect-note {
    margin-top: 8px;
    color: rgba(255, 255, 255, .56);
    font-size: 11px;
}

.origin-footer__connect .origin-footer__social {
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

footer.origin-footer .origin-footer__connect .origin-footer__social a {
    width: 36px;
    height: 36px;
}

.origin-footer__board {
    background: #181d24;
}

.origin-footer__board::before {
    background: linear-gradient(180deg, #181d24 0%, rgba(24, 29, 36, .08) 28%, transparent 58%);
}

@media (hover: hover) and (pointer: fine) {
    footer.origin-footer .origin-footer__contact-pill:hover {
        color: #fff;
        transform: scale(.98);
    }

    .origin-footer__contact-pill:hover .origin-footer__contact-pill-ripple > span {
        border-radius: 0;
        transform: translateY(0);
    }

    .origin-footer__contact-pill:hover .origin-footer__contact-pill-title > span {
        transform: translateY(-100%);
    }

    .origin-footer__qr-link:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 991px) {
    .origin-footer__content {
        grid-template-columns: minmax(0, 1fr) 164px;
        gap: 38px 48px;
    }

    .origin-footer__brand-column {
        grid-row: 1 / span 2;
    }

    footer.origin-footer .origin-footer__navigation {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        width: 164px;
    }

    .origin-footer__connect {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 767px) {
    .origin-footer-shell footer.origin-footer {
        min-height: 1160px;
    }

    .origin-footer__content {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .origin-footer__brand-column,
    footer.origin-footer .origin-footer__navigation,
    .origin-footer__connect {
        grid-column: 1;
        grid-row: auto;
        justify-self: start;
    }

    footer.origin-footer .origin-footer__navigation {
        width: auto;
    }

    .origin-footer__connect {
        align-items: flex-start;
    }

    .origin-footer__connect-title,
    .origin-footer__connect-note {
        text-align: left;
    }

    .origin-footer__connect .origin-footer__social {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .origin-footer__contact-pill,
    .origin-footer__contact-pill-ripple > span,
    .origin-footer__contact-pill-title > span,
    .origin-footer__qr-link {
        transition: none;
    }
}
