/* ============================================
   Stratégie de citrouilles algorithmiques
   Charte : Halloween chaleureux
   Orange citrouille + violet nuit + crème + or
   ============================================ */

:root{
  --citrouille:#ff7518;
  --citrouille-deep:#e85d0c;
  --citrouille-soft:#ffb380;
  --violet-nuit:#2d1b4e;
  --violet-nuit-2:#3d2766;
  --violet-nuit-3:#4d3380;
  --violet-soft:#8b6dd9;
  --or:#f4c95d;
  --or-deep:#d4a25a;
  --creme:#fdf6e3;
  --creme-2:#f5ebcc;
  --feuille:#7a8b3a;
  --texte:#2a1f3d;
  --texte-soft:#5a4a7a;
  --gris-ligne:rgba(45,27,78,.14);
  --bg:#fdfbf2;
  --bg-card:#ffffff;
  --shadow:0 4px 24px rgba(45,27,78,.08);
  --shadow-lg:0 12px 48px rgba(255,117,24,.18);
  --radius:14px;
  --radius-lg:22px;
  --max:1180px;
  --font-titre:"Cormorant Garamond",Georgia,serif;
  --font-corps:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

[data-theme="dark"]{
  --bg:#1a0f2e;
  --bg-card:#2d1b4e;
  --texte:#fdf6e3;
  --texte-soft:#c0b8d8;
  --creme:#3d2766;
  --creme-2:#4d3380;
  --gris-ligne:rgba(255,117,24,.2);
  --shadow:0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:0 12px 48px rgba(255,117,24,.25);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-corps);
  font-size:17px;
  line-height:1.7;
  color:var(--texte);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{max-width:100%;height:auto;display:block}
a{color:var(--citrouille-deep);text-decoration:none;transition:color .2s}
a:hover{color:var(--violet-nuit)}

h1,h2,h3,h4{font-family:var(--font-titre);font-weight:600;line-height:1.25;color:var(--texte)}
h1{font-size:clamp(2.2rem,5vw,3.6rem);letter-spacing:-.01em}
h2{font-size:clamp(1.8rem,3.5vw,2.6rem);margin-bottom:1rem}
h3{font-size:1.4rem;margin-bottom:.6rem}
h4{font-size:1.15rem;margin-bottom:.4rem}
p{margin-bottom:1rem}

.container{max-width:var(--max);margin:0 auto;padding:0 1.5rem}

/* ===== Fond chaleureux ===== */
.warm-bg{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(ellipse at 15% 10%,rgba(255,117,24,.08) 0%,transparent 50%),
    radial-gradient(ellipse at 85% 80%,rgba(45,27,78,.06) 0%,transparent 50%),
    radial-gradient(ellipse at 50% 50%,rgba(244,201,93,.04) 0%,transparent 60%);
}

/* ===== Navigation ===== */
.nav{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(253,251,242,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--gris-ligne);
}
[data-theme="dark"] .nav{background:rgba(26,15,46,.92)}

.nav-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:1rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.brand{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-family:var(--font-titre);
  font-weight:700;
  font-size:1.15rem;
  color:var(--texte);
  line-height:1.2;
  min-width:0;
}
.brand:hover{color:var(--citrouille)}
.brand > span:last-child{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-mark{
  width:38px;height:38px;
  background:var(--violet-nuit);
  border:1.5px solid var(--citrouille);
  border-radius:50%;
  display:grid;place-items:center;
  color:var(--citrouille);
  flex-shrink:0;
  box-shadow:0 0 14px rgba(255,117,24,.35);
}
.brand-mark svg{display:block}
.brand-mark-inline{
  display:inline-grid;
  place-items:center;
  width:32px;height:32px;
  background:var(--violet-nuit);
  border:1.5px solid var(--citrouille);
  border-radius:50%;
  color:var(--citrouille);
  vertical-align:middle;
  margin-right:.4rem;
  flex-shrink:0;
}
.brand-mark-inline svg{display:block}

/* Hero pumpkin (a cote du H1 pour eviter background-clip text) */
.hero-pumpkin-wrap{
  display:flex;
  justify-content:center;
  margin-top:-.6rem;
  margin-bottom:1.2rem;
}
.hero-pumpkin{
  filter:drop-shadow(0 4px 12px rgba(255,117,24,.35));
  animation:floatPumpkin 4s ease-in-out infinite;
}
@keyframes floatPumpkin{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

.nav-links{
  display:flex;
  align-items:center;
  gap:1.6rem;
}
.nav-links a{
  color:var(--texte);
  font-weight:500;
  font-size:.95rem;
  position:relative;
}
.nav-links a:hover{color:var(--citrouille)}
.nav-links a.active{color:var(--citrouille)}
.nav-links a.active::after{
  content:"";
  position:absolute;
  bottom:-6px;left:0;right:0;
  height:2px;
  background:linear-gradient(90deg,var(--citrouille),var(--or));
  border-radius:2px;
}

.theme-toggle{
  background:none;border:1px solid var(--gris-ligne);
  width:38px;height:38px;
  border-radius:50%;
  cursor:pointer;
  font-size:1rem;
  display:grid;place-items:center;
  transition:transform .2s,border-color .2s;
}
.theme-toggle:hover{transform:rotate(20deg);border-color:var(--citrouille)}

.burger{
  display:none;
  background:none;border:none;
  cursor:pointer;
  width:38px;height:38px;
  flex-direction:column;gap:4px;
  align-items:center;justify-content:center;
}
.burger span{
  width:22px;height:2px;
  background:var(--texte);
  border-radius:2px;
}

.nav-mobile{
  display:none;
  position:fixed;
  top:69px;left:0;right:0;
  background:var(--bg);
  border-bottom:1px solid var(--gris-ligne);
  box-shadow:0 12px 24px rgba(45,27,78,.18);
  padding:1.2rem 1.5rem;
  z-index:999;
  flex-direction:column;
  gap:1rem;
}
.nav-mobile.open{display:flex}
.nav-mobile a{
  color:var(--texte);
  font-weight:500;
  padding:.5rem 0;
  border-bottom:1px solid var(--gris-ligne);
}

@media(max-width:880px){
  .nav-links{display:none}
  .burger{display:flex}
}

/* ===== Hero ===== */
.hero{
  padding:5rem 0 4rem;
  text-align:center;
  position:relative;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--citrouille);
  margin-bottom:1.2rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after{
  content:"";
  width:24px;height:1px;
  background:linear-gradient(90deg,transparent,var(--citrouille),transparent);
}
.hero h1{
  color:var(--citrouille-deep);
  background:linear-gradient(135deg,var(--citrouille) 0%,var(--violet-nuit) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:1.2rem;
}
@supports not (background-clip:text){
  .hero h1{
    color:var(--citrouille-deep);
    -webkit-text-fill-color:initial;
    background:none;
  }
}
.hero-lede{
  font-size:1.2rem;
  color:var(--texte-soft);
  max-width:720px;
  margin:0 auto 2rem;
  line-height:1.6;
}
.hero-cta{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.85rem 1.6rem;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  transition:transform .2s,box-shadow .2s;
  cursor:pointer;
  border:none;
}
.btn-primary{
  background:linear-gradient(135deg,var(--citrouille) 0%,var(--or) 100%);
  color:#fff;
  box-shadow:0 6px 20px rgba(255,117,24,.3);
}
.btn-primary:hover{transform:translateY(-2px);color:#fff;box-shadow:0 10px 28px rgba(255,117,24,.4)}
.btn-ghost{
  background:transparent;
  color:var(--texte);
  border:1px solid var(--gris-ligne);
}
.btn-ghost:hover{border-color:var(--citrouille);color:var(--citrouille);transform:translateY(-2px)}

.pumpkin-strip{
  display:flex;
  justify-content:center;
  gap:1.5rem;
  flex-wrap:wrap;
  margin:2rem 0;
  opacity:.6;
}
.pumpkin-strip svg{width:32px;height:32px;color:var(--citrouille)}

/* ===== Sections ===== */
section{padding:4rem 0;position:relative}
.section-title{text-align:center;margin-bottom:.8rem}
.section-lede{
  text-align:center;
  color:var(--texte-soft);
  max-width:680px;
  margin:0 auto 3rem;
  font-size:1.05rem;
}

/* ===== Podium FePSeM ===== */
.podium-section{
  background:linear-gradient(180deg,transparent 0%,var(--creme) 50%,transparent 100%);
  padding:5rem 0;
}
.podium-badge{
  display:inline-block;
  background:linear-gradient(135deg,var(--citrouille) 0%,var(--or) 100%);
  color:#fff;
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:.4rem 1rem;
  border-radius:999px;
  margin-bottom:1rem;
}
.podium-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  max-width:960px;
  margin:3rem auto 0;
  align-items:end;
}
.podium-card{
  background:var(--bg-card);
  border-radius:var(--radius-lg);
  padding:1.8rem 1.4rem;
  text-align:center;
  box-shadow:var(--shadow);
  border:1px solid var(--gris-ligne);
  position:relative;
  transition:transform .3s;
}
.podium-card:hover{transform:translateY(-4px)}
.podium-card.first{
  order:2;
  border:2px solid var(--citrouille);
  padding-top:2.4rem;
  background:linear-gradient(180deg,rgba(255,117,24,.08) 0%,var(--bg-card) 50%);
}
.podium-card.first.me::after{
  content:"";
  position:absolute;
  top:14px;right:14px;
  width:10px;height:10px;
  background:var(--citrouille);
  border-radius:50%;
  box-shadow:0 0 8px rgba(255,117,24,.7);
}
.podium-card.second{order:1;border-top:3px solid #c4b8c8}
.podium-card.third{order:3;border-top:3px solid var(--or-deep)}
.podium-rank{
  width:72px;height:72px;
  border-radius:50%;
  display:grid;place-items:center;
  margin:0 auto 1rem;
  font-family:var(--font-titre);
  font-size:2rem;
  font-weight:700;
}
.podium-card.first .podium-rank{
  background:linear-gradient(135deg,var(--citrouille) 0%,var(--or) 100%);
  color:#fff;
  box-shadow:0 0 24px rgba(255,117,24,.5);
}
.podium-card.second .podium-rank{
  background:linear-gradient(135deg,#e0d8e6 0%,#b8acc4 100%);
  color:var(--violet-nuit);
  box-shadow:0 0 16px rgba(180,168,192,.4);
}
.podium-card.third .podium-rank{
  background:linear-gradient(135deg,#d4a25a 0%,#a87a3a 100%);
  color:#fff;
}
.podium-medal{font-size:1.7rem;margin-bottom:.4rem}
.podium-name{font-family:var(--font-titre);font-size:1.3rem;font-weight:600;color:var(--texte);margin-bottom:.3rem;line-height:1.3}
.podium-name small{display:block;font-size:.85rem;font-weight:400;color:var(--texte-soft);margin-top:.2rem;font-family:var(--font-corps)}
.podium-points{
  display:inline-block;
  margin-top:.6rem;
  font-size:.9rem;
  font-weight:600;
  color:var(--citrouille-deep);
  background:rgba(255,117,24,.1);
  padding:.2rem .7rem;
  border-radius:999px;
}

@media(max-width:760px){
  .podium-grid{grid-template-columns:1fr;max-width:380px}
  .podium-card.first,.podium-card.second,.podium-card.third{order:0}
}

/* ===== Cards grids ===== */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem;
  margin-top:2rem;
}
.card{
  background:var(--bg-card);
  border:1px solid var(--gris-ligne);
  border-radius:var(--radius);
  padding:1.8rem;
  transition:transform .2s,box-shadow .2s,border-color .2s;
}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:var(--citrouille-soft)}
.card-icon{
  width:48px;height:48px;
  border-radius:12px;
  background:linear-gradient(135deg,rgba(255,117,24,.14) 0%,rgba(244,201,93,.14) 100%);
  display:grid;place-items:center;
  margin-bottom:1rem;
  color:var(--citrouille-deep);
}
.card h3{margin-bottom:.6rem;color:var(--texte)}
.card p{color:var(--texte-soft);font-size:.95rem;margin:0}

/* ===== Channels (multicanal) ===== */
.channels-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
  gap:1rem;
  margin-top:2.5rem;
}
.channel-card{
  background:var(--bg-card);
  border:1px solid var(--gris-ligne);
  border-radius:var(--radius);
  padding:1.4rem 1rem;
  text-align:center;
  transition:transform .2s,border-color .2s;
}
.channel-card:hover{transform:translateY(-3px);border-color:var(--citrouille)}
.channel-icon{
  width:48px;height:48px;
  margin:0 auto .8rem;
  display:grid;place-items:center;
  border-radius:12px;
  background:linear-gradient(135deg,var(--violet-nuit) 0%,var(--violet-nuit-2) 100%);
  color:var(--citrouille);
}
.channel-name{
  font-family:var(--font-titre);
  font-size:1.15rem;
  font-weight:600;
  color:var(--texte);
  margin-bottom:.2rem;
}
.channel-role{
  font-size:.85rem;
  color:var(--texte-soft);
}
.channel-card.mine{
  border:2px solid var(--citrouille);
  background:linear-gradient(180deg,rgba(255,117,24,.06) 0%,var(--bg-card) 50%);
  position:relative;
}
.channel-card.mine::after{
  content:"FJ";
  position:absolute;
  top:8px;right:8px;
  background:var(--citrouille);
  color:#fff;
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.05em;
  padding:.15rem .4rem;
  border-radius:4px;
}

/* ===== Article (page interne) ===== */
.article-wrap{
  max-width:780px;
  margin:0 auto;
  padding:3rem 1.5rem;
}
.breadcrumb{
  font-size:.85rem;
  color:var(--texte-soft);
  margin-bottom:1.5rem;
}
.breadcrumb a{color:var(--texte-soft)}
.breadcrumb a:hover{color:var(--citrouille)}
.breadcrumb-sep{margin:0 .5rem;opacity:.5}

.article-eyebrow{
  display:inline-block;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--citrouille);
  margin-bottom:.8rem;
}
.article-meta{
  display:flex;
  gap:1.5rem;
  font-size:.85rem;
  color:var(--texte-soft);
  margin:1rem 0 2.5rem;
  padding-bottom:1.5rem;
  border-bottom:1px solid var(--gris-ligne);
  flex-wrap:wrap;
}

.bluf{
  background:linear-gradient(135deg,rgba(255,117,24,.08) 0%,rgba(244,201,93,.08) 100%);
  border-left:3px solid var(--citrouille);
  padding:1.4rem 1.6rem;
  border-radius:0 var(--radius) var(--radius) 0;
  margin:2rem 0;
}
.bluf-label{
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--citrouille-deep);
  margin-bottom:.4rem;
}
.bluf p{margin:0;font-size:1.05rem;line-height:1.6}

.article-wrap h2{
  margin-top:2.8rem;
  margin-bottom:1rem;
  position:relative;
  padding-left:1.2rem;
}
.article-wrap h2::before{
  content:"";
  position:absolute;
  left:0;top:.4em;
  width:6px;height:1.2em;
  background:linear-gradient(180deg,var(--citrouille),var(--or));
  border-radius:3px;
}
.article-wrap h3{margin-top:1.8rem;margin-bottom:.6rem}
.article-wrap p{font-size:1.05rem;line-height:1.75;margin-bottom:1.2rem}
.article-wrap ul,.article-wrap ol{margin:0 0 1.2rem 1.5rem}
.article-wrap li{margin-bottom:.5rem;line-height:1.6}

table{
  width:100%;
  border-collapse:collapse;
  margin:2rem 0;
  background:var(--bg-card);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
th{
  background:linear-gradient(135deg,var(--violet-nuit) 0%,var(--violet-nuit-2) 100%);
  color:#fff;
  font-weight:600;
  text-align:left;
  padding:1rem;
  font-size:.95rem;
}
td{
  padding:1rem;
  border-bottom:1px solid var(--gris-ligne);
  font-size:.95rem;
}
tr:last-child td{border-bottom:none}
tr:hover td{background:var(--creme)}

/* ===== FAQ ===== */
.faq-section{padding:3rem 0}
.faq-item{
  background:var(--bg-card);
  border:1px solid var(--gris-ligne);
  border-radius:var(--radius);
  margin-bottom:.8rem;
  overflow:hidden;
  transition:border-color .2s;
}
.faq-item:hover{border-color:var(--citrouille-soft)}
.faq-q{
  padding:1.2rem 1.4rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  font-weight:600;
  color:var(--texte);
  user-select:none;
}
.faq-q span{flex:1}
.faq-q svg{
  flex-shrink:0;
  transition:transform .3s;
  color:var(--citrouille);
}
.faq-item.open .faq-q svg{transform:rotate(180deg)}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.faq-item.open .faq-a{max-height:500px}
.faq-a p{
  padding:0 1.4rem 1.4rem;
  color:var(--texte-soft);
  margin:0;
  line-height:1.65;
}

/* ===== Page Liens / dossiers ===== */
.liens-hero{padding:4rem 0 2rem;text-align:center}
.liens-section{padding:2.5rem 0}
.liens-section-title{
  display:flex;
  align-items:center;
  gap:.8rem;
  font-size:1.6rem;
  margin-bottom:1.5rem;
  padding-bottom:.6rem;
  border-bottom:2px solid var(--gris-ligne);
}
.liens-section-title-icon{
  width:36px;height:36px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--citrouille) 0%,var(--or) 100%);
  display:grid;place-items:center;
  color:#fff;
}
.liens-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:.8rem;
}
.lien-card{
  background:var(--bg-card);
  border:1px solid var(--gris-ligne);
  border-radius:10px;
  padding:.9rem 1.1rem;
  transition:all .2s;
  display:block;
  color:var(--texte);
}
.lien-card:hover{
  border-color:var(--citrouille);
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(255,117,24,.12);
  color:var(--citrouille);
}
.lien-card-name{font-weight:600;font-size:.95rem;margin-bottom:.15rem;display:block}
.lien-card-domain{font-size:.78rem;color:var(--texte-soft);font-family:var(--font-corps)}

