.pp-footer {
    margin-top: 50px;
    background: #071024;
    border-top: 1px solid rgba(80, 130, 255, 0.22);
    color: #dbe8ff;
}

.pp-footer-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 34px 20px 28px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 28px;
}

.pp-footer-brand p {
    max-width: 420px;
    margin: 14px 0 0;
    color: #9fb0d0;
    font-size: 14px;
    line-height: 1.7;
}

.pp-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.pp-footer-logo img {
    height: 42px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
}

.pp-footer-col h4 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pp-footer-col a {
    display: block;
    color: #aebddb;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .18s ease, transform .18s ease;
}

.pp-footer-col a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.pp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 20px;
    text-align: center;
    color: #8fa1c3;
    font-size: 13px;
}

@media (max-width: 900px) {
    .pp-footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .pp-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .pp-footer-inner {
        grid-template-columns: 1fr;
        padding: 28px 16px 22px;
    }

    .pp-footer-logo img {
        height: 38px;
        max-width: 220px;
    }
}