        /* ── HERO COMPATTO ── */
.hero {
  min-height: auto;
  padding: 50px 20px 60px;
}

.hero-egg {
  margin-bottom: 6px;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 10px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-top: 4px;
}

.lang-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

/* Da <button> a <a>: servono display e text-decoration, che un link non ha per conto suo */
.lang-btn {
  display: inline-block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.38);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
  background: white;
  color: #764ba2;
  border-color: white;
}

/* ── CONTENT ── */
.privacy-wrap {
  background: #fafafa;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px 70px;
}

/* ── KID-SAFE BANNER ── */
.kid-safe-banner {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 2px solid #4caf50;
  border-radius: 22px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.15);
}

.kid-safe-banner .ksb-icon {
  font-size: 2.6rem;
  flex-shrink: 0;
}

.kid-safe-banner h2 {
  font-size: 1rem;
  color: #2e7d32;
  font-weight: 800;
  margin-bottom: 4px;
}

.kid-safe-banner p {
  font-size: 0.88rem;
  color: #388e3c;
  line-height: 1.5;
}

/* ── LAST UPDATED ── */
.last-updated {
  text-align: right;
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 30px;
}

/* ── SECTION CARDS ── */
.psection {
  background: white;
  border-radius: 22px;
  padding: 28px 32px;
  margin-bottom: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #667eea;
}

.psection.green {
  border-color: #4caf50;
}

.psection.orange {
  border-color: #ff9800;
}

.psection.gold {
  border-color: #ffd700;
}

.psection.teal {
  border-color: #009688;
}

.psection.dark {
  border-color: #444;
}

.psection-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.psection-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
}

.psection h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #2d2d2d;
}

.psection p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.psection p:last-child {
  margin-bottom: 0;
}

.psection ul {
  padding-left: 20px;
  margin: 8px 0;
}

.psection ul li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 3px;
}

/* ── HIGHLIGHT ── */
.highlight {
  background: #fff8e1;
  border: 2px solid #ffd700;
  border-radius: 14px;
  padding: 14px 18px;
  margin: 14px 0;
  font-size: 0.91rem;
  color: #555;
  line-height: 1.7;
}

.highlight strong {
  color: #e65100;
}

.highlight a {
  color: #764ba2;
  font-weight: 600;
}

/* ── DATA TABLE ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 0.88rem;
}

.data-table th {
  background: #f3f4ff;
  color: #333;
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
}

.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  vertical-align: middle;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.pill {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.pill-green {
  background: #e8f5e9;
  color: #2e7d32;
}

.pill-orange {
  background: #fff3e0;
  color: #e65100;
}

.pill-blue {
  background: #e3f2fd;
  color: #1565c0;
}

/* ── CONTACT CARD (ricalca .final-cta) ── */
.contact-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 22px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '🥚';
  position: absolute;
  font-size: 14rem;
  opacity: 0.06;
  bottom: -50px;
  right: -30px;
  pointer-events: none;
}

.contact-card h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 22px;
  line-height: 1.7;
}

.contact-card a {
  display: inline-block;
  background: white;
  color: #764ba2;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 38px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

/* ── LANGUAGE VISIBILITY ── */
.lang-it .en-only {
  display: none;
}

.lang-en .it-only {
  display: none;
}

@media (max-width: 600px) {
  .psection {
    padding: 20px 18px;
  }

  .kid-safe-banner {
    flex-direction: column;
    text-align: center;
  }

  .data-table {
    font-size: 0.8rem;
  }

  .data-table th,
  .data-table td {
    padding: 8px 8px;
  }

  .lang-toggle {
    top: 12px;
    right: 12px;
  }
}