/* ===== Sitemap ===== */
.sitemap-wrap{max-width:800px;margin:0 auto;padding:3rem 1.5rem}
.sitemap-list{list-style:none;padding:0}
.sitemap-list li{
  padding:.7rem 0;
  border-bottom:1px solid var(--gris-ligne);
}
.sitemap-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--texte);
  font-weight:500;
}
.sitemap-list a:hover{color:var(--citrouille)}
.sitemap-list a::after{content:"→";color:var(--texte-soft);transition:transform .2s}
.sitemap-list a:hover::after{transform:translateX(4px);color:var(--citrouille)}

/* ===== CTA section ===== */
.cta-section{
  background:linear-gradient(135deg,var(--violet-nuit) 0%,var(--violet-nuit-3) 100%);
  color:#fff;
  padding:5rem 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-section::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(1px 1px at 20% 30%,var(--citrouille) 50%,transparent 100%),
    radial-gradient(1px 1px at 60% 70%,var(--or) 50%,transparent 100%),
    radial-gradient(2px 2px at 80% 20%,#fff 50%,transparent 100%),
    radial-gradient(1px 1px at 40% 80%,var(--citrouille) 50%,transparent 100%),
    radial-gradient(1px 1px at 90% 60%,var(--or) 50%,transparent 100%);
  opacity:.5;
}
.cta-section h2{color:#fff;margin-bottom:1rem;position:relative;z-index:1}
.cta-section p{color:rgba(255,255,255,.88);margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto;position:relative;z-index:1}
.cta-section .btn{position:relative;z-index:1}

/* ===== Stats bar ===== */
.stats-bar{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:1.5rem;
  margin:3rem 0;
}
.stat-card{
  text-align:center;
  padding:1.4rem;
}
.stat-num{
  font-family:var(--font-titre);
  font-size:2.6rem;
  font-weight:700;
  color:var(--citrouille);
  line-height:1;
  display:block;
}
.stat-label{
  font-size:.88rem;
  color:var(--texte-soft);
  margin-top:.4rem;
  display:block;
}

/* ===== Lucide ===== */
.lucide{
  display:inline-block;
  vertical-align:middle;
  flex-shrink:0;
}
.hero-eyebrow .lucide{color:var(--citrouille)}
.btn .lucide{flex-shrink:0}

/* ===== Archetypes/concepts grille ===== */
.archetypes-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(190px,1fr));
  gap:1rem;
  margin-top:2.5rem;
}
.archetype-card{
  background:var(--bg-card);
  border:1px solid var(--gris-ligne);
  border-radius:14px;
  padding:1.2rem 1rem;
  text-align:center;
  transition:transform .2s,border-color .2s,box-shadow .2s;
}
.archetype-card:hover{
  transform:translateY(-3px);
  border-color:var(--citrouille-soft);
  box-shadow:0 6px 18px rgba(255,117,24,.12);
}
.archetype-card .lucide{
  color:var(--citrouille);
  margin-bottom:.6rem;
}
.archetype-card:hover .lucide{color:var(--or-deep)}
.archetype-name{
  font-family:var(--font-titre);
  font-size:1.15rem;
  font-weight:600;
  color:var(--texte);
  margin-bottom:.25rem;
}
.archetype-trait{
  font-size:.82rem;
  color:var(--texte-soft);
  line-height:1.4;
}

