/* ── Footer Widget — PNS ── */
.pns-ft {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: 100%;
}
.pns-ft *, .pns-ft *::before, .pns-ft *::after { box-sizing: border-box; margin: 0; padding: 0; }

.pns-ft-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ── Main footer ── */
.pns-ft-main {
    padding: 56px 0 40px;
    border-top: 1px solid #e2e8f0;
}

.pns-ft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 48px;
}

/* Column */
.pns-ft-col {}

.pns-ft-heading {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

/* Links list */
.pns-ft-list {
    list-style: none;
}

.pns-ft-list li {
    margin-bottom: 10px;
}

.pns-ft-link {
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}

/* Info items */
.pns-ft-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.pns-ft-info-icon {
    font-size: 16px;
    flex-shrink: 0;
}

/* Stats */
.pns-ft-stats {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.pns-ft-stats-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pns-ft-stat {
    font-size: 14px;
    color: #334155;
    margin-bottom: 6px;
    line-height: 1.6;
}

.pns-ft-stat strong {
    font-weight: 800;
    color: #0f172a;
}

/* Help block */
.pns-ft-help {
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: 14px;
    color: #fff;
}

.pns-ft-help-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.pns-ft-help-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.pns-ft-help-text a {
    color: #fff;
    text-decoration: underline;
}

/* ── Bottom bar ── */
.pns-ft-bottom {
    border-top: 1px solid #e2e8f0;
    padding: 20px 0;
}

.pns-ft-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.pns-ft-copyright {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pns-ft-legal a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}
.pns-ft-legal a:hover { color: #087439; }

.pns-ft-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pns-ft-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #475569;
    transition: color 0.2s, background 0.2s;
}
.pns-ft-social:hover {
    color: #087439;
    background: #ecfdf5;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pns-ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .pns-ft-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .pns-ft-main { padding: 36px 0 28px; }
    .pns-ft-bottom-inner { flex-direction: column; align-items: flex-start; }
}
