/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 18 2026 | 07:47:48 */
/* ═══════════════════════════════════════════════════════════════
   MAKANZU.COM — CSS Global / Design System (v2 — corrigé)
   Coaching Business Chrétien · J.P. Makanzu · ACCR World Mission
   ═══════════════════════════════════════════════════════════════ */

/* Google Fonts — À charger via <link> dans le <head> de chaque page ou via functions.php :
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=DM+Serif+Display:ital@0;1&display=swap" rel="stylesheet">
*/

/* ── VARIABLES ── */
:root {
  /* Backgrounds */
  --bg: #0E1621;
  --bg2: #131D2B;
  --bg3: #182436;
  --white: #FFF;
  --off: #F3F5F8;

  /* Accents ambre/or */
  --amber: #D4943C;
  --amber-lt: #E8B86D;
  --amber-dk: #B07628;
  --copper: #C47832;

  /* Vert succès */
  --green: #34C77B;

  /* Texte fond sombre */
  --txt: #FFF;
  --txt2: rgba(255,255,255,.65);
  --txt3: rgba(255,255,255,.35);

  /* Texte fond clair */
  --dk-txt: #1A2332;
  --dk-sub: #5A6A7A;
  --dk-faint: #8A96A4;

  /* Bordures */
  --bdr: rgba(255,255,255,.07);

  /* Animation */
  --e: cubic-bezier(.16,1,.3,1);

  /* Typographie */
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Poppins', system-ui, sans-serif;

  /* Rayons */
  --r: 8px;
  --rl: 14px;
  --pill: 100px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--sans); background: var(--bg); color: var(--txt); line-height: 1.7; font-size: 15px; overflow-x: hidden; }

/* FIX 1 — Liens par défaut :
   Les liens SANS classe (dans du texte courant, articles de blog, etc.)
   prennent la couleur ambre. Les liens AVEC une classe (.nav a, .btn-primary, etc.)
   gardent leurs styles dédiés grâce à la spécificité CSS. */
a { color: inherit; text-decoration: none; }
a:not([class]) { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; transition: color .3s; }
a:not([class]):hover { color: var(--amber-lt); }
/* Sur fond clair, les liens sans classe passent en cuivre (plus lisible) */
.section-white a:not([class]),
.section-off a:not([class]),
.article-content a:not([class]),
.legal-section a:not([class]) { color: var(--copper); }
.section-white a:not([class]):hover,
.section-off a:not([class]):hover,
.article-content a:not([class]):hover,
.legal-section a:not([class]):hover { color: var(--amber-dk); }

img { max-width: 100%; height: auto; display: block; border-radius: var(--rl); }
ul, ol { margin-left: 20px; margin-bottom: 14px; }
li { margin-bottom: 6px; }

/* Reset des wrappers Elementor/UAE autour du header */
.elementor-widget-html:has(#site-header),
.elementor-widget-html:has(#site-header) .elementor-widget-container {
  position: static !important;
  transform: none !important;
  filter: none !important;
  will-change: auto !important;
  overflow: visible !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

#site-header.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100%;
  box-sizing: border-box;
  gap: 20px;
  flex-wrap: nowrap;
  min-width: 0;
}

#site-header .nav { flex-wrap: nowrap; min-width: 0; }
#site-header .logo { flex-shrink: 0; }
/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 14px 28px; transition: all .4s var(--e); display: flex; align-items: center; justify-content: space-between; }
.header.sc { background: rgba(14,22,33,.97); backdrop-filter: blur(16px); padding: 9px 28px; box-shadow: 0 4px 20px rgba(0,0,0,.3); }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-circle { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--amber), var(--amber-lt)); display: grid; place-items: center; font-family: var(--serif); font-size: 19px; color: var(--bg); font-weight: 700; }
.logo-text { font-family: var(--serif); font-size: 21px; color: var(--txt); }

