.global-footer {
    margin-top: auto;
    padding: var(--space-8) var(--space-6) var(--space-6);
    background: var(--surface);
    position: relative;
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}
.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--text);
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 300px;
}
.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: var(--space-4);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: var(--space-3);
}
.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: var(--space-7);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.footer-legal-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

.footer-legal-sep {
    color: var(--border-light);
    font-size: 0.75rem;
    user-select: none;
}

.footer-legal-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition-fast);
}

.footer-legal-link:hover {
    color: var(--text);
}

.footer-legal-link:hover::after {
    width: 100%;
}

.footer-developer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 0.02em;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
    max-width: 640px;
    line-height: 1.5;
    margin: 4px 0 0;
}

.footer-counter {
    margin-top: 2px;
}

.footer-counter img {
    height: 16px;
    opacity: 0.35;
    transition: opacity var(--transition-fast);
}

.footer-counter img:hover {
    opacity: 0.8;
}
.fw-input {
    width: 100%; padding: 12px; border-radius: var(--radius-md); border: 1px solid var(--border); background: var(--surface-2); color: var(--text); font-family: inherit; font-size: 0.95rem; outline: none; transition: border-color var(--transition-fast);
}
.fw-input:focus {
    border-color: var(--accent) !important;
}
textarea.fw-input {
    resize: none;
}
.fw-fab-btn {
    width: 60px; height: 60px; border-radius: 50%; background: var(--accent); color: white; border: none; box-shadow: var(--shadow-lg); cursor: pointer; display: flex; justify-content: center; align-items: center; transition: transform 0.2s, background 0.2s;
}
.fw-fab-btn:hover {
    background: var(--accent-hover) !important;
}
.fw-success-anim {
    animation: fwSuccessAnim 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes fwSuccessAnim {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
