/* ═══════════════════════════════════
   POLITIKA PRIVATNOSTI + UVJETI · PAGE STYLES
   ═══════════════════════════════════ */

/* ── PAGE HERO (isti obrazac kao o-projektu.css .ph) ─── */
.ph {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 80px var(--pad) 88px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ph__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(62,203,164,.1) 0%, transparent 65%);
  pointer-events: none;
}
.ph__shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ph__shape { position: absolute; color: var(--mint); }
.ph__shape--tri {
  width: 120px; top: 10%; right: 8%; opacity: .06;
  animation: sf 14s ease-in-out infinite;
}
.ph__shape--circ {
  width: 180px; bottom: -30px; right: 20%; opacity: .04;
  animation: sf 18s ease-in-out infinite reverse;
}
.ph__body {
  position: relative; z-index: 2;
  max-width: var(--max); width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}
.ph__back {
  font-size: .8rem; font-weight: 600;
  color: rgba(62,203,164,.6); text-decoration: none;
  letter-spacing: .02em; transition: color .2s; width: fit-content;
}
.ph__back:hover { color: var(--mint); }
.ph__label {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--mint); opacity: .7;
}
.ph__h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300; line-height: 1.15;
  color: var(--snow); letter-spacing: -.02em;
}
.ph__h1 em { font-style: italic; color: var(--mint); }
.ph__sub {
  font-size: 1rem; color: var(--sdim);
  line-height: 1.6; max-width: 560px;
}
.ph__updated {
  font-size: .82rem; color: rgba(240,237,230,.4);
}

/* ── LEGAL TABLE (kolačići pregled) ─────────────────── */
.legal-table {
  width: 100%; border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden;
}
.legal-table th, .legal-table td {
  padding: 14px 18px; text-align: left; vertical-align: top;
  font-size: .9rem; border-bottom: 1px solid var(--border);
}
.legal-table th {
  background: rgba(62,203,164,.06);
  font-weight: 700; color: var(--teal-deep);
  font-size: .8rem; letter-spacing: .03em; text-transform: uppercase;
}
.legal-table td { color: var(--t2); }
.legal-table td strong { color: var(--t1); }
.legal-table tr:last-child td { border-bottom: none; }

/* ── LEGAL WARNING (napomena za pravnu provjeru) ────── */
.legal-flag {
  background: rgba(230,160,60,.08);
  border: 1px solid rgba(230,160,60,.3);
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: .88rem; color: var(--t2); line-height: 1.6;
}
.legal-flag strong { color: #a56a1c; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 860px) {
  .ph { padding: 64px var(--pad) 72px; }
}
@media (max-width: 600px) {
  .ph { padding: 52px var(--pad) 60px; }
  .legal-table th, .legal-table td { padding: 11px 12px; font-size: .85rem; }
}