.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-size: 13px; font-weight: 500; color: var(--txt2); text-decoration: none; transition: color .3s; }
.nav a:hover { color: var(--amber-lt); }
.nav .cta-nav { background: var(--amber); color: var(--bg); padding: 8px 20px; border-radius: var(--r); font-weight: 700; font-size: 12px; }
.nav .cta-nav:hover { background: var(--amber-lt); color: var(--bg); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 500; color: var(--txt2); transition: color .3s; }
.nav-dropdown > .nav-dropdown-toggle::after { content: '▾'; font-size: 9px; opacity: .6; transition: transform .3s var(--e); }
.nav-dropdown:hover > .nav-dropdown-toggle { color: var(--amber-lt); }
.nav-dropdown:hover > .nav-dropdown-toggle::after { transform: rotate(180deg); }

.nav-dropdown-menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: rgba(14,22,33,.97); backdrop-filter: blur(16px); border: 1px solid var(--bdr); border-radius: var(--r); padding: 8px 0; min-width: 200px; opacity: 0; visibility: hidden; transition: all .25s var(--e); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 20px; font-size: 13px; font-weight: 500; color: var(--txt2); white-space: nowrap; transition: all .2s; }
.nav-dropdown-menu a:hover { background: rgba(212,148,60,.08); color: var(--amber-lt); }
.nav-dropdown-menu .sub-label { font-size: 11px; color: var(--txt3); padding-left: 20px; }

.menu-btn { display: none; background: none; border: none; color: var(--txt); font-size: 24px; cursor: pointer; z-index: 101; }

/* FIX 3 — Menu mobile ouvert :
   Quand .nav a la classe .is-open, il s'affiche en plein écran sur mobile.
   Le JS à ajouter dans le thème : toggle .is-open sur .nav au clic sur .menu-btn.
   En desktop (≥769px), .is-open n'a aucun effet (la media query responsive le neutralise). */
@media (max-width: 768px) {
  .nav.is-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(14,22,33,.98);
    backdrop-filter: blur(20px);
    padding: 80px 28px 40px;
    gap: 8px;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    z-index: 99;
    animation: navFadeIn .3s var(--e);
  }
  .nav.is-open a {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--bdr);
    color: var(--txt);
    text-align: left;
  }
  .nav.is-open .cta-nav {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
    font-size: 14px;
    padding: 14px 20px;
  }
  .nav.is-open .nav-dropdown { width: 100%; }
  .nav.is-open .nav-dropdown-toggle { font-size: 18px; padding: 14px 0; border-bottom: 1px solid var(--bdr); color: var(--txt); }
  .nav.is-open .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: transparent; border: none; box-shadow: none; padding: 8px 0 8px 20px;
    min-width: 0;
  }
  .nav.is-open .nav-dropdown-menu a { font-size: 15px; padding: 10px 0; border-bottom: none; color: var(--txt2); }
  /* Icône burger → croix quand ouvert */
  body.nav-open .menu-btn::before { content: '✕'; }
  body.nav-open { overflow: hidden; }
}
@keyframes navFadeIn { from { opacity: 0; } to { opacity: 1; } }


/* ═══════════════════════════════════════
   SECTIONS — Structure & Backgrounds
   ═══════════════════════════════════════ */
.section { padding: 88px 28px; }
.section .wrap { max-width: 1100px; margin: 0 auto; }

.section-dark  { background: var(--bg); }
.section-dark2 { background: var(--bg2); }
.section-white { background: var(--white); color: var(--dk-txt); }
.section-off   { background: var(--off);   color: var(--dk-txt); }
.section-gradient { background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 50%, var(--bg3) 100%); }


/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */

/* Labels */
.label { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--amber); text-align: center; margin-bottom: 12px; }
.section-white .label, .section-off .label { color: var(--amber-dk); }

/* H1 */
h1 { font-family: var(--serif); font-size: clamp(30px, 4.5vw, 48px); line-height: 1.08; margin-bottom: 16px; }
h1 em { color: var(--amber); font-style: normal; }

