.anth-home .anth-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  background: #06070a;
}

.anth-home .anth-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}

.anth-home .anth-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.anth-home .anth-footer-logo svg {
  width: 34px;
  height: 34px;
}

.anth-home .anth-footer-logo span {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.anth-home .anth-footer-tagline {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
  max-width: 320px;
}

.anth-home .anth-footer-col h4 {
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.anth-home .anth-footer-col a {
  display: block;
  color: var(--text-dim);
  font-size: 13.5px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.anth-home .anth-footer-col a:hover {
  color: var(--teal);
}

.anth-home .anth-footer-social-icons {
  display: flex;
  gap: 10px;
}

.anth-home .anth-footer-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.anth-home .anth-footer-social-icons a:hover {
  background: rgba(0, 209, 178, 0.1);
  color: var(--teal);
  border-color: var(--teal);
}

.anth-home .anth-footer-social-icons svg {
  width: 16px;
  height: 16px;
}

.anth-home .anth-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
}

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

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