.footer {
  color: #fff;
  text-align: center;
  padding: 100px 40px 60px;
  position: relative;
  overflow: hidden;
}

/* логотип сверху */
.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -2%;
  color: white;
  margin-bottom: 48px;
}

/* навигация (верхний ряд) */
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 32px;
  font-size: 18px;
}

.footer-nav a {
  font-size: 18px;
  font-weight: medium;
  color: #C0BECE;
  line-height: 24px;
  letter-spacing: 0%;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-nav a:hover {
  background: linear-gradient(90deg, #66A8F3, #0052D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* нижние ссылки (privacy, terms, contact) */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}

.footer-links a {
  font-size: 18px;
  letter-spacing: 0%;
  line-height: 24px;
  color: #626075;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  background: linear-gradient(90deg, #66A8F3, #0052D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* точки между ссылками */
.footer-links span {
  opacity: 0.4;
  font-size: 14px;
}

/* кнопки App Store / Google Play */
.footer .badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}

.footer .badges img {
  height: 40px;
  filter: brightness(0.95);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer .badges img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(102, 168, 243, 0.6);
}

/* копирайт */
.legal {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2px;
  margin-top: 20px;
}

/* адаптив */
@media (max-width: 768px) {
  .footer {
    padding: 80px 20px 40px;
  }

  .footer-brand {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 28px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .footer .badges {
   flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
  }

  .footer .badges img {
    width: 280px!important;
    height: 82px!important;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 60px 16px 32px;
  }

  .legal {
    font-size: 12px;
  }
}
