:root {
  --green: #58a932;
  --green-dark: #2f7c2c;
  --green-soft: #eef8ea;
  --blue: #0b61a4;
  --blue-dark: #083a6b;
  --ink: #0f172a;
  --muted: #5f6b7a;
  --line: #dfe8ef;
  --white: #ffffff;
  --offwhite: #f7fafc;
  --shadow: 0 22px 60px rgba(8, 58, 107, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--green-dark); }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 4.8rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(1.9rem, 3vw, 3rem); letter-spacing: -0.04em; }
h3 { font-size: 1.25rem; letter-spacing: -0.02em; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 10px; background: var(--ink); color: white; padding: 0.75rem 1rem; border-radius: 10px; z-index: 999; }
.skip-link:focus { left: 10px; }

.topbar { background: var(--blue-dark); color: rgba(255,255,255,0.9); font-size: 0.86rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.topbar a { color: white; font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(223,232,239,0.85); transition: box-shadow 0.25s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(8, 58, 107, 0.11); }
.nav-shell { min-height: 82px; display: flex; align-items: center; gap: 1.4rem; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 0.75rem; min-width: max-content; }
.brand-mark { width: 48px; height: 48px; border-radius: 16px; background: linear-gradient(135deg, var(--green), var(--blue)); display: inline-grid; place-items: center; color: white; font-weight: 900; font-size: 1.35rem; box-shadow: 0 14px 30px rgba(88,169,50,0.22); }
.brand-text, .footer-brand span:last-child { display: grid; }
.brand-text strong, .footer-brand strong { color: var(--blue-dark); font-size: 1.05rem; letter-spacing: -0.02em; }
.brand-text small, .footer-brand small { color: var(--muted); font-size: 0.78rem; max-width: 260px; line-height: 1.2; }
.primary-nav { margin-left: auto; }
.primary-nav > ul { display: flex; align-items: center; gap: 0.15rem; list-style: none; padding: 0; margin: 0; }
.nav-item { position: relative; }
.nav-item > a, .nav-row > a { display: inline-flex; align-items: center; padding: 0.78rem 0.78rem; font-weight: 800; color: #25324a; font-size: 0.94rem; border-radius: 999px; }
.nav-item.is-active > a, .nav-item.is-active .nav-row > a, .nav-item > a:hover, .nav-row > a:hover { background: var(--green-soft); color: var(--green-dark); }
.nav-row { display: flex; align-items: center; }
.dropdown-toggle { appearance: none; border: 0; background: transparent; color: var(--muted); font-size: 0.9rem; padding: 0 0.45rem 0 0; cursor: pointer; }
.dropdown-menu { position: absolute; top: calc(100% + 12px); left: 0; min-width: 250px; list-style: none; margin: 0; padding: 0.6rem; background: #091627; color: white; border-radius: 18px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: 0.22s ease; }
.dropdown-menu::before { content: ""; position: absolute; inset: -14px 0 auto; height: 14px; }
.has-dropdown:hover .dropdown-menu, .has-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 0.72rem 0.85rem; border-radius: 12px; color: rgba(255,255,255,0.88); font-weight: 700; font-size: 0.92rem; }
.dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: white; }
.nav-toggle { display: none; margin-left: auto; border: 0; background: var(--blue-dark); color: white; border-radius: 999px; padding: 0.65rem 0.8rem; align-items: center; gap: 0.45rem; cursor: pointer; }
.nav-toggle span { display: block; width: 16px; height: 2px; background: white; border-radius: 999px; margin: 3px 0; }
.nav-toggle strong { font-size: 0.86rem; }
.header-cta { margin-left: 0.25rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 48px; padding: 0.8rem 1.18rem; border-radius: 999px; font-weight: 900; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--green), var(--blue)); box-shadow: 0 18px 40px rgba(11,97,164,0.2); }
.btn-primary:hover { color: white; box-shadow: 0 20px 50px rgba(88,169,50,0.25); }
.btn-outline { color: white; border-color: rgba(255,255,255,0.36); background: rgba(255,255,255,0.08); }
.btn-outline:hover { color: white; background: rgba(255,255,255,0.16); }
.btn-light { background: white; color: var(--blue-dark); }
.btn-small { min-height: 42px; padding: 0.65rem 0.9rem; font-size: 0.9rem; }
.text-link { display: inline-flex; margin-top: 0.4rem; color: var(--blue); font-weight: 900; }
.text-link::after { content: " →"; margin-left: 0.25rem; }

.hero { position: relative; overflow: hidden; color: white; background: #081527; }
.hero-home { min-height: 720px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background:
    radial-gradient(circle at 12% 20%, rgba(88,169,50,0.35), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(11,97,164,0.42), transparent 32%),
    linear-gradient(135deg, rgba(8,58,107,0.94), rgba(6,14,29,0.98)); }
.hero-bg::before { content: ""; position: absolute; inset: 0; opacity: 0.18; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 44px 44px; }
.hero-bg::after { content: ""; position: absolute; width: 560px; height: 560px; right: -140px; bottom: -180px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; box-shadow: inset 0 0 0 80px rgba(255,255,255,0.02), inset 0 0 0 160px rgba(255,255,255,0.025); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.2fr) 420px; align-items: center; gap: 4rem; padding: 6rem 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--green); font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 1rem; }
.eyebrow::before { content: ""; width: 34px; height: 2px; border-radius: 999px; background: currentColor; }
.hero h1, .hero h2, .page-hero h1 { color: white; }
.hero .lead { margin-top: 1.1rem; max-width: 760px; color: rgba(255,255,255,0.86); font-size: clamp(1.1rem, 2vw, 1.45rem); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.8rem 0; }
.hero-meta span { display: inline-flex; align-items: center; gap: 0.3rem; color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.14); padding: 0.6rem 0.85rem; border-radius: 999px; font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-card { padding: 1.4rem; border-radius: var(--radius-xl); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.16); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.hero-logo { width: 100%; max-width: 360px; margin: 0 auto 1.2rem; filter: drop-shadow(0 14px 22px rgba(0,0,0,0.28)); }
.countdown { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem; margin: 1rem 0; }
.countdown div { text-align: center; padding: 1rem 0.5rem; border-radius: 18px; background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.14); }
.countdown strong { display: block; font-size: 2rem; color: white; line-height: 1; }
.countdown span { color: rgba(255,255,255,0.78); font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: .07em; }
.hero-card p { color: rgba(255,255,255,0.82); }

.page-hero { color: white; background: linear-gradient(135deg, var(--blue-dark), #061326); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 10%, rgba(88,169,50,0.34), transparent 30%), radial-gradient(circle at 88% 30%, rgba(11,97,164,0.45), transparent 30%); }
.compact-hero .container { position: relative; z-index: 1; padding: 5.5rem 0 4.5rem; max-width: 980px; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,0.84); font-size: 1.15rem; margin-top: 1rem; }
.success-hero { min-height: 55vh; display: flex; align-items: center; }

.section { padding: 6rem 0; }
.section-light { background: var(--offwhite); }
.section-dark { background: #071525; color: rgba(255,255,255,0.86); }
.section-dark h2, .section-dark h3 { color: white; }
.section-accent { color: white; background: linear-gradient(135deg, var(--green-dark), var(--blue-dark)); }
.section-heading { max-width: 790px; text-align: center; margin-bottom: 2.5rem; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-accent .section-heading p, .section-dark .section-heading p { color: rgba(255,255,255,0.76); }
.cards { display: grid; gap: 1.25rem; }
.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { position: relative; padding: 1.55rem; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 14px 35px rgba(8,58,107,0.06); transition: transform .22s ease, box-shadow .22s ease, border .22s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(88,169,50,0.28); }
.card p { color: var(--muted); margin-top: 0.75rem; margin-bottom: 0; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; height: 38px; min-width: 38px; padding: 0 0.7rem; border-radius: 999px; color: var(--green-dark); background: var(--green-soft); font-weight: 950; margin-bottom: 1rem; }
.compact-cards .card { min-height: 180px; }
.axes-grid .card { min-height: 230px; }

.split-section { background: white; }
.split-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr); gap: 3.5rem; align-items: center; }
.split-grid p { color: var(--muted); font-size: 1.08rem; }
.feature-list, .dark-card-list { display: grid; gap: 0.9rem; }
.feature-list div, .dark-card-list div { padding: 1rem; border-radius: 18px; background: var(--offwhite); border: 1px solid var(--line); }
.feature-list strong, .dark-card-list strong { display: block; color: var(--blue-dark); margin-bottom: 0.25rem; }
.feature-list span, .dark-card-list span { color: var(--muted); }
.dark-card-list div { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.dark-card-list strong { color: white; }
.dark-card-list span { color: rgba(255,255,255,0.7); }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2.2rem; border-radius: var(--radius-xl); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16); }
.cta-panel h2 { color: white; }
.cta-panel p { max-width: 740px; color: rgba(255,255,255,0.82); }

.content-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 4rem; align-items: start; }
.side-note { position: sticky; top: 135px; padding: 1.25rem; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--green-soft), #eef6ff); border: 1px solid var(--line); }
.side-note strong { display: block; color: var(--blue-dark); font-size: 1.1rem; }
.side-note span { display: block; margin-top: 0.6rem; color: var(--muted); }
.rich-text { max-width: 840px; }
.rich-text h2 { margin-bottom: 1rem; }
.rich-text p { color: var(--muted); font-size: 1.07rem; }
.check-list { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: 0.75rem; }
.check-list li { position: relative; padding-left: 2rem; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.35rem; height: 1.35rem; display: inline-grid; place-items: center; border-radius: 999px; color: white; background: var(--green); font-weight: 900; font-size: 0.78rem; }
.pillar-table { display: grid; gap: 0.9rem; }
.pillar-table div { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 1.2rem; padding: 1.1rem 1.25rem; border-radius: 18px; background: white; border: 1px solid var(--line); }
.pillar-table strong { color: var(--blue-dark); font-size: 1.15rem; text-transform: uppercase; letter-spacing: .05em; }
.pillar-table span { color: var(--muted); }
.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.stat-grid div { padding: 1.2rem; border-radius: 20px; background: var(--offwhite); border: 1px solid var(--line); }
.stat-grid strong { display: block; font-size: 2.4rem; color: var(--green-dark); line-height: 1; }
.stat-grid span { color: var(--muted); font-weight: 800; }

