/* =========================================================
   HIDE ASTRA'S DEFAULT FOOTER
========================================================= */

.site-footer,
#colophon,
.site-primary-footer-wrap,
.site-above-footer-wrap,
.site-below-footer-wrap {
    display: none !important;
}


/* =========================================================
   GLOBAL FOOTER
========================================================= */

.conv-global-footer,
.conv-global-footer *,
.conv-global-footer *::before,
.conv-global-footer *::after {
    box-sizing: border-box;
}

.conv-global-footer {
    position: relative;

    width: 100%;
    margin: 0;
    padding: 60px 0 32px;
    overflow: hidden;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(73, 40, 132, 0.22),
            transparent 36%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(61, 112, 123, 0.06),
            transparent 27%
        ),
        #040407;

    color: #ffffff;
}

.conv-global-footer__ambient {
    position: absolute;
    top: -260px;
    left: 36%;

    width: 700px;
    height: 520px;

    border-radius: 50%;

    background: #542b98;

    opacity: 0.08;
    filter: blur(120px);

    pointer-events: none;
}

.conv-global-footer__container {
    position: relative;
    z-index: 2;

    width: calc(100% - 120px);
    max-width: 1600px;

    margin: 0 auto;
}


/* =========================================================
   THREE-COLUMN MAIN AREA
========================================================= */

.conv-global-footer__main {
    display: grid;

    grid-template-columns:
        minmax(330px, 1.2fr)
        minmax(180px, 0.65fr)
        minmax(390px, 1fr);

    gap: clamp(70px, 8vw, 145px);

    padding-bottom: 60px;
}


/* =========================================================
   BRAND
========================================================= */

.conv-global-footer__brand {
    max-width: 465px;
}

.conv-global-footer__logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 32px;

    color: #ffffff;
    text-decoration: none;
}

.conv-global-footer__logo .custom-logo-link {
    display: inline-flex;
}

.conv-global-footer__logo .custom-logo {
    display: block;

    width: auto !important;
    max-width: 245px !important;
    max-height: 72px !important;

    object-fit: contain;
}

