/* Unified site footer — all pages */

.site-footer {
  background: #0a0f1a;
  color: #e2e8f0;
  padding: 64px 0 0;
  margin-top: 80px;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid #1e293b;
}

.footer-brand-logo {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand-logo span {
  color: #3b82f6;
}

.footer-brand-desc {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 28px;
}

.footer-trust-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
}

.footer-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  flex-shrink: 0;
}

.footer-tools-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-tool-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.footer-tool-card:hover {
  border-color: #3b82f6;
}

.footer-tool-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.footer-tool-name {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  display: block;
}

.footer-tool-sub {
  font-size: 11px;
  color: #64748b;
  display: block;
}

.footer-mid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid #1e293b;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-col-title--mt {
  margin-top: 28px;
  margin-bottom: 14px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-list li a {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.15s;
}

.footer-link-list li a:hover {
  color: #e2e8f0;
}

.footer-link-arrow {
  color: #334155;
  font-size: 10px;
}

.footer-all-link {
  font-size: 12px;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

.footer-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.footer-stat-card {
  padding: 14px 10px;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 10px;
  text-align: center;
}

.footer-stat-val {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  display: block;
}

.footer-stat-lbl {
  font-size: 10px;
  color: #64748b;
  margin-top: 4px;
  display: block;
  line-height: 1.4;
}

.footer-report-btn {
  display: block;
  padding: 12px 16px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  transition: all 0.2s;
}

.footer-report-btn:hover {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
  border-top: none;
}

.site-footer .footer-bottom p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

body.home-page .site-footer,
body.restaurant-menu-page .site-footer,
body.static-page .site-footer {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .footer-mid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 48px 0 0;
    margin-top: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }

  .footer-brand-desc {
    max-width: 100%;
    font-size: 0.875rem;
  }

  .footer-tools-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-tool-card {
    padding: 12px 14px;
  }

  .footer-mid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 32px 0;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 36px 0 0;
    margin-top: 40px;
  }

  .site-footer .container {
    padding: 0 16px;
  }

  .footer-top {
    gap: 24px;
    padding-bottom: 28px;
  }

  .footer-brand-logo {
    font-size: 1.375rem;
  }

  .footer-trust-pills {
    gap: 6px;
  }

  .footer-trust-pill {
    font-size: 10px;
    padding: 4px 10px;
  }

  .footer-tools-grid {
    grid-template-columns: 1fr;
  }

  .footer-tool-card {
    padding: 12px;
  }

  .footer-mid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .footer-stat-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 0;
  }

  .site-footer .footer-bottom p {
    font-size: 11px;
  }
}
