/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  background: #000;
  color: white;
  padding: 48px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 24px;
  height: 24px;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-brand .footer-logo-text {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

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

.footer-bottom-links a,
.footer-bottom-links button {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}

.footer-bottom-links button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.footer-bottom-links a:hover,
.footer-bottom-links button:hover {
  color: white;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.privacy-modal.is-open {
  display: flex;
}

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(12px);
}

.privacy-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(82vh, 860px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #050607;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.52);
}

.privacy-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}

.privacy-modal-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

.privacy-modal-header h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.1;
  letter-spacing: 0;
}

.privacy-modal-close {
  appearance: none;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.82);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.privacy-modal-close span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 28px;
  line-height: 36px;
  transform: translateY(-1px);
}

.privacy-modal-close:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
  color: #fff;
}

.privacy-modal-body {
  overflow-y: auto;
  padding: 24px 26px 28px;
  scrollbar-color: rgba(255,255,255,0.22) transparent;
  background: #050607;
}

.privacy-modal-body p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.65;
}

.privacy-modal-body .privacy-effective {
  color: rgba(255,255,255,0.46);
  font-size: 13px;
}

.privacy-modal-body h3 {
  margin: 24px 0 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}

.privacy-modal-body a {
  color: rgba(255,255,255,0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.privacy-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .privacy-modal {
    align-items: center;
    padding: 12px;
  }

  .privacy-modal-panel {
    width: 100%;
    max-height: 88vh;
    border-radius: 14px;
  }

  .privacy-modal-header {
    padding: 18px 18px 14px;
  }

  .privacy-modal-close {
    width: 36px;
    height: 36px;
  }

  .privacy-modal-close span {
    font-size: 25px;
    line-height: 32px;
  }

  .privacy-modal-body {
    padding: 18px;
  }

  .privacy-modal-body p {
    font-size: 13px;
    line-height: 1.6;
  }
}