/* H2 */
h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 40px); line-height: 1.15; text-align: center; margin-bottom: 20px; }
h2 em { color: var(--copper); font-style: italic; }
.section-white h2, .section-off h2 { color: var(--dk-txt); }

/* H3 */
h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 10px; }
.section-white h3, .section-off h3 { color: var(--dk-txt); }

/* Paragraphs */
p { margin-bottom: 14px; color: var(--txt2); }
.section-white p, .section-off p { color: var(--dk-sub); }
p strong { color: var(--txt); }
.section-white p strong, .section-off p strong { color: var(--dk-txt); }

/* Subtitle */
.subtitle { font-size: 15px; color: var(--txt2); text-align: center; max-width: 680px; margin: 0 auto 40px; }
.section-white .subtitle, .section-off .subtitle { color: var(--dk-sub); }


/* ═══════════════════════════════════════
   HERO — Layout 2 colonnes (texte gauche, image droite)
   ═══════════════════════════════════════ */
.hero { padding: 160px 28px 88px; background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 50%, var(--bg3) 100%); }
.hero .wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.hero-text { text-align: left; }
.hero-text .label { text-align: left; }
.hero-text h1 { text-align: left; }
.hero-text .sub { font-size: 15px; color: var(--txt2); margin-bottom: 24px; }
.hero-text .sub strong { color: var(--txt); }
.hero-text .btn-row { justify-content: flex-start; }

.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: var(--rl); box-shadow: 0 16px 48px rgba(0,0,0,.4); }

/* Hero sans image (FAQ, Mentions légales, etc.) — centré */
.hero--centered { text-align: center; }
.hero--centered .wrap { grid-template-columns: 1fr; max-width: 800px; }
.hero--centered .hero-text { text-align: center; }
.hero--centered .hero-text .label { text-align: center; }
.hero--centered .hero-text h1 { text-align: center; }
.hero--centered .hero-text .btn-row { justify-content: center; }


/* ═══════════════════════════════════════
   IMAGE PLACEHOLDERS
   ═══════════════════════════════════════ */
.img-placeholder { background: rgba(255,255,255,.04); border: 2px dashed var(--bdr); border-radius: var(--rl); padding: 60px 30px; text-align: center; margin: 24px 0; }
.img-placeholder .icon { font-size: 40px; margin-bottom: 8px; opacity: .5; }
.img-placeholder .lbl  { font-weight: 700; color: var(--txt2); font-size: 14px; }
.img-placeholder .specs { font-size: 11px; color: var(--txt3); margin-top: 6px; }
.section-white .img-placeholder, .section-off .img-placeholder { background: rgba(0,0,0,.02); border-color: rgba(0,0,0,.08); }
.section-white .img-placeholder .lbl, .section-off .img-placeholder .lbl { color: var(--dk-sub); }
.section-white .img-placeholder .specs, .section-off .img-placeholder .specs { color: var(--dk-faint); }

/* Hero image placeholder — prend toute la colonne droite */
.hero-image .img-placeholder { padding: 80px 30px; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 320px; }


/* ═══════════════════════════════════════
   BUTTONS & CTA
   ═══════════════════════════════════════ */
.btn-primary { display: inline-block; background: var(--amber); color: var(--bg); padding: 14px 30px; border-radius: var(--r); font-family: var(--sans); font-size: 14px; font-weight: 700; text-decoration: none; box-shadow: 0 4px 16px rgba(212,148,60,.2); transition: all .35s var(--e); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--amber-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,148,60,.3); color: var(--bg); }

.btn-outline { display: inline-block; background: transparent; color: var(--txt); border: 1.5px solid rgba(255,255,255,.2); padding: 13px 30px; border-radius: var(--r); font-family: var(--sans); font-size: 14px; font-weight: 600; text-decoration: none; transition: all .35s var(--e); cursor: pointer; }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

/* FIX 2 — Variante de btn-outline pour fond clair (texte sombre, meilleur contraste) */
.section-white .btn-outline,
.section-off .btn-outline { color: var(--dk-txt); border-color: rgba(0,0,0,.15); }
.section-white .btn-outline:hover,
.section-off .btn-outline:hover { border-color: var(--amber); color: var(--copper); }

