/* =========================================
   PRIVACY.CSS - Premium Privacy Page Styling
========================================= */

.privacy-app {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px 60px;
  animation: fadeUp 0.6s ease-out forwards;
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
  text-align: center;
  padding: 50px 30px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  margin-bottom: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #93c5fd;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-content h2 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #60a5fa, #c084fc, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-content p {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================
   STATS GRID
========================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.stat-card span { font-size: 34px; display: block; margin-bottom: 16px; }
.stat-card h3 { font-size: 18px; color: #fff; margin-bottom: 8px; font-weight: 700; }
.stat-card p { font-size: 14px; color: #94a3b8; line-height: 1.5; }

/* =========================================
   POLICY CARDS
========================================= */
.policy-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.policy-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 34px;
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

.policy-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.policy-icon {
  width: 65px; height: 65px;
  border-radius: 18px;
  display: flex; justify-content: center; align-items: center;
  font-size: 30px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(147,51,234,0.2));
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.policy-card h3 { font-size: 24px; color: #fff; margin-bottom: 16px; font-weight: 800; }
.policy-card p { font-size: 16px; color: #cbd5e1; line-height: 1.8; }

/* =========================================
   ANIMATIONS & RESPONSIVE
========================================= */
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero-content h2 { font-size: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .privacy-app { padding: 20px 15px 50px; }
  .hero-section { padding: 40px 20px; border-radius: 28px; }
  .hero-content h2 { font-size: 32px; }
  .stats-grid { grid-template-columns: 1fr; gap: 15px; }
  .policy-card { padding: 26px 20px; border-radius: 24px; }
  .policy-card h3 { font-size: 22px; }
  .policy-icon { width: 55px; height: 55px; font-size: 26px; }
}
