






/* =========================================================
   ARIA AI — FOOTER
   ========================================================= */

.aria-footer {
    position: relative;
    width: 100%;
    background: radial-gradient( circle at 12% 0%, rgba(0, 200, 255, 0.07), transparent 30% ), radial-gradient( circle at 90% 80%, rgba(0, 140, 255, 0.04), transparent 28% ), #020305;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}


/* ---------------------------------------------------------
   Background glow
   --------------------------------------------------------- */

.aria-footer-glow {
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient( ellipse, rgba(0, 191, 255, 0.06), transparent 70% );
    pointer-events: none;
    filter: blur(10px);
}


/* ---------------------------------------------------------
   Main container
   --------------------------------------------------------- */

.aria-footer-container {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
    padding: 40px 0 40px;
    display: grid;
    grid-template-columns: minmax(280px, 1.6fr) minmax(160px, 0.8fr) minmax(280px, 1.3fr);
    gap: 80px;
}


/* ---------------------------------------------------------
   Brand
   --------------------------------------------------------- */

.aria-footer-brand {
    max-width: 450px;
}


.aria-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 28px;
}


    .aria-footer-logo img {
        display: block;
        width: 145px;
        height: auto;
        object-fit: contain;
    }


.aria-footer-description {
    margin: 0;
    max-width: 430px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}


/* ---------------------------------------------------------
   Explore button
   --------------------------------------------------------- */

.aria-footer-explore {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    padding: 11px 17px;
    border: 1px solid rgba(0, 207, 255, 0.35);
    border-radius: 100px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}


    .aria-footer-explore span {
        font-size: 14px;
        color: #00cfff;
        transition: transform 0.25s ease;
    }


    .aria-footer-explore:hover {
        color: #ffffff;
        border-color: rgba(0, 207, 255, 0.8);
        background: rgba(0, 207, 255, 0.06);
        transform: translateY(-2px);
    }


        .aria-footer-explore:hover span {
            transform: translate(3px, -3px);
        }


/* ---------------------------------------------------------
   Columns
   --------------------------------------------------------- */

.aria-footer-column {
    min-width: 0;
}


.aria-footer-label {
    display: block;
    margin-bottom: 24px;
    color: #00cfff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}


.aria-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


.aria-footer-column li {
    margin: 0;
    padding: 0;
}

    .aria-footer-column li a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding: 5px 0;
        color: #fff;
        font-size: 14px;
        line-height: 1.4;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.035);
        transition: color 0.25s ease, padding-left 0.25s ease, border-color 0.25s ease;
    }


        .aria-footer-column li a i {
            flex-shrink: 0;
            font-style: normal;
            color: rgba(0, 207, 255, 0);
            font-size: 12px;
            transform: translateX(-5px);
            transition: color 0.25s ease, transform 0.25s ease;
        }


        .aria-footer-column li a:hover {
            color: #ffffff;
            padding-left: 7px;
            border-color: rgba(0, 207, 255, 0.16);
        }


            .aria-footer-column li a:hover i {
                color: #00cfff;
                transform: translateX(0);
            }


/* ---------------------------------------------------------
   Bottom section
   --------------------------------------------------------- */
.aria-footer-bottom {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
    padding-bottom: 0;
}


.aria-footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0.02), rgba(0, 207, 255, 0.18), rgba(255, 255, 255, 0.02) );
    margin-bottom: 24px;
}


.aria-footer-bottom-content {
    justify-content: space-between;
    gap: 30px;
    text-align: center;
    font-size: 14px;
}


    .aria-footer-bottom-content p {
        margin: 0;
        color: #fff;
        font-size: 14px;
        line-height: 1.6;
        letter-spacing: 0.02em;
        margin-bottom: 10px;
    }

        .aria-footer-bottom-content p span {
            color: #fff;
        }


/* ---------------------------------------------------------
   AI status
   --------------------------------------------------------- */

.aria-footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.18em;
    white-space: nowrap;
}