/* ===== Footer ===== */
footer{
  background:var(--violet-nuit);
  color:rgba(255,255,255,.85);
  padding:3.5rem 0 2rem;
  margin-top:4rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:2.5rem;
  margin-bottom:2.5rem;
}
.footer-brand-title{
  font-family:var(--font-titre);
  font-size:1.4rem;
  color:#fff;
  margin-bottom:.8rem;
  display:flex;
  align-items:center;
}
.footer-tagline{font-size:.9rem;line-height:1.6;color:rgba(255,255,255,.7)}
.footer-col h4{color:var(--citrouille);font-size:.85rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;margin-bottom:1rem}
.footer-col ul{list-style:none;padding:0}
.footer-col li{margin-bottom:.5rem}
.footer-col a{color:rgba(255,255,255,.75);font-size:.92rem}
.footer-col a:hover{color:var(--citrouille)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:1.5rem;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1rem;
  font-size:.85rem;
  color:rgba(255,255,255,.6);
}
.footer-bottom a{color:rgba(255,255,255,.7)}
.footer-bottom a:hover{color:var(--citrouille)}

.footer-dossiers{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:1.5rem;
  margin-top:1.5rem;
}
.footer-dossiers-title{
  color:var(--citrouille);
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:1rem;
}
.footer-dossiers-grid{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem .9rem;
  font-size:.85rem;
}
.footer-dossiers-grid a{
  color:rgba(255,255,255,.7);
  padding:.2rem 0;
  border-bottom:1px dashed transparent;
}
.footer-dossiers-grid a:hover{
  color:var(--citrouille);
  border-bottom-color:var(--citrouille);
}

