.native-footer {
  --native-footer-bg: #0082CB;
  --nf-bg: var(--native-footer-bg);
  --nf-fg: #ffffff;
  --nf-fg-muted: rgba(255, 255, 255, 0.85);
  --nf-border: rgba(255, 255, 255, 0.18);
  --nf-btn-bg: #ffffff;
  --nf-btn-fg: #0082CB;
  --nf-maxw: 1200px;

  background: var(--nf-bg);
  color: var(--nf-fg);
}

.native-footer a {
  color: inherit;
  text-decoration: none;
}

.native-footer a:hover,
.native-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.native-footer :focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.native-footer__inner {
  max-width: var(--nf-maxw);
  margin: 0 auto;
  padding: 44px 20px 28px;
}

.native-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.native-footer__col {
  min-width: 0;
}

.native-footer__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.native-footer__text {
  margin: 0;
  color: var(--nf-fg-muted);
  line-height: 1.55;
}

.native-footer__text strong {
  color: var(--nf-fg);
  font-weight: 700;
}

.native-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.native-footer__menus {
  display: grid;
  gap: 18px;
}

.native-footer__menu-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--nf-fg);
}

.native-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.native-footer__button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--nf-btn-bg);
  color: var(--nf-btn-fg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  line-height: 1.15;
  text-align: center;
  min-height: 44px;
}

.native-footer__button,
.native-footer__button * {
  color: var(--nf-btn-fg);
}

.native-footer__button:hover,
.native-footer__button:focus-visible {
  text-decoration: none;
  filter: brightness(0.98);
}

.native-footer__button-line {
  display: block;
}

.native-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.native-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.native-footer__social-link:hover,
.native-footer__social-link:focus-visible {
  text-decoration: none;
}

.native-footer__linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  transform: translateY(-0.5px);
  color: var(--nf-btn-fg);
}

.native-footer__social-link:hover .native-footer__linkedin-icon,
.native-footer__social-link:focus-visible .native-footer__linkedin-icon {
  filter: brightness(0.98);
}

.native-footer__bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--nf-border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: flex-end;
}

.native-footer__legal a {
  color: var(--nf-fg-muted);
}

@media (min-width: 900px) {
  .native-footer__top {
    grid-template-columns: 1.05fr 1fr 1.45fr;
    gap: 40px;
  }

  .native-footer__menus {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }
}

@media (max-width: 899.98px) {
  .native-footer__bottom {
    justify-content: flex-start;
  }
}

