.l-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--grey-200);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.5px;
  img {
    height: 40px;
  }
}
.nav__toggle {
  display: none;
  border: 0;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.nav__list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  padding: 10px 12px;
  border-radius: 10px;
}
.nav__link:hover {
  background: var(--grey-200);
}
.l-footer {
  background: #60ca81;
  color: #fff;
  margin-top: 40px;

  * {
    color: black;
  }
}
.footer__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  padding: 32px 24px;
}
.footer__brand {
  font-weight: 800;
}
.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  grid-column: span 2;
  justify-content: center;
}
.footer__logos {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  grid-column: span 2;
}
.footer__legal {
  grid-column: 1/-1;
  font-size: 12px;
  margin-top: 4px;
}
.footer__notice {
    grid-column: span 2;
}
@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__list {
    display: none;
    flex-direction: column;
    position: absolute;
    width: 100%;
    top: 64px;
    right: 0;
    background: #fff;
    border: 1px solid var(--grey-200);
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .footer__grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 480px) {
  .footer__logos {
    justify-content: center;
    gap: 20px;
  }

    .footer__links {
    flex-direction: column;
    text-align: center;
  }
}