.btn-tertiary { display: inline-block; background: var(--off); color: var(--dk-txt); border: 1px solid #D8DDE3; padding: 13px 20px; border-radius: var(--r); font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; text-decoration: none; transition: all .35s var(--e); cursor: pointer; }
.btn-tertiary:hover { border-color: var(--amber); color: var(--copper); }

.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }


/* ═══════════════════════════════════════
   GRIDS
   ═══════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 32px 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 32px 0; }


/* ═══════════════════════════════════════
   CARDS — Fond clair
   ═══════════════════════════════════════ */
.card { background: var(--white); border-radius: var(--rl); padding: 32px 24px; border: 1px solid rgba(0,0,0,.04); transition: all .4s var(--e); }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.06); }
.card-icon { width: 46px; height: 46px; border-radius: var(--r); background: linear-gradient(135deg, var(--bg), var(--bg2)); display: grid; place-items: center; font-size: 20px; margin-bottom: 16px; }
.card h3 { color: var(--dk-txt); font-size: 20px; margin-bottom: 8px; }
.card p  { color: var(--dk-sub); font-size: 13.5px; line-height: 1.7; }
.card .link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--copper); margin-top: 16px; text-decoration: none; transition: gap .3s; }
.card .link:hover { gap: 10px; }


/* ═══════════════════════════════════════
   CARDS — Fond sombre
   ═══════════════════════════════════════ */
.card-dark { background: rgba(255,255,255,.04); border: 1px solid var(--bdr); border-radius: var(--rl); padding: 28px 22px; transition: all .4s var(--e); }
.card-dark:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.card-dark h3 { color: var(--amber); }
.card-dark p  { font-size: 13px; line-height: 1.7; }


/* ═══════════════════════════════════════
   PILLAR CARDS (3 colonnes, fond clair, border-top ambre)
   ═══════════════════════════════════════ */
.pillar { text-align: center; padding: 32px 24px; border-radius: var(--rl); border-top: 3px solid var(--amber); }
.section-off .pillar  { background: var(--white); }
.section-white .pillar { background: var(--off); }
.pillar .icon { font-size: 32px; margin-bottom: 12px; }
.pillar h3 { color: var(--dk-txt); font-size: 18px; margin-bottom: 8px; }
.pillar p  { color: var(--dk-sub); font-size: 13.5px; }


/* ═══════════════════════════════════════
   STATS
   ═══════════════════════════════════════ */
.stat { text-align: center; padding: 28px 16px; }
.stat-number { font-family: var(--serif); font-size: 38px; color: var(--dk-txt); }
.stat-number span { color: var(--copper); }
.stat-label { font-size: 12px; font-weight: 500; color: var(--dk-faint); margin-top: 4px; }
.section-dark .stat-number, .section-dark2 .stat-number, .section-gradient .stat-number { color: var(--txt); }
.section-dark .stat-label, .section-dark2 .stat-label, .section-gradient .stat-label { color: var(--txt3); }


/* ═══════════════════════════════════════
   TESTIMONIAL CARDS (fond sombre)
   ═══════════════════════════════════════ */
