/* ============================================================
   SITE FOOTER — Ecosystem Design System (Dark)
   Shared across all templates
   ============================================================ */
.site-footer {
  background: #06080f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 64px 0 32px;
}
.site-footer .container {
  max-width: var(--site-shell-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid !important;
  grid-template-columns: minmax(240px, 1.8fr) repeat(4, minmax(125px, 1fr)) !important;
  gap: 28px;
  width: 100%;
  margin-bottom: 48px;
  align-items: start;
}
.footer-grid > * { min-width: 0; }
.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 700 18px 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-brand .footer-logo img { display: block; width: 32px; height: 32px; }
.footer-company {
  font: 600 14px 'Plus Jakarta Sans', sans-serif;
  color: #e2e8f0;
  margin: 0 0 12px;
}
.footer-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: #64748b;
  max-width: 320px;
  margin: 0 0 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #94a3b8;
  transition: all .25s ease;
}
.footer-social a:hover { color: #34d399; border-color: rgba(52, 211, 153, 0.3); transform: translateY(-2px); }

.footer-column h4 {
  font: 700 12px 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e2e8f0;
  margin: 0 0 18px;
}
.footer-column ul { list-style: none; margin: 0; padding: 0; }
.footer-column li { margin-bottom: 11px; font-size: 13.5px; line-height: 1.5; }
.footer-column a { color: #94a3b8; text-decoration: none; transition: color .2s; }
.footer-column a:hover { color: #34d399; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-bottom p {
  order: 2;
  flex: 0 0 auto;
  font-size: 13px;
  color: #64748b;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}
.footer-eco-bottom {
  display: flex;
  order: 1;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  min-width: 0;
  width: auto;
}
.footer-eco-label { flex: 0 0 auto; color: #94a3b8; margin-right: 4px; }
.footer-eco-bottom a {
  flex: 0 0 auto;
  min-width: 0;
  font: 600 13px 'Plus Jakarta Sans', sans-serif;
  color: #94a3b8; text-decoration: none; transition: color .2s;
  text-align: center;
  white-space: nowrap;
}
.footer-eco-bottom a:hover { color: #fbbf24; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 28px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { gap: 12px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 28px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-eco-bottom { gap: 6px; }
  .footer-eco-label { margin-right: 1px; font-size: 12px; }
  .footer-eco-bottom a { font-size: 11px; }
  .footer-bottom p { font-size: 12px; white-space: normal; }
}
