/* ── Resets ──────────────────────────────────────────────── */
.flang-footer a { color: inherit !important; text-decoration: none !important; }
.flang-footer ul { padding-left: 0 !important; margin: 0 !important; list-style: none !important; }

/* ── Link colors ─────────────────────────────────────────── */
.flang-footer .flang-footer__links a { color: rgba(255,255,255,0.52) !important; }
.flang-footer .flang-footer__links a:hover { color: #fff !important; }
.flang-footer .flang-footer__links--pills a { color: rgba(255,255,255,0.6) !important; }
.flang-footer .flang-footer__links--pills a:hover { color: #fff !important; }
.flang-footer .flang-footer__legal a { color: rgba(255,255,255,0.2) !important; }
.flang-footer .flang-footer__legal a:hover { color: rgba(255,255,255,0.5) !important; }

/* ── Root ─────────────────────────────────────────────────── */
.flang-footer {
  background: var(--navy);
  padding: 90px 0 0;
  font-family: 'Inter', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.flang-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Top: бренд | навигация ───────────────────────────────── */
.flang-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Бренд */
.flang-footer__logo { margin-bottom: 18px; }
.flang-footer__logo img { height: 30px; width: auto; display: block; }
.flang-footer__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 220px;
}
.flang-footer__socials { display: flex; gap: 12px; align-items: center; }
.flang-footer__social {
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s;
}
.flang-footer__social:hover { opacity: 0.8; }
.flang-footer__social svg { display: block; }
.flang-footer__social img { display: block; }

/* Навигация */
.flang-footer__nav {
  display: flex;
  gap: 56px;
  padding-top: 4px;
  flex-shrink: 0;
}
.flang-footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
}
.flang-footer__links li { margin-bottom: 10px; }
.flang-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.52) !important;
  transition: color 0.18s;
}
.flang-footer__links a:hover { color: #fff !important; }

/* Таблетки */
.flang-footer__links--pills { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.flang-footer__links--pills li { margin-bottom: 0; }
.flang-footer__links--pills a {
  display: block;
  padding: 5px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: rgba(255,255,255,0.6) !important;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  overflow: hidden; text-overflow: ellipsis;
}
.flang-footer__links--pills a:hover {
  background: rgba(255,255,255,0.13) !important;
  border-color: rgba(255,255,255,0.22) !important;
  color: #fff !important;
}

/* ── Нижняя полоса ────────────────────────────────────────── */
.flang-footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.flang-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
}
.flang-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.flang-footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.2) !important;
  white-space: nowrap;
  transition: color 0.18s;
}
.flang-footer__legal a:hover { color: rgba(255,255,255,0.5) !important; }

/* ── Адаптив ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  .flang-footer__inner { padding: 0 20px; }
}
@media (max-width: 900px) {
  .flang-footer__top { flex-direction: column; gap: 40px; }
  .flang-footer__nav { gap: 36px; }
  .flang-footer__desc { max-width: 360px; }
}
@media (max-width: 600px) {
  .flang-footer { padding-top: 60px; }
  .flang-footer__nav { flex-wrap: wrap; gap: 32px 40px; }
  .flang-footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .flang-footer__legal { gap: 12px; }
}
