/* ============================================
   Privacy Page — Navigation Links (shared)
   ============================================ */
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-link--active {
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-light);
}

/* ============================================
   Privacy Page Layout
   ============================================ */
.privacy-page {
  position: relative;
  z-index: 1;
  padding: 48px 0 80px;
}

.privacy-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease;
}

/* ============================================
   Privacy Header
   ============================================ */
.privacy-header {
  text-align: center;
  padding: 48px 32px 40px;
  background: var(--gradient-bg);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .privacy-header {
  background: var(--bg-tertiary);
}

.privacy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  margin-bottom: 20px;
}

.privacy-icon svg {
  width: 28px;
  height: 28px;
}

.privacy-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.privacy-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   Privacy Body — Sections
   ============================================ */
.privacy-body {
  padding: 16px 0;
}

.privacy-section {
  padding: 28px 36px;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
}

.privacy-section:last-child {
  border-bottom: none;
}

.privacy-section:hover {
  background: var(--bg-tertiary);
}

.privacy-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-en);
}

.privacy-section-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 8px;
}

.privacy-section-text:last-child {
  margin-bottom: 0;
}

/* List */
.privacy-list {
  margin: 12px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-list li {
  position: relative;
  padding-right: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

[dir="ltr"] .privacy-list li {
  padding-right: 0;
  padding-left: 20px;
}

.privacy-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

[dir="ltr"] .privacy-list li::before {
  right: auto;
  left: 0;
}

/* ============================================
   Privacy Closing
   ============================================ */
.privacy-closing {
  text-align: center;
  padding: 36px 32px 44px;
  background: var(--gradient-bg);
  border-top: 1px solid var(--border);
}

[data-theme="dark"] .privacy-closing {
  background: var(--bg-tertiary);
}

.closing-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.closing-ornament svg {
  width: 120px;
  height: 24px;
}

.closing-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.closing-contact-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.closing-email {
  margin: 0 auto;
}

/* ============================================
   Footer (simplified for privacy)
   ============================================ */
.privacy-page + .footer {
  padding-top: 0;
  border-top: none;
  background: transparent;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .privacy-page {
    padding: 32px 0 48px;
  }

  .privacy-header {
    padding: 36px 20px 32px;
  }

  .privacy-title {
    font-size: 1.5rem;
  }

  .privacy-intro {
    font-size: 0.88rem;
  }

  .privacy-section {
    padding: 22px 20px;
  }

  .privacy-section-title {
    font-size: 0.95rem;
    gap: 10px;
  }

  .section-number {
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
  }

  .privacy-section-text {
    font-size: 0.85rem;
  }

  .privacy-closing {
    padding: 28px 20px 36px;
  }

  .nav-link {
    font-size: 0.78rem;
    padding: 5px 10px;
  }
}

@media (max-width: 480px) {
  .privacy-icon {
    width: 48px;
    height: 48px;
  }

  .privacy-icon svg {
    width: 22px;
    height: 22px;
  }

  .privacy-section {
    padding: 18px 16px;
  }

  .privacy-section-title {
    font-size: 0.9rem;
  }
}
