/* Caly-Elec — Pages légales (mentions, RGPD) — style cohérent landing */
:root {
    --primary: #f59e0b;
    --bg: #0f172a;
    --surface: #1e293b;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --border: #334155;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    padding: 40px 20px 80px;
    -webkit-font-smoothing: antialiased;
}
.legal-container {
    max-width: 800px;
    margin: 0 auto;
}
.legal-back {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}
.legal-back:hover { text-decoration: underline; }
h1 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}
.legal-lead {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
}
h2 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    margin: 2rem 0 0.7rem;
}
p {
    margin-bottom: 0.9rem;
    color: var(--text);
    font-size: 0.93rem;
}
ul {
    margin: 0.5rem 0 0.9rem 1.5rem;
}
li {
    margin-bottom: 0.4rem;
    font-size: 0.93rem;
    color: var(--text);
}
a {
    color: var(--primary);
    text-decoration: none;
}
a:hover { text-decoration: underline; }
strong { color: #fff; }
code {
    font-family: 'Courier New', monospace;
    background: var(--surface);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.85em;
    color: #fbbf24;
}
.placeholder {
    background: rgba(245, 158, 11, 0.12);
    border-left: 3px solid var(--primary);
    padding: 0.4rem 0.8rem;
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
    display: inline-block;
    margin: 0.2rem 0;
    border-radius: 4px;
}
.legal-meta {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
@media (max-width: 600px) {
    body { padding: 24px 16px 60px; }
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.05rem; }
    p, li { font-size: 0.9rem; }
}