.timeline { position: relative; display: grid; gap: 1rem; max-width: 880px; }
.timeline div { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 1.2rem; align-items: center; padding: 1.1rem 1.2rem; border-radius: 18px; background: white; border: 1px solid var(--line); box-shadow: 0 14px 35px rgba(8,58,107,0.06); }
.timeline time { color: var(--green-dark); font-weight: 950; }
.timeline strong { color: var(--blue-dark); font-size: 1.05rem; }
.agenda-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.agenda-day { padding: 1.4rem; border-radius: var(--radius-lg); background: white; border: 1px solid var(--line); box-shadow: 0 14px 35px rgba(8,58,107,0.06); }
.agenda-day span { color: var(--green-dark); font-weight: 950; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.agenda-day h3 { margin-top: .35rem; }
.agenda-day ul { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.mini-timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.mini-timeline div { padding: 1.1rem; border-radius: 18px; background: white; border: 1px solid var(--line); }
.mini-timeline strong { display: block; color: var(--green-dark); margin-bottom: .45rem; }
.mini-timeline span { color: var(--muted); }

.form-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: start; }
.form-intro { position: sticky; top: 135px; }
.form-intro p { color: var(--muted); font-size: 1.05rem; }
.pro-form { display: grid; gap: 1rem; padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-xl); background: white; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
label { display: grid; gap: 0.45rem; color: var(--blue-dark); font-weight: 900; }
input, select, textarea { width: 100%; border: 1px solid #ccd8e3; background: #fbfdff; border-radius: 14px; padding: 0.9rem 1rem; font: inherit; color: var(--ink); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(88,169,50,0.12); }
textarea { resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--muted); font-weight: 700; line-height: 1.4; }
.consent input { width: 18px; height: 18px; margin-top: 0.15rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.map-placeholder { display: grid; place-items: center; min-height: 220px; margin-top: 1.5rem; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(88,169,50,0.14), rgba(11,97,164,0.14)), repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(8,58,107,0.06) 13px, rgba(8,58,107,0.06) 14px); color: var(--blue-dark); font-weight: 950; text-align: center; border: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.contact-card { padding: 1.4rem; border-radius: var(--radius-lg); background: white; border: 1px solid var(--line); box-shadow: 0 14px 35px rgba(8,58,107,0.06); }
.contact-card span { font-size: 1.8rem; }
.contact-card h2 { font-size: 1.15rem; margin: 0.7rem 0 0.65rem; }
.contact-card p { color: var(--muted); }
.contact-card a { color: var(--blue); font-weight: 900; }

.site-footer { background: #071323; color: rgba(255,255,255,0.78); padding: 4rem 0 1.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.6fr 1fr; gap: 3rem; }
.site-footer h2 { color: white; font-size: 1rem; margin-bottom: 1rem; }
.site-footer p { max-width: 520px; color: rgba(255,255,255,0.72); margin-top: 1rem; }
.footer-brand .brand-mark { box-shadow: none; }
.footer-brand strong { color: white; }
.footer-brand small { color: rgba(255,255,255,0.62); }
.footer-links { padding: 0; margin: 0; list-style: none; display: grid; gap: 0.6rem; }
.footer-links a, .site-footer address a { color: rgba(255,255,255,0.82); }
.footer-links a:hover, .site-footer address a:hover { color: white; }
.site-footer address { font-style: normal; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.2rem; margin-top: 3rem; font-size: 0.9rem; color: rgba(255,255,255,0.55); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .header-cta { display: none; }
  .primary-nav > ul { gap: 0; }
  .nav-item > a, .nav-row > a { padding: 0.68rem 0.55rem; font-size: 0.88rem; }
}

@media (max-width: 920px) {
  .topbar-inner { flex-direction: column; align-items: flex-start; padding: 0.5rem 0; gap: .25rem; }
  .nav-shell { min-height: 74px; }
  .nav-toggle { display: inline-flex; }
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); max-height: calc(100vh - 110px); overflow: auto; display: none; }
  .primary-nav.is-open { display: block; }
  .primary-nav > ul { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; padding: 1rem 0; display: grid; align-items: stretch; }
  .nav-item > a, .nav-row > a { width: 100%; border-radius: 12px; padding: 0.9rem; }
  .nav-row { justify-content: space-between; }
  .dropdown-toggle { padding: 0.8rem 1rem; font-size: 1rem; }
  .dropdown-menu { position: static; min-width: 0; box-shadow: none; border-radius: 14px; margin: 0 0 0.55rem; padding: 0.4rem; opacity: 1; visibility: visible; transform: none; background: #0b1727; display: none; }
  .nav-item.is-open .dropdown-menu { display: block; }
  .hero-home { min-height: auto; }
  .hero-grid, .split-grid, .form-layout, .content-layout { grid-template-columns: 1fr; gap: 2rem; }
  .side-note, .form-intro { position: static; }
  .three-columns, .two-columns, .agenda-grid, .contact-grid, .mini-timeline, .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 4rem 0; }
  .hero-card { max-width: 520px; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .pillar-table div { grid-template-columns: 1fr; gap: .4rem; }
  .timeline div { grid-template-columns: 1fr; gap: .25rem; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 4rem 0; }
  .compact-hero .container { padding: 4.5rem 0 3.5rem; }
  .brand-text small { display: none; }
  .brand-mark { width: 42px; height: 42px; border-radius: 14px; }
  .hero-meta { display: grid; }
  .hero-actions, .hero-actions .btn, .cta-panel .btn { width: 100%; }
  .btn { width: 100%; }
  .form-row, .stat-grid { grid-template-columns: 1fr; }
  .pro-form { padding: 1rem; border-radius: 20px; }
  .countdown strong { font-size: 1.5rem; }
}
/* =========================================================
   PAGE ACCUEIL - STRUCTURE INSPIRÉE DE LA VIDÉO
   ========================================================= */

.home-hero-video {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: white;
  background: #081527;
  padding-top: 70px;
}

.home-hero-video .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(88,169,50,0.35), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(11,97,164,0.42), transparent 32%),
    linear-gradient(135deg, rgba(8,58,107,0.96), rgba(6,14,29,0.98));
}

.home-hero-video .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.home-hero-video .hero-bg::after {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -180px;
  bottom: -240px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 80px rgba(255,255,255,0.02),
    inset 0 0 0 160px rgba(255,255,255,0.025);
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1400px;
  width: 100%;
  padding: 1.5rem 1rem 4rem;
  margin: 0 auto;
  overflow: hidden;
}

.home-hero-logo {
  width: min(380px, 82vw);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.35));
}

.hero-eyebrow {
  justify-content: center;
  color: var(--green);
  margin-bottom: 1.4rem;
}

.hero-eyebrow::before {
  display: none;
}

.home-hero-video h1 {
  color: white;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.theme-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.theme-title {
  max-width: 1000px;
  margin: 0 auto 2rem;
  color: #ffffff;
  font-size: clamp(1.4rem, 2.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.45;
  font-style: italic;
  text-align: center;
  padding-left: 0;
  font-family: Georgia, "Times New Roman", serif;
  text-shadow: 0 3px 10px rgba(0,0,0,0.35);
}


.home-line-decoration {
  width: min(660px, 90vw);
  margin: 2.4rem auto;
  opacity: 0.95;
  filter: drop-shadow(0 14px 22px rgba(88,169,50,0.25));
}

.home-event-infos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 auto 2rem;
}

.home-event-infos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 900;
}

.home-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}


/* CHIFFRES CLÉS */

.home-stats-section {
  padding: 4.5rem 0 3rem;
  background: white;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow);
}

.home-stat-card {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid var(--line);
}

.home-stat-card:last-child {
  border-right: 0;
}

.home-stat-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 950;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.home-stat-card span {
  color: var(--muted);
  font-weight: 900;
}


/* AXES DE LA CONFÉRENCE */

.home-axes-section {
  background: var(--offwhite);
}

.home-axes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.home-axis-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 1.6rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 35px rgba(8,58,107,0.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-axis-card:hover {
  transform: translateY(-6px);
  border-color: rgba(88,169,50,0.45);
  box-shadow: 0 22px 55px rgba(8,58,107,0.12);
}

.axis-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(88,169,50,0.22);
}

.home-axis-card h3 {
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.home-axis-card p {
  color: var(--muted);
  font-size: 0.98rem;
}


/* PARTENAIRES */

.partners-section {
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.partner-slot {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1.5px dashed rgba(11,97,164,0.3);
  background:
    linear-gradient(135deg, rgba(88,169,50,0.06), rgba(11,97,164,0.06)),
    white;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.partner-slot:hover {
  transform: translateY(-4px);
  border-color: rgba(88,169,50,0.55);
  box-shadow: 0 16px 38px rgba(8,58,107,0.08);
}

.partner-slot span {
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.partner-slot img {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
}


/* RESPONSIVE ACCUEIL */

@media (max-width: 1100px) {
  .home-axes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .home-hero-video {
    min-height: auto;
    .home-hero-video {
  min-height: auto;
  padding-top: 35px;
}

.home-hero-inner {
  padding: 1rem 1rem 3rem;
}

.home-main-title {
  font-size: 1.9rem;
  white-space: normal;
  line-height: 1.15;
}
  }

  .home-hero-inner {
    padding: 4.5rem 0;
  }

  .home-stats-grid {
    grid-template-columns: 1fr;
  }

  .home-stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-stat-card:last-child {
    border-bottom: 0;
  }

  .home-axes-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-actions,
  .home-hero-actions .btn {
    width: 100%;
  }
}
.brand-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.home-main-title {
  color: #ffffff;
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 auto 1.8rem;
  text-align: center;
  white-space: nowrap;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  max-width: 100%;
  line-height: 1;
}
@media (max-width: 760px) {
  .home-main-title {
    font-size: 1.6rem;
    white-space: normal;
    line-height: 1.25;
  }
}
.home-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.5;
}

.footer-contact-list a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: #7ac943;
}

.contact-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
  font-size: 0.95rem;
}
.site-footer h3,
.footer h3,
footer h3 {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.event-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.event-blog-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 45px rgba(8,58,107,0.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.event-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(8,58,107,0.16);
}

.event-blog-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.event-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.event-blog-card:hover .event-blog-image img {
  transform: scale(1.08);
}

.event-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-blog-content {
  padding: 1.5rem;
}

.event-date-line {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
}

.event-blog-content h3 {
  color: var(--blue-dark);
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.event-blog-content p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.event-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 900;
  text-decoration: none;
}

.event-more:hover {
  opacity: 0.9;
}

@media (max-width: 1000px) {
  .event-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .event-blog-grid {
    grid-template-columns: 1fr;
  }

  .event-blog-image {
    height: 210px;
  }
}
.event-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: rgba(255,255,255,0.85);
  font-weight: 900;
  font-size: 1rem;
}

.event-placeholder span {
  opacity: 0.9;
}
.nav-parent {
  color: inherit;
  font-weight: 800;
  cursor: default;
  display: inline-flex;
  align-items: center;
}
.clean-section-title {
  margin: 0 0 1.25rem 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1f2f4a;
  background: none;
  padding: 0;
  border: 0;
  display: block;
}

.clean-section-title::before,
.clean-section-title::after {
  display: none !important;
  content: none !important;
}
.small-page-title {
  font-size: 1.45rem !important;
  line-height: 1.3;
  font-weight: 400 !important;
  max-width: 900px;
}
#dates .clean-section-title {
  text-align: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  font-weight: 850;
  color: #083a6b;
}
/* CORRECTION MENU PRINCIPAL */
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.primary-nav li {
  list-style: none;
}

.primary-nav a,
.nav-parent {
  white-space: nowrap;
}

.brand-logo-img {
  max-width: 230px;
  height: auto;
}

.header-cta,
.btn-small {
  white-space: nowrap;
  padding: 0.85rem 1.3rem;
}
@media (max-width: 1200px) {
  .brand-logo-img {
    max-width: 190px;
  }

  .primary-nav > ul {
    gap: 0.8rem;
  }

  .primary-nav a,
  .nav-parent {
    font-size: 0.95rem;
  }

  .header-cta,
  .btn-small {
    padding: 0.75rem 1rem;
  }
}
/* FIX DEFINITIF MENU SUR UNE SEULE LIGNE */
.nav-shell {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  flex-wrap: nowrap !important;
}

.brand {
  flex: 0 0 auto !important;
}

.brand-logo-img {
  width: 210px !important;
  max-width: 210px !important;
  height: auto !important;
}

.primary-nav {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.primary-nav > ul {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.65rem !important;
  flex-wrap: nowrap !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.primary-nav > ul > li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto !important;
}

.primary-nav a,
.nav-parent {
  font-size: 0.92rem !important;
  white-space: nowrap !important;
  padding: 0.7rem 0.75rem !important;
}

.nav-row {
  display: flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
}

.header-cta,
.btn-small,
.nav-shell > .btn {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  padding: 0.75rem 1.1rem !important;
  font-size: 0.95rem !important;
}
/* FIX MENU FINAL - CONTACT ALIGNÉ */
.nav-shell {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.5rem !important;
  flex-wrap: nowrap !important;
}

.brand {
  flex: 0 0 auto !important;
}

.brand-logo-img {
 width: 140px !important;
  max-width: 160px !important;
  height: auto !important;
}

.primary-nav {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.primary-nav > ul {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.25rem !important;
  flex-wrap: nowrap !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.primary-nav > ul > li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto !important;
}

.primary-nav a,
.nav-parent {
  font-size: 0.82rem !important;
  white-space: nowrap !important;
  padding: 0.55rem 0.45rem !important;
  font-weight: 800 !important;
}

.nav-row {
  display: flex !important;
  align-items: center !important;
  gap: 0.15rem !important;
}

.dropdown-toggle {
  width: 14px !important;
  min-width: 14px !important;
  padding: 0 !important;
}

.header-cta,
.btn-small,
.nav-shell > .btn {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  padding: 0.65rem 0.9rem !important;
  font-size: 0.82rem !important;
}
/* TITRES FORMULAIRE DE SOUMISSION */
.submission-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.submission-heading .clean-section-title {
  text-align: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  font-weight: 850;
  color: #083a6b;
  background: none !important;
}

.submission-heading h3 {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.35;
  color: #26364f;
  margin: 0 0 0.75rem;
  background: none !important;
}

.submission-heading p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #5f6f85;
  margin: 0 auto;
  background: none !important;
}
#soumission .container {
  max-width: 1180px;
}