.testimonial-card { background: rgba(255,255,255,.04); border: 1px solid var(--bdr); border-radius: var(--rl); padding: 32px 28px; margin: 28px 0; transition: all .4s var(--e); }
.testimonial-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,148,60,.1); }
.testimonial-card h3 { color: var(--txt); font-size: 22px; margin-bottom: 8px; font-family: var(--serif); }
.testimonial-card .location { font-size: 13px; color: var(--txt3); margin-bottom: 16px; }
.testimonial-card .result { background: rgba(52,199,123,.08); border-left: 3px solid var(--green); padding: 14px 16px; border-radius: var(--r); margin: 16px 0; font-weight: 600; color: var(--green); font-size: 14px; }
.testimonial-card .quote-icon { font-family: var(--serif); font-size: 48px; color: var(--amber); opacity: .6; margin-bottom: 12px; line-height: 1; }
.testimonial-card .quote { font-style: italic; color: var(--txt2); padding: 16px 0 16px 20px; border-left: 3px solid var(--amber); margin: 20px 0; font-size: 15px; line-height: 1.8; }
.testimonial-card .photo-placeholder { background: rgba(255,255,255,.02); border: 1px dashed var(--bdr); border-radius: var(--r); padding: 40px 20px; text-align: center; margin: 20px 0; }
.testimonial-card .photo-placeholder .icon { font-size: 32px; margin-bottom: 8px; opacity: .5; }
.testimonial-card .photo-placeholder .lbl  { font-weight: 600; color: var(--txt3); font-size: 13px; }

/* Testimonial compact (inline, fond clair) */
.testimonial-inline { background: var(--off); border-left: 4px solid var(--amber); border-radius: 0 var(--r) var(--r) 0; padding: 20px; margin: 16px 0; }
.testimonial-inline .text { font-style: italic; color: var(--dk-sub); font-size: 14px; margin-bottom: 8px; }
.testimonial-inline .author { font-weight: 700; color: var(--dk-txt); font-size: 13px; }
.testimonial-inline .city { font-size: 11px; color: var(--dk-faint); }


/* ═══════════════════════════════════════
   ACCR BLOCK
   ═══════════════════════════════════════ */
.accr-block { display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: center; padding: 24px; background: rgba(212,148,60,.04); border: 1px solid rgba(212,148,60,.08); border-radius: var(--rl); }
.section-dark .accr-block, .section-dark2 .accr-block { background: rgba(212,148,60,.06); border-color: rgba(212,148,60,.12); }
.accr-avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--amber), var(--amber-lt)); display: grid; place-items: center; font-family: var(--serif); font-size: 18px; color: var(--bg); font-weight: 700; }
.accr-block h3 { font-size: 17px; margin-bottom: 4px; }
.accr-block p { font-size: 13px; line-height: 1.65; margin: 0; }
.accr-block a { color: var(--copper); font-weight: 600; font-size: 13px; text-decoration: none; }
.section-dark .accr-block h3, .section-dark2 .accr-block h3 { color: var(--txt); }
.section-dark .accr-block p, .section-dark2 .accr-block p { color: var(--txt2); }
.section-dark .accr-block a, .section-dark2 .accr-block a { color: var(--amber); }


/* ═══════════════════════════════════════
   BADGES
   ═══════════════════════════════════════ */
.badge { display: inline-block; padding: 4px 12px; border-radius: var(--pill); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; }
.badge--dark    { background: rgba(14,22,33,.05); color: var(--dk-txt); }
.badge--amber   { background: rgba(212,148,60,.08); color: var(--amber-dk); }
.badge--copper  { background: rgba(196,120,50,.08); color: var(--copper); }
.badge--green   { background: rgba(52,199,123,.08); border: 1px solid rgba(52,199,123,.12); color: var(--green); font-size: 11px; }


/* ═══════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════ */
.divider { height: 3px; background: linear-gradient(90deg, var(--amber), var(--copper), var(--amber-lt)); border-radius: 2px; max-width: 1100px; margin: 0 auto; }


/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section { text-align: center; }
.cta-section h2 { margin-bottom: 12px; }
.cta-section p  { color: var(--txt2); font-size: 15px; text-align: center; }


/* ═══════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════ */
.faq-section { margin-bottom: 32px; }
.faq-section h2 { margin-bottom: 24px; text-align: left; font-size: 26px; color: var(--txt); }
.section-white .faq-section h2, .section-off .faq-section h2 { color: var(--dk-txt); }

