/* ===== VARIABLES (reprises du site principal) ===== */
:root {
  --bg:        #faf9f6;
  --bg2:       #f3f0e9;
  --bg3:       #ffffff;
  --texte:     #1c1c1a;
  --texte2:    #6b6b68;
  --texte3:    #5F5F5A;
  --vert:      #1B4FD8;
  --vert2:     #1440B0;
  --vert-bg:   #eff6ff;
  --vert-bd:   #bfdbfe;
  --or:        #EA580C;
  --or-bg:     #fff7ed;
  --or-bd:     #fed7aa;
  --border:    #e5e0d5;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius:    14px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--texte);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, .logo { font-family: 'Playfair Display', Georgia, serif; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--vert); border-radius: 2px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 0 5%; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,249,246,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }
.logo { font-size: 1.2rem; font-weight: 800; color: var(--texte); text-decoration: none; letter-spacing: 0.01em; }
.logo span { color: var(--vert); font-style: italic; }
.nav-links { display: flex; list-style: none; gap: 1.5rem; }
.nav-links a { text-decoration: none; font-size: 0.82rem; font-weight: 500; color: var(--texte2); letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--texte); }
.nav-cta { background: var(--vert) !important; color: white !important; padding: 0.5rem 1.2rem !important; border-radius: 8px !important; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--vert2) !important; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: var(--texte); border-radius: 1px; transition: all 0.3s; }

/* ===== FOOTER ===== */
footer { background: #1a1a18; border-top: 1px solid #2a2a28; padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand .logo { display: block; margin-bottom: 0.75rem; color: white; }
.footer-brand .logo span { color: #93C5FD; }
.footer-brand p { font-size: 0.78rem; color: #666; line-height: 1.65; }
footer h4 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #444; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a { color: #555; text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
footer ul li a:hover { color: #93C5FD; }
.footer-bottom { border-top: 1px solid #252523; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.72rem; color: #3a3a38; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #3a3a38; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #666; }

/* ===== PAGE BLOG (liste) ===== */
.blog-layout {
  max-width: 1200px; margin: 0 auto;
  padding: 100px 5% 5rem;
  display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start;
}
@media(max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }

.blog-hero {
  padding: 100px 5% 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.blog-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; color: var(--texte); margin-bottom: 0.75rem; }
.blog-hero p { font-size: 0.95rem; color: var(--texte2); max-width: 600px; line-height: 1.75; }

.blog-list { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 2.5rem; }

.article-card {
  background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 180px 1fr; gap: 0;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none; color: var(--texte);
}
.article-card:hover { border-color: var(--vert-bd); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-card-img {
  width: 180px; height: 140px; object-fit: cover;
  background: var(--bg2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.article-card-img img { width: 100%; height: 100%; object-fit: cover; }
.article-card-img .img-placeholder {
  width: 100%; height: 140px; background: var(--vert-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.article-card-body { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.article-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vert); background: var(--vert-bg); border: 1px solid var(--vert-bd); padding: 0.2rem 0.6rem; border-radius: 100px; display: inline-block; }
.article-card-body h2 { font-size: 1rem; font-weight: 700; line-height: 1.35; color: var(--texte); }
.article-excerpt { font-size: 0.82rem; color: var(--texte2); line-height: 1.65; }
.article-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.72rem; color: var(--texte3); margin-top: auto; }
.article-meta time { }
.btn-lire { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--vert); color: white; padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: background 0.2s; margin-top: 0.5rem; align-self: flex-start; }
.btn-lire:hover { background: var(--vert2); }

@media(max-width: 600px) {
  .article-card { grid-template-columns: 1fr; }
  .article-card-img { width: 100%; }
  .article-card-img .img-placeholder { width: 100%; }
}

/* ===== SIDEBAR ===== */
.blog-sidebar { padding-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
  background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.sidebar-widget h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--texte); }
.sidebar-widget p { font-size: 0.82rem; color: var(--texte2); line-height: 1.65; margin-bottom: 1rem; }
.sidebar-widget .btn-sw { display: block; text-align: center; background: var(--vert); color: white; padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.sidebar-widget .btn-sw:hover { background: var(--vert2); }
.sw-session { background: var(--or-bg); border-color: var(--or-bd); }
.sw-session h3 { color: var(--or); }
.sw-session .btn-sw { background: var(--or); }
.sw-session .btn-sw:hover { background: #c2460a; }

/* ===== PAGE ARTICLE ===== */
.article-layout {
  max-width: 1200px; margin: 0 auto;
  padding: 100px 5% 5rem;
  display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start;
}
@media(max-width: 900px) { .article-layout { grid-template-columns: 1fr; } }

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--texte3); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--vert); text-decoration: none; }
.breadcrumb span { color: var(--texte3); }

.article-header { margin-bottom: 2rem; }
.article-header .article-cat { margin-bottom: 1rem; }
.article-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; color: var(--texte); margin-bottom: 1rem; }
.article-header .article-meta { margin-bottom: 1.5rem; }

.author-block {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 2rem;
}
.author-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--vert-bd); }
.author-photo-placeholder { width: 56px; height: 56px; border-radius: 50%; background: var(--vert); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.author-info strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--texte); }
.author-info span { font-size: 0.75rem; color: var(--texte3); line-height: 1.5; }

.article-hero-img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); margin-bottom: 2rem; }

