/* Hide the original Astra footer */
#colophon,
.site-footer {
    display: none !important;
}
/* =========================
   FUNDELIVERY GLOBAL FOOTER
   ========================= */

.fd-custom-footer {
    background:
        linear-gradient(
            180deg,
            #f2ecfb 0%,
            #f7f3fc 48%,
            #faf8fd 100%
        );
    border-top: 1px solid rgba(111, 50, 232, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #3f3a49;
}

.fd-custom-footer__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 34px 24px 26px;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.95fr) minmax(210px, 0.7fr);
    gap: 54px;
    align-items: start;
}

.fd-custom-footer__name {
    font-size: 29px;
    line-height: 1.1;
    font-weight: 750;
    color: #6f32e8;
    letter-spacing: -0.8px;
    margin-bottom: 18px;
}

.fd-custom-footer__seo {
    max-width: 520px;
}

.fd-custom-footer__seo strong {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 650;
    color: #282331;
    margin-bottom: 7px;
}

.fd-custom-footer__seo p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #6b6572;
}

.fd-custom-footer__nav {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 34px;
}

.fd-custom-footer__column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fd-custom-footer__column a {
    color: #514b59;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.fd-custom-footer__column a:hover {
    color: #6f32e8;
}

.fd-custom-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fd-custom-footer__email {
    color: #443d4d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 17px;
}

.fd-custom-footer__email:hover {
    color: #6f32e8;
}

.fd-custom-footer__socials {
    display: flex;
    align-items: center;
    gap: 9px;
}

.fd-custom-footer__socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(111, 50, 232, 0.16);
    color: #6f32e8;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(70, 43, 110, 0.06);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.fd-custom-footer__socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(111, 50, 232, 0.35);
    box-shadow: 0 7px 18px rgba(70, 43, 110, 0.10);
}

.fd-custom-footer__socials svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.7;
}

.fd-custom-footer__socials svg rect,
.fd-custom-footer__socials svg circle {
    fill: none;
}

.fd-custom-footer__socials .fd-youtube-play {
    fill: #fff;
    stroke: none;
}

.fd-custom-footer__bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 15px 24px 18px;
    border-top: 1px solid rgba(70, 60, 80, 0.08);
    font-size: 12.5px;
    line-height: 1.4;
    color: #85808b;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

    .fd-custom-footer__inner {
        padding: 27px 20px 22px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .fd-custom-footer__name {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .fd-custom-footer__seo {
        max-width: none;
    }

    .fd-custom-footer__seo p {
        font-size: 13.5px;
        line-height: 1.6;
    }

    .fd-custom-footer__nav {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .fd-custom-footer__column {
        gap: 8px;
    }

    .fd-custom-footer__column a {
        font-size: 13.5px;
    }

    .fd-custom-footer__contact {
        padding-top: 2px;
    }

    .fd-custom-footer__email {
        font-size: 13.5px;
        margin-bottom: 14px;
    }

    .fd-custom-footer__socials a {
        width: 35px;
        height: 35px;
    }

    .fd-custom-footer__bottom {
        padding: 14px 20px 17px;
        font-size: 12px;
    }
}