/* SimpleFileTools — Footer Component */

.sft-footer {
    background: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 3.5rem 1.5rem 2rem;
    font-size: 0.85rem;
    color: #64748b;
}

.sft-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.sft-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    color: #e2e8f0;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.sft-footer-brand p {
    font-size: 0.82rem;
    color: #475569;
    max-width: 260px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sft-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.sft-footer-badge {
    font-size: 0.68rem;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.25);
    color: #a5b4fc;
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
    font-weight: 600;
}

.sft-footer-col h5 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.sft-footer-col a {
    display: block;
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.55rem;
    transition: color 0.15s;
    white-space: nowrap;
}

.sft-footer-col a:hover { color: #a5b4fc; }

.sft-footer-bottom {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sft-footer-bottom p {
    font-size: 0.75rem;
    color: #475569;
}

.sft-footer-bottom a {
    color: #475569;
    text-decoration: none;
    margin-left: 1rem;
    font-size: 0.75rem;
    transition: color 0.15s;
}

.sft-footer-bottom a:hover { color: #94a3b8; }

@media (max-width: 900px) {
    .sft-footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
    .sft-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .sft-footer-brand { grid-column: 1 / -1; }
    .sft-footer-bottom { flex-direction: column; align-items: flex-start; }
    .sft-footer-bottom a:first-child { margin-left: 0; }
}

@media (max-width: 400px) {
    .sft-footer-inner { grid-template-columns: 1fr; }
}