.submission-top {
  text-align: center !important;
  max-width: 820px;
  margin: 0 auto 2.5rem !important;
}

.submission-top .clean-section-title {
  text-align: center !important;
  margin: 0 auto 1rem !important;
  font-size: 2rem;
  font-weight: 850;
  color: #083a6b;
}

.submission-top h3 {
  text-align: center !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  color: #1f2f4a;
  margin: 0 0 0.8rem !important;
}

.submission-top p {
  text-align: center !important;
  font-size: 1rem;
  font-weight: 400 !important;
  line-height: 1.7;
  color: #5f6f85;
  margin: 0 auto !important;
}

.submission-form-wrapper {
  max-width: 980px;
  margin: 0 auto !important;
}

#soumission form {
  width: 100%;
}
#appel .clean-section-title {
  color: #083a6b !important;
}
.section-intro {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: #5f6f85;
}
#public .clean-section-title {
  text-align: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  font-weight: 850;
  color: #083a6b;
}

#public .section-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: #5f6f85;
}
/* PARTICIPER - PUBLIC CIBLE */
#public .eyebrow {
  display: none !important;
}

#public .clean-section-title {
  display: block !important;
  text-align: center !important;
  margin: 0 auto 1rem !important;
  font-size: 2rem !important;
  font-weight: 850 !important;
  color: #083a6b !important;
  background: transparent !important;
}

#public .section-intro {
  display: block !important;
  max-width: 760px !important;
  margin: 0 auto 2rem !important;
  text-align: center !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  color: #5f6f85 !important;
  background: transparent !important;
}
.inscription-title-full {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  font-weight: 850;
  color: #083a6b;
}
/* PRESENTATION PAGE - CORRECTIONS */
#contexte,
#concept,
#vision,
#objectifs,
#axes,
#comite {
  scroll-margin-top: 160px;
}

.clean-section-title {
  text-align: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  font-weight: 850;
  color: #083a6b;
  line-height: 1.2;
}

.section-intro {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: #5f6f85;
}

.rich-text {
  max-width: 900px;
  margin: 0 auto;
}

.rich-text h3 {
  color: #083a6b;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.rich-text p {
  color: #5f6f85;
  line-height: 1.8;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.side-note {
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(88,169,50,0.08), rgba(11,97,164,0.08));
  border: 1px solid rgba(11,97,164,0.15);
}

.side-note strong {
  display: block;
  color: #083a6b;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.side-note span {
  display: block;
  color: #5f6f85;
  line-height: 1.7;
}

.nav-parent {
  color: inherit;
  font-weight: 800;
  cursor: default;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 900px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
}
/* PRESENTATION - BLOCS CONTEXTE */
.context-blocks {
  display: grid;
  gap: 1.3rem;
  margin-top: 2rem;
}

.context-block {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.4rem;
  align-items: start;
  background: #ffffff;
  border: 1px solid rgba(11, 97, 164, 0.12);
  border-left: 6px solid #58a932;
  border-radius: 22px;
  padding: 1.8rem 2rem;
  box-shadow: 0 16px 40px rgba(8, 58, 107, 0.08);
}

.context-block-number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #58a932, #0b61a4);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
}

.context-block-content h3 {
  margin: 0 0 0.7rem;
  color: #083a6b;
  font-size: 1.35rem;
  font-weight: 850;
}

.context-block-content p {
  margin: 0;
  color: #5f6f85;
  font-size: 1rem;
  line-height: 1.8;
}

.context-block-highlight {
  background: linear-gradient(135deg, rgba(88,169,50,0.10), rgba(11,97,164,0.10)), #ffffff;
  border-left-color: #0b61a4;
}

@media (max-width: 700px) {
  .context-block {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .context-block-number {
    width: 56px;
    height: 56px;
  }
}
/* TITRE PREMIUM - CONTEXTE */
.contexte-premium-heading {
  position: relative;
  max-width: 1050px;
  margin: 0 auto 3rem;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(88,169,50,0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(11,97,164,0.14), transparent 35%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  border: 1px solid rgba(11,97,164,0.12);
  box-shadow: 0 24px 70px rgba(8,58,107,0.10);
  overflow: hidden;
}

.contexte-premium-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 140px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #58a932, #0b61a4);
}

.contexte-premium-heading::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(88,169,50,0.08);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  color: #0b61a4;
  background: rgba(11,97,164,0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contexte-premium-heading h2 {
  max-width: 850px;
  margin: 0 auto 1.2rem;
  color: #083a6b;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.contexte-premium-heading p {
  max-width: 850px;
  margin: 0 auto;
  color: #5f6f85;
  font-size: 1.08rem;
  line-height: 1.8;
}
/* TITRE PREMIUM - CONCEPT */
.concept-premium-heading {
  position: relative;
  max-width: 1050px;
  margin: 0 auto 3rem;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(88,169,50,0.14), transparent 35%),
    radial-gradient(circle at bottom left, rgba(11,97,164,0.14), transparent 35%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  border: 1px solid rgba(11,97,164,0.12);
  box-shadow: 0 24px 70px rgba(8,58,107,0.10);
  overflow: hidden;
}

.concept-premium-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 140px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #58a932, #0b61a4);
}

.concept-premium-heading h2 {
  max-width: 850px;
  margin: 0 auto 1.2rem;
  color: #083a6b;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.concept-premium-heading p {
  max-width: 850px;
  margin: 0 auto;
  color: #5f6f85;
  font-size: 1.08rem;
  line-height: 1.8;
}
/* TITRE PREMIUM - VISION */
.vision-premium-heading {
  position: relative;
  max-width: 1050px;
  margin: 0 auto 2.5rem;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(88,169,50,0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(11,97,164,0.14), transparent 35%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  border: 1px solid rgba(11,97,164,0.12);
  box-shadow: 0 24px 70px rgba(8,58,107,0.10);
  overflow: hidden;
}

.vision-premium-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 140px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #58a932, #0b61a4);
}

.vision-premium-heading h2 {
  max-width: 850px;
  margin: 0 auto 1.2rem;
  color: #083a6b;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.vision-premium-heading p {
  max-width: 850px;
  margin: 0 auto;
  color: #5f6f85;
  font-size: 1.08rem;
  line-height: 1.8;
}

.vision-professional-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 2.2rem;
  border-radius: 28px;
  background: #ffffff;
  border-left: 6px solid #58a932;
  box-shadow: 0 18px 45px rgba(8,58,107,0.08);
}

.vision-professional-box p {
  margin: 0 0 1rem;
  color: #5f6f85;
  font-size: 1.05rem;
  line-height: 1.85;
}

.vision-professional-box p:last-child {
  margin-bottom: 0;
}
/* VISION - STYLE PROFESSIONNEL */
.vision-premium-heading {
  position: relative !important;
  max-width: 1050px !important;
  margin: 0 auto 2.5rem !important;
  padding: 3rem 2rem !important;
  text-align: center !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at top left, rgba(88,169,50,0.16), transparent 35%),
    radial-gradient(circle at bottom right, rgba(11,97,164,0.16), transparent 35%),
    linear-gradient(135deg, #ffffff, #f7fbff) !important;
  border: 1px solid rgba(11,97,164,0.14) !important;
  box-shadow: 0 24px 70px rgba(8,58,107,0.12) !important;
  overflow: hidden !important;
}

.vision-premium-heading::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: 140px !important;
  height: 5px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #58a932, #0b61a4) !important;
}

.vision-premium-heading h2 {
  max-width: 850px !important;
  margin: 0 auto 1.2rem !important;
  color: #083a6b !important;
  font-size: clamp(2rem, 4vw, 3.1rem) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
}

.vision-premium-heading p {
  max-width: 850px !important;
  margin: 0 auto !important;
  color: #5f6f85 !important;
  font-size: 1.08rem !important;
  line-height: 1.8 !important;
}

.vision-professional-box {
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 2rem 2.2rem !important;
  border-radius: 28px !important;
  background: #ffffff !important;
  border-left: 6px solid #58a932 !important;
  box-shadow: 0 18px 45px rgba(8,58,107,0.10) !important;
}

.vision-professional-box p {
  margin: 0 0 1rem !important;
  color: #5f6f85 !important;
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
}

.vision-professional-box p:last-child {
  margin-bottom: 0 !important;
}
/* ==================================================
   SECTION OBJECTIFS
================================================== */

.objectifs-section {
  padding: 6rem 0;
  background: #ffffff;
}

/* Grand bloc supérieur */

.objectifs-intro {
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto 3.5rem;
  padding: 4.5rem 3rem;
  text-align: center;
  border: 1px solid rgba(11, 97, 164, 0.16);
  border-radius: 36px;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(88, 169, 50, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(11, 97, 164, 0.13),
      transparent 40%
    ),
    #ffffff;

  box-shadow: 0 25px 65px rgba(8, 58, 107, 0.12);
}

/* Petite barre verte et bleue en haut */

.objectifs-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 170px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--green),
    var(--blue)
  );
  transform: translateX(-50%);
}

/* Petit titre arrondi */

.objectifs-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.7rem;
  padding: 0.65rem 1.4rem;
  color: var(--blue);
  background: #eaf3fa;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Grand titre Objectifs */

.objectifs-intro h2 {
  margin: 0 0 1.4rem;
  color: var(--blue-dark);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

/* Texte sous le titre */

.objectifs-intro p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.9;
}

/* Grille des trois objectifs */

.objectifs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Carte individuelle */

.objectif-card {
  position: relative;
  min-height: 230px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(8, 58, 107, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Petite décoration en haut des cartes */

.objectif-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 85px;
  height: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(
    90deg,
    var(--green),
    var(--blue)
  );
}

/* Effet au passage de la souris */

.objectif-card:hover {
  transform: translateY(-6px);
  border-color: rgba(88, 169, 50, 0.35);
  box-shadow: 0 25px 60px rgba(8, 58, 107, 0.14);
}

/* Titres des cartes */

.objectif-card h3 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.2;
}

/* Textes des cartes */

.objectif-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ==================================================
   VERSION TABLETTE
================================================== */

@media (max-width: 920px) {
  .objectifs-section {
    padding: 5rem 0;
  }

  .objectifs-intro {
    padding: 3.5rem 2rem;
    border-radius: 30px;
  }

  .objectifs-grid {
    grid-template-columns: 1fr;
  }

  .objectif-card {
    min-height: auto;
  }
}

/* ==================================================
   VERSION TÉLÉPHONE
================================================== */

@media (max-width: 640px) {
  .objectifs-section {
    padding: 4rem 0;
  }

  .objectifs-intro {
    margin-bottom: 2rem;
    padding: 3rem 1.3rem;
    border-radius: 24px;
  }

  .objectifs-intro::before {
    width: 120px;
    height: 5px;
  }

  .objectifs-eyebrow {
    padding: 0.55rem 1rem;
    font-size: 0.7rem;
  }

  .objectifs-intro h2 {
    font-size: 2.6rem;
  }

  .objectifs-intro p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .objectifs-grid {
    gap: 1rem;
  }

  .objectif-card {
    min-height: auto;
    padding: 1.5rem;
    border-radius: 20px;
  }

  .objectif-card h3 {
    font-size: 1.3rem;
  }

  .objectif-card p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
/* ==================================================
   CONCEPT - BLOCS PROFESSIONNELS
================================================== */

.concept-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.concept-pro-card {
  position: relative;
  min-height: 250px;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(11, 97, 164, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.96));
  box-shadow: 0 20px 50px rgba(8, 58, 107, 0.08);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.concept-pro-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.concept-pro-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(88, 169, 50, 0.10),
    rgba(11, 97, 164, 0.05),
    transparent 70%
  );
  pointer-events: none;
}

.concept-pro-card:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 169, 50, 0.28);
  box-shadow: 0 28px 70px rgba(8, 58, 107, 0.14);
}

.concept-pro-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.concept-pro-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(11, 97, 164, 0.18);
  flex-shrink: 0;
}

