/* ============================================
   PRUPP DESIGN — LEGAL PAGES
   (Gizlilik Politikası & Kullanım Koşulları)
   ============================================ */

/* ---- Hero Banner ---- */
.legal-hero {
  background: linear-gradient(145deg, var(--secondary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 10rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(67, 97, 238, 0.15) 0%,
    transparent 50%
  );
  pointer-events: none;
}

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

.legal-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Breadcrumb */
.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

.legal-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.legal-breadcrumb a:hover {
  color: var(--white);
}

.legal-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

/* ---- Content Area ---- */
.legal-content {
  padding: 3rem 0 5rem;
}

.legal-body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-primary);
}

.legal-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.legal-body h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  color: var(--secondary);
  margin: 2.5rem 0 0.75rem;
}

.legal-body h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: var(--secondary);
  margin: 1.75rem 0 0.5rem;
}

.legal-body p {
  margin-bottom: 1rem;
}

.legal-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: var(--primary-dark);
}

.legal-body ul {
  margin: 0.5rem 0 1.25rem 1.5rem;
}

.legal-body li {
  margin-bottom: 0.4rem;
  list-style: disc;
}

.legal-body strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .legal-hero {
    padding: 8rem 0 2.5rem;
  }

  .legal-body {
    font-size: 0.95rem;
  }

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