/* ==========================================================
   PLOUTIC TECHNOLOGIES — COMPLETE FOOTER
========================================================== */

.footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: 100%;
    padding: 0 32px;

    background: var(--footer-bg);
    color: #ffffff;
}


/* ==========================================================
   BACKGROUND GLOW
========================================================== */

.footer::before {
    content: "";
    position: absolute;

    width: 700px;
    height: 700px;

    top: -350px;
    left: -350px;

    z-index: -1;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.16),
        transparent 68%
    );

    pointer-events: none;
}

.footer::after {
    content: "";
    position: absolute;

    width: 650px;
    height: 650px;

    right: -350px;
    bottom: -350px;

    z-index: -1;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.08),
        transparent 68%
    );

    pointer-events: none;
}


/* ==========================================================
   TOP CTA
========================================================== */

.footer-top {
    width: 100%;
    max-width: var(--container-wide);

    margin: 0 auto;
    padding: 64px 0 52px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-top__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;
}

.footer-top__text {
    max-width: 780px;
}

.footer-top__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.footer-top__eyebrow svg {
    width: 17px;
    height: 17px;

    color: #38bdf8;
}

.footer-top h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(38px, 3.5vw, 56px);
    line-height: 1.07;

    font-weight: 750;
    letter-spacing: -2px;
}