.concept-pro-card h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.concept-pro-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 95%;
}

/* Responsive */

@media (max-width: 920px) {
  .concept-pro-grid {
    grid-template-columns: 1fr;
  }

  .concept-pro-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .concept-pro-card {
    padding: 1.5rem;
    border-radius: 22px;
  }

  .concept-pro-top {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .concept-pro-badge {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .concept-pro-card h3 {
    font-size: 1.6rem;
  }

  .concept-pro-card p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
  }
}
/* ==================================================
   COMITÉ SCIENTIFIQUE - CARTES DES MEMBRES
================================================== */

.comite-membres-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}


/* Carte complète */

.membre-scientifique-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 97, 164, 0.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(8, 58, 107, 0.09);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* Ligne décorative verte et bleue */

.membre-scientifique-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--green),
    var(--blue)
  );
}


/* Effet au passage de la souris */

.membre-scientifique-card:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 169, 50, 0.32);
  box-shadow: 0 30px 75px rgba(8, 58, 107, 0.15);
}


/* Zone de la photo */

.membre-scientifique-photo {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(88, 169, 50, 0.16),
      rgba(11, 97, 164, 0.16)
    );
}


/* Image */

.membre-scientifique-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}


/* Zoom léger au survol */

.membre-scientifique-card:hover
.membre-scientifique-photo img {
  transform: scale(1.045);
}


/* Contenu de la carte */

.membre-scientifique-contenu {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.7rem;
}


/* Fonction : président ou membre */

.membre-scientifique-role {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0.9rem;
  color: var(--blue);
  background: #eaf3fa;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}


/* Nom du membre */

.membre-scientifique-contenu h3 {
  margin: 0 0 0.65rem;
  color: var(--blue-dark);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.2;
}


/* Titre ou spécialité */

.membre-scientifique-titre {
  margin: 0 0 1rem;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.5;
}


/* Description */

.membre-scientifique-description {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}


/* Zone des boutons */

.membre-scientifique-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: auto;
}


/* Style général des boutons */

.membre-scientifique-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}


.membre-scientifique-btn:hover {
  transform: translateY(-2px);
}


/* Bouton Télécharger le CV */

.membre-scientifique-btn-principal {
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );
  box-shadow: 0 12px 28px rgba(11, 97, 164, 0.18);
}


.membre-scientifique-btn-principal:hover {
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(11, 97, 164, 0.26);
}


/* Bouton Biographie */

.membre-scientifique-btn-secondaire {
  color: var(--blue-dark);
  background: #ffffff;
  border-color: var(--line);
}


.membre-scientifique-btn-secondaire:hover {
  color: var(--green-dark);
  border-color: rgba(88, 169, 50, 0.4);
  background: var(--green-soft);
}


/* ==================================================
   VERSION TABLETTE
================================================== */

@media (max-width: 920px) {
  .comite-membres-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membre-scientifique-photo {
    height: 320px;
  }
}


/* ==================================================
   VERSION TÉLÉPHONE
================================================== */

@media (max-width: 640px) {
  .comite-membres-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .membre-scientifique-card {
    border-radius: 22px;
  }

  .membre-scientifique-photo {
    height: 320px;
  }

  .membre-scientifique-contenu {
    padding: 1.4rem;
  }

  .membre-scientifique-contenu h3 {
    font-size: 1.4rem;
  }

  .membre-scientifique-actions {
    width: 100%;
  }

  .membre-scientifique-btn {
    width: 100%;
  }
}
/* ==================================================
   PROGRAMME - FORMATS PROFESSIONNELS
================================================== */

.formats-pro-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(11, 97, 164, 0.07),
      transparent 32%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(88, 169, 50, 0.08),
      transparent 32%
    ),
    #ffffff;
}


/* ==================================================
   EN-TÊTE DE LA SECTION
================================================== */

.formats-pro-heading {
  max-width: 950px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.formats-pro-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.formats-pro-heading h2 {
  max-width: 900px;
  margin: 0 auto 1.3rem;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.formats-pro-heading p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}


/* ==================================================
   GRILLE DES FORMATS
================================================== */

.formats-pro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}


/* ==================================================
   CARTE D’UN FORMAT
================================================== */

.format-pro-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(11, 97, 164, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 1),
      rgba(247, 251, 255, 0.98)
    );
  box-shadow: 0 20px 55px rgba(8, 58, 107, 0.09);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* Ligne décorative supérieure */

.format-pro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--green),
    var(--blue)
  );
}


/* Cercle décoratif */

.format-pro-card::after {
  content: "";
  position: absolute;
  top: -65px;
  right: -65px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(88, 169, 50, 0.13),
      rgba(11, 97, 164, 0.06),
      transparent 70%
    );
  pointer-events: none;
}


/* Effet au survol */

.format-pro-card:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 169, 50, 0.35);
  box-shadow: 0 30px 75px rgba(8, 58, 107, 0.15);
}


/* ==================================================
   PARTIE SUPÉRIEURE DE LA CARTE
================================================== */

.format-pro-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}


/* Numéro 01, 02, 03, 04 */

.format-pro-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );
  font-size: 1rem;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(11, 97, 164, 0.2);
}


/* Petite catégorie en haut à droite */

.format-pro-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 220px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #eaf3fa;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}


/* ==================================================
   TITRE ET TEXTE
================================================== */

.format-pro-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.format-pro-card > p {
  position: relative;
  z-index: 1;
  margin: 0 0 1.7rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}


/* ==================================================
   PETITES ÉTIQUETTES EN BAS
================================================== */

.format-pro-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.format-pro-footer span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.76rem;
  font-weight: 850;
}


/* ==================================================
   VERSION TABLETTE
================================================== */

@media (max-width: 920px) {
  .formats-pro-section {
    padding: 5rem 0;
  }

  .formats-pro-grid {
    grid-template-columns: 1fr;
  }

  .format-pro-card {
    min-height: auto;
  }
}


/* ==================================================
   VERSION TÉLÉPHONE
================================================== */

@media (max-width: 640px) {
  .formats-pro-section {
    padding: 4rem 0;
  }

  .formats-pro-heading {
    margin-bottom: 2.5rem;
  }

  .formats-pro-heading h2 {
    font-size: 2.25rem;
  }

  .formats-pro-heading p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .formats-pro-grid {
    gap: 1.1rem;
  }

  .format-pro-card {
    min-height: auto;
    padding: 1.5rem;
    border-radius: 22px;
  }

  .format-pro-header {
    align-items: flex-start;
    margin-bottom: 1.3rem;
  }

  .format-pro-number {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .format-pro-category {
    max-width: 180px;
    font-size: 0.65rem;
  }

  .format-pro-card h3 {
    font-size: 1.4rem;
  }

  .format-pro-card > p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
/* ==================================================
   CALENDRIER PROVISOIRE - EN-TÊTE PROFESSIONNEL
================================================== */

.calendrier-pro-intro {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto 3.5rem;
  padding: 4.5rem 3rem;
  text-align: center;
  border: 1px solid rgba(11, 97, 164, 0.15);
  border-radius: 36px;

  background:
    radial-gradient(
      circle at 0% 100%,
      rgba(11, 97, 164, 0.13),
      transparent 38%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(88, 169, 50, 0.15),
      transparent 38%
    ),
    #ffffff;

  box-shadow: 0 25px 65px rgba(8, 58, 107, 0.11);
}


/* Barre verte et bleue en haut */

.calendrier-pro-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 190px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--green),
    var(--blue)
  );
  transform: translateX(-50%);
}


/* Cercle décoratif */

.calendrier-pro-intro::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(11, 97, 164, 0.09);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 45px rgba(11, 97, 164, 0.025),
    inset 0 0 0 90px rgba(88, 169, 50, 0.025);
  pointer-events: none;
}


/* Icône calendrier */

.calendrier-pro-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 1.3rem;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );
  box-shadow: 0 16px 35px rgba(11, 97, 164, 0.22);
}

.calendrier-pro-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* Petit titre */

.calendrier-pro-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  padding: 0.65rem 1.35rem;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(88, 169, 50, 0.13);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}


/* Grand titre */

.calendrier-pro-intro h2 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 1.3rem;
  color: var(--blue-dark);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.05em;
}


/* Texte explicatif */

.calendrier-pro-intro p {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.8;
}


/* ==================================================
   VERSION TABLETTE
================================================== */

@media (max-width: 920px) {
  .calendrier-pro-intro {
    padding: 3.8rem 2rem;
    border-radius: 30px;
  }
}


/* ==================================================
   VERSION TÉLÉPHONE
================================================== */

@media (max-width: 640px) {
  .calendrier-pro-intro {
    margin-bottom: 2.5rem;
    padding: 3rem 1.3rem;
    border-radius: 24px;
  }

  .calendrier-pro-intro::before {
    width: 130px;
    height: 5px;
  }

  .calendrier-pro-intro::after {
    right: -130px;
    bottom: -130px;
  }

  .calendrier-pro-icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .calendrier-pro-icon svg {
    width: 27px;
    height: 27px;
  }

  .calendrier-pro-eyebrow {
    padding: 0.55rem 1rem;
    font-size: 0.7rem;
  }

  .calendrier-pro-intro h2 {
    font-size: 2.45rem;
  }

  .calendrier-pro-intro p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.trame-pro-intro {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto 3.5rem;
  padding: 4.5rem 3rem;
  text-align: center;
  border: 1px solid rgba(11, 97, 164, 0.15);
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 0% 100%,
      rgba(11, 97, 164, 0.13),
      transparent 38%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(88, 169, 50, 0.15),
      transparent 38%
    ),
    #ffffff;
  box-shadow: 0 25px 65px rgba(8, 58, 107, 0.11);
}

.trame-pro-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 190px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: translateX(-50%);
}

.trame-pro-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  padding: 0.65rem 1.35rem;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trame-pro-intro h2 {
  max-width: 1000px;
  margin: 0 auto 1.3rem;
  color: var(--blue-dark);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.trame-pro-intro p {
  max-width: 850px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.8;
}

@media (max-width: 640px) {
  .trame-pro-intro {
    padding: 3rem 1.3rem;
    border-radius: 24px;
  }

  .trame-pro-intro h2 {
    font-size: 2.35rem;
  }
}
/* ==================================================
   INFORMATIONS PRATIQUES
================================================== */

.infos-pratiques-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--green-dark),
    var(--blue-dark)
  );
}

.infos-pratiques-panel {
  position: relative;
  overflow: hidden;
  padding: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.infos-pratiques-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 190px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--green),
    #ffffff,
    var(--blue)
  );
  transform: translateX(-50%);
}

.infos-pratiques-panel::after {
  content: "";
  position: absolute;
  top: -130px;
  right: -130px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 65px rgba(255, 255, 255, 0.02),
    inset 0 0 0 130px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.infos-pratiques-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.infos-pratiques-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.infos-pratiques-heading h2 {
  margin: 0 0 1.1rem;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.infos-pratiques-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.infos-pratiques-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.info-pratique-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 220px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.info-pratique-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.info-pratique-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 15px;
  color: var(--blue-dark);
  background: #ffffff;
  font-size: 0.85rem;
  font-weight: 950;
}

.info-pratique-label {
  display: block;
  margin-bottom: 0.4rem;
  color: #a9dc91;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-pratique-card h3 {
  margin: 0 0 0.7rem;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.25;
}

.info-pratique-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.7;
}

.infos-pratiques-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.infos-pratiques-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

@media (max-width: 920px) {
  .infos-pratiques-grid {
    grid-template-columns: 1fr;
  }

  .info-pratique-card {
    min-height: auto;
  }

  .infos-pratiques-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .infos-pratiques-section {
    padding: 4rem 0;
  }

  .infos-pratiques-panel {
    padding: 2.5rem 1.3rem;
    border-radius: 25px;
  }

  .infos-pratiques-heading h2 {
    font-size: 2.3rem;
  }

  .info-pratique-card {
    padding: 1.3rem;
    border-radius: 20px;
  }

  .infos-pratiques-footer .btn {
    width: 100%;
  }
}
/* ==================================================
   APPEL À PARTICIPATION RIES 2026
================================================== */

