/* ── POLICY PAGES (privacy + terms) ── */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 24px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.back-btn:hover { opacity: 1; }

.policy-hero {
  position: relative;
  z-index: 1;
  padding: 140px 48px 60px;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeUp 0.7s ease both;
}

.policy-hero .section-label {
  margin-bottom: 16px;
}

.policy-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
}

.policy-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ── POLICY CONTENT ── */
.policy-body {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px 100px;
}

.policy-section {
  margin-bottom: 48px;
  animation: fadeUp 0.6s ease both;
}

.policy-section:nth-child(2) { animation-delay: 0.05s; }
.policy-section:nth-child(3) { animation-delay: 0.1s; }
.policy-section:nth-child(4) { animation-delay: 0.15s; }
.policy-section:nth-child(5) { animation-delay: 0.2s; }
.policy-section:nth-child(6) { animation-delay: 0.25s; }
.policy-section:nth-child(7) { animation-delay: 0.3s; }
.policy-section:nth-child(8) { animation-delay: 0.35s; }
.policy-section:nth-child(9) { animation-delay: 0.4s; }

.policy-section h2 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section h2 .num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-dim);
  border-radius: 6px;
  padding: 2px 8px;
  letter-spacing: 0.05em;
}

.policy-section h3 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 8px;
}

.policy-section p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
}

.policy-section ul li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 6px 0 6px 20px;
  position: relative;
}

.policy-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.policy-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.2s;
}
.policy-contact:hover {
  background: rgba(27,94,75,0.2);
}

.policy-highlight {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 12px 0;
}

.policy-highlight p {
  margin-bottom: 0;
  color: var(--text);
}

@media (max-width: 900px) {
  .policy-hero { padding: 110px 24px 40px; }
  .policy-body { padding: 0 24px 80px; }
}
