/* ========================================
   FOOTER
======================================== */
.footer {
  margin-top: 40px;
  padding: 28px 0 20px;
  background: rgba(17, 40, 61, 0.72);
  color: #dbe8f7;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.footer__top {
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  align-items: start;
  margin-bottom: 15px;
}

.footer__title {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.footer__copyright {
  color: #dbe8f7;
  font-size: 15px;
  line-height: 1.55;
}

.footer__col--logo {
  grid-column: 1;
}

.footer__logo img {
  width: 160px;
  height: auto;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 60px;
}

.footer-menu li {
  margin-bottom: 14px;
  break-inside: avoid;
}

.footer-menu a {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.45;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.footer__bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer__copyright {
  max-width: 760px;
  margin: 0 auto 12px;
}

.footer__bottom-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer__bottom-links a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.footer__trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
}

.footer__trustpilot strong {
  color: #00b67a;
  font-weight: 700;
}

.footer__trustpilot:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.footer__col--links {
  grid-column: 2;
  justify-self: center;
}