.footer-top h2 span {
    display: block;

    background: linear-gradient(
        135deg,
        #60a5fa,
        #38bdf8
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-top__cta {
    min-height: 56px;

    padding: 0 23px;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;

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

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    color: #ffffff;

    font-size: 15px;
    line-height: 1;
    font-weight: 650;

    text-decoration: none;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.footer-top__cta svg {
    width: 18px;
    height: 18px;
}

.footer-top__cta:hover {
    transform: translateY(-2px);

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

    border-color: rgba(255, 255, 255, 0.26);
}


/* ==========================================================
   MAIN FOOTER
========================================================== */

.footer-main {
    width: 100%;
    max-width: var(--container-wide);

    margin: 0 auto;
    padding: 62px 0 58px;

    display: grid;

    grid-template-columns:
        minmax(330px, 1.3fr)
        minmax(0, 2.7fr);

    gap: clamp(65px, 7vw, 120px);
}


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

.footer-brand-col {
    width: 100%;
    max-width: 420px;
}

.footer-brand {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    text-decoration: none;
}

.footer-brand__logo {
    display: block;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    object-fit: contain;
}

.footer-brand__name {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.footer-brand__name strong {
    color: #ffffff;

    font-size: 22px;
    line-height: 1;

    font-weight: 750;

    letter-spacing: -0.6px;
}

.footer-brand__name span {
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 10px;
    line-height: 1;

    font-weight: 650;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.footer-brand__description {
    max-width: 400px;

    margin: 25px 0 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 16px;
    line-height: 1.75;

    font-weight: 400;
}


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

.footer-contact-list {
    margin-top: 30px;

    display: flex;
    flex-direction: column;

    gap: 13px;
}

.footer-contact {
    width: fit-content;

    margin: 0;

    display: flex;
    align-items: center;

    gap: 12px;

    color: inherit;

    text-decoration: none;
}

.footer-contact__icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 11px;

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

    color: rgba(255, 255, 255, 0.80);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-contact__icon svg {
    width: 18px;
    height: 18px;
}

.footer-contact > div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.footer-contact small {
    color: rgba(255, 255, 255, 0.46);

    font-size: 11px;
    line-height: 1.3;

    font-weight: 500;
}

.footer-contact > div > span {
    color: rgba(255, 255, 255, 0.84);

    font-size: 14px;
    line-height: 1.4;

    font-weight: 550;
}

a.footer-contact:hover .footer-contact__icon {
    transform: translateY(-1px);

    color: #ffffff;

    background: rgba(37, 99, 235, 0.18);

    border-color: rgba(96, 165, 250, 0.30);
}

a.footer-contact:hover div > span {
    color: #ffffff;
}


/* ==========================================================
   MSME BADGE
========================================================== */

.footer-business-badge {
    width: fit-content;

    margin-top: 28px;

    padding: 11px 14px;

    display: flex;
    align-items: center;

    gap: 10px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 11px;

    background: rgba(255, 255, 255, 0.05);
}

.footer-business-badge > svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    color: #38bdf8;
}

.footer-business-badge div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.footer-business-badge strong {
    color: rgba(255, 255, 255, 0.90);

    font-size: 13px;
    line-height: 1.3;

    font-weight: 650;
}

.footer-business-badge span {
    color: rgba(255, 255, 255, 0.48);

    font-size: 10px;
    line-height: 1.3;
}


/* ==========================================================
   FOOTER LINKS GRID
========================================================== */

.footer-links {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr
        1fr;

    gap: clamp(30px, 4vw, 62px);
}

.footer-col {
    min-width: 0;
    max-width: none;

    display: block;
}

.footer-col h4 {
    position: relative;

    margin: 0 0 25px;
    padding-bottom: 13px;

    color: #ffffff;

    font-size: 15px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.1px;
}

.footer-col h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 24px;
    height: 2px;

    border-radius: 999px;

    background: var(--text-white) ;
}

.footer-col nav {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.footer-col a {
    position: relative;

    width: fit-content;

    display: inline-block;

    color: rgba(255, 255, 255, 0.64);

    font-size: 14px;
    line-height: 1.45;

    font-weight: 450;

    text-decoration: none;

    transition:
        color 0.22s ease,
        transform 0.22s ease;
}

.footer-col a:hover {
    color: #ffffff;

    transform: translateX(3px);
}


/* ==========================================================
   SOCIAL / COMMUNITY
========================================================== */

.footer-connect {
    width: 100%;
    max-width: var(--container-wide);

    margin: 0 auto;
    padding: 27px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

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

.footer-social {
    display: flex;
    align-items: center;

    gap: 20px;
}

.footer-connect__label {
    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;
    line-height: 1.4;

    font-weight: 550;
}


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

.footer-social__links {
    display: flex;
    align-items: center;

    gap: 9px;
}

.footer-social__links a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;

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

    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease;
}

.footer-social__links img {
    width: 17px;
    height: 17px;

    padding: 0;

    border: 0;

    border-radius: 0;

    background: transparent;

    filter: brightness(0) invert(1);

    opacity: 0.68;

    transition: opacity 0.22s ease;
}

.footer-social__links a:hover {
    transform: translateY(-2px);

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

    border-color: rgba(255, 255, 255, 0.20);
}

.footer-social__links a:hover img {
    opacity: 1;
}


/* ==========================================================
   COMMUNITY
========================================================== */

.footer-community {
    min-width: 0;

    padding: 0;

    display: flex;
    align-items: center;

    gap: 11px;

    border: 0;
    border-radius: 0;

    background: transparent;
}

.footer-community:hover {
    transform: none;

    border: 0;

    background: transparent;
}

.footer-community__icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;

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

    color: rgba(255, 255, 255, 0.80);
}

.footer-community__icon svg {
    width: 18px;
    height: 18px;
}

.footer-community__content {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.footer-community__content strong {
    color: #ffffff;

    font-size: 17px;
    line-height: 1;

    font-weight: 750;
}

.footer-community__content span {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
    line-height: 1.3;
}

.footer-community__status {
    margin-left: 9px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.56);

    font-size: 11px;
    line-height: 1;

    font-weight: 500;
}

.footer-community__status > span {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #a3e635;

    box-shadow: 0 0 9px rgba(163, 230, 53, 0.50);
}


/* ==========================================================
   BOTTOM
========================================================== */

.footer-bottom {
    width: 100%;
    max-width: var(--container-wide);

    margin: 0 auto;
    padding: 25px 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 12px;
    line-height: 1.5;

    font-weight: 400;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.42);
    margin: 0;
}

.footer-bottom__message {
    color: rgba(255, 255, 255, 0.42);

    letter-spacing: 0.02em;
}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .footer-main {
        grid-template-columns:
            minmax(300px, 1.15fr)
            minmax(0, 2.5fr);

        gap: 55px;
    }

    .footer-links {
        gap: 30px;
    }

    .footer-brand__description {
        font-size: 15px;
    }

    .footer-col a {
        font-size: 13.5px;
    }
}


/* ==========================================================
   SMALL LAPTOP / TABLET LANDSCAPE
========================================================== */

@media (max-width: 1000px) {

    .footer {
        padding: 0 26px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .footer-brand-col {
        max-width: 520px;
    }

    .footer-links {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap: 32px;
    }

    .footer-col a {
        font-size: 14px;
    }
}


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

@media (max-width: 768px) {

    .footer {
        padding: 0 22px;
    }


    /* TOP */

    .footer-top {
        padding: 50px 0 42px;
    }

    .footer-top__content {
        flex-direction: column;
        align-items: flex-start;

        gap: 28px;
    }

    .footer-top__eyebrow {
        font-size: 13px;
    }

    .footer-top h2 {
        font-size: clamp(34px, 7vw, 46px);

        letter-spacing: -1.5px;
    }

    .footer-top__cta {
        min-height: 52px;

        font-size: 14px;
    }


    /* MAIN */

    .footer-main {
        padding: 48px 0 45px;

        gap: 48px;
    }

    .footer-brand-col {
        max-width: 100%;
    }

    .footer-brand__description {
        max-width: 500px;

        font-size: 15px;
    }

    .footer-contact > div > span {
        font-size: 13px;
    }


    /* LINKS */

    .footer-links {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 42px 35px;
    }

    .footer-col h4 {
        font-size: 15px;
    }

    .footer-col a {
        font-size: 14px;
    }


    /* SOCIAL */

    .footer-connect {
        flex-direction: column;
        align-items: flex-start;

        gap: 26px;
    }


    /* BOTTOM */

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 7px;

        font-size: 11px;
    }
}


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

@media (max-width: 480px) {

    .footer {
        padding: 0 18px;
    }


    /* TOP CTA */

    .footer-top {
        padding: 43px 0 36px;
    }

    .footer-top__eyebrow {
        margin-bottom: 15px;

        font-size: 12px;
    }

    .footer-top h2 {
        font-size: clamp(30px, 9vw, 38px);

        line-height: 1.1;

        letter-spacing: -1.2px;
    }

    .footer-top__cta {
        width: 100%;

        min-height: 51px;

        font-size: 14px;
    }


    /* MAIN */

    .footer-main {
        padding: 42px 0 40px;
    }


    /* BRAND */

    .footer-brand__logo {
        width: 44px;
        height: 44px;
    }

    .footer-brand__name strong {
        font-size: 20px;
    }

    .footer-brand__name span {
        font-size: 9px;
    }

    .footer-brand__description {
        margin-top: 21px;

        font-size: 14px;
        line-height: 1.7;
    }


    /* CONTACT */

    .footer-contact-list {
        margin-top: 26px;
    }

    .footer-contact__icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }

    .footer-contact small {
        font-size: 10px;
    }

    .footer-contact > div > span {
        font-size: 13px;
    }


    /* MSME */

    .footer-business-badge strong {
        font-size: 12px;
    }

    .footer-business-badge span {
        font-size: 10px;
    }


    /* LINKS */

    .footer-links {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 40px 24px;
    }

    .footer-col h4 {
        margin-bottom: 21px;

        font-size: 14px;
    }

    .footer-col nav {
        gap: 13px;
    }

    .footer-col a {
        font-size: 13px;
        line-height: 1.45;
    }


    /* SOCIAL */

    .footer-social {
        flex-direction: column;
        align-items: flex-start;

        gap: 13px;
    }

    .footer-connect__label {
        font-size: 12px;
    }

    .footer-social__links {
        gap: 8px;
    }

    .footer-social__links a {
        width: 38px;
        height: 38px;
    }


    /* COMMUNITY */

    .footer-community {
        width: 100%;
    }

    .footer-community__icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }

    .footer-community__content strong {
        font-size: 16px;
    }

    .footer-community__content span {
        font-size: 10px;
    }

    .footer-community__status {
        margin-left: auto;

        font-size: 10px;
    }


    /* BOTTOM */

    .footer-bottom {
        padding: 22px 0 25px;

        font-size: 11px;
    }
}


/* ==========================================================
   VERY SMALL MOBILE
========================================================== */

@media (max-width: 360px) {

    .footer {
        padding: 0 16px;
    }

    .footer-links {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .footer-col a {
        font-size: 13px;
    }

    .footer-top__cta {
        font-size: 13px;
    }
}