.faq-item { background: rgba(255,255,255,.04); border: 1px solid var(--bdr); border-radius: var(--rl); margin-bottom: 12px; overflow: hidden; transition: all .3s var(--e); }
.faq-item:hover { background: rgba(255,255,255,.06); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.section-white .faq-item, .section-off .faq-item { background: var(--white); border-color: rgba(0,0,0,.06); }
.section-white .faq-item:hover, .section-off .faq-item:hover { background: var(--off); box-shadow: 0 4px 16px rgba(0,0,0,.04); }

.faq-item details { cursor: pointer; }
.faq-item summary { display: flex; align-items: flex-start; gap: 14px; padding: 20px 22px; font-weight: 600; font-size: 15px; color: var(--txt); list-style: none; user-select: none; }
.section-white .faq-item summary, .section-off .faq-item summary { color: var(--dk-txt); }
.faq-item summary::before { content: '+'; font-size: 20px; font-weight: 300; color: var(--amber); min-width: 20px; text-align: center; transition: transform .3s var(--e); }
.faq-item details[open] > summary::before { transform: rotate(45deg); color: var(--amber-lt); }
.faq-item summary:hover { background: rgba(255,255,255,.02); }
.faq-item summary::marker, .faq-item summary::-webkit-details-marker { display: none; }

.faq-answer { padding: 0 22px 20px 56px; color: var(--txt2); font-size: 14px; line-height: 1.8; }
.section-white .faq-answer, .section-off .faq-answer { color: var(--dk-sub); }
.faq-answer strong { color: var(--txt); }
.section-white .faq-answer strong, .section-off .faq-answer strong { color: var(--dk-txt); }
.faq-answer p { margin-bottom: 10px; }


/* ═══════════════════════════════════════
   CONTACT — Formulaire & liens sociaux
   ═══════════════════════════════════════ */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dk-txt); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 13px 16px; border-radius: var(--r); border: 1px solid rgba(0,0,0,.08); font-family: var(--sans); font-size: 14px; color: var(--dk-txt); background: var(--off); transition: border-color .3s; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(212,148,60,.1); }
.form-group textarea { min-height: 140px; resize: vertical; }

.social-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 28px 0; }
.social-link { background: rgba(255,255,255,.04); border: 1px solid var(--bdr); border-radius: var(--rl); padding: 24px; text-align: center; transition: all .35s var(--e); }
.social-link:hover { border-color: var(--amber); background: rgba(212,148,60,.08); }
.social-link .icon { font-size: 28px; margin-bottom: 12px; }
.social-link a { color: var(--amber); font-weight: 600; font-size: 13px; text-decoration: none; }
.social-link .handle { font-size: 11px; color: var(--txt3); margin-top: 6px; }


/* ═══════════════════════════════════════
   LEGAL SECTIONS (Mentions légales, Confidentialité)
   ═══════════════════════════════════════ */
.legal-section { padding: 32px 0; border-bottom: 1px solid rgba(0,0,0,.04); }
.legal-section:last-child { border-bottom: none; }
.legal-section h3 { color: var(--dk-txt); font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.legal-section p { color: var(--dk-sub); font-size: 14px; }
.legal-section ul { margin-left: 20px; margin-bottom: 14px; }
.legal-section li { margin-bottom: 8px; color: var(--dk-sub); font-size: 14px; }
.legal-section a { color: var(--amber-dk); font-weight: 600; text-decoration: none; }
.legal-section a:hover { color: var(--copper); }

/* Legal tables */
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.legal-table th { background: var(--bg); color: var(--txt); padding: 10px 14px; text-align: left; font-size: 12px; }
.legal-table td { padding: 10px 14px; border-bottom: 1px solid rgba(0,0,0,.04); color: var(--dk-sub); }
.legal-table tr:nth-child(even) { background: var(--off); }


/* ═══════════════════════════════════════
   BLOG ARTICLE
   ═══════════════════════════════════════ */
.breadcrumb { font-size: 12px; color: var(--txt3); margin-bottom: 16px; }
.breadcrumb a { color: var(--amber); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber-lt); }

.article-header { max-width: 800px; margin: 0 auto; padding: 20px 0 40px; text-align: center; }
.article-meta { font-size: 13px; color: var(--txt3); margin-bottom: 16px; }
.article-meta span { margin: 0 8px; }

