footer {
  background: #eef1f5;
  border-top: 1px solid var(--border);
  padding: 60px 5% 0;
  color: var(--muted);
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.ft-brand .logo-name { color: var(--cream); font-size: 20px; }
.ft-brand .logo-sub { color: var(--muted); }
.ft-brand p { font-size: 13px; margin-top: 18px; line-height: 1.8; color: var(--muted); font-weight: 300; }
.ft-socials { display: flex; gap: 8px; margin-top: 20px; }
.ft-soc {
  width: 34px; height: 34px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.ft-soc:hover { background: rgba(108,78,224,.2); border-color: rgba(108,78,224,.4); }
.ft-soc svg { width: 14px; height: 14px; fill: var(--muted); }
.ft-col h4 { font-size: 10px; font-weight: 700; color: var(--cream); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; font-weight: 300; }
.ft-col a:hover { color: var(--cream); }
.ft-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-bottom span { font-size: 11px; color: rgba(0,0,0,0.3); }
.ft-bottom strong { color: #111827; font-weight: 600; letter-spacing: .01em; }
