.footer {
  background: var(--blue-900);
  color: var(--neutral-50);
  padding-top: 4rem;
}

.footer__row {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  padding: 0 0 3rem;
  display: grid;
  grid-template-columns: 3fr 1fr 2fr 2fr;
  gap: 3rem;
}

.footer__brand img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer__brand p {
  color: var(--neutral-200);
}

.footer h3 {
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--blue-50);
}

.footer__links,
.footer__contact,
.footer__cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: var(--neutral-300);
}

.footer__contact p {
  color: var(--neutral-300);
}

.footer__cta p {
  color: var(--neutral-300);
  line-height: 1.5rem;
}

.footer__cta button {
  margin-top: 1rem;
  background: var(--blue-700);
  color: var(--blue-50);
  width: fit-content;
}

.footer__bottom {
  text-align: center;
  border-top: 1px solid color-mix(in srgb, var(--neutral-50) 10%, transparent);
  padding: 1.5rem;
}

.footer__bottom p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--neutral-200);
}

@media only screen and (max-width: 768px) {
  .footer__row {
    grid-template-columns: 1fr;
  }
}
