/* ——— Footer ——— */
.footer {
    position: relative;
  padding: 4rem 0 2rem;
  background: #fafbfd;
  border-top: 1px solid #edf0f5;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-logo:hover {
  color: var(--accent);
}

.footer-slogan {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}
.footer-slogan em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

.footer-nav,
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-title,
.footer-contact h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--fg);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a,
.footer-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover,
.footer-link:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-light);
}
.footer-contact-item i {
  font-size: 1rem;
  color: var(--accent);
  width: 18px;
  text-align: center;
}

/* Соцсети (если включите) */
.footer-social-icons {
  display: flex;
  gap: 0.75rem;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f4ff;
  color: var(--accent);
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-social-icon:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* Разделитель */
.footer-divider {
  height: 1px;
  background: #edf0f5;
  margin: 2.5rem 0;
}

/* Копирайт */
.footer-copyright {
  text-align: center;
}
.footer-copyright p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}
.footer-copyright .footer-link {
  text-decoration: underline;
  font-weight: 500;
}

/* ——— Адаптив ——— */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: auto;
    max-width: 100%;
  }
  .footer-slogan {
    font-size: 1rem;
  }
  .footer-divider {
    margin: 2rem 0;
  }
  .footer-copyright p {
    font-size: 0.9rem;
  }
}
