/* ===== SHARED FOOTER ===== */
.site-footer-wrap {
  border-top: 1px solid #1F2937;
  margin-top: 64px;
  padding: 24px 0 16px;
  background: #0B0F14;
  width: 100%;
}

.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 0.7fr 1fr 0.7fr;
  gap: 40px;
  margin-bottom: 20px;
}

.site-footer-brand {
  margin-bottom: 10px;
}

.site-footer-brand img {
  height: 40px;
  width: auto;
}

.site-footer-tag {
  font-size: 14px;
  color: #6B7280;
  max-width: 300px;
  line-height: 1.6;
}

.site-footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #4B5563;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.site-footer-col a {
  display: block;
  color: #6B7280;
  text-decoration: none;
  padding: 5px 0;
  font-size: 14px;
  transition: color 0.2s;
}

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

.site-footer-link-btn {
  display: block;
  background: none;
  border: none;
  padding: 5px 0;
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.site-footer-link-btn:hover {
  color: #E5E7EB;
}

.site-footer-bottom {
  border-top: 1px solid #1F2937;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #4B5563;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  bottom: 24px;
  z-index: 1000;
  display: none;
  width: min(520px, calc(100vw - 32px));
  background: #161D2B;
  border: 1px solid #2E3A50;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  padding: 18px 20px 16px;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-banner.show {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cookie-banner-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #F1F5FF;
  letter-spacing: 0.01em;
}

.cookie-banner-copy {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #8B9AB8;
}

.cookie-banner-copy a {
  color: #9B8FD4;
  text-decoration: none;
}

.cookie-banner-copy a:hover {
  color: #BDB3E8;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
}

.cookie-btn {
  flex: 1;
  border: 1px solid #2E3A50;
  background: #1E2840;
  color: #C5D0E8;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-align: center;
}

.cookie-btn:hover {
  background: #253050;
  border-color: #3D4E6A;
  color: #E8EEFF;
}

.cookie-btn.accept {
  background: #22c55e;
  border-color: #22c55e;
  color: #042410;
  font-weight: 700;
}

.cookie-btn.accept:hover {
  background: #16a34a;
  border-color: #16a34a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .site-footer-grid {
    grid-template-columns: 1.5fr 1fr 0.7fr 1fr 0.7fr;
    gap: 24px;
  }
}

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

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

@media (max-width: 480px) {
  .site-footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
