/* Privacy policy page styles */

.policy-page {
  padding: 8rem 2rem 5rem;
  min-height: 100vh;
}
.policy-inner {
  max-width: 760px;
  margin: 0 auto;
}

.policy-header {
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.policy-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.policy-app {
  font-size: 1rem;
  color: var(--gray-light);
  margin-bottom: 0.25rem;
}
.policy-meta {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.policy-body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.policy-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.policy-section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--off-white);
  margin: 1.5rem 0 0.5rem;
}
.policy-section h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.policy-section p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(229,86,31,0.4);
  transition: all 0.2s;
}
.policy-section a:hover {
  text-decoration-color: var(--orange);
}
.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.policy-section ul li {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.65;
  padding-left: 1.25rem;
  position: relative;
}
.policy-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gray);
}

/* GDPR rights grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.right-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.right-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.right-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Third-party table */
.third-party-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.tp-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.5fr;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border);
}
.tp-row:last-child { border-bottom: none; }
.tp-header {
  background: var(--surface-2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

@media (max-width: 600px) {
  .tp-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .tp-header { display: none; }
  .tp-row span:not(:first-child) { padding-left: 0.5rem; }
}