.conv-global-footer__text-logo {
    color: #ffffff;

    font-family: "Manrope", Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.conv-global-footer__description {
    max-width: 455px;

    margin: 0;

    color: #99969f;

    font-family: "Manrope", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
   COLUMN HEADINGS
========================================================= */

.conv-global-footer__heading {
 margin: 0 0 30px;
    padding: 0;
    color: #cab4ff;
    font-size: 13px;
    font-weight: 570;
    letter-spacing: 0.2em;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Manrope", Arial, sans-serif;
}


/* =========================================================
   NAVIGATION MENU
========================================================= */

.conv-global-footer__menu,
.conv-global-footer__legal {
    margin: 0;
    padding: 0;

    list-style: none;
}

.conv-global-footer__menu li {
    margin: 0 0 20px;
    padding: 0;

    list-style: none;
}

.conv-global-footer__menu a {
    position: relative;

    display: inline-flex;

    color: #aaa7af;

    font-family: "Manrope", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.4s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.conv-global-footer__menu a::before {
    position: absolute;
    top: 50%;
    left: -16px;

    width: 6px;
    height: 6px;

    content: "";

    border-radius: 50%;

    background: #8f61ff;

    opacity: 0;

    transform:
        translateY(-50%)
        scale(0);

    transition:
        opacity 0.3s ease,
        transform 0.35s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.conv-global-footer__menu a:hover {
    color: #ffffff;
    transform: translateX(12px);
}

.conv-global-footer__menu a:hover::before {
    opacity: 1;

    transform:
        translateY(-50%)
        scale(1);
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.conv-global-footer__contact-list {
    display: grid;
    gap: 7px;

    margin-bottom: 43px;
}

.conv-global-footer__contact-item {
    display: grid;
    grid-template-columns: 25px 1fr;
    gap: 14px;
    align-items: start;
}

.conv-global-footer__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 25px;

    color: #9370ff;
}

.conv-global-footer__contact-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.conv-global-footer__contact-item p,
.conv-global-footer__contact-item a {
    margin: 0;
    padding: 0;

    color: #aaa7af;

    font-family: "Manrope", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    text-decoration: none;
}

.conv-global-footer__contact-item a {
    transition: color 0.3s ease;
}

.conv-global-footer__contact-item a:hover {
    color: #ffffff;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.conv-global-footer__newsletter {
    margin-top: 4px;
}

.conv-global-footer__newsletter
.conv-global-footer__heading {
    margin-bottom: 22px;
}

.conv-global-footer__newsletter-form {
    display: flex;
    align-items: stretch;

    width: 100%;
    max-width: 430px;
    min-height: 60px;

    overflow: hidden;

    border:
        1px solid rgba(166, 141, 217, 0.3);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.018);

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.conv-global-footer__newsletter-form:focus-within {
    border-color:
        rgba(143, 91, 255, 0.85);

    box-shadow:
        0 0 25px rgba(119, 70, 211, 0.13);
}

.conv-global-footer__newsletter-form input {
    flex: 1;
    min-width: 0;

    margin: 0;
    padding: 0 25px;

    border: 0;
    outline: 0;

    background: transparent;
    color: #ffffff;

    font-family: "Manrope", Arial, sans-serif;
    font-size: 15px;
}

.conv-global-footer__newsletter-form input::placeholder {
    color: #686570;
}

.conv-global-footer__newsletter-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    min-width: 140px;
    margin: 0;
    padding: 0 24px;

    border: 0;
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #6f48e5,
            #8955ff
        );

    color: #ffffff;

    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.35s
        cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        filter 0.35s ease;
}

.conv-global-footer__newsletter-form button:hover {
    filter: brightness(1.08);

    box-shadow:
        0 0 28px rgba(127, 75, 232, 0.28);
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.conv-global-footer__socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 35px;
}

.conv-global-footer__socials a {
    display: grid;
    place-items: center;

    width: 49px;
    height: 49px;

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.012);

    color: #aaa7af;

    text-decoration: none;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.4s
        cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

.conv-global-footer__socials a:hover {
    border-color:
        rgba(142, 91, 255, 0.85);

    background:
        rgba(104, 61, 187, 0.17);

    color: #ffffff;

    transform: translateY(-5px);

    box-shadow:
        0 0 25px rgba(121, 72, 212, 0.18);
}

.conv-global-footer__socials svg {
    width: 19px;
    height: 19px;

    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.5;
}

.conv-global-footer__socials
svg rect,
.conv-global-footer__socials
svg circle {
    fill: none;
}

.conv-global-footer__socials
.conv-global-footer__youtube-play {
    fill: #040407;
    stroke: none;
}


/* =========================================================
   COPYRIGHT ROW
========================================================= */

.conv-global-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    min-height: 40px;
    padding-top: 29px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.conv-global-footer__copyright {
    margin: 0;

    color: #6e6b74;

    font-family: "Manrope", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.4;
}


/* =========================================================
   LEGAL MENU ON RIGHT
========================================================= */

.conv-global-footer__legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 31px;
}

.conv-global-footer__legal li {
    margin: 0;
    padding: 0;

    list-style: none;
}

.conv-global-footer__legal a {
    color: #6e6b74;

    font-family: "Manrope", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;

    transition: color 0.3s ease;
}

.conv-global-footer__legal a:hover {
    color: #ffffff;
}
.conv-global-footer__brand img {
        width: 50%;
    margin-bottom: 15px;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.conv-global-footer a:focus-visible,
.conv-global-footer button:focus-visible,
.conv-global-footer input:focus-visible {
    outline: 2px solid #65cbd0;
    outline-offset: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1100px) {

    .conv-global-footer {
        padding-top: 88px;
    }

    .conv-global-footer__container {
        width: calc(100% - 64px);
    }

    .conv-global-footer__main {
        grid-template-columns:
            minmax(300px, 1fr)
            minmax(170px, 0.55fr);

        gap: 65px 85px;

        padding-bottom: 75px;
    }

    .conv-global-footer__studio {
        grid-column: 1 / -1;

        display: grid;
        grid-template-columns:
            minmax(300px, 1fr)
            minmax(330px, 1fr);

        column-gap: 80px;
    }

    .conv-global-footer__newsletter {
        margin-top: 0;
    }

}


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

@media screen and (max-width: 700px) {

    .conv-global-footer {
        padding: 72px 0 26px;
    }

    .conv-global-footer__container {
        width: calc(100% - 40px);
    }

    .conv-global-footer__main {
        grid-template-columns: 1fr;

        gap: 53px;

        padding-bottom: 57px;
    }

    .conv-global-footer__brand {
        max-width: none;
    }

    .conv-global-footer__logo .custom-logo {
        max-width: 215px !important;
    }

    .conv-global-footer__description {
        font-size: 15px;
    }

    .conv-global-footer__studio {
        grid-column: auto;
        display: block;
    }

    .conv-global-footer__newsletter {
        margin-top: 42px;
    }

    .conv-global-footer__bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 21px;

        min-height: 0;
        padding-top: 28px;
    }

    .conv-global-footer__legal {
        justify-content: flex-start;
        gap: 15px 25px;
    }

}
/* =========================================================
   GLOBAL STICKY SOCIAL ICONS
========================================================= */

.conv-sticky-socials,
.conv-sticky-socials *,
.conv-sticky-socials *::before,
.conv-sticky-socials *::after {
    box-sizing: border-box;
}

.conv-sticky-socials {
    position: fixed;
    z-index: 99990;

    top: 50%;
    right: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;

    padding: 9px;

    border: 1px solid rgba(139, 101, 211, 0.2);
    border-radius: 999px;

    background: rgba(7, 6, 13, 0.76);

    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.32),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);

    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);

    transform: translateY(-50%);
}

