/* assets/footer.css — the site footer, in one place.
   ft2-* selectors only; nothing here can touch a page's own styles. */

/* Footer - Next-SaaS Style */
/* ── Footer2 ── */
.ft2 {
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem;
}
.ft2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.ft2-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 3rem;
}
.ft2-logo {
    display: block;
    height: 3.5rem;
    width: auto;
}
.ft2-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    line-height: 1.65;
    max-width: 420px;
    margin: 0;
}
/* 4-column links */
.ft2-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .ft2-links {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
}
.ft2-col-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin: 0 0 1.1rem;
}
.ft2-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.ft2-col-list a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}
.ft2-col-list a:hover {
    color: white;
}
/* Divider */
.ft2-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
}
/* Social row */
.ft2-social-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1.5rem 0;
}
.ft2-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.ft2-social-btn:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}
.ft2-social-btn img {
    width: 18px;
    height: 18px;
    opacity: 0.75;
    transition: opacity 0.2s;
}
.ft2-social-btn--x img {
    filter: brightness(0) invert(1);
}
.ft2-social-btn:hover img {
    opacity: 1;
}
/* Bottom */
.ft2-bottom {
    padding: 1.5rem 0 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
}
.ft2-bottom-text {
    flex: 1 1 auto;
    text-align: center;
}
.ft2-buildlist-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.ft2-copyright {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    margin: 0 0 0.6rem;
}
.ft2-disclaimer {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.55;
}
@media (max-width: 480px) {
  .ft2-container { padding: 0 1.25rem; }
  .ft2-links { grid-template-columns: repeat(2, 1fr); }
}