/* Article content styles */
.article-content { line-height: 1.8; }
.article-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--texte); margin: 2.5rem 0 1rem; }
.article-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--texte); margin: 2rem 0 0.75rem; }
.article-content p { font-size: 0.95rem; color: var(--texte2); margin-bottom: 1.25rem; line-height: 1.85; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-content li { font-size: 0.95rem; color: var(--texte2); line-height: 1.75; margin-bottom: 0.4rem; }
.article-content strong { color: var(--texte); font-weight: 600; }
.article-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.88rem; }
.article-content th { background: var(--vert); color: white; padding: 0.75rem; text-align: left; font-weight: 600; }
.article-content td { padding: 0.65rem 0.75rem; border-bottom: 1px solid var(--border); color: var(--texte2); }
.article-content tr:nth-child(even) td { background: var(--bg2); }
.article-content blockquote { border-left: 3px solid var(--vert); padding: 1rem 1.5rem; background: var(--vert-bg); border-radius: 0 8px 8px 0; margin: 1.5rem 0; font-style: italic; color: var(--texte); }

/* CTA intermédiaire */
.cta-mid {
  background: var(--vert-bg); border: 1.5px solid var(--vert-bd);
  border-radius: var(--radius); padding: 1.75rem; margin: 2.5rem 0;
  text-align: center;
}
.cta-mid p { font-size: 0.9rem; color: var(--texte); font-weight: 500; margin-bottom: 1rem; }
.cta-mid a { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--vert); color: white; padding: 0.75rem 1.5rem; border-radius: 8px; font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.cta-mid a:hover { background: var(--vert2); }

/* CTA final article */
.cta-article-final {
  background: var(--or-bg); border: 1.5px solid var(--or-bd);
  border-radius: var(--radius); padding: 2rem; margin: 3rem 0;
  text-align: center;
}
.cta-article-final h3 { font-size: 1.2rem; font-weight: 800; color: var(--texte); margin-bottom: 0.75rem; }
.cta-article-final p { font-size: 0.88rem; color: var(--texte2); margin-bottom: 1.25rem; }
.cta-article-final a { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--or); color: white; padding: 0.85rem 1.75rem; border-radius: 8px; font-size: 0.9rem; font-weight: 700; text-decoration: none; }
.cta-article-final a:hover { background: #c2460a; }

/* Articles liés */
.articles-lies { margin-top: 3rem; padding-top: 2rem; border-top: 1.5px solid var(--border); }
.articles-lies h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--texte); }
.articles-lies-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width: 600px) { .articles-lies-grid { grid-template-columns: 1fr; } }
.article-lie {
  background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  text-decoration: none; color: var(--texte);
  transition: border-color 0.3s, transform 0.3s;
}
.article-lie:hover { border-color: var(--vert-bd); transform: translateY(-2px); }
.article-lie .article-cat { margin-bottom: 0.5rem; }
.article-lie h4 { font-size: 0.9rem; font-weight: 600; line-height: 1.35; color: var(--texte); }

