/*
Theme Name: SID Conseils
Template: hello-elementor
Description: Thème enfant de Hello Elementor pour sidconseils.bj — templates PHP natifs, design system porté depuis la maquette client.
Version: 1.0.0
Author: SID Conseils
Text Domain: sid-conseils
*/

:root {
  --navy: #003A70;
  --blue: #0057A8;
  --yellow: #FDB913;
  --gold: #FFC72C;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --grey: #6B7280;
  --light: #F3F6FA;
  --bgy: #FFF7E0;
}

body.sid-site {
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  margin: 0;
}
.sid-site * { box-sizing: border-box; }
.sid-site img { max-width: 100%; display: block; }
.sid-site a { color: inherit; }
.sid-container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* === HEADER === */
.sid-nav {
  background: var(--white); padding: 14px 40px; display: flex; align-items: center;
  border-bottom: 2px solid var(--yellow);
  position: sticky; top: 0; z-index: 500;
}
.sid-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.sid-logo-mark {
  width: 38px; height: 38px; background: var(--navy); border-radius: 8px;
  display: flex; align-items: flex-end; justify-content: center; padding: 4px;
}
.sid-bars { display: flex; align-items: flex-end; gap: 2px; height: 100%; }
.sid-bars span { width: 5px; border-radius: 1px; }
.sid-bars span:nth-child(1) { height: 50%; background: var(--white); }
.sid-bars span:nth-child(2) { height: 85%; background: var(--yellow); }
.sid-bars span:nth-child(3) { height: 70%; background: var(--white); }
.sid-logo-text { font-weight: 800; color: var(--navy); font-size: 18px; letter-spacing: 1px; line-height: 1.1; }
.sid-logo-text small { display: block; font-weight: 500; color: var(--blue); font-size: 9px; letter-spacing: 1.5px; margin-top: -2px; }
.sid-nav-menu { margin-left: auto; display: flex; gap: 26px; align-items: center; }
.sid-nav-menu a { color: var(--navy); text-decoration: none; font-size: 13px; font-weight: 600; }
.sid-nav-menu a.is-active { color: var(--blue); position: relative; }
.sid-nav-menu a.is-active::after {
  content: ""; display: block; position: absolute; bottom: -22px; left: 0;
  height: 3px; background: var(--yellow); width: 100%;
}
.sid-cta-nav { background: var(--navy); color: var(--white) !important; padding: 8px 16px; border-radius: 6px; }
.sid-lang { font-size: 12px; color: var(--grey); }
.sid-burger { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: .5em; margin-left: 16px; }
.sid-burger span { width: 22px; height: 2px; background: var(--navy); display: block; }
.sid-mobile-drawer { display: none; }

@media (max-width: 900px) {
  .sid-nav-menu > a, .sid-nav-menu > .sid-lang { display: none; }
  .sid-burger { display: flex; }
  .sid-mobile-drawer {
    display: block; position: fixed; inset: 0; background: var(--navy); color: white; padding: 90px 30px 30px;
    transform: translateX(100%); transition: transform .3s ease; z-index: 600; overflow-y: auto;
  }
  .sid-mobile-drawer.is-open { transform: translateX(0); }
  .sid-mobile-drawer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; font-size: 22px; }
  .sid-mobile-drawer a { color: white; text-decoration: none; font-weight: 700; }
  .sid-mobile-drawer-footer { margin-top: 40px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 20px; font-size: 14px; color: #C8DAEC; }
  .sid-mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: 0; color: white; font-size: 28px; cursor: pointer; }
}

