/* ============================================
   STRIX FOOTER — Custom footer styles
   ============================================ */

/* ── Footer ── */
.strix-footer {
    background: #050226;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Top CTA bar */
.strix-footer__cta-bar {
    background: linear-gradient(135deg, #343B78 0%, #1A1940 100%);
    padding: 56px 40px;
    border-bottom: 1px solid rgba(156, 195, 241, 0.08);
    position: relative;
    overflow: hidden;
}

/* Decorative glow behind CTA */
.strix-footer__cta-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 227, 97, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.strix-footer__cta-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(156, 195, 241, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.strix-footer__cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.strix-footer__cta-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
    position: relative;
    z-index: 1;
}

.strix-footer__cta-text .accent {
    color: #FFE361;
}

.strix-footer__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #FFE361;
    position: relative;
    z-index: 1;
    color: #050226;
    font-family: 'Roboto', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.strix-footer__cta-btn:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 227, 97, 0.2);
}

.strix-footer__cta-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.35s ease;
}

.strix-footer__cta-btn:hover svg {
    transform: translateX(4px);
}

/* Main footer content */
.strix-footer__main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 40px 48px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 48px;
}

/* Brand column */
.strix-footer__brand img {
    height: 36px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.strix-footer__brand-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    color: #8890AB;
    line-height: 1.7;
    margin: 0 0 24px;
    max-width: 300px;
}

.strix-footer__socials {
    display: flex;
    gap: 12px;
}

.strix-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(156, 195, 241, 0.06);
    border: 1px solid rgba(156, 195, 241, 0.1);
    transition: all 0.3s ease;
    color: #8890AB;
    text-decoration: none;
}

.strix-footer__social-link:hover {
    background: rgba(156, 195, 241, 0.12);
    border-color: rgba(156, 195, 241, 0.25);
    color: #9CC3F1;
    transform: translateY(-2px);
}

.strix-footer__social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Link columns */
.strix-footer__col-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 20px !important;
}

.strix-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.strix-footer__links a {
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    color: #8890AB;
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-block;
}

.strix-footer__links a:hover {
    color: #9CC3F1;
}

/* Contact column */
.strix-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.strix-footer__contact-icon {
    width: 16px;
    height: 16px;
    fill: #9CC3F1;
    flex-shrink: 0;
    margin-top: 3px;
}

.strix-footer__contact-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    color: #8890AB;
    line-height: 1.6;
}

.strix-footer__contact-text a {
    color: #8890AB;
    text-decoration: none;
    transition: color 0.25s ease;
}

.strix-footer__contact-text a:hover {
    color: #9CC3F1;
}

/* Bottom bar */
.strix-footer__bottom {
    border-top: 1px solid rgba(156, 195, 241, 0.06);
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.strix-footer__copyright {
    font-family: 'Roboto', sans-serif;
    font-size: 0.78rem;
    color: #5A6080;
    margin: 0;
}

.strix-footer__legal {
    display: flex;
    gap: 24px;
}

.strix-footer__legal a {
    font-family: 'Roboto', sans-serif;
    font-size: 0.78rem;
    color: #5A6080;
    text-decoration: none;
    transition: color 0.25s ease;
}

.strix-footer__legal a:hover {
    color: #9CC3F1;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .strix-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .strix-footer__cta-bar {
        padding: 36px 20px;
    }

    .strix-footer__cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .strix-footer__cta-text {
        font-size: 1.3rem;
    }

    .strix-footer__main {
        grid-template-columns: 1fr;
        padding: 48px 20px 36px;
        gap: 36px;
    }

    .strix-footer__brand {
        text-align: center;
    }

    .strix-footer__brand img {
        margin: 0 auto 20px;
    }

    .strix-footer__brand-desc {
        max-width: 100%;
    }

    .strix-footer__socials {
        justify-content: center;
    }

    .strix-footer__bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .strix-footer__legal {
        justify-content: center;
    }
}
