.c-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0 48px;
  margin-top: 0;
}

.c-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.c-footer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.c-footer__logo {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.c-footer__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.c-footer__links a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #9a9aaa;
  text-decoration: none;
  transition: color 0.15s;
}

.c-footer__links a:hover {
  color: #f0f0f4;
}

.c-footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.c-footer__legal-line {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  color: #6b6b7a;
  margin: 0;
}

.c-footer__email {
  color: #9a9aaa;
  text-decoration: none;
  transition: color 0.15s;
}

.c-footer__email:hover {
  color: var(--cdb-accent-muted, #a5a0ff);
}

@media (max-width: 768px) {
  .c-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .c-footer__links {
    gap: 8px 16px;
  }
}