/* === HERO === */
.sid-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 70px 60px 90px; color: white; position: relative; overflow: hidden;
}
.sid-hero::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 320px; height: 320px; background: var(--yellow); opacity: .08; border-radius: 50%;
}
.sid-hero::after {
  content: ""; position: absolute; top: 50%; right: 40px; width: 6px; height: 80px;
  background: var(--yellow); transform: translateY(-50%);
}
.sid-hero-eyebrow { color: var(--yellow); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.sid-hero h1 { font-size: 44px; line-height: 1.15; max-width: 800px; font-weight: 800; margin: 0 0 22px; color: white; }
.sid-hero h1 .hl { color: var(--yellow); }
.sid-hero p { font-size: 18px; line-height: 1.6; max-width: 640px; color: #E0EBF6; margin: 0 0 32px; }
.sid-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.sid-btn { padding: 14px 28px; border-radius: 6px; font-weight: 700; text-decoration: none; font-size: 14px; display: inline-block; border: none; cursor: pointer; }
.sid-btn-primary { background: var(--yellow); color: var(--navy); }
.sid-btn-ghost { background: transparent; color: white; border: 2px solid white; }

/* === STATS === */
.sid-stats { background: white; padding: 36px 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; border-bottom: 1px solid #eee; }
.sid-stat .n { font-size: 36px; font-weight: 800; color: var(--navy); }
.sid-stat .n .ac { color: var(--yellow); }
.sid-stat .l { color: var(--grey); font-size: 13px; margin-top: 4px; }

/* === SECTIONS === */
.sid-block { padding: 60px; }
.sid-eyebrow { color: var(--blue); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.sid-block h2 { font-size: 32px; color: var(--navy); font-weight: 800; max-width: 720px; line-height: 1.2; margin: 0 0 20px; }
.sid-block .intro { color: var(--ink); font-size: 16px; line-height: 1.6; max-width: 780px; margin: 0 0 36px; }
.sid-yellow-rule { width: 60px; height: 4px; background: var(--yellow); margin-bottom: 18px; }

.sid-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sid-card { background: var(--light); border-radius: 12px; padding: 28px; border-top: 4px solid var(--yellow); }
.sid-card .ic { width: 44px; height: 44px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--yellow); font-weight: 800; font-size: 20px; margin-bottom: 14px; }
.sid-card h3 { color: var(--navy); font-size: 17px; margin: 0 0 10px; }
.sid-card p { color: var(--ink); font-size: 14px; line-height: 1.5; margin: 0; }
.sid-card a { display: inline-block; margin-top: 14px; color: var(--blue); text-decoration: none; font-weight: 700; font-size: 13px; }
.sid-card.sid-card-cta { background: var(--navy); color: white; border-top-color: var(--yellow); }
.sid-card.sid-card-cta h3 { color: white; }
.sid-card.sid-card-cta p { color: #D0E0F0; }
.sid-card.sid-card-cta .ic { background: var(--yellow); color: var(--navy); }
.sid-card.sid-card-cta a { color: var(--yellow); }

/* === SECTORS BAND === */
.sid-sectors { background: var(--navy); color: white; padding: 50px 60px; }
.sid-sectors h2 { color: white; }
.sid-sectors .sid-eyebrow { color: var(--yellow); }
.sid-sectors-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 24px; }
.sid-sector { background: rgba(255,255,255,.08); padding: 18px 14px; border-left: 3px solid var(--yellow); border-radius: 4px; }
.sid-sector h4 { font-size: 14px; margin: 0 0 6px; }
.sid-sector p { font-size: 12px; color: #C8DAEC; line-height: 1.4; margin: 0; }

/* === INNOVATION === */
.sid-innov { background: linear-gradient(110deg, var(--bgy) 0%, white 80%); padding: 60px; }
.sid-innov-flex { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.sid-innov-text { flex: 1; min-width: 280px; }
.sid-innov-visual { flex: 1; min-width: 280px; background: var(--navy); padding: 40px; border-radius: 14px; color: white; position: relative; overflow: hidden; }
.sid-innov-visual h3 { color: var(--yellow); font-size: 24px; margin: 14px 0 12px; }
.sid-innov-visual p { font-size: 14px; line-height: 1.6; color: #D8E5F2; margin: 0 0 24px; }
.sid-innov-visual .date { display: inline-block; background: var(--yellow); color: var(--navy); padding: 6px 14px; border-radius: 4px; font-weight: 800; font-size: 12px; letter-spacing: 1px; }

/* === ABOUT / CABINET === */
.sid-about { padding: 60px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.sid-about-img { background: linear-gradient(135deg, var(--blue), var(--navy)); height: 320px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 13px; text-align: center; padding: 20px; }
.sid-quote { border-left: 6px solid var(--yellow); padding: 8px 0 8px 26px; margin: 22px 0; }
.sid-quote p { font-style: italic; font-size: 16px; color: var(--navy); line-height: 1.5; margin: 0; }
.sid-quote .auth { color: var(--grey); font-size: 12px; margin-top: 8px; }

/* === INSIGHTS === */
.sid-insights { background: var(--light); padding: 60px; }
.sid-insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sid-insight-card { background: white; border-radius: 12px; overflow: hidden; border: 1px solid #E5E7EB; text-decoration: none; display: block; }
.sid-insight-cover { height: 130px; background: linear-gradient(135deg, var(--blue), var(--navy)); position: relative; }
.sid-insight-cover::after { content: ""; position: absolute; bottom: 0; right: 0; border-style: solid; border-width: 0 60px 60px 0; border-color: transparent var(--yellow) transparent transparent; }
.sid-insight-body { padding: 20px; }
.sid-insight-tag { color: var(--blue); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.sid-insight-body h4 { color: var(--navy); font-size: 15px; margin: 10px 0; line-height: 1.3; }
.sid-insight-body p { font-size: 12px; color: var(--grey); margin: 0; }

/* === CTA FINALE === */
.sid-cta-final { background: var(--navy); padding: 60px; color: white; text-align: center; }
.sid-cta-final::before { content: ""; display: block; width: 80px; height: 4px; background: var(--yellow); margin: 0 auto 24px; }
.sid-cta-final h2 { color: white; font-size: 28px; margin: 0 0 16px; max-width: 720px; margin-left: auto; margin-right: auto; }
.sid-cta-final p { color: #C8DAEC; font-size: 15px; margin: 0 0 28px; }

/* === FOOTER === */
.sid-footer { background: #001a33; color: #B0C8E0; padding: 50px 60px 30px; font-size: 13px; }
.sid-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 30px; }
.sid-footer h5 { color: white; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 14px; }
.sid-footer ul { list-style: none; padding: 0; margin: 0; }
.sid-footer li { margin-bottom: 7px; }
.sid-footer a { color: #B0C8E0; text-decoration: none; }
.sid-footer p { margin: 0; }
.sid-footer .sid-newsletter-form input[type=email] { padding: .6em; border-radius: 4px; border: 0; margin-right: .5em; }
.sid-footer .sid-newsletter-form input[type=submit] { padding: .6em 1.2em; border-radius: 4px; border: 0; background: var(--yellow); color: var(--navy); font-weight: 700; cursor: pointer; }
.sid-legal { border-top: 1px solid #1A4366; padding-top: 16px; display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; font-size: 11px; color: #6E8AAA; }
.sid-legal a { color: #6E8AAA; text-decoration: none; }

/* === Sous-pages (secteurs, expertises, insights, cabinet...) génériques === */
.sid-page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 60px; color: white; }
.sid-page-hero .sid-eyebrow { color: var(--yellow); }
.sid-page-hero h1 { color: white; font-size: 36px; font-weight: 800; margin: 10px 0 0; max-width: 760px; }
.sid-page-content { padding: 60px; max-width: 900px; margin: 0 auto; }
.sid-page-content h2 { color: var(--navy); font-size: 24px; margin: 40px 0 16px; }
.sid-page-content p { line-height: 1.7; margin: 0 0 16px; }
.sid-list { padding-left: 1.3rem; }
.sid-list li { margin-bottom: .6rem; line-height: 1.6; }
.sid-steps { display: grid; gap: 1.5rem; margin: 1.5rem 0; }
.sid-step { background: var(--light); border-left: 4px solid var(--yellow); border-radius: 8px; padding: 1.2rem 1.5rem; }
.sid-step h4 { color: var(--navy); margin: 0 0 .4rem; }
.sid-step p { margin: 0; }
.sid-cards2 { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin: 1.5rem 0; }
.sid-card2 { border: 1px solid #E2E5EA; border-radius: 8px; padding: 1.5rem; }
.sid-card2 h4 { color: var(--navy); margin: 0 0 .3rem; }
.sid-card2 .meta { color: var(--grey); font-size: .9rem; margin-bottom: .5rem; }
.sid-faq-item { border-bottom: 1px solid #E2E5EA; padding: 1rem 0; }
.sid-faq-item summary { cursor: pointer; font-weight: 700; color: var(--navy); }
.sid-faq-item[open] summary { margin-bottom: .6rem; }

@media (max-width: 900px) {
  .sid-container, .sid-hero, .sid-block, .sid-sectors, .sid-innov, .sid-about, .sid-insights, .sid-cta-final, .sid-footer, .sid-page-hero, .sid-page-content { padding-left: 24px; padding-right: 24px; }
  .sid-grid-3, .sid-sectors-grid, .sid-insights-grid, .sid-footer-grid { grid-template-columns: 1fr; }
  .sid-about { grid-template-columns: 1fr; }
  .sid-hero h1 { font-size: 30px; }
  .sid-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   INTERACTIVITÉ : survols, transitions, animations au défilement
   ============================================================ */

html { scroll-behavior: smooth; }

/* --- Header : ombre au scroll --- */
.sid-nav { transition: box-shadow .3s ease; }
.sid-nav.is-scrolled { box-shadow: 0 4px 16px rgba(0,0,0,.08); }

/* --- Logo --- */
.sid-logo { transition: transform .2s ease; }
.sid-logo:hover { transform: translateY(-1px); }
.sid-logo:hover .sid-logo-mark { box-shadow: 0 4px 12px rgba(0,58,112,.35); }
.sid-logo-mark { transition: box-shadow .25s ease; }

/* --- Liens de nav : soulignement animé au survol --- */
.sid-nav-menu > a:not(.sid-cta-nav) { position: relative; padding-bottom: 4px; transition: color .2s ease; }
.sid-nav-menu > a:not(.sid-cta-nav)::after {
  content: ""; position: absolute; bottom: -22px; left: 0; height: 3px; width: 0;
  background: var(--yellow); transition: width .25s ease;
}
.sid-nav-menu > a:not(.sid-cta-nav):hover { color: var(--blue); }
.sid-nav-menu > a:not(.sid-cta-nav):hover::after { width: 100%; }
.sid-nav-menu > a.is-active::after { width: 100%; }

/* --- Boutons --- */
.sid-btn { transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease; }
.sid-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(253,185,19,.35); }
.sid-btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }
.sid-cta-nav { transition: transform .2s ease, box-shadow .2s ease; }
.sid-cta-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,58,112,.3); }

/* Flèche "→" qui glisse vers la droite au survol des liens/boutons qui en contiennent une */
.sid-btn, .sid-card a, .sid-card2 h4 a, .sid-insight-card, .sid-footer a, .sid-page-content a {
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, opacity .2s ease;
}
.sid-card a:hover, .sid-page-content a:not(.sid-btn):hover { text-decoration: underline; }

/* --- Cartes : élévation au survol --- */
.sid-card, .sid-card2, .sid-step, .sid-sector {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sid-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,58,112,.14); }
.sid-card.sid-card-cta:hover { box-shadow: 0 16px 32px rgba(0,58,112,.35); }
.sid-card2:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.08); border-color: var(--yellow); }
.sid-step:hover { transform: translateX(4px); border-left-width: 6px; }
.sid-sector { cursor: default; }
.sid-sector:hover { background: rgba(255,255,255,.16); transform: translateY(-4px); }

/* --- Cartes Insights : zoom de la couverture + élévation --- */
.sid-insight-card { transition: transform .25s ease, box-shadow .25s ease; }
.sid-insight-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,.1); }
.sid-insight-cover { overflow: hidden; }
.sid-insight-cover::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--blue), var(--navy));
  transition: transform .4s ease;
}
.sid-insight-card:hover .sid-insight-cover { transform: scale(1); }
.sid-insight-card:hover .sid-insight-cover::before { transform: scale(1.08); }
.sid-insight-body h4 { transition: color .2s ease; }
.sid-insight-card:hover .sid-insight-body h4 { color: var(--blue); }

/* --- Image "à propos" --- */
.sid-about-img { transition: transform .3s ease; }
.sid-about-img:hover { transform: scale(1.015); }

/* --- FAQ : icône +/- animée --- */
.sid-faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; transition: color .2s ease; }
.sid-faq-item summary::-webkit-details-marker { display: none; }
.sid-faq-item summary::after {
  content: "+"; font-size: 20px; font-weight: 400; color: var(--yellow); transition: transform .25s ease; margin-left: 12px; flex-shrink: 0;
}
.sid-faq-item[open] summary::after { transform: rotate(45deg); }
.sid-faq-item:hover summary { color: var(--blue); }
.sid-faq-item > div { animation: sidFadeIn .25s ease; }

@keyframes sidFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* --- Stat numbers : léger effet au survol --- */
.sid-stat { transition: transform .2s ease; }
.sid-stat:hover { transform: translateY(-3px); }

/* --- Burger menu : rotation des barres --- */
.sid-burger span { transition: transform .25s ease, opacity .25s ease; }

/* --- Apparition en fondu au chargement (hero + en-tête de page, au-dessus de la ligne de flottaison) --- */
@keyframes sidFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.sid-hero, .sid-page-hero { animation: sidFadeUp .7s ease both; }
.sid-hero-eyebrow, .sid-hero h1, .sid-hero p, .sid-hero-cta { animation: sidFadeUp .6s ease both; }
.sid-hero h1 { animation-delay: .08s; }
.sid-hero p { animation-delay: .16s; }
.sid-hero-cta { animation-delay: .24s; }

/* --- Révélation au défilement (grilles de cartes, sections sous la ligne de flottaison) ---
   Gated by body.sid-js-ready pour ne jamais masquer le contenu si le JS ne s'exécute pas. */
body.sid-js-ready .sid-grid-3,
body.sid-js-ready .sid-sectors-grid,
body.sid-js-ready .sid-insights-grid,
body.sid-js-ready .sid-cards2,
body.sid-js-ready .sid-steps,
body.sid-js-ready section.sid-sectors,
body.sid-js-ready section.sid-innov,
body.sid-js-ready section.sid-about,
body.sid-js-ready section.sid-insights,
body.sid-js-ready section.sid-cta-final {
  opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease;
}
body.sid-js-ready .sid-grid-3.is-visible,
body.sid-js-ready .sid-sectors-grid.is-visible,
body.sid-js-ready .sid-insights-grid.is-visible,
body.sid-js-ready .sid-cards2.is-visible,
body.sid-js-ready .sid-steps.is-visible,
body.sid-js-ready section.sid-sectors.is-visible,
body.sid-js-ready section.sid-innov.is-visible,
body.sid-js-ready section.sid-about.is-visible,
body.sid-js-ready section.sid-insights.is-visible,
body.sid-js-ready section.sid-cta-final.is-visible {
  opacity: 1; transform: translateY(0);
}
/* Cascade des enfants directs des grilles (cartes) */
body.sid-js-ready .sid-grid-3 > *, body.sid-js-ready .sid-sectors-grid > *,
body.sid-js-ready .sid-insights-grid > *, body.sid-js-ready .sid-cards2 > *,
body.sid-js-ready .sid-steps > * {
  transition: opacity .5s ease, transform .5s ease;
}
body.sid-js-ready .sid-grid-3 > *:nth-child(1), body.sid-js-ready .sid-sectors-grid > *:nth-child(1), body.sid-js-ready .sid-insights-grid > *:nth-child(1), body.sid-js-ready .sid-cards2 > *:nth-child(1), body.sid-js-ready .sid-steps > *:nth-child(1) { transition-delay: .05s; }
body.sid-js-ready .sid-grid-3 > *:nth-child(2), body.sid-js-ready .sid-sectors-grid > *:nth-child(2), body.sid-js-ready .sid-insights-grid > *:nth-child(2), body.sid-js-ready .sid-cards2 > *:nth-child(2), body.sid-js-ready .sid-steps > *:nth-child(2) { transition-delay: .1s; }
body.sid-js-ready .sid-grid-3 > *:nth-child(3), body.sid-js-ready .sid-sectors-grid > *:nth-child(3), body.sid-js-ready .sid-insights-grid > *:nth-child(3), body.sid-js-ready .sid-cards2 > *:nth-child(3), body.sid-js-ready .sid-steps > *:nth-child(3) { transition-delay: .15s; }
body.sid-js-ready .sid-grid-3 > *:nth-child(4), body.sid-js-ready .sid-sectors-grid > *:nth-child(4), body.sid-js-ready .sid-insights-grid > *:nth-child(4), body.sid-js-ready .sid-cards2 > *:nth-child(4) { transition-delay: .2s; }
body.sid-js-ready .sid-grid-3 > *:nth-child(5), body.sid-js-ready .sid-sectors-grid > *:nth-child(5) { transition-delay: .25s; }
body.sid-js-ready .sid-grid-3 > *:nth-child(6) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sid-hero, .sid-page-hero, .sid-hero-eyebrow, .sid-hero h1, .sid-hero p, .sid-hero-cta { animation: none !important; }
  body.sid-js-ready .sid-grid-3, body.sid-js-ready .sid-sectors-grid, body.sid-js-ready .sid-insights-grid,
  body.sid-js-ready .sid-cards2, body.sid-js-ready .sid-steps, body.sid-js-ready section.sid-sectors,
  body.sid-js-ready section.sid-innov, body.sid-js-ready section.sid-about, body.sid-js-ready section.sid-insights,
  body.sid-js-ready section.sid-cta-final { opacity: 1 !important; transform: none !important; transition: none !important; }
  .sid-card:hover, .sid-card2:hover, .sid-step:hover, .sid-sector:hover, .sid-insight-card:hover, .sid-btn:hover, .sid-about-img:hover, .sid-team-card:hover { transform: none !important; }
}

/* ============================================================
   FICHES ÉQUIPE (page L'équipe, alimentée dynamiquement par le CPT membre_equipe)
   ============================================================ */
.sid-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin: 24px 0 40px; }
.sid-team-card {
  background: var(--light); border-radius: 12px; padding: 24px; border-top: 4px solid var(--yellow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.sid-team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,58,112,.14); }
