.cf-footer {
  margin-top: 0;
  border-top: 1px solid var(--line, #e6edf5);
  background: #fbfdff;
  color: var(--muted, #5b6b80);
  padding: 36px clamp(24px, 7vw, 120px) 40px;
}

.cf-footer-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.cf-footer-brand-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.cf-footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  color: var(--text-strong, #102033);
  font-size: 15.5px;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
}

.cf-footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

.cf-footer-tagline {
  color: var(--muted, #5b6b80);
  font-size: 13.5px;
  line-height: 1.45;
}

.cf-footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  width: 100%;
  margin-top: 30px;
}

.cf-footer-nav a {
  color: #222b39;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
  transition: color 160ms ease;
}

.cf-footer-brand:hover,
.cf-footer-brand:focus-visible,
.cf-footer-nav a:hover,
.cf-footer-nav a:focus-visible {
  color: var(--accent, #0866ff);
}

.cf-footer-brand:focus-visible,
.cf-footer-nav a:focus-visible {
  outline: 2px solid var(--accent, #0866ff);
  outline-offset: 4px;
  border-radius: 3px;
}

.cf-footer-copy {
  display: block;
  margin: 30px 0 0;
  color: var(--muted, #5b6b80);
  font-size: 12.5px;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .cf-footer {
    padding-top: 32px;
    padding-bottom: 36px;
  }

  .cf-footer-brand-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .cf-footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    margin-top: 28px;
  }

  .cf-footer-copy {
    margin-top: 28px;
  }
}

@media (max-width: 460px) {
  .cf-footer-nav {
    grid-template-columns: 1fr;
  }
}