.aria-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00cfff;
    box-shadow: 0 0 7px rgba(0, 207, 255, 0.8), 0 0 14px rgba(0, 207, 255, 0.3);
    animation: ariaStatusPulse 2.2s ease-in-out infinite;
}


@keyframes ariaStatusPulse {

    0%, 100% {
        opacity: 0.45;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .aria-footer-container {
        width: min(100% - 50px, 850px);
        grid-template-columns: minmax(260px, 1fr) minmax(180px, 0.8fr);
        gap: 60px 45px;
        padding: 70px 0 60px;
    }

    .aria-footer-brand {
        max-width: 500px;
    }

    .aria-footer-solutions {
        grid-column: 1 / -1;
        max-width: 600px;
    }

        .aria-footer-solutions ul {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 35px;
        }

    .aria-footer-bottom {
        width: min(100% - 50px, 850px);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .aria-footer-container {
        width: calc(100% - 36px);
        display: flex;
        flex-direction: column;
        gap: 50px;
        padding: 60px 0 50px;
    }


    .aria-footer-brand {
        max-width: none;
    }


    .aria-footer-logo {
        margin-bottom: 22px;
    }


        .aria-footer-logo img {
            width: 130px;
        }


    .aria-footer-description {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.75;
    }


    .aria-footer-explore {
        margin-top: 24px;
    }


    .aria-footer-column {
        width: 100%;
    }


    .aria-footer-label {
        margin-bottom: 17px;
        font-size: 8px;
    }


    .aria-footer-column li a {
        padding: 11px 0;
        font-size: 12px;
    }


    .aria-footer-solutions {
        max-width: none;
    }


        .aria-footer-solutions ul {
            display: block;
        }


    .aria-footer-bottom {
        width: calc(100% - 36px);
        padding-bottom: 22px;
    }


    .aria-footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }


        .aria-footer-bottom-content p {
            font-size: 9px;
        }


    .aria-footer-status {
        font-size: 7px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .aria-footer-container {
        width: calc(100% - 28px);
        padding-top: 50px;
    }


    .aria-footer-bottom {
        width: calc(100% - 28px);
    }


    .aria-footer-logo img {
        width: 120px;
    }


    .aria-footer-description {
        font-size: 11px;
    }


    .aria-footer-column li a {
        font-size: 11px;
    }
}


.aria-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
}

    .aria-footer-links a {
        display: flex;
        align-items: center;
        gap: 10px;
        width: fit-content;
        color: #fff;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.25s ease;
    }

        .aria-footer-links a span {
            color: #00cfff;
            font-size: 12px;
        }

        .aria-footer-links a:hover {
            color: #00cfff;
        }



.free-register {
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border-radius: 100px;
    background: linear-gradient( 135deg, #ff0055, #ff8a00, #ffe600, #00e5ff, #7b2cff, #ff0055 );
    background-size: 300% 300%;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .5px;
    box-shadow: 0 0 12px rgba(255, 0, 85, .6), 0 0 25px rgba(0, 229, 255, .35);
    animation: gradientMove 3s ease infinite, blinkGlow 1.4s ease-in-out infinite;
    z-index: 9999;
    margin-top: 30px;
    margin-left: 20px;
}

@media(max-width:900px) {

    .free-register {
        margin-left: auto;
    }

    }






        .free-register span {
            position: relative;
            z-index: 2;
        }

    /* Moving colorful background */
    @keyframes gradientMove {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Attractive blinking glow */
    @keyframes blinkGlow {
        0%, 100% {
            opacity: 1;
            box-shadow: 0 0 10px rgba(255, 0, 85, .5), 0 0 22px rgba(0, 229, 255, .3);
        }

        50% {
            opacity: .72;
            box-shadow: 0 0 20px rgba(255, 0, 85, .9), 0 0 45px rgba(123, 44, 255, .75), 0 0 65px rgba(0, 229, 255, .4);
        }
    }

    /* Hover */
    .free-register:hover {
        transform: translateY(-50%) scale(1.06);
        color: #fff;
    }