/* ========== PRIVACY POLICY - PROFESSIONAL DESIGN ========== */

.privacy-page {
  min-height: 80vh;
}

/* Hero Section */
.privacy-hero {
  background: linear-gradient(135deg, rgba(116, 102, 205, 0.95) 0%, rgba(90, 78, 170, 0.95) 50%, rgba(74, 64, 150, 0.95) 100%);
  padding: 2.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.privacy-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}

.hero-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Policy Content */
.policy-content {
  margin-top: 2.5rem;
  padding-bottom: 4rem;
}

/* Table of Contents */
.toc-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  margin-bottom: 2rem;
}

.toc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}

.toc-header i {
  color: #feb139;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  color: #4b5563;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.toc-item:hover {
  background: #fef3cd;
  color: #1a1a2e;
}

.toc-num {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef3cd, #feb139);
  color: #fff;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Policy Sections */
.policy-sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  scroll-margin-top: 2rem;
  transition: box-shadow 0.25s ease;
}

.policy-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.card-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, #fafafa, #f5f5f5);
  border-bottom: 1px solid #f0f0f0;
}

.section-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(135deg, rgba(116, 102, 205, 0.95), rgba(74, 64, 150, 0.95)); */
  background: linear-gradient(135deg, #fef3cd, #feb139);
  color: #fff;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.card-header-row h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.card-body {
  padding: 1.5rem 1.75rem;
}

.card-body p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.card-body p:last-child {
  margin-bottom: 0;
}

/* Feature Lists */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f8f8f8;
}

.feature-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.list-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef3cd, #feb139);
  color: #fff;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-top: 2px;
}

.feature-list li div:last-child {
  color: #4b5563;
  line-height: 1.6;
}

.feature-list li strong {
  color: #1a1a2e;
}

.sub-list {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
}

.sub-list li {
  display: list-item;
  padding: 0.3rem 0;
  border-bottom: none;
  font-size: 0.92rem;
}

/* Highlight Box */
.highlight-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  color: #fff;
  border-radius: 10px;
  font-size: 1.1rem;
}

.highlight-box p {
  color: #1e40af;
  margin-bottom: 0;
}

/* Contact Highlight */
.contact-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #fef3cd, #fff7e0);
  border-radius: 10px;
  border: 1px solid #feb139;
  margin-top: 0.5rem;
}

.contact-highlight i {
  color: #feb139;
  font-size: 1.2rem;
}

.contact-highlight a {
  color: #1a1a2e;
  text-decoration: none;
  font-weight: 600;
}

.contact-highlight a:hover {
  color: #feb139;
}

/* Company Info */
.company-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.company-row {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f8f8f8;
}

.company-row:last-child {
  border-bottom: none;
}

.company-label {
  min-width: 140px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.company-value {
  color: #4b5563;
  line-height: 1.5;
}

/* Effectiveness Box */
.effectiveness-box {
  display: flex;
  gap: 2rem;
}

.eff-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eff-row i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf4;
  color: #16a34a;
  border-radius: 8px;
  font-size: 1rem;
}

.eff-label {
  font-size: 0.82rem;
  color: #9ca3af;
  display: block;
}

.eff-value {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 0.95rem;
}

/* Links */
.policy-card a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.policy-card a:hover {
  color: #feb139;
}

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

@media (max-width: 992px) {
  .toc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .company-label {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .privacy-hero {
    padding: 2rem 0 1.5rem;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .toc-grid {
    grid-template-columns: 1fr;
  }

  .card-header-row {
    padding: 1rem 1.25rem;
  }

  .card-body {
    padding: 1.25rem;
  }

  .effectiveness-box {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .privacy-hero {
    padding: 1.5rem 0 1.25rem;
  }

  .hero-title {
    font-size: 1.15rem;
  }

  .toc-card {
    padding: 1rem 1.25rem;
  }

  .feature-list li {
    flex-direction: column;
    gap: 0.5rem;
  }

  .list-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 0.75rem;
  }
}