@media(max-width:760px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
}
@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr}
}

/* ===== Mobile fine-tuning ===== */
@media(max-width:600px){
  body{font-size:16px}
  .hero{padding:3rem 0 2.5rem}
  .hero-lede{font-size:1.05rem;padding:0 .5rem}
  .article-wrap{padding:2rem 1.2rem}
  .article-wrap h2{margin-top:2rem}
  section{padding:2.5rem 0}
  .container{padding:0 1.2rem}
  .nav-inner{padding:.8rem 1.2rem}
  .brand{font-size:.95rem}
  .podium-section{padding:3rem 0}
  .cta-section{padding:3.5rem 0}
  footer{padding:2.5rem 0 1.5rem}

  table{
    display:block;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    white-space:normal;
  }
  th,td{padding:.7rem .6rem;font-size:.88rem;min-width:90px}
  th:first-child,td:first-child{min-width:110px}

  .bluf{padding:1.1rem 1.2rem;margin:1.5rem 0}
  .bluf p{font-size:1rem}
  .card{padding:1.3rem}

  .faq-q{padding:1rem 1.1rem;font-size:.95rem}
  .faq-a p{padding:0 1.1rem 1.1rem}

  .footer-bottom{flex-direction:column;align-items:flex-start}
  .footer-dossiers-grid{flex-direction:column;gap:.4rem}

  .archetypes-grid{grid-template-columns:repeat(2,1fr);gap:.8rem}
  .archetype-card{padding:1rem .7rem}
  .archetype-name{font-size:1rem}
  .archetype-trait{font-size:.78rem}

  .channels-grid{grid-template-columns:repeat(2,1fr);gap:.7rem}

  .stat-num{font-size:2.2rem}
}

/* ===== 404 ===== */
.page-404{
  min-height:60vh;
  display:grid;
  place-items:center;
  text-align:center;
  padding:4rem 1.5rem;
}
.page-404 .big{
  font-family:var(--font-titre);
  font-size:clamp(6rem,15vw,10rem);
  background:linear-gradient(135deg,var(--citrouille) 0%,var(--or) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  line-height:1;
  margin-bottom:1rem;
}

/* ===== Utils ===== */
.text-center{text-align:center}
.mt-3{margin-top:2rem}
.mb-3{margin-bottom:2rem}
.muted{color:var(--texte-soft)}