.participation-cta-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background:
    radial-gradient(
      circle at 5% 10%,
      rgba(88, 169, 50, 0.28),
      transparent 32%
    ),
    radial-gradient(
      circle at 95% 90%,
      rgba(11, 97, 164, 0.32),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #236f2e,
      #0b4a72
    );
}

.participation-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  align-items: center;
  gap: 3rem;
  padding: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.participation-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 190px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--green),
    #ffffff,
    var(--blue)
  );
  transform: translateX(-50%);
}

.participation-cta::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 55px rgba(255, 255, 255, 0.025),
    inset 0 0 0 110px rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.participation-cta-content,
.participation-cta-action {
  position: relative;
  z-index: 1;
}

.participation-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.participation-cta h2 {
  max-width: 780px;
  margin: 0 0 1.1rem;
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.participation-cta-content > p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.8;
}

.participation-cta-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.participation-cta-details span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 850;
}

.participation-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}

.participation-cta-number {
  display: grid;
  place-items: center;
  width: 115px;
  height: 115px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(88, 169, 50, 0.75),
    rgba(11, 97, 164, 0.85)
  );
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
}

.participation-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.14);
  font-size: 0.94rem;
  font-weight: 950;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.participation-cta-button:hover {
  color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

.participation-cta-button span {
  font-size: 1.2rem;
}

@media (max-width: 920px) {
  .participation-cta {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .participation-cta-action {
    align-items: flex-start;
  }

  .participation-cta-number {
    display: none;
  }
}

@media (max-width: 640px) {
  .participation-cta-section {
    padding: 4rem 0;
  }

  .participation-cta {
    padding: 2.5rem 1.3rem;
    border-radius: 24px;
  }

  .participation-cta h2 {
    font-size: 2.3rem;
  }

  .participation-cta-content > p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .participation-cta-details {
    display: grid;
  }

  .participation-cta-button {
    width: 100%;
  }

  .participation-cta-action {
    width: 100%;
  }
}
/* LOGOS DES PARTENAIRES */

.partenaires-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.partenaire-logo-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(11, 97, 164, 0.18);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(8, 58, 107, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.partenaire-logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(88, 169, 50, 0.4);
  box-shadow: 0 24px 55px rgba(8, 58, 107, 0.14);
}

.partenaire-logo-card img {
  width: 100%;
  max-width: 190px;
  max-height: 110px;
  object-fit: contain;
}

.partenaire-logo-card span {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.partenaire-logo-card:hover span {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .partenaires-logos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .partenaires-logos-grid {
    grid-template-columns: 1fr;
  }

  .partenaire-logo-card {
    min-height: 160px;
  }
}
/* ==================================================
   PAGE NOS EXPERTS
================================================== */

.experts-page-hero {
  position: relative;
  overflow: hidden;
}

.experts-page-hero::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}


/* ==================================================
   SECTION PRINCIPALE
================================================== */

.experts-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(11, 97, 164, 0.07),
      transparent 30%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(88, 169, 50, 0.08),
      transparent 30%
    ),
    #ffffff;
}


/* ==================================================
   BLOC D’INTRODUCTION
================================================== */

.experts-intro {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto 3.5rem;
  padding: 4rem 3rem;
  text-align: center;
  border: 1px solid rgba(11, 97, 164, 0.15);
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 0% 100%,
      rgba(11, 97, 164, 0.12),
      transparent 38%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(88, 169, 50, 0.14),
      transparent 38%
    ),
    #ffffff;
  box-shadow: 0 25px 65px rgba(8, 58, 107, 0.11);
}

.experts-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 190px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--green),
    var(--blue)
  );
  transform: translateX(-50%);
}

.experts-intro-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  padding: 0.65rem 1.3rem;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.experts-intro h2 {
  max-width: 850px;
  margin: 0 auto 1.3rem;
  color: var(--blue-dark);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.experts-intro p {
  max-width: 850px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}


/* ==================================================
   GRILLE DES EXPERTS
================================================== */

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}


/* ==================================================
   CARTE D’UN EXPERT
================================================== */

.expert-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 97, 164, 0.14);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(8, 58, 107, 0.09);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.expert-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--green),
    var(--blue)
  );
}

.expert-card:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 169, 50, 0.35);
  box-shadow: 0 30px 75px rgba(8, 58, 107, 0.15);
}


/* ==================================================
   PHOTO DE L’EXPERT
================================================== */

.expert-photo {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 290px;
  overflow: hidden;
  color: rgba(8, 58, 107, 0.45);
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(88, 169, 50, 0.24),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #eef8ea,
      #eaf3fa
    );
}

.expert-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

.expert-card:hover .expert-photo img {
  transform: scale(1.045);
}


/* ==================================================
   CONTENU DE LA CARTE
================================================== */

.expert-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.7rem;
}

.expert-category {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf3fa;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.expert-content h3 {
  margin: 0 0 0.65rem;
  color: var(--blue-dark);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.2;
}

.expert-profession {
  margin: 0 0 0.55rem;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.5;
}

.expert-institution {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 850;
}

.expert-description {
  margin: 0 0 1.3rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}


/* ==================================================
   ÉTIQUETTES
================================================== */

.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.expert-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--offwhite);
  font-size: 0.72rem;
  font-weight: 800;
}


/* ==================================================
   BOUTON TÉLÉCHARGER LE CV
================================================== */

.expert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.expert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.expert-btn:hover {
  transform: translateY(-2px);
}

.expert-btn-primary {
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );
  box-shadow: 0 12px 28px rgba(11, 97, 164, 0.18);
}

.expert-btn-primary:hover {
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(11, 97, 164, 0.25);
}


/* ==================================================
   ZONE AJOUTER UN EXPERT
================================================== */

.experts-admin-section {
  background: var(--offwhite);
}

.experts-admin-panel {
  overflow: hidden;
  border: 1px solid rgba(11, 97, 164, 0.15);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(8, 58, 107, 0.09);
}

.experts-admin-panel summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.8rem;
  cursor: pointer;
  list-style: none;
  color: var(--blue-dark);
  background:
    linear-gradient(
      135deg,
      rgba(88, 169, 50, 0.1),
      rgba(11, 97, 164, 0.08)
    );
}

.experts-admin-panel summary::-webkit-details-marker {
  display: none;
}

.experts-admin-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );
  font-size: 1.5rem;
  font-weight: 900;
}

.experts-admin-panel summary strong {
  display: block;
  font-size: 1.15rem;
}

.experts-admin-panel summary small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.experts-admin-content {
  padding: 2rem;
  border-top: 1px solid var(--line);
}

.experts-admin-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.experts-admin-label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experts-admin-heading h2 {
  margin-bottom: 0.8rem;
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.experts-admin-heading p {
  color: var(--muted);
}


/* ==================================================
   FORMULAIRE D’AJOUT
================================================== */

.expert-add-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--offwhite);
}

.expert-add-form input[type="file"] {
  padding: 0.75rem;
  background: #ffffff;
}

.expert-add-form .btn {
  justify-self: flex-start;
  min-width: 200px;
}


/* ==================================================
   VERSION TABLETTE
================================================== */

@media (max-width: 920px) {
  .experts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experts-intro {
    padding: 3.5rem 2rem;
  }

  .expert-photo {
    height: 310px;
  }
}


/* ==================================================
   VERSION TÉLÉPHONE
================================================== */

@media (max-width: 640px) {
  .experts-intro {
    margin-bottom: 2.5rem;
    padding: 3rem 1.3rem;
    border-radius: 24px;
  }

  .experts-intro h2 {
    font-size: 2.4rem;
  }

  .experts-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .expert-card {
    border-radius: 22px;
  }

  .expert-photo {
    height: 320px;
  }

  .expert-content {
    padding: 1.4rem;
  }

  .expert-actions,
  .expert-btn {
    width: 100%;
  }

  .experts-admin-panel {
    border-radius: 22px;
  }

  .experts-admin-panel summary {
    padding: 1.3rem;
  }

  .experts-admin-content {
    padding: 1.2rem;
  }

  .expert-add-form {
    padding: 1rem;
    border-radius: 18px;
  }

  .expert-add-form .btn {
    width: 100%;
    min-width: 0;
  }
}
:root {
  --blog-green: #58a932;
  --blog-green-dark: #2f7c2c;
  --blog-green-light: #eef8ea;
  --blog-blue: #0b61a4;
  --blog-gold: #0b61a4;
  --blog-white: #ffffff;
  --blog-background: #ffffff;
  --blog-text: #0f172a;
  --blog-muted: #5f6b7a;
  --blog-border: #dfe8ef;
  --blog-shadow: 0 18px 45px rgba(8,58,107,0.12);
}

.blog-page {
  background: var(--blog-background);
  color: var(--blog-text);
}

.blog-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* HERO */

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(213, 170, 54, 0.18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--blog-green-dark),
      var(--blog-blue)
    );
  color: var(--blog-white);
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -130px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.blog-hero::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.blog-hero .blog-container {
  position: relative;
  z-index: 2;
}

.blog-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--blog-white);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero h1 {
  max-width: 850px;
  margin: 0 0 22px;
  color: var(--blog-white);
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1;
}

.blog-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  line-height: 1.8;
}

/* INTRODUCTION */

.blog-introduction {
  padding: 70px 0 20px;
}

.blog-introduction-box {
  padding: 42px;
  border: 1px solid var(--blog-border);
  border-radius: 26px;
  background: var(--blog-white);
  box-shadow: var(--blog-shadow);
}