/* Partage */
.share-section { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.share-label { font-size: 0.78rem; color: var(--texte3); font-weight: 500; }
.share-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.78rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: opacity 0.2s; }
.share-btn:hover { opacity: 0.85; }
.share-wa { background: #25d366; color: white; }
.share-fb { background: #1877F2; color: white; }
.share-copy { background: var(--bg2); color: var(--texte2); border: 1px solid var(--border); }

/* ===== PAGE RESSOURCES ===== */
.ressources-layout { max-width: 900px; margin: 0 auto; padding: 100px 5% 5rem; }
.ressources-layout h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 0.75rem; color: var(--texte); }
.ressources-layout > p { font-size: 0.95rem; color: var(--texte2); margin-bottom: 3rem; line-height: 1.75; }

.ressource-bloc {
  background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2rem; margin-bottom: 2rem;
}
.ressource-bloc h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--texte); }
.ressource-bloc p { font-size: 0.88rem; color: var(--texte2); line-height: 1.7; margin-bottom: 1.25rem; }

/* Formulaire lead */
.lead-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 480px; }
.lead-form input { padding: 0.85rem 1.1rem; border: 1.5px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 0.88rem; color: var(--texte); background: white; transition: border-color 0.2s; }
.lead-form input:focus { outline: none; border-color: var(--vert); }
.lead-form button { padding: 0.9rem 1.5rem; background: var(--vert); color: white; border: none; border-radius: 8px; font-family: inherit; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.lead-form button:hover { background: var(--vert2); }
.form-success { display: none; padding: 1rem; background: var(--vert-bg); border: 1px solid var(--vert-bd); border-radius: 8px; font-size: 0.85rem; color: var(--vert); font-weight: 500; }

/* Checklist */
.checklist-form { display: flex; flex-direction: column; gap: 0.75rem; }
.checklist-item { display: flex; align-items: center; gap: 0.85rem; padding: 0.75rem 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; cursor: pointer; transition: background 0.2s; }
.checklist-item:hover { background: var(--bg2); }
.checklist-item input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--vert); cursor: pointer; flex-shrink: 0; }
.checklist-item label { font-size: 0.88rem; color: var(--texte); cursor: pointer; }
.checklist-result { display: none; padding: 1.5rem; border-radius: var(--radius); margin-top: 1rem; text-align: center; }
.checklist-result h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.checklist-result p { font-size: 0.88rem; line-height: 1.7; }
.checklist-result a { color: var(--vert); font-weight: 600; }

/* Lexique accordéon */
.lexique-list { display: flex; flex-direction: column; }
.lexique-item { border-bottom: 1px solid var(--border); }
.lexique-btn { width: 100%; background: none; border: none; padding: 0.9rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-family: inherit; color: var(--texte); }
.lexique-btn span:first-child { font-size: 0.88rem; font-weight: 600; }
.lexique-icon { color: var(--vert); font-size: 1.1rem; transition: transform 0.3s; }
.lexique-item.open .lexique-icon { transform: rotate(45deg); }
.lexique-def { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; font-size: 0.83rem; color: var(--texte2); line-height: 1.7; }
.lexique-item.open .lexique-def { max-height: 200px; padding-bottom: 0.9rem; }

/* ===== PAGE COMPARATIF ===== */
.comparatif-layout { max-width: 1100px; margin: 0 auto; padding: 100px 5% 5rem; }
.comparatif-layout h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 0.75rem; color: var(--texte); }
.comparatif-intro { font-size: 0.95rem; color: var(--texte2); line-height: 1.8; margin-bottom: 3rem; max-width: 720px; }

