:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --primary: 211 100% 55%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --border: 214.3 31.8% 91.4%;
  --radius: 0.5rem;
}

footer {
  border-top: none;
}

/* Преобразование HSL переменных в CSS цвета */
.footer-redesign {
  --bg-muted-40: hsla(var(--muted), 0.4);
  --text-muted-foreground: hsl(var(--muted-foreground));
  --text-primary: hsl(var(--primary));
  --border-color: hsl(var(--border));
}

.footer-redesign {
  background-color: var(--bg-muted-40);
  padding: 2rem 0;
  font-family: 'Exo 2', sans-serif;
}

.footer-redesign .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-redesign .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-redesign .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-redesign h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-redesign ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-redesign ul li {
  margin-bottom: 0.5rem;
}

.footer-redesign a {
  font-size: 0.875rem;
  color: var(--text-muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-redesign a:hover {
  color: var(--text-primary);
}

.footer-redesign .social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-redesign .social-icons a {
  color: var(--text-muted-foreground);
  transition: color 0.2s ease;
}

.footer-redesign .social-icons a:hover {
  color: var(--text-primary);
}

.footer-redesign .app-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-redesign .app-links img {
  height: 2.5rem;
  width: auto;
}

.footer-redesign .separator {
  height: 1px;
  width: 100%;
  background-color: var(--border-color);
  margin: 1.5rem 0;
}

.footer-redesign .footer-bottom {
  text-align: center;
}

.footer-redesign .footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted-foreground);
  margin: 0;
}

.footer-redesign .footer-bottom p + p {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
