.site-footer {
  background-color: #0b1329;
  color: #94a3b8;
  padding: 60px 0 24px;
  border-top: 1px solid #1e293b;
  font-family: var(--font-family, 'Inter', sans-serif);
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1.2fr) 1.8fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-logo .logo-title {
  color: #ffffff;
}

.footer-logo .logo-subtitle {
  color: #38bdf8;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  margin: 16px 0;
  color: #94a3b8;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e293b;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--primary-color, #0077c8);
  color: #ffffff;
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-heading {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links, .footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color, #0077c8);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
}

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

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

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

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