/* ===== LEGAL PAGES (Privacy, Terms, Support) ===== */

.legal-page {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-body section {
  margin-bottom: 40px;
}

.legal-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.legal-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--white);
}

.legal-body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.legal-body p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.legal-body ul li {
  color: var(--muted);
  line-height: 1.75;
  padding-left: 24px;
  position: relative;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
}

.legal-body a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.legal-body a:hover {
  opacity: 0.8;
}

/* ===== SUPPORT PAGE SPECIFIC ===== */

.support-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.support-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}

.support-card:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
}

.support-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 107, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--coral);
}

.support-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.support-card p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.support-link {
  color: var(--coral);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.support-link:hover {
  opacity: 0.8;
}

/* FAQ Sections */
.faq-section {
  margin-bottom: 36px;
}

.faq-section > h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--white);
}

.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 107, 107, 0.3);
}

.faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.faq-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.faq-item a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .legal-header h1 {
    font-size: 2rem;
  }

  .support-contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .legal-container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .legal-page {
    padding-top: 80px;
  }

  .legal-header h1 {
    font-size: 1.75rem;
  }

  .legal-body h2 {
    font-size: 1.3rem;
  }

  .faq-item {
    padding: 16px 18px;
  }
}
