/* ===============================
   PRIVACY POLICY – DARK SAAS
   Clean • Semantic • Premium
================================ */

.dr1privacypolicy {
  font-family: 'Poppins', sans-serif;
  line-height: 1.9;
  color: #e5e7eb;
  padding: 120px 18px;

  background:
    radial-gradient(circle at top, rgba(56,189,248,0.14), transparent 45%),
    linear-gradient(180deg, #020617, #020617);
}

/* ===============================
   MAIN CONTAINER (GLASS CARD)
================================ */

.dr1privacypolicy .container {
  max-width: 1000px;
  margin: auto;
  padding: 70px 70px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);

  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 50px 150px rgba(0,0,0,0.95),
    inset 0 0 0 1px rgba(255,255,255,0.05);

  animation: policyFadeUp 0.9s ease forwards;
}

/* Improve readable width */
.dr1privacypolicy .policy-content {
  max-width: 820px;
  margin: auto;
}

/* ===============================
   HEADER
================================ */

.dr1privacypolicy .policy-header {
  margin-bottom: 40px;
}

.dr1privacypolicy h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 18px;
  letter-spacing: -0.6px;
  position: relative;
}

/* Gradient underline */
.dr1privacypolicy h1::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin-top: 16px;
  border-radius: 4px;
  background: linear-gradient(90deg, #38bdf8, #7c3aed);
}

/* Intro paragraph */
.dr1privacypolicy .policy-intro {
  font-size: 1.05rem;
  color: #dbeafe;
  margin-bottom: 12px;
}

/* Last updated text */
.dr1privacypolicy .policy-updated {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===============================
   SECTION HEADINGS
================================ */

.dr1privacypolicy h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-top: 52px;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

/* ===============================
   TEXT
================================ */

.dr1privacypolicy p {
  font-size: 1rem;
  color: #cbd5f5;
  margin-bottom: 18px;
}

.dr1privacypolicy strong {
  color: #f8fafc;
  font-weight: 600;
}

/* ===============================
   LISTS
================================ */

.dr1privacypolicy ul {
  margin: 20px 0 30px;
  padding-left: 26px;
}

.dr1privacypolicy li {
  margin-bottom: 14px;
  color: #cbd5f5;
  font-size: 0.98rem;
}

/* Accent bullets */
.dr1privacypolicy li::marker {
  color: #38bdf8;
}

/* ===============================
   LINKS
================================ */

.dr1privacypolicy a {
  color: #38bdf8;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.dr1privacypolicy a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.dr1privacypolicy a:focus {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
}

/* ===============================
   ADDRESS BLOCK
================================ */

.dr1privacypolicy .policy-address {
  font-style: normal;
  line-height: 1.8;
  margin-top: 10px;
  padding: 18px 20px;

  border-left: 3px solid #38bdf8;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
}

/* ===============================
   SECTION SPACING
================================ */

.dr1privacypolicy section {
  margin-bottom: 40px;
}

/* ===============================
   ENTRY ANIMATION
================================ */

@keyframes policyFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .dr1privacypolicy .container {
    animation: none;
  }
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

@media (max-width: 992px) {
  .dr1privacypolicy .container {
    padding: 55px 48px;
  }

  .dr1privacypolicy h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .dr1privacypolicy {
    padding: 90px 14px;
  }

  .dr1privacypolicy .container {
    padding: 42px 32px;
    border-radius: 26px;
  }

  .dr1privacypolicy h1 {
    font-size: 2.1rem;
  }

  .dr1privacypolicy h2 {
    font-size: 1.45rem;
  }
}

@media (max-width: 480px) {
  .dr1privacypolicy .container {
    padding: 34px 24px;
  }

  .dr1privacypolicy h1 {
    font-size: 1.9rem;
  }

  .dr1privacypolicy p,
  .dr1privacypolicy li {
    font-size: 0.95rem;
  }
}