.footer {
  background: #1E293B;
  color: #CBD5E1;
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer__brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 0.5rem;
}

.footer__desc {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.6;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.footer__links a {
  color: #CBD5E1;
  transition: color 0.15s;
}

.footer__links a:hover {
  color: var(--cta);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
}

.footer__anpc {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__anpc-badge {
  width: 250px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  transition: background 0.15s;
}

.footer__anpc-badge:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer__anpc-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__anpc-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #F1F5F9;
  line-height: 1.2;
}

.footer__anpc-sub {
  font-size: 0.625rem;
  color: #94A3B8;
}

.footer__bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  opacity: 0.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