.blog-section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blog-green);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-introduction-box h2 {
  max-width: 780px;
  margin: 0 0 15px;
  color: var(--blog-green-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.blog-introduction-box p {
  max-width: 850px;
  margin: 0;
  color: var(--blog-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* CONTENU DU BLOG */

.blog-content {
  padding: 55px 0 100px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--blog-border);
  border-radius: 24px;
  background: var(--blog-white);
  box-shadow: 0 15px 35px rgba(5, 76, 56, 0.09);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(5, 76, 56, 0.16);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 245px;
  background: var(--blog-green-light);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-category {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--blog-gold);
  color: #2b2107;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 16px;
  color: var(--blog-muted);
  font-size: 0.86rem;
}

.blog-card-meta span {
  position: relative;
}

.blog-card-meta span + span::before {
  content: "•";
  margin-right: 16px;
  color: var(--blog-gold);
}

.blog-card h2 {
  margin: 0 0 15px;
  color: var(--blog-green-dark);
  font-size: 1.45rem;
  line-height: 1.3;
}

.blog-card p {
  margin: 0 0 25px;
  color: var(--blog-muted);
  line-height: 1.75;
}

.blog-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  margin-top: auto;
}

.blog-read-button,
.blog-download-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 11px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.blog-read-button {
  border: 1px solid var(--blog-green);
  background: var(--blog-green);
  color: var(--blog-white);
}

.blog-read-button:hover {
  background: var(--blog-green-dark);
  color: var(--blog-white);
  transform: translateY(-2px);
}

.blog-download-button {
  border: 1px solid var(--blog-border);
  background: var(--blog-white);
  color: var(--blog-green);
}

.blog-download-button:hover {
  border-color: var(--blog-green);
  background: var(--blog-green-light);
  color: var(--blog-green-dark);
  transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .blog-container {
    width: min(100% - 28px, 1180px);
  }

  .blog-hero {
    padding: 80px 0;
  }

  .blog-hero h1 {
    font-size: 3rem;
  }

  .blog-hero p {
    font-size: 1.05rem;
  }

  .blog-introduction {
    padding-top: 45px;
  }

  .blog-introduction-box {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .blog-content {
    padding: 40px 0 70px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    height: 230px;
  }

  .blog-card-body {
    padding: 23px 20px;
  }

  .blog-card h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 450px) {
  .blog-hero {
    padding: 65px 0;
  }

  .blog-hero h1 {
    font-size: 2.45rem;
  }

  .blog-card-image {
    height: 205px;
  }

  .blog-card-meta {
    display: grid;
    gap: 6px;
  }

  .blog-card-meta span + span::before {
    display: none;
  }
}
.footer-brand-block {
  max-width: 620px;
}

.footer-brand-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.footer-brand-mark {
  width: 72px;
  height: 72px;
  display: flex;
  flex: 0 0 72px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #48a63f, #0873a7);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 900;
}

.footer-brand-text strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.1;
}

.footer-brand-text span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.35;
}

.footer-brand-block > p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .footer-brand-heading {
    align-items: flex-start;
  }

  .footer-brand-mark {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
    border-radius: 18px;
  }

  .footer-brand-text strong {
    font-size: 1.3rem;
  }

  .footer-brand-text span,
  .footer-brand-block > p {
    font-size: 0.95rem;
  }
}

  :root {
  --gallery-green: #58a932;
  --gallery-green-dark: #2f7c2c;
  --gallery-gold: #0b61a4;
  --gallery-gold-dark: #083a6b;
  --gallery-white: #ffffff;
  --gallery-background: #ffffff;
  --gallery-text: #0f172a;
  --gallery-muted: #5f6b7a;
  --gallery-border: #dfe8ef;
  --gallery-shadow: 0 16px 40px rgba(8,58,107,0.12);
}
    /* Empêcher le lien À propos de nous de ressembler
       à un lien vers une page */
    .nav-row > a[href="#"] {
      cursor: default;
    }

    /* En-tête de la galerie */

    .gallery-page {
      min-height: 70vh;
      background: var(--gallery-background);
      color: var(--gallery-text);
    }

    .gallery-container {
      width: min(1180px, calc(100% - 40px));
      margin-inline: auto;
    }

    .gallery-hero {
      position: relative;
      overflow: hidden;
      padding: 110px 0 95px;
      text-align: center;
      color: var(--gallery-white);
   background:
radial-gradient(
  circle at 12% 20%,
  rgba(88,169,50,0.35),
  transparent 32%
),
radial-gradient(
  circle at 80% 20%,
  rgba(11,97,164,0.42),
  transparent 32%
),
linear-gradient(
  135deg,
  rgba(8,58,107,0.94),
  rgba(6,14,29,0.98)
);
 }
    .gallery-hero::before {
      content: "";
      position: absolute;
      width: 330px;
      height: 330px;
      top: -180px;
      right: -90px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
    }

    .gallery-hero::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      bottom: -160px;
      left: -70px;
      border-radius: 50%;
      background: rgba(213, 170, 54, 0.18);
    }

    .gallery-hero-content {
      position: relative;
      z-index: 2;
    }

    .gallery-eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      padding: 9px 20px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      font-size: 0.88rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .gallery-hero h1 {
      max-width: 900px;
      margin: 0 auto 20px;
      color: var(--gallery-white);
      font-size: clamp(2.3rem, 5vw, 4.4rem);
      line-height: 1.08;
    }

    .gallery-hero p {
      max-width: 780px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.92);
      font-size: 1.08rem;
      line-height: 1.8;
    }

    /* Présentation */

    .gallery-introduction {
      padding: 65px 0 30px;
    }

    .gallery-introduction-box {
      display: grid;
      grid-template-columns: 1.5fr 0.8fr;
      gap: 35px;
      align-items: center;
      padding: 38px;
      border: 1px solid var(--gallery-border);
      border-radius: 24px;
      background: var(--gallery-white);
      box-shadow: var(--gallery-shadow);
    }

    .gallery-introduction h2 {
      margin: 0 0 15px;
      color: var(--blue-dark);
      font-size: clamp(1.7rem, 3vw, 2.5rem);
    }

    .gallery-introduction p {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
    }

    .gallery-statistics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .gallery-statistic {
      padding: 22px 15px;
      border-radius: 16px;
      text-align: center;
      background: #edf6f2;
    }

    .gallery-statistic strong {
      display: block;
      margin-bottom: 5px;
      color: var(--gallery-green);
      font-size: 1.8rem;
    }

    .gallery-statistic span {
      color: var(--gallery-muted);
      font-size: 0.9rem;
    }

    /* Filtres */

    .gallery-filter-section {
      padding: 35px 0 20px;
    }

    .gallery-filter-section h2 {
      margin: 0 0 12px;
      text-align: center;
      color: var(--gallery-green-dark);
      font-size: clamp(1.6rem, 3vw, 2.3rem);
    }

    .gallery-filter-section > .gallery-container > p {
      max-width: 700px;
      margin: 0 auto 28px;
      text-align: center;
      color: var(--gallery-muted);
      line-height: 1.7;
    }

    .gallery-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .gallery-filter-button {
      min-height: 46px;
      padding: 11px 20px;
      border: 1px solid var(--gallery-border);
      border-radius: 999px;
      background: var(--gallery-white);
      color: var(--gallery-text);
      font: inherit;
      font-weight: 750;
      cursor: pointer;
      transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
    }

   .gallery-filter-button:hover,
