.prime-footer {
    position: relative;
    width: 100%;
    padding: 42px 0 26px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(3, 18, 47, 0.22) 0%, rgba(3, 10, 24, 0.84) 24%, rgba(2, 8, 20, 1) 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.10);
    overflow: hidden;
}

.prime-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%);
    pointer-events: none;
}

.prime-footer .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 34px;
}

.prime-footer-box {
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.prime-footer-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.1fr) minmax(0, 1.9fr);
    gap: 42px;
    align-items: start;
}

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

.prime-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    text-decoration: none;
}

.prime-footer-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 900;
    box-shadow:
        0 16px 28px rgba(37, 99, 235, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.prime-footer-brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.prime-footer-brand-copy strong {
    color: #f8fafc;
    font-size: 1.4rem;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.prime-footer-brand-copy small {
    margin-top: 4px;
    color: #94a3b8;
    font-size: 0.82rem;
    line-height: 1.35;
    font-weight: 700;
}

.prime-footer-text {
    margin: 18px 0 0;
    color: #b6c3d7;
    font-size: 0.98rem;
    line-height: 1.8;
    font-weight: 500;
}

.prime-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.prime-footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: #dbe7f6;
    font-size: 0.84rem;
    font-weight: 700;
}

.prime-footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.prime-footer-column h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.prime-footer-column a {
    display: block;
    width: fit-content;
    margin-bottom: 10px;
    color: #b8c9e2;
    font-size: 0.93rem;
    line-height: 1.55;
    font-weight: 600;
    text-decoration: none;
    transition:
        color 0.18s ease,
        transform 0.18s ease;
}

.prime-footer-column a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.prime-footer-column a.is-active {
    color: #60a5fa;
}

.prime-footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.prime-footer-copy {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.6;
    font-weight: 600;
}

.prime-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.prime-footer-bottom-links a {
    color: #b8c9e2;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.18s ease;
}

.prime-footer-bottom-links a:hover {
    color: #ffffff;
}

@media (max-width: 1100px) {
    .prime-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

@media (max-width: 700px) {
    .prime-footer {
        padding: 28px 0 22px;
    }

    .prime-footer .container {
        padding: 0 18px;
    }

    .prime-footer-links {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .prime-footer-mark {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 1.35rem;
    }

    .prime-footer-brand-copy strong {
        font-size: 1.1rem;
    }

    .prime-footer-brand-copy small {
        font-size: 0.74rem;
    }

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

    .prime-footer-bottom-links {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
}