.sid-team-photo {
  width: 84px; height: 84px; border-radius: 50%; overflow: hidden; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--blue), var(--navy)); display: flex; align-items: center; justify-content: center;
}
.sid-team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sid-team-card:hover .sid-team-photo img { transform: scale(1.08); }
.sid-team-photo-placeholder { color: white; font-size: 28px; font-weight: 800; }
.sid-team-card h4 { color: var(--navy); font-size: 16px; margin: 0 0 4px; }
.sid-team-role { color: var(--blue); font-size: 13px; font-weight: 700; margin: 0 0 10px; }
.sid-team-card > p { font-size: 14px; line-height: 1.5; margin: 0 0 10px; }
.sid-team-expertises { list-style: none; padding: 0; margin: 0 0 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.sid-team-expertises li {
  background: white; border: 1px solid #E2E5EA; border-radius: 20px; padding: 3px 10px; font-size: 11px; color: var(--navy);
}
.sid-team-quote { font-style: italic; color: var(--navy); font-size: 13px; border-left: 3px solid var(--yellow); padding-left: 10px; }
.sid-team-linkedin { display: inline-block; color: var(--blue); font-weight: 700; font-size: 13px; text-decoration: none; transition: color .2s ease; }
.sid-team-linkedin:hover { color: var(--navy); text-decoration: underline; }

/* --- Cartes cliquables en entier (ex : hub "Le cabinet") --- */
a.sid-card-link { display: block; text-decoration: none; color: inherit; }
.sid-card-cta-label { display: inline-block; margin-top: 14px; color: var(--blue); font-weight: 700; font-size: 13px; transition: transform .2s ease; }
a.sid-card-link:hover .sid-card-cta-label { transform: translateX(4px); }
