/* Pagine legali — stile coerente con il sito */
:root {
  --paper: #eef2ec;
  --ink: #0a1518;
  --white: #f7faf5;
  --text: #121d1a;
  --text-dim: #51625b;
  --blue: #128a72;
  --violet: #4fd1ad;
  --grad: linear-gradient(120deg, #0b6b58 0%, #1aa183 45%, #5fd4b0 100%);
  --line: rgba(10, 21, 24, 0.12);
  --font: "General Sans", "Archivo", sans-serif;
  --r-lg: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: #fff; }

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 48px);
  max-width: 1200px; margin: 0 auto;
}
.nav__logo {
  display: inline-flex; align-items: baseline; gap: 10px;
  text-decoration: none; color: var(--text);
}
.nav__mark {
  font-weight: 600; font-size: 1.35rem;
  background: var(--ink); color: var(--white);
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.nav__mark i { font-style: normal; color: var(--violet); }
.nav__name { font-weight: 500; font-size: 1.02rem; }
.nav__back {
  text-decoration: none; color: var(--text-dim); font-size: 0.92rem;
  border: 1px solid var(--line); border-radius: 100px; padding: 9px 20px;
  transition: color 0.2s, border-color 0.2s;
}
.nav__back:hover { color: var(--text); border-color: var(--text-dim); }

.hero {
  max-width: 1200px;
  margin: 8px auto 0;
  padding: 0 clamp(8px, 1.2vw, 16px);
}
.hero__panel {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(44px, 7vw, 84px) clamp(24px, 5vw, 72px);
}
.kicker {
  display: flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; color: #a4b8af; margin-bottom: 18px;
}
.kicker::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad); flex: none;
}
.hero__panel h1 {
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.1;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
}
.hero__meta { margin-top: 20px; color: #a4b8af; font-size: 0.92rem; }

.content {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px) clamp(20px, 4vw, 48px) 24px;
}
.content h2 {
  font-weight: 500; letter-spacing: -0.015em; line-height: 1.2;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  margin: 2.2em 0 0.6em;
  padding-top: 0.6em;
  border-top: 1px solid var(--line);
}
.content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.content p, .content ul, .content ol { margin-bottom: 1em; color: var(--text); }
.content ul, .content ol { padding-left: 1.3em; }
.content li { margin-bottom: 0.4em; }
.content a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.content strong { font-weight: 600; }
.content .muted { color: var(--text-dim); font-size: 0.95rem; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 26px;
  margin: 1.2em 0;
}
.card p:last-child { margin-bottom: 0; }

table {
  width: 100%; border-collapse: collapse; margin: 1em 0 1.4em;
  font-size: 0.95rem;
}
th, td {
  text-align: left; padding: 10px 12px;
  border-bottom: 1px solid var(--line); vertical-align: top;
}
th { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); }

.footer {
  max-width: 1200px; margin: 40px auto 0;
  padding: 26px clamp(20px, 4vw, 48px) 34px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  align-items: center; justify-content: space-between;
  color: var(--text-dim); font-size: 0.9rem;
}
.footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer a { color: var(--text-dim); text-decoration: none; }
.footer a:hover { color: var(--text); }
