@charset "utf-8";
.pm-footer {
    background: #020617;
    color: #e5e7eb;
    margin-top: 2rem;
    padding: 2.5rem 0 2rem;
    border-top: 1px solid rgba(15,23,42,0.7);
}

.pm-container-footer {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.pm-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.pm-footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 1.5rem;
}

.pm-footer-col {
    font-size: .86rem;
}

.pm-footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: .6rem;
}

.pm-footer-title {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .6rem;
    color: #f9fafb;
}

.pm-footer-text {
    font-size: .85rem;
    color: #9ca3af;
    margin-bottom: .5rem;
}

.pm-footer-text a {
    color: #e5e7eb;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
}

.pm-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pm-footer-links li {
    margin-bottom: .25rem;
}

.pm-footer-links a {
    font-size: .85rem;
    color: #e5e7eb;
    opacity: .9;
    transition: color .2s ease, opacity .2s ease, transform .15s ease;
}

.pm-footer-links a:hover {
    color: #38bdf8;
    opacity: 1;
    transform: translateX(2px);
}

.pm-footer-cta {
    display: inline-flex;
    margin-top: .5rem;
    font-size: .86rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.9);
    color: #e5e7eb;
    text-decoration: none;
    transition: all .25s ease;
}

.pm-footer-cta:hover {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: #0b1120;
    transform: translateY(-1px);
}

.pm-footer-bottom {
    border-top: 1px solid rgba(55,65,81,0.8);
    padding-top: 1.3rem;
}

.pm-footer-seo {
    font-size: .8rem;
    color: #9ca3af;
    margin-bottom: .4rem;
    line-height: 1.5;
}

.pm-footer-seo a {
    color: #e5e7eb;
    text-decoration: underline;
    text-decoration-style: dotted;
}

.pm-footer-copy {
    font-size: .78rem;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 960px) {
    .pm-footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pm-footer {
        padding-top: 2rem;
    }
    .pm-footer-top {
        grid-template-columns: 1fr;
    }
    .pm-footer-col {
        border-top: 1px solid rgba(31,41,55,0.8);
        padding-top: .75rem;
    }
    .pm-footer-col:first-child {
        border-top: none;
        padding-top: 0;
    }
}