.article-content { max-width: 800px; margin: 0 auto; padding: 60px 28px; background: var(--white); border-radius: var(--rl) var(--rl) 0 0; }
.article-content h2 { text-align: left; font-size: clamp(22px, 3vw, 30px); margin: 40px 0 16px; color: var(--dk-txt); }
.article-content h3 { font-size: 18px; margin: 28px 0 12px; color: var(--dk-txt); }
.article-content p  { color: var(--dk-sub); font-size: 15px; line-height: 1.8; }
.article-content strong { color: var(--dk-txt); }
.article-content a { color: var(--copper); font-weight: 600; text-decoration: none; }
.article-content a:hover { color: var(--amber); }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { color: var(--dk-sub); font-size: 15px; margin-bottom: 8px; }

.highlight-box { background: rgba(212,148,60,.08); border-left: 4px solid var(--amber); padding: 20px; border-radius: 0 var(--r) var(--r) 0; margin: 24px 0; }
.highlight-box strong { color: var(--dk-txt); }
.highlight-box p { color: var(--dk-sub); margin: 0; }

.table-of-contents { background: var(--off); border: 1px solid rgba(0,0,0,.08); padding: 20px; border-radius: var(--rl); margin: 40px 0; }
.table-of-contents h3 { color: var(--dk-txt); margin: 0 0 16px; font-size: 16px; }
.table-of-contents ul { margin: 0; padding-left: 20px; list-style: none; }
.table-of-contents li { margin-bottom: 8px; }
.table-of-contents a { color: var(--amber-dk); text-decoration: none; font-size: 14px; }
.table-of-contents a:hover { color: var(--amber); }

.author-bio { background: var(--off); border: 1px solid rgba(0,0,0,.08); border-radius: var(--rl); padding: 32px; margin: 60px 0; display: flex; gap: 24px; align-items: flex-start; }
.author-bio-image { width: 100px; height: 100px; border-radius: 50%; background: rgba(212,148,60,.2); display: grid; place-items: center; font-size: 40px; flex-shrink: 0; }
.author-bio-content h3 { color: var(--dk-txt); margin-bottom: 8px; }
.author-bio-content p  { color: var(--dk-sub); font-size: 14px; }


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { background: var(--bg); border-top: 1px solid var(--bdr); padding: 56px 28px 32px; }
.footer .wrap { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-family: var(--serif); font-size: 15px; color: var(--txt); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--txt3); text-decoration: none; margin-bottom: 8px; transition: color .3s; }
.footer-col a:hover { color: var(--amber-lt); }
.footer-col p { color: var(--txt3); font-size: 12px; line-height: 1.6; margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--bdr); flex-wrap: wrap; gap: 16px; }
.footer-left { display: flex; align-items: center; gap: 10px; }
.footer p { color: var(--txt3); font-size: 12px; margin: 0; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--txt3); font-size: 12px; text-decoration: none; transition: color .3s; display: inline; margin: 0; }
.footer-links a:hover { color: var(--amber-lt); }


/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .75s var(--e), transform .75s var(--e); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .06s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .18s; }
.d4 { transition-delay: .24s; }
.d5 { transition-delay: .30s; }


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 60px 20px; }
  .hero { padding: 120px 20px 60px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 32px; }
  .hero-text { text-align: center; }
  .hero-text .label { text-align: center; }
  .hero-text h1 { text-align: center; }
  .hero-text .btn-row { justify-content: center; }
  .hero-image { order: -1; }
  .nav { display: none; }
  .menu-btn { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .accr-block { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .social-links { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .article-content { padding: 40px 20px; }
  .author-bio { flex-direction: column; text-align: center; }
  .faq-item summary { padding: 16px 18px; font-size: 14px; }
  .faq-answer { padding: 0 18px 16px 48px; }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; align-items: center; }
  .faq-item summary { font-size: 13px; }
  .faq-answer { font-size: 13px; }
}