/* ================================================
   Parts S.r.l. — Privacy & Legal Pages Styles
   ================================================ */


@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@200;300;400;600;700&display=swap');

/* ── FONT FACES ── */





@font-face {
  font-family: 'Parts-Regular';
  src: url('../assets/fonts/Parts-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

.privacy-hero {
  background: var(--violet);
  padding: 120px 48px 64px;
  text-align: center;
}
.privacy-hero .section-label {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  display: inline-flex;
}
.privacy-hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.privacy-hero h1 em {
  font-family: 'Parts-Regular', sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--cyan);
}
.privacy-hero .last-update {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.privacy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}
.privacy-toc {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 56px;
}
.privacy-toc h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.privacy-toc ol {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.privacy-toc ol li a {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  color: var(--violet);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.privacy-toc ol li a:hover { color: var(--violet-dark); text-decoration: underline; }

.privacy-section {
  margin-bottom: 52px;
}
.privacy-section h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-top: 8px;
}
.privacy-section .privacy-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 8px;
}
.privacy-section p,
.privacy-section li {
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}
.privacy-section ul {
  padding-left: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.privacy-section ul li {
  list-style: disc;
}
.privacy-section p + p { margin-top: 14px; }
.privacy-section strong { font-weight: 500; color: var(--text-dark); }
.privacy-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 52px 0;
}
.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet);
  text-decoration: none;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.2s;
}
.privacy-back:hover { gap: 12px; }

@media (max-width: 600px) {
  .privacy-hero { padding: 100px 24px 52px; }
  .privacy-toc { padding: 20px 20px; }
}