.conv-sticky-social {
    position: relative;

    display: grid;
    place-items: center;

    width: 46px;
    height: 46px;

    border: 1px solid rgba(157, 121, 226, 0.3);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.02);
    color: #a588ea;

    text-decoration: none;

    transition:
        color 0.3s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

.conv-sticky-social svg {
    display: block;

    width: 19px;
    height: 19px;

    
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.conv-sticky-social--instagram svg,
.conv-sticky-social--email svg,
.conv-sticky-social--whatsapp svg {
    fill: none;
}


/* Tooltip */

.conv-sticky-social::before {
    position: absolute;

    top: 50%;
    right: calc(100% + 12px);

    padding: 8px 12px;

    border: 1px solid rgba(148, 105, 229, 0.3);
    border-radius: 8px;

    background: rgba(8, 7, 15, 0.96);
    color: #ffffff;

    content: attr(data-label);

    font-family: "Manrope", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;

    transform:
        translateY(-50%)
        translateX(7px);

    transition:
        opacity 0.3s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.conv-sticky-social:hover::before {
    opacity: 1;

    transform:
        translateY(-50%)
        translateX(0);
}

.conv-sticky-social:hover {
    color: #ffffff;

    transform:
        translateX(-4px)
        scale(1.06);
}


/* Brand hover colours */

.conv-sticky-social--facebook:hover {
    border-color: #1877f2;
    background: #1877f2;

    box-shadow:
        0 0 24px rgba(24, 119, 242, 0.32);
}

.conv-sticky-social--instagram:hover {
    border-color: #c13584;

    background:
        linear-gradient(
            135deg,
            #833ab4,
            #c13584,
            #fd1d1d,
            #fcb045
        );

    box-shadow:
        0 0 24px rgba(193, 53, 132, 0.32);
}

.conv-sticky-social--linkedin:hover {
    border-color: #0a66c2;
    background: #0a66c2;

    box-shadow:
        0 0 24px rgba(10, 102, 194, 0.32);
}

.conv-sticky-social--email:hover {
    border-color: #ea4335;
    background: #ea4335;

    box-shadow:
        0 0 24px rgba(234, 67, 53, 0.3);
}

.conv-sticky-social--whatsapp:hover {
    border-color: #25d366;
    background: #25d366;

    box-shadow:
        0 0 24px rgba(37, 211, 102, 0.32);
}

.conv-sticky-social:focus-visible {
    outline: 2px solid #65cbd0;
    outline-offset: 4px;
}


/* Mobile: horizontal bar at the bottom */

@media screen and (max-width: 700px) {

    .conv-sticky-socials {
        top: auto;
        right: 50%;
        bottom: 14px;

        flex-direction: row;
        gap: 6px;

        padding: 7px;

        transform: translateX(50%);
    }

    .conv-sticky-social {
        width: 40px;
        height: 40px;
    }

    .conv-sticky-social svg {
        width: 17px;
        height: 17px;
    }

    .conv-sticky-social::before {
        display: none;
    }

    .conv-sticky-social:hover {
        transform: translateY(-3px);
    }
}