footer { border-top: 1px solid var(--border); padding: 80px 20px 40px; background: var(--ink); color: #fff; }
.footer-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-wrap .logo { color: #fff; display: inline-flex; margin-bottom: 24px; }
.footer-wrap .logo-icon { background: var(--accent); }
.footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 24px; color: #fff; letter-spacing: 0.05em; }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 24px; max-width: 320px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent-light); }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: #fff; transition: background 0.2s, transform 0.2s; }
.social-links a:hover { background: var(--accent); transform: translateY(-3px); }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }
@media(max-width: 768px) { 
    .footer-wrap { grid-template-columns: 1fr; text-align: center; } 
    .social-links { justify-content: center; } 
    .footer-col p { margin: 0 auto 24px; } 
    .footer-wrap .logo { margin: 0 auto 24px; }
}
