/* ============================================================
   GUIDA FINANCIER — inner.css (legal, about, security pages)
   ============================================================ */

/* ── About placeholder ── */
.about-placeholder {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.placeholder-icon {
  font-size: 32px;
  color: var(--gold);
}

/* ── Beliefs grid ── */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.belief {
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: background 0.3s;
}
.belief:hover { background: var(--surface-2); }
.belief-number {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  margin-bottom: 16px;
}
.belief h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.belief p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Legal pages ── */
.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin: 28px 0 10px;
  letter-spacing: 0.03em;
}
.legal-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  list-style: disc;
}
.legal-content a {
  color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--gold); }
.legal-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 60px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.legal-meta p {
  font-size: 13px;
  color: var(--text-subtle);
}
.legal-meta strong { color: var(--text-muted); }

/* ── Security page ── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.security-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.security-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 16px;
}
.security-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.security-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 700px) {
  .beliefs-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .legal-meta { flex-direction: column; gap: 12px; }
  .belief { padding: 32px; }
}