.table-wrap { overflow-x: auto; margin-bottom: 3rem; border-radius: var(--radius); border: 1.5px solid var(--border); }
.comparatif-table { width: 100%; border-collapse: collapse; min-width: 700px; font-size: 0.82rem; }
.comparatif-table th { background: var(--vert); color: white; padding: 0.85rem 1rem; text-align: left; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.03em; white-space: nowrap; }
.comparatif-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: var(--texte2); vertical-align: top; }
.comparatif-table tr:last-child td { border-bottom: none; }
.comparatif-table tr:nth-child(even) td { background: var(--bg2); }
.comparatif-table td:first-child { font-weight: 600; color: var(--texte); white-space: nowrap; }
.comparatif-table .highlight td { background: var(--vert-bg) !important; }
.comparatif-table .highlight td:first-child { color: var(--vert); }

.profils-section h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--texte); }
.profils-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.profil-card { background: var(--bg3); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.profil-card .profil-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.profil-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--texte); }
.profil-card p { font-size: 0.82rem; color: var(--texte2); line-height: 1.65; }
.profil-card .reco { display: inline-block; margin-top: 0.75rem; font-size: 0.75rem; font-weight: 600; color: var(--vert); background: var(--vert-bg); border: 1px solid var(--vert-bd); padding: 0.25rem 0.65rem; border-radius: 100px; }

/* ===== SECTION BLOG ACCUEIL ===== */
.blog-cards-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
@media(max-width: 768px) { .blog-cards-home { grid-template-columns: 1fr; } }
.blog-card-home {
  background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  text-decoration: none; color: var(--texte);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.blog-card-home:hover { border-color: var(--vert-bd); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-home .article-cat { margin-bottom: 0.25rem; }
.blog-card-home h3 { font-size: 0.95rem; font-weight: 700; line-height: 1.35; color: var(--texte); }
.blog-card-home .article-excerpt { font-size: 0.8rem; color: var(--texte2); line-height: 1.6; }
.blog-card-home .article-meta { font-size: 0.7rem; color: var(--texte3); margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--border); }

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  nav.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: white; padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem; box-shadow: var(--shadow-md);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .blog-layout { padding: 90px 4% 4rem; }
  .article-layout { padding: 90px 4% 4rem; }
}

/* ===== UTILS ===== */
.s-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--vert);
  margin-bottom: 1rem; background: var(--vert-bg);
  border: 1px solid var(--vert-bd); padding: 0.3rem 0.85rem; border-radius: 100px;
}
.btn-main {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--vert); color: white;
  padding: 0.95rem 2rem; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(27,79,216,0.25);
}
.btn-main:hover { background: var(--vert2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,79,216,0.3); }

/* ===== SKIP LINK (accessibilité) ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--vert);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 6px 6px;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
}

/* ===== BURGER BUTTON (accessibilité) ===== */
button.burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

/* ===== TABLE OVERFLOW MOBILE ===== */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}
.table-scroll .comparatif-table {
  border: none;
  border-radius: 0;
  min-width: 800px;
}

/* ===== PAGES LÉGALES ===== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 5% 5rem;
}
.legal-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--texte);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.legal-update {
  color: var(--texte3);
  font-size: 0.82rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}
.legal-wrap section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-wrap section:last-of-type {
  border-bottom: none;
}
.legal-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--texte);
  margin-bottom: 0.75rem;
}
.legal-wrap h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--texte);
  margin: 1rem 0 0.5rem;
}
.legal-wrap p {
  color: var(--texte2);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}
.legal-wrap ul, .legal-wrap ol {
  margin: 0.5rem 0 0.75rem 1.5rem;
  color: var(--texte2);
  line-height: 1.8;
  font-size: 0.92rem;
}
.legal-wrap li {
  margin-bottom: 0.3rem;
}
.legal-wrap a {
  color: var(--vert);
  text-decoration: underline;
}
.legal-wrap a:hover {
  opacity: 0.8;
}
.legal-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.btn-secondary {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--texte2);
  font-size: 0.83rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--vert-bd);
  color: var(--vert);
  background: var(--vert-bg);
}
