.site-footer {
  margin-top: 4rem;
  padding: 3rem 1.5rem 2rem;
  background: #111827;
  color: #f8fafc;
  font-family: Inter, Arial, sans-serif;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
}

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

.footer-brand {
  padding-right: 1rem;
}

.site-footer strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.site-footer p {
  margin: 0 0 1.25rem;
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: #2563eb;
  color: #ffffff;
}

.footer-section h4 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.site-footer a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-footer a:hover {
  color: #ffffff;
}

.contact-info {
  gap: 0.85rem;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #cbd5e1;
}

.footer-links span {
  color: #475569;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom p {
    order: 2;
  }

  .footer-links {
    justify-content: center;
    order: 1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}