.gallery-filter-button:focus-visible,
.gallery-filter-button.is-active {
  border-color: #58a932;
  background: #58a932;
  color: #ffffff;
  transform: translateY(-2px);
}

    /* Événements */

    .gallery-content {
      padding: 35px 0 90px;
    }

    .gallery-events {
      display: grid;
      gap: 55px;
    }

    .gallery-event {
      padding: 36px;
      border: 1px solid var(--gallery-border);
      border-radius: 26px;
      background: var(--gallery-white);
      box-shadow: var(--gallery-shadow);
    }

    .gallery-event-header {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 28px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--gallery-border);
    }

    .gallery-event-information {
      max-width: 800px;
    }

    .gallery-event-label {
      display: inline-block;
      margin-bottom: 9px;
      color: var(--gallery-green);
      font-size: 0.86rem;
      font-weight: 850;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .gallery-event-header h2 {
      margin: 0 0 12px;
      color: var(--gallery-green-dark);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
    }

    .gallery-event-header p {
      margin: 0;
      color: var(--gallery-muted);
      line-height: 1.75;
    }

    .gallery-event-count {
      flex: 0 0 auto;
      align-self: flex-start;
      padding: 11px 16px;
      border-radius: 999px;
      background: #edf6f2;
      color: var(--gallery-green);
      font-size: 0.9rem;
      font-weight: 800;
    }

    /* Cartes des photos */

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .gallery-card {
      overflow: hidden;
      border: 1px solid var(--gallery-border);
      border-radius: 18px;
      background: var(--gallery-white);
      transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    }

    .gallery-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 30px rgba(7, 68, 50, 0.12);
    }

    .gallery-card-image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: #e7efec;
    }

    .gallery-card-image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .gallery-card:hover .gallery-card-image img {
      transform: scale(1.06);
    }

    .gallery-card-number {
      position: absolute;
      top: 13px;
      left: 13px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 38px;
      min-height: 38px;
      padding: 7px;
      border-radius: 50%;
      background: rgba(4, 76, 57, 0.9);
      color: var(--gallery-white);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .gallery-card-body {
      padding: 19px;
    }

    .gallery-card-body h3 {
      margin: 0 0 8px;
      color: var(--gallery-green-dark);
      font-size: 1.06rem;
    }

    .gallery-card-body p {
      min-height: 47px;
      margin: 0 0 17px;
      color: var(--gallery-muted);
      font-size: 0.93rem;
      line-height: 1.6;
    }

    .gallery-card-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .gallery-view-button,
    .gallery-download-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 43px;
      padding: 10px 15px;
      border: none;
      border-radius: 10px;
      font: inherit;
      font-size: 0.9rem;
      font-weight: 800;
      text-decoration: none;
      cursor: pointer;
      transition:
        transform 0.2s ease,
        background-color 0.2s ease;
    }

    .gallery-view-button {
      background: var(--gallery-green);
      color: var(--gallery-white);
    }

    .gallery-view-button:hover {
      background: var(--gallery-green-dark);
      transform: translateY(-2px);
    }

    .gallery-download-button {
      background: var(--gallery-gold);
      color: #ffffff;
    }

    .gallery-download-button:hover {
      background: var(--gallery-gold-dark);
      color: var(--gallery-white);
      transform: translateY(-2px);
    }

    /* Message si aucune photo */

    .gallery-empty {
      padding: 55px 20px;
      border: 1px dashed var(--gallery-border);
      border-radius: 20px;
      background: var(--gallery-white);
      color: var(--gallery-muted);
      text-align: center;
    }

    /* Fenêtre d’agrandissement */

    .gallery-lightbox {
      position: fixed;
      inset: 0;
      z-index: 99999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 30px;
      background: rgba(0, 0, 0, 0.9);
    }

    .gallery-lightbox.is-open {
      display: flex;
    }

    .gallery-lightbox-content {
      width: min(1080px, 100%);
      max-height: 92vh;
      overflow: auto;
      border-radius: 20px;
      background: var(--gallery-white);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    }

    .gallery-lightbox-content img {
      width: 100%;
      max-height: 72vh;
      display: block;
      object-fit: contain;
      background: #111111;
    }

    .gallery-lightbox-information {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
      padding: 22px;
    }

    .gallery-lightbox-text h3 {
      margin: 0 0 6px;
      color: var(--gallery-green-dark);
    }

    .gallery-lightbox-text p {
      margin: 0;
      color: var(--gallery-muted);
    }

    .gallery-lightbox-close {
      position: fixed;
      top: 20px;
      right: 24px;
      z-index: 2;
      width: 50px;
      height: 50px;
      border: none;
      border-radius: 50%;
      background: var(--gallery-white);
      color: #111111;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
    }

    /* Informations pratiques */

    .gallery-help {
      padding: 0 0 80px;
    }

    .gallery-help-box {
      padding: 30px;
      border-radius: 22px;
      background: var(--gallery-green-dark);
      color: var(--gallery-white);
      text-align: center;
    }

    .gallery-help-box h2 {
      margin: 0 0 12px;
      color: var(--gallery-white);
    }

    .gallery-help-box p {
      max-width: 760px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.7;
    }

    /* Responsive */

    @media (max-width: 950px) {
      .gallery-introduction-box {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 700px) {
      .gallery-container {
        width: min(100% - 24px, 1180px);
      }

      .gallery-hero {
        padding: 80px 0 70px;
      }

      .gallery-introduction {
        padding-top: 35px;
      }

      .gallery-introduction-box,
      .gallery-event {
        padding: 22px 16px;
      }

      .gallery-event-header {
        flex-direction: column;
      }

      .gallery-event-count {
        align-self: flex-start;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .gallery-statistics {
        grid-template-columns: 1fr;
      }

      .gallery-lightbox {
        padding: 12px;
      }

      .gallery-lightbox-information {
        align-items: stretch;
        flex-direction: column;
      }

      .gallery-lightbox-information .gallery-download-button {
        width: 100%;
      }

      .gallery-lightbox-close {
        top: 10px;
        right: 10px;
      }
    }
   :root {
      --gallery-green: #08664c;
      --gallery-green-dark: #044c39;
      --gallery-gold: #d5aa36;
      --gallery-gold-dark: #af8420;
      --gallery-white: #ffffff;
      --gallery-background: #f3f7f5;
      --gallery-text: #24332e;
      --gallery-muted: #68756f;
      --gallery-border: #dce7e2;
      --gallery-shadow: 0 16px 40px rgba(7, 68, 50, 0.12);
    }

    /* Empêcher le lien À propos de nous de ressembler
       à un lien vers une page */
    .nav-row > a[href="#"] {
      cursor: default;
    }

    /* En-tête de la galerie */

    .gallery-page {
      min-height: 70vh;
      background: var(--gallery-background);
      color: var(--gallery-text);
    }

    .gallery-container {
      width: min(1180px, calc(100% - 40px));
      margin-inline: auto;
    }

    .gallery-hero {
      position: relative;
      overflow: hidden;
      padding: 110px 0 95px;
      text-align: center;
      color: var(--gallery-white);
      background:
        linear-gradient(
          135deg,
          rgba(3, 70, 51, 0.95),
          rgba(9, 111, 81, 0.88)
        ),
        url("assets/img/galerie/couverture-galerie.jpg")
        center / cover no-repeat;
    }

    .gallery-hero::before {
      content: "";
      position: absolute;
      width: 330px;
      height: 330px;
      top: -180px;
      right: -90px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
    }

    .gallery-hero::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      bottom: -160px;
      left: -70px;
      border-radius: 50%;
      background: rgba(213, 170, 54, 0.18);
    }

    .gallery-hero-content {
      position: relative;
      z-index: 2;
    }

    .gallery-eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      padding: 9px 20px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      font-size: 0.88rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .gallery-hero h1 {
      max-width: 900px;
      margin: 0 auto 20px;
      color: var(--gallery-white);
      font-size: clamp(2.3rem, 5vw, 4.4rem);
      line-height: 1.08;
    }

    .gallery-hero p {
      max-width: 780px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.92);
      font-size: 1.08rem;
      line-height: 1.8;
    }

    /* Présentation */

    .gallery-introduction {
      padding: 65px 0 30px;
    }

    .gallery-introduction-box {
      display: grid;
      grid-template-columns: 1.5fr 0.8fr;
      gap: 35px;
      align-items: center;
      padding: 38px;
      border: 1px solid var(--gallery-border);
      border-radius: 24px;
      background: var(--gallery-white);
      box-shadow: var(--gallery-shadow);
    }

    .gallery-introduction h2 {
      margin: 0 0 15px;
      color: var(--gallery-green-dark);
      font-size: clamp(1.7rem, 3vw, 2.5rem);
    }

    .gallery-introduction p {
      margin: 0;
      color: var(--gallery-muted);
      line-height: 1.8;
    }

    .gallery-statistics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .gallery-statistic {
      padding: 22px 15px;
      border-radius: 16px;
      text-align: center;
      background: #edf6f2;
    }

    .gallery-statistic strong {
      display: block;
      margin-bottom: 5px;
      color: var(--gallery-green);
      font-size: 1.8rem;
    }

    .gallery-statistic span {
      color: var(--gallery-muted);
      font-size: 0.9rem;
    }

    /* Filtres */

    .gallery-filter-section {
      padding: 35px 0 20px;
    }

    .gallery-filter-section h2 {
      margin: 0 0 12px;
      text-align: center;
      color: var(--gallery-green-dark);
      font-size: clamp(1.6rem, 3vw, 2.3rem);
    }

    .gallery-filter-section > .gallery-container > p {
      max-width: 700px;
      margin: 0 auto 28px;
      text-align: center;
      color: var(--gallery-muted);
      line-height: 1.7;
    }

    .gallery-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .gallery-filter-button {
      min-height: 46px;
      padding: 11px 20px;
      border: 1px solid var(--gallery-border);
      border-radius: 999px;
      background: var(--gallery-white);
      color: var(--gallery-text);
      font: inherit;
      font-weight: 750;
      cursor: pointer;
      transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
    }

    .gallery-filter-button:hover,
    .gallery-filter-button:focus-visible,
    .gallery-filter-button.is-active {
      border-color: var(--gallery-green);
      background: var(--gallery-green);
      color: var(--gallery-white);
      transform: translateY(-2px);
    }

    /* Événements */

    .gallery-content {
      padding: 35px 0 90px;
    }

    .gallery-events {
      display: grid;
      gap: 55px;
    }

    .gallery-event {
      padding: 36px;
      border: 1px solid var(--gallery-border);
      border-radius: 26px;
      background: var(--gallery-white);
      box-shadow: var(--gallery-shadow);
    }

    .gallery-event-header {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 28px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--gallery-border);
    }

    .gallery-event-information {
      max-width: 800px;
    }

    .gallery-event-label {
      display: inline-block;
      margin-bottom: 9px;
      color: var(--gallery-green);
      font-size: 0.86rem;
      font-weight: 850;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .gallery-event-header h2 {
      margin: 0 0 12px;
      color: var(--gallery-green-dark);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
    }

    .gallery-event-header p {
      margin: 0;
      color: var(--gallery-muted);
      line-height: 1.75;
    }

    .gallery-event-count {
      flex: 0 0 auto;
      align-self: flex-start;
      padding: 11px 16px;
      border-radius: 999px;
      background: #edf6f2;
      color: var(--gallery-green);
      font-size: 0.9rem;
      font-weight: 800;
    }

    /* Cartes des photos */

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .gallery-card {
      overflow: hidden;
      border: 1px solid var(--gallery-border);
      border-radius: 18px;
      background: var(--gallery-white);
      transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    }

    .gallery-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 30px rgba(7, 68, 50, 0.12);
    }

    .gallery-card-image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: #e7efec;
    }

    .gallery-card-image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .gallery-card:hover .gallery-card-image img {
      transform: scale(1.06);
    }

    .gallery-card-number {
      position: absolute;
      top: 13px;
      left: 13px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 38px;
      min-height: 38px;
      padding: 7px;
      border-radius: 50%;
      background: rgba(4, 76, 57, 0.9);
      color: var(--gallery-white);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .gallery-card-body {
      padding: 19px;
    }

    .gallery-card-body h3 {
      margin: 0 0 8px;
      color: var(--gallery-green-dark);
      font-size: 1.06rem;
    }

    .gallery-card-body p {
      min-height: 47px;
      margin: 0 0 17px;
      color: var(--gallery-muted);
      font-size: 0.93rem;
      line-height: 1.6;
    }

    .gallery-card-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .gallery-view-button,
    .gallery-download-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 43px;
      padding: 10px 15px;
      border: none;
      border-radius: 10px;
      font: inherit;
      font-size: 0.9rem;
      font-weight: 800;
      text-decoration: none;
      cursor: pointer;
      transition:
        transform 0.2s ease,
        background-color 0.2s ease;
    }

    .gallery-view-button {
      background: var(--gallery-green);
      color: var(--gallery-white);
    }

    .gallery-view-button:hover {
      background: var(--gallery-green-dark);
      transform: translateY(-2px);
    }

    .gallery-download-button {
      background: var(--gallery-gold);
      color: #2b2108;
    }

    .gallery-download-button:hover {
      background: var(--gallery-gold-dark);
      color: var(--gallery-white);
      transform: translateY(-2px);
    }

    /* Message si aucune photo */

    .gallery-empty {
      padding: 55px 20px;
      border: 1px dashed var(--gallery-border);
      border-radius: 20px;
      background: var(--gallery-white);
      color: var(--gallery-muted);
      text-align: center;
    }

    /* Fenêtre d’agrandissement */

    .gallery-lightbox {
      position: fixed;
      inset: 0;
      z-index: 99999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 30px;
      background: rgba(0, 0, 0, 0.9);
    }

    .gallery-lightbox.is-open {
      display: flex;
    }

    .gallery-lightbox-content {
      width: min(1080px, 100%);
      max-height: 92vh;
      overflow: auto;
      border-radius: 20px;
      background: var(--gallery-white);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    }

    .gallery-lightbox-content img {
      width: 100%;
      max-height: 72vh;
      display: block;
      object-fit: contain;
      background: #111111;
    }

    .gallery-lightbox-information {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
      padding: 22px;
    }

    .gallery-lightbox-text h3 {
      margin: 0 0 6px;
      color: var(--gallery-green-dark);
    }

    .gallery-lightbox-text p {
      margin: 0;
      color: var(--gallery-muted);
    }

    .gallery-lightbox-close {
      position: fixed;
      top: 20px;
      right: 24px;
      z-index: 2;
      width: 50px;
      height: 50px;
      border: none;
      border-radius: 50%;
      background: var(--gallery-white);
      color: #111111;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
    }

    /* Informations pratiques */

    .gallery-help {
      padding: 0 0 80px;
    }

    .gallery-help-box {
      padding: 30px;
      border-radius: 22px;
      background: var(--gallery-green-dark);
      color: var(--gallery-white);
      text-align: center;
    }

    .gallery-help-box h2 {
      margin: 0 0 12px;
      color: var(--gallery-white);
    }

    .gallery-help-box p {
      max-width: 760px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.7;
    }

    /* Responsive */

    @media (max-width: 950px) {
      .gallery-introduction-box {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 700px) {
      .gallery-container {
        width: min(100% - 24px, 1180px);
      }

      .gallery-hero {
        padding: 80px 0 70px;
      }

      .gallery-introduction {
        padding-top: 35px;
      }

      .gallery-introduction-box,
      .gallery-event {
        padding: 22px 16px;
      }

      .gallery-event-header {
        flex-direction: column;
      }

      .gallery-event-count {
        align-self: flex-start;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .gallery-statistics {
        grid-template-columns: 1fr;
      }

      .gallery-lightbox {
        padding: 12px;
      }

      .gallery-lightbox-information {
        align-items: stretch;
        flex-direction: column;
      }

      .gallery-lightbox-information .gallery-download-button {
        width: 100%;
      }

      .gallery-lightbox-close {
        top: 10px;
        right: 10px;
      }
    }
    .footer-brand-block {
  max-width: 620px;
}

.footer-brand-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.footer-brand-mark {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #61c454, #1a8bd9);
  flex-shrink: 0;
}

.footer-brand-text strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-brand-text span {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.footer-brand-block p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}
/* Taille uniforme du logo du pied de page */

.site-footer .footer-brand-block {
  max-width: 620px;
}

.site-footer .footer-brand-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.site-footer .footer-brand-mark {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #4ba53f, #0879ae);
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
}

.site-footer .footer-brand-text strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
}

.site-footer .footer-brand-text span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.35;
}

.site-footer .footer-brand-block > p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .site-footer .footer-brand-mark {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
    font-size: 26px;
  }

  .site-footer .footer-brand-text strong {
    font-size: 21px;
  }

  .site-footer .footer-brand-text span {
    font-size: 14px;
  }

  .site-footer .footer-brand-block > p {
    font-size: 16px;
  }
}
/* RÉDUCTION DU GRAND TITRE APPEL À COMMUNICATION */

.calendrier-pro-intro h2,
.trame-pro-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
}

@media (max-width: 640px) {
  .calendrier-pro-intro h2,
  .trame-pro-intro h2 {
    font-size: 1.8rem !important;
    line-height: 1.25 !important;
  }
}
/* ==================================================
   TAILLE UNIFORME DES GRANDS TITRES DU SITE
================================================== */

/* Titres principaux des pages */

.home-main-title,
.home-hero-video h1,
.hero h1,
.page-hero h1,
.blog-hero h1,
.gallery-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
}

/* Thème de la page d’accueil */

.theme-title {
  font-size: clamp(1.25rem, 2vw, 1.8rem) !important;
  line-height: 1.5 !important;
}

/* Grands titres des différentes sections */

.section-heading h2,
.clean-section-title,
.inscription-title-full,
.submission-heading .clean-section-title,
.submission-top .clean-section-title,
.contexte-premium-heading h2,
.concept-premium-heading h2,
.vision-premium-heading h2,
.objectifs-intro h2,
.formats-pro-heading h2,
.calendrier-pro-intro h2,
.trame-pro-intro h2,
.infos-pratiques-heading h2,
.participation-cta h2,
.experts-intro h2,
.experts-admin-heading h2,
.blog-introduction-box h2,
.gallery-introduction h2,
.gallery-filter-section h2,
.gallery-event-header h2,
.cta-panel h2,
.rich-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
}

/* Téléphones */

@media (max-width: 640px) {
  .home-main-title,
  .home-hero-video h1,
  .hero h1,
  .page-hero h1,
  .blog-hero h1,
  .gallery-hero h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .section-heading h2,
  .clean-section-title,
  .inscription-title-full,
  .submission-heading .clean-section-title,
  .submission-top .clean-section-title,
  .contexte-premium-heading h2,
  .concept-premium-heading h2,
  .vision-premium-heading h2,
  .objectifs-intro h2,
  .formats-pro-heading h2,
  .calendrier-pro-intro h2,
  .trame-pro-intro h2,
  .infos-pratiques-heading h2,
  .participation-cta h2,
  .experts-intro h2,
  .experts-admin-heading h2,
  .blog-introduction-box h2,
  .gallery-introduction h2,
  .gallery-filter-section h2,
  .gallery-event-header h2,
  .cta-panel h2,
  .rich-text h2 {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }

  .theme-title {
    font-size: 1.15rem !important;
  }
}
/* ==================================================
   ANIMATIONS PROFESSIONNELLES DU SITE
================================================== */

.site-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--animation-delay, 0ms);
  will-change: opacity, transform;
}

.site-reveal.site-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Apparition plus douce des images */

.site-reveal img {
  transition: transform 0.5s ease;
}

/* Animation discrète des chiffres */

