/* ========================================
   Legal Pages (Privacy, Terms, Sitemap)
   ======================================== */
.legal-page {
  padding: 100px 24px 80px;
  min-height: 100vh;
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 48px;
}

.legal-inner h2 {
  font-size: 21px;
  font-weight: 600;
  color: var(--black);
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.legal-inner p {
  font-size: 15px;
  color: #424245;
  line-height: 1.6;
  margin-bottom: 12px;
}

.legal-inner ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.legal-inner li {
  font-size: 15px;
  color: #424245;
  line-height: 1.6;
  margin-bottom: 6px;
}

.legal-inner a {
  color: var(--blue-link);
  transition: color 0.2s;
}

.legal-inner a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  font-size: 13px;
  color: #424245;
  line-height: 1.47;
  margin: 0;
}

.cookie-text a {
  color: var(--blue-link);
  transition: color 0.2s;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 400;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.cookie-btn-accept {
  background: var(--blue-link);
  color: white;
}

.cookie-btn-accept:hover {
  background: #0077ed;
}

.cookie-btn-reject {
  background: transparent;
  color: var(--blue-link);
  border: 1px solid var(--blue-link);
}

.cookie-btn-reject:hover {
  background: rgba(41, 151, 255, 0.06);
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