.home-stat-card strong {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.home-stat-card:hover strong {
  transform: scale(1.05);
  color: var(--green-dark);
}

/* Mouvement léger des boutons */

.btn,
.event-more,
.expert-btn,
.membre-scientifique-btn,
.blog-read-button,
.blog-download-button,
.participation-cta-button {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.btn:hover,
.event-more:hover,
.expert-btn:hover,
.membre-scientifique-btn:hover,
.blog-read-button:hover,
.blog-download-button:hover,
.participation-cta-button:hover {
  transform: translateY(-3px);
}

/* Accessibilité : désactiver les animations si demandé */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* CORRECTION COULEUR GALERIE - THEME RIES UNIQUE */

.gallery-hero {
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(88,169,50,0.25),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(11,97,164,0.35),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #083a6b,
      #071525
    ) !important;
}
/* GALERIE - IDENTITE VISUELLE RIES */

.gallery-hero {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(88,169,50,0.35),
      transparent 32%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(11,97,164,0.42),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #083a6b 0%,
      #06121f 100%
    ) !important;
    display: block !important;
min-height: 400px !important;
}

.gallery-hero::before {
  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.08),
      transparent 65%
    ) !important;
}

.gallery-hero::after {
  background: none !important;
}
/* =====================================
   HARMONISATION DES COULEURS GALERIE
   AVEC LE THEME RIES 2026
===================================== */

.gallery-hero h1,
.gallery-hero p {
  color: #ffffff !important;
}

.gallery-eyebrow {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.35) !important;
}

.gallery-card h3,
.gallery-event-title {
  color: #06345f !important;
}

.gallery-card p,
.gallery-description {
  color: #4b6075 !important;
}

.gallery-filter button,
.gallery-tag {
  color: #06345f !important;
}

.gallery-filter button.active,
.gallery-tag.active {
  background: linear-gradient(
    135deg,
    #4ca84c,
    #0b61a4
  ) !important;
  color: white !important;
}

.gallery-download,
.gallery-more-btn {
  background: linear-gradient(
    135deg,
    #4ca84c,
    #0b61a4
  ) !important;
  color: white !important;
}
/* Correction titre galerie */
.gallery-hero h1 {
    color: white !important;
}
/* ==================================================
   HARMONISATION FINALE THEME RIES 2026
   GALERIE + BLOG
================================================== */

/* GALERIE */

:root {
  --gallery-green: #58a932 !important;
  --gallery-green-dark: #2f7c2c !important;
  --gallery-gold: #0b61a4 !important;
  --gallery-gold-dark: #083a6b !important;
  --gallery-white: #ffffff !important;
  --gallery-background: #f7fafc !important;
  --gallery-text: #0f172a !important;
  --gallery-muted: #5f6b7a !important;
  --gallery-border: #dfe8ef !important;
}


/* BLOG */

:root {
  --blog-green: #58a932 !important;
  --blog-green-dark: #2f7c2c !important;
  --blog-green-light: #eef8ea !important;
  --blog-blue: #0b61a4 !important;
  --blog-gold: #0b61a4 !important;
  --blog-white: #ffffff !important;
  --blog-background: #f7fafc !important;
  --blog-text: #0f172a !important;
  --blog-muted: #5f6b7a !important;
  --blog-border: #dfe8ef !important;
}


/* Boutons Galerie */

.gallery-filter-button.is-active,
.gallery-filter-button:hover,
.gallery-download,
.gallery-more-btn {
  background: linear-gradient(
    135deg,
    #58a932,
    #0b61a4
  ) !important;

  color:#ffffff !important;
}


/* Cartes Galerie */

.gallery-card,
.gallery-event-card {
  background:#ffffff !important;
  border-color:#dfe8ef !important;
}


.gallery-card h3,
.gallery-event-title {
  color:#083a6b !important;
}


.gallery-card p,
.gallery-description {
  color:#5f6b7a !important;
}


/* Blog */

.blog-page {
  background:#f7fafc !important;
  color:#0f172a !important;
}


.blog-hero {
  background:
  radial-gradient(
    circle at 15% 20%,
    rgba(88,169,50,.35),
    transparent 35%
  ),
  radial-gradient(
    circle at 85% 20%,
    rgba(11,97,164,.40),
    transparent 35%
  ),
  linear-gradient(
    135deg,
    #083a6b,
    #061525
  ) !important;
}


.blog-card {
  background:#ffffff !important;
  border-color:#dfe8ef !important;
}


.blog-card h2 {
  color:#083a6b !important;
}


.blog-card p {
  color:#5f6b7a !important;
}


.blog-read-button {
  background:linear-gradient(
    135deg,
    #58a932,
    #0b61a4
  ) !important;

  color:#ffffff !important;
}


.blog-download-button {
  color:#083a6b !important;
  border-color:#dfe8ef !important;
}


/* Toutes les cartes gardent l'identité RIES */

.gallery-card,
.blog-card,
.event-blog-card {
  box-shadow:
  0 18px 45px rgba(8,58,107,.10) !important;
}
/* =====================================================
   FIX FINAL GALERIE + BLOG THEME RIES
===================================================== */

.gallery-hero {
background:
radial-gradient(circle at 12% 20%, rgba(88,169,50,.35), transparent 32%),
radial-gradient(circle at 80% 20%, rgba(11,97,164,.42), transparent 32%),
linear-gradient(135deg,#083a6b,#06121f) !important;
}


.gallery-card h3,
.gallery-event-title {
color:#083a6b !important;
}


.gallery-card p,
.gallery-description,
.gallery-event-header p {
color:#5f6b7a !important;
}


.gallery-filter-button,
.gallery-filter button {
background:#ffffff !important;
color:#083a6b !important;
border-color:#dfe8ef !important;
}


.gallery-filter-button.is-active,
.gallery-filter button.active {
background:linear-gradient(135deg,#58a932,#0b61a4)!important;
color:#ffffff!important;
border-color:transparent!important;
}


.gallery-download-button,
.gallery-view-button,
.gallery-more-btn {
background:linear-gradient(135deg,#58a932,#0b61a4)!important;
color:#ffffff!important;
}


/* BLOG */

.blog-hero {
background:
radial-gradient(circle at 15% 20%,rgba(88,169,50,.35),transparent 35%),
radial-gradient(circle at 85% 20%,rgba(11,97,164,.40),transparent 35%),
linear-gradient(135deg,#083a6b,#06121f)!important;
}


.blog-card h2 {
color:#083a6b!important;
}


.blog-read-button {
background:linear-gradient(135deg,#58a932,#0b61a4)!important;
color:#fff!important;
}


.blog-card {
border-color:#dfe8ef!important;
}
/* ==================================================
   ALIGNEMENT GALERIE SUR THEME GLOBAL RIES
================================================== */

.gallery-page {
    background: var(--white) !important;
    color: var(--ink) !important;
}

/* Bloc introduction */
.gallery-intro,
.gallery-introduction,
.gallery-info,
.gallery-summary {
    background: #ffffff !important;
    border-color: var(--line) !important;
}

/* Titres galerie */
.gallery-page h1,
.gallery-page h2,
.gallery-page h3 {
    color: var(--blue-dark) !important;
}

/* Textes */
.gallery-page p {
    color: var(--muted) !important;
}

/* Zone choix événement */
.gallery-filter-section {
    background: var(--offwhite) !important;
}

/* Boutons */
.gallery-filter-button {
    background: #ffffff !important;
    color: var(--blue-dark) !important;
    border: 1px solid var(--line) !important;
}

.gallery-filter-button:hover,
.gallery-filter-button.is-active {
    background: linear-gradient(
        135deg,
        var(--green),
        var(--blue)
    ) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

/* Cartes événements */
.gallery-card,
.gallery-event-card {
    background: #ffffff !important;
    border-color: var(--line) !important;
}

.gallery-card h3,
.gallery-event-card h3 {
    color: var(--blue-dark) !important;
}

/* Pastilles chiffres */
.gallery-stat,
.gallery-counter {
    background: var(--green-soft) !important;
}

.gallery-stat strong,
.gallery-counter strong {
    color: var(--green-dark) !important;
}

/* Boutons actions */
.gallery-download-button,
.gallery-view-button {
    background: linear-gradient(
        135deg,
        var(--green),
        var(--blue)
    ) !important;
    color:#ffffff !important;
}
/* Correction titre bannière galerie */
.gallery-hero h1,
.gallery-hero .gallery-hero-content h1 {
    color: #ffffff !important;
}

.gallery-hero p,
.gallery-hero .gallery-hero-content p {
    color: rgba(255,255,255,0.85) !important;
}
/* Correction bloc téléchargement galerie */
.gallery-download-section,
.gallery-download-box,
.gallery-cta {
    background: linear-gradient(
        135deg,
        #083a6b,
        #0b61a4
    ) !important;
    color: #ffffff !important;
}

.gallery-download-section h2,
.gallery-download-box h2,
.gallery-cta h2 {
    color: #ffffff !important;
}

.gallery-download-section p,
.gallery-download-box p,
.gallery-cta p {
    color: rgba(255,255,255,0.85) !important;
}
/* CORRECTION BLOC TELECHARGEMENT GALERIE */

.gallery-download-section,
.gallery-download-box,
.gallery-cta,
.gallery-download {
    background: linear-gradient(
        135deg,
        #083a6b,
        #0b61a4
    ) !important;
}

.gallery-download-section h2,
.gallery-download-box h2,
.gallery-cta h2,
.gallery-download h2 {
    color: #ffffff !important;
}

.gallery-download-section p,
.gallery-download-box p,
.gallery-cta p,
.gallery-download p {
    color: rgba(255,255,255,0.85) !important;
}
/* FIX FINAL BLOC TELECHARGEMENT */
.gallery-download-section,
.gallery-download-box,
.gallery-cta,
.gallery-download {
    background: #083a6b !important;
    background-image: linear-gradient(135deg,#083a6b,#0b61a4) !important;
}

.gallery-download-section h2,
.gallery-download-box h2,
.gallery-cta h2,
.gallery-download h2 {
    color: #ffffff !important;
}

.gallery-download-section p,
.gallery-download-box p,
.gallery-cta p,
.gallery-download p {
    color: rgba(255,255,255,0.85) !important;
}
/* CORRECTION FINALE BLOC AIDE GALERIE */

.gallery-help-box {
    background: linear-gradient(
        135deg,
        #083a6b,
        #0b61a4
    ) !important;

    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
}


.gallery-help-box h2 {
    color: #ffffff !important;
}


.gallery-help-box p {
    color: rgba(255,255,255,0.85) !important;
}
/* ALIGNEMENT BLOC TELECHARGEMENT AVEC LA BANNIERE GALERIE */

.gallery-help-box {
    background:
    radial-gradient(
        circle at 12% 20%,
        rgba(88,169,50,0.35),
        transparent 32%
    ),
    radial-gradient(
        circle at 80% 20%,
        rgba(11,97,164,0.42),
        transparent 32%
    ),
    linear-gradient(
        135deg,
        #083a6b,
        #06121f
    ) !important;

    color: #ffffff !important;
}

.gallery-help-box h2 {
    color: #ffffff !important;
}

.gallery-help-box p {
    color: rgba(255,255,255,0.85) !important;
}
/* CENTRAGE DU BANDEAU BLOG */

.blog-hero {
    text-align: center !important;
}

.blog-container {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.blog-hero h1,
.blog-hero p,
.blog-eyebrow {
    text-align: center !important;
}
/* ALIGNEMENT FINAL HERO BLOG */

.blog-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 480px !important;
    text-align: center !important;
}

.blog-container {
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    text-align: center !important;
}

.blog-eyebrow {
    display: inline-block !important;
    margin-bottom: 25px !important;
}

.blog-hero h1 {
    margin: 0 auto 25px auto !important;
    text-align: center !important;
}

.blog-hero p {
    max-width: 900px !important;
    margin: 0 auto !important;
    text-align: center !important;
}
/* HARMONISATION INTRODUCTION BLOG */

.blog-introduction-box {
    background: linear-gradient(
        135deg,
        #083a6b,
        #06121f
    ) !important;

    color: #ffffff !important;
    border-radius: 25px !important;
    padding: 60px 40px !important;
}

.blog-introduction-box .blog-section-label {
    color: #58a932 !important;
}

.blog-introduction-box h2 {
    color: #ffffff !important;
}

.blog-introduction-box p {
    color: rgba(255,255,255,0.85) !important;
}