/* ============================================================
   MonRFS V2 — Main Stylesheet
   All pages: index, formations, devenir-formateur, outils,
   blog, article, agenda, notre-histoire, a-propos
   ============================================================ */


/* ============================================================
   1. RESET & TOKENS
   ============================================================ */

:root {
  --blue: #6b8df2;
  --blue-deep: #5a7be0;
  --blue-glow: rgba(107, 141, 242, 0.15);
  --blue-glass: rgba(107, 141, 242, 0.06);
  --mint: #50d7a1;
  --mint-soft: rgba(80, 215, 161, 0.1);
  --turquoise: #1FCAC5;
  --violet: #6558d3;
  --violet-deep: #4133B7;
  --violet-soft: #f1eeff;
  --lavender: #ecf0ff;
  --text: #2d3940;
  --text-mid: #4a5568;
  --text-muted: #666;
  --text-soft: #5f6b73;
  --surface: #fff;
  --surface-warm: #fafbff;
  --border: #e4e9f7;
  --warm: #f4ebe4;
  --warm-deep: #e8d5c4;
  --dark: #1e2a35;
  --font: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--violet);
}

a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  padding: 0.75rem 2rem;
  z-index: 10000;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  transition: top 0.2s;
}

.skip:focus {
  top: 0;
  color: #fff;
}

.brand-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--mint) 40%, var(--turquoise) 60%, var(--violet) 100%);
}


/* ============================================================
   2. HEADER & NAV
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue);
  padding: 0.65rem 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 4px 20px rgba(107, 141, 242, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
}

.nav ul {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  align-items: center;
}

.nav a {
  display: block;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav .cta a {
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue);
  font-weight: 700;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.nav .cta a:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  border-color: #fff;
}

/* -- User menu (logged in) -- */
.user-avatar-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.4rem;
}
.user-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: #fff; font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.user-online-dot {
  position: absolute;
  bottom: 0; right: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #50d7a1;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.user-link { display: flex; align-items: center; font-weight: 600; font-size: 0.85rem; }
.user-menu .dropdown { min-width: 160px; }

/* -- Account page -- */
.account-page main { padding: 3rem 1.5rem; background: linear-gradient(165deg, #f8f9ff 0%, var(--lavender) 35%, #fafbff 100%); min-height: 60vh; }
.account-card { max-width: 560px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 2.5rem; box-shadow: 0 20px 60px rgba(107,141,242,.08); }
.account-card h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.3rem; }
.account-card .subtitle { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 2rem; }
.account-field { margin-bottom: 1.25rem; }
.account-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.account-field input, .account-field select { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: 12px; font-family: var(--font); font-size: 0.9rem; color: var(--text); background: var(--surface); outline: none; transition: border-color 0.3s; }
.account-field input:focus, .account-field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(107,141,242,.1); }
.account-field input:read-only { background: var(--lavender); color: var(--text-mid); cursor: default; }
.account-save { padding: 0.85rem 2rem; border-radius: 12px; border: none; background: var(--blue); color: #fff; font-family: var(--font); font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.3s; }
.account-save:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 8px 25px rgba(107,141,242,.3); }
.account-logout { display: inline-block; margin-top: 1.5rem; padding: 0.6rem 1.5rem; border-radius: 10px; border: 1.5px solid var(--border); background: transparent; color: var(--text-mid); font-family: var(--font); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.3s; text-decoration: none; }
.account-logout:hover { border-color: #c33; color: #c33; }
.account-msg { padding: 0.75rem 1rem; border-radius: 10px; font-size: 0.85rem; margin-bottom: 1rem; text-align: center; }
.account-msg.success { background: #f0fff4; border: 1px solid #b2f5d4; color: #2a9d6c; }
.account-msg.error { background: #fff0f0; border: 1px solid #ffd4d4; color: #c33; }
@media (max-width: 480px) { .account-card { padding: 1.75rem 1.25rem; } }

/* -- Burger menu -- */

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}

.burger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  position: absolute;
  left: 11px;
}

.burger span {
  top: 50%;
  transform: translateY(-50%);
}

.burger span::before {
  content: '';
  top: -6px;
}

.burger span::after {
  content: '';
  top: 6px;
}

.burger.open span {
  background: transparent;
}

.burger.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.burger.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* -- Dropdown menus -- */

.has-dropdown {
  position: relative;
}

.has-dropdown > .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.4rem 0;
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 100;
  list-style: none;
}

.has-dropdown > .dropdown li a {
  color: var(--text) !important;
  padding: 0.55rem 1.2rem !important;
  font-size: 0.85rem;
  display: block;
  border-radius: 0;
  white-space: nowrap;
}

.has-dropdown > .dropdown li a:hover {
  background: var(--lavender);
  color: var(--blue) !important;
}

.has-dropdown:hover > .dropdown {
  display: block;
}


/* ============================================================
   3. HERO
   ============================================================ */

@keyframes mesh-shift {
  0%, 100% { background-position: 0% 50%; }
  25%      { background-position: 50% 0%; }
  50%      { background-position: 100% 50%; }
  75%      { background-position: 50% 100%; }
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.05); }
  66%      { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes orb-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.15); }
}

.hero {
  position: relative;
  padding: 6rem 0 3rem;
  background:
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(80, 215, 161, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(101, 88, 211, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 10%, rgba(107, 141, 242, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 70%, rgba(31, 202, 197, 0.08) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: mesh-shift 20s ease-in-out infinite;
  overflow: hidden;
  text-align: center;
}

/* Soft glowing orb — top right */
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 141, 242, 0.15) 0%, rgba(101, 88, 211, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  animation: float-slow 18s ease-in-out infinite, orb-pulse 8s ease-in-out infinite;
  filter: blur(30px);
}

/* Soft glowing orb — bottom left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(80, 215, 161, 0.14) 0%, rgba(31, 202, 197, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  animation: float-slow 22s ease-in-out infinite reverse, orb-pulse 10s ease-in-out 2s infinite;
  filter: blur(25px);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  box-shadow: 0 4px 16px rgba(107, 141, 242, 0.1), 0 1px 2px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 auto 0.8rem;
  max-width: 700px;
  line-height: 1.25;
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(80, 215, 161, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 1.2rem;
}

.hero h1 .accent {
  color: var(--blue);
}

.hero p {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  fill: var(--surface);
  height: 80px;
  opacity: 0.6;
}

/* Social proof bar — below hero */
.social-proof-bar {
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  background: var(--surface);
  letter-spacing: 0.01em;
}
.social-proof-bar .spb-sep {
  margin: 0 0.6em;
  opacity: 0.4;
}


/* ============================================================
   4. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  min-height: 48px;
  letter-spacing: 0.01em;
}

.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #7b9af5 100%);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 15px rgba(107, 141, 242, 0.3), 0 0 0 0 rgba(107, 141, 242, 0);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  border-color: var(--blue-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 141, 242, 0.4), 0 0 20px rgba(107, 141, 242, 0.15);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-glass);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 141, 242, 0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  min-height: 48px;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(101, 88, 211, 0.3);
  color: #fff;
}


/* ============================================================
   5. SECTIONS & LAYOUT
   ============================================================ */

.section {
  padding: 5rem 0;
}

.section-lavender {
  background: linear-gradient(180deg, #faf8f5 0%, #f5f0eb 40%, #f2eff8 100%);
}

.section-soft,
.section-alt {
  background: linear-gradient(180deg, var(--lavender) 0%, var(--surface-warm) 100%);
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.text-center { text-align: center; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 2.5rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* ============================================================
   6. HOMEPAGE COMPONENTS
   ============================================================ */

/* -- Action hub -- */

.action-hub {
  position: relative;
  z-index: 5;
  margin-top: -2.5rem;
  padding: 0 1.5rem;
}

.action-hub-inner {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow:
    0 8px 40px rgba(107, 141, 242, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.action-hub h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.action-buttons {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 44px;
}

.action-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-glass);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--blue-glow);
}

.action-btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.action-btn .icon {
  font-size: 1.1rem;
}

/* -- Pathway grid -- */

.hero + .section {
  padding-top: 3rem;
}

.hero + .section .section-header {
  max-width: 520px;
}

.hero + .section .section-header h2 {
  font-weight: 300;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--text);
}

.hero + .section .section-label {
  color: var(--violet);
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.pathway {
  position: relative;
  border-radius: 0;
  padding: 2.5rem 2rem;
  border: none;
  border-top: 2px solid var(--border);
  background: transparent;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pathway:first-child {
  border-right: 1px solid var(--border);
}

.pathway::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pathway:hover::after {
  width: 100%;
}

.pathway::before {
  display: none;
}

.pathway-violet::after {
  background: var(--violet);
}

.pathway:hover {
  transform: none;
  box-shadow: none;
  background: rgba(107, 141, 242, 0.03);
}

.pathway-violet:hover {
  background: rgba(101, 88, 211, 0.03);
}

.pathway .emoji,
.pathway-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--lavender);
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  color: var(--blue);
  opacity: 0.7;
}

.pathway:hover .pathway-icon {
  opacity: 1;
}

.pathway-violet .pathway-icon {
  background: var(--violet-soft);
  color: var(--violet);
}

.pathway h3 {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--mint);
}

.pathway.pathway-violet h3 {
  border-left-color: var(--violet);
}

.pathway p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.pathway-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 1.2rem;
}

.pathway-link .arrow {
  transition: transform 0.3s;
}

.pathway:hover .pathway-link .arrow {
  transform: translateX(5px);
}

.pathway-violet .pathway-link {
  color: var(--violet);
}

/* -- Tool grid (homepage) -- */

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.tool {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(107, 141, 242, 0.12);
  border-color: rgba(107, 141, 242, 0.25);
  background: rgba(255, 255, 255, 0.7);
}

.tool-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--blue);
  background: var(--lavender);
  transition: all 0.3s;
}

.tool:hover .tool-icon {
  transform: scale(1.08);
}

.tool-icon.mint {
  background: var(--mint-soft);
  color: #2a9d6e;
}

.tool-icon.violet {
  background: var(--violet-soft);
  color: var(--violet);
}

.tool-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.tool-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.tool-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.tool-link::after {
  content: '\2192';
  transition: transform 0.3s;
}

.tool:hover .tool-link::after {
  transform: translateX(3px);
}

/* -- Blog home hub -- */

.blog-home-hero {
  position: relative;
  overflow: hidden;
  padding: 4.8rem 0 3.5rem;
  background:
    linear-gradient(135deg, rgba(236, 240, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 54%, rgba(232, 245, 238, 0.92) 100%);
}

.blog-home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107, 141, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 141, 242, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.45), transparent 72%);
  pointer-events: none;
}

.blog-home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.blog-home-copy h1 {
  max-width: 760px;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--text);
  margin: 0.85rem 0 1rem;
}

.blog-home-copy p {
  max-width: 640px;
  color: var(--text-mid);
  font-size: 1.08rem;
  line-height: 1.75;
}

.blog-home-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.blog-home-proof {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.blog-home-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(107, 141, 242, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-mid);
  font-size: 0.84rem;
  box-shadow: 0 10px 26px rgba(107, 141, 242, 0.08);
}

.blog-home-proof strong {
  color: var(--text);
}

.blog-home-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(107, 141, 242, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(101, 88, 211, 0.16);
  backdrop-filter: blur(16px);
}

.blog-home-panel::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(107, 141, 242, 0.22);
  pointer-events: none;
}

.blog-panel-card {
  position: relative;
  z-index: 1;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(30, 42, 53, 0.07);
}

.blog-panel-card.active {
  background: linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
  color: #fff;
  transform: translateX(-1rem);
}

.blog-panel-card span {
  display: block;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
}

.blog-panel-card.active span {
  color: rgba(255, 255, 255, 0.76);
}

.blog-panel-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

.blog-topic-band {
  position: sticky;
  top: 65px;
  z-index: 30;
  border-top: 1px solid rgba(107, 141, 242, 0.12);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.blog-topic-list {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow-x: auto;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  scrollbar-width: none;
}

.blog-topic-list::-webkit-scrollbar {
  display: none;
}

.blog-topic-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: #fff;
  color: var(--text-mid);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.blog-topic-list a:hover {
  color: var(--blue);
  border-color: rgba(107, 141, 242, 0.35);
  box-shadow: 0 10px 24px rgba(107, 141, 242, 0.1);
}

.blog-topic-list i {
  color: var(--blue);
  font-size: 1.05rem;
}

.blog-featured-section {
  padding-top: 3.25rem;
  padding-bottom: 1.5rem;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 22px 60px rgba(30, 42, 53, 0.08);
}

.blog-featured-media {
  min-height: 100%;
  background: var(--lavender);
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  object-fit: cover;
}

.blog-featured-content {
  padding: clamp(1.8rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.blog-featured-content h2 {
  margin: 0.6rem 0 0.75rem;
  font-size: 2.05rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.blog-featured-content h2 a {
  color: var(--text);
}

.blog-featured-content h2 a:hover {
  color: var(--blue);
}

.blog-featured-content p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.blog-list-section {
  padding-top: 3rem;
}

.blog-list-section .section-header {
  margin-bottom: 2rem;
}

.blog-start-section {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.blog-start {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(107, 141, 242, 0.12), transparent 44%),
    linear-gradient(135deg, rgba(236, 240, 255, 0.85), rgba(255, 255, 255, 0.98));
  box-shadow: 0 20px 52px rgba(30, 42, 53, 0.06);
  overflow: hidden;
}

.blog-start h2 {
  margin-top: 0.6rem;
  font-size: 1.75rem;
  line-height: 1.25;
}

.blog-start-links {
  display: grid;
  gap: 0.75rem;
}

.blog-start-links a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.95rem;
  min-height: 66px;
  padding: 1rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 255, 0.98));
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(31, 41, 55, 0.04);
}

.blog-start-links a:hover {
  color: var(--blue);
  border-color: rgba(107, 141, 242, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(107, 141, 242, 0.1);
}

.blog-start-links span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: var(--blue-glass);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-start-links a::after {
  content: '→';
  color: var(--blue);
  font-size: 1rem;
  font-weight: 800;
  opacity: 0.6;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.blog-start-links a:hover::after {
  transform: translateX(3px);
  opacity: 1;
}

/* -- Page hero (internal pages) -- */

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, var(--lavender) 0%, var(--surface) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* -- Article hero (blog posts) -- */

.article-hero {
  background: linear-gradient(135deg, #e8f5ee 0%, #ecf0ff 50%, #f0ecff 100%);
  padding: 3.5rem 0 2.5rem;
  text-align: left;
}

.article-hero .container {
  max-width: 720px;
}

.article-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.article-back:hover {
  color: var(--violet);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.article-meta time {
  font-weight: 500;
}

.article-tag {
  background: rgba(80, 215, 161, 0.12);
  color: #2a9d6e;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.article-body h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 0.8rem;
  color: var(--text);
}

.article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.6rem;
  color: var(--text);
}

.article-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

.article-body strong {
  color: var(--text);
}

.article-body blockquote {
  border-left: 3px solid var(--mint);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(80, 215, 161, 0.06);
  border-radius: 0 12px 12px 0;
}

.article-body blockquote p {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0;
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1.2rem 1.5rem;
}

.article-body li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

/* -- Blog grid (homepage) -- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.post {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.blog-grid .post {
  opacity: 1;
  transform: none;
}

.post:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(107, 141, 242, 0.1);
  border-color: var(--blue);
}

.post-img {
  aspect-ratio: 16 / 9;
  height: 190px;
  min-height: 190px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--lavender);
}

.post-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s;
}

.post:hover .post-img img {
  transform: scale(1.04);
}

/* Generated category visuals (no photo needed) */
.post-visual {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.post-visual i {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.6);
  z-index: 1;
  transition: transform 0.4s;
}

.post:hover .post-visual i {
  transform: scale(1.15) rotate(-5deg);
}

.post-visual::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  top: -30px;
  right: -30px;
}

.post-visual.cat-formation { background: linear-gradient(135deg, #6b8df2, #5a7be0); }
.post-visual.cat-clinique { background: linear-gradient(135deg, #50d7a1, #3ab88a); }
.post-visual.cat-finance { background: linear-gradient(135deg, #f0b429, #e09100); }
.post-visual.cat-sante { background: linear-gradient(135deg, #6558d3, #4133B7); }
.post-visual.cat-veille { background: linear-gradient(135deg, #1FCAC5, #17a8a4); }
.post-visual.cat-pedagogie { background: linear-gradient(135deg, #e87c7c, #d35f5f); }
.post-visual.cat-innovation { background: linear-gradient(135deg, #6b8df2, #6558d3); }
.post-visual.cat-communaute { background: linear-gradient(135deg, #50d7a1, #6b8df2); }
.post-visual.cat-vie-liberale { background: linear-gradient(135deg, #8b7dd8, #6558d3); }

.post-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-date {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.post-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--violet);
  background: rgba(101, 88, 211, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.post-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.post-title a {
  color: var(--text);
}

.post-title a:hover {
  color: var(--blue);
}

.post-excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.65;
}

.post-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.post-more::after {
  content: '\2192';
  transition: transform 0.3s;
}

.post:hover .post-more::after {
  transform: translateX(3px);
}

/* -- Newsletter -- */

.newsletter {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--violet-deep) 100%);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 60px rgba(65, 51, 183, 0.2);
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(80, 215, 161, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(107, 141, 242, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter > * {
  position: relative;
  z-index: 2;
}

.newsletter h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.nl-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
}

.nl-input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.nl-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.nl-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.nl-btn {
  background: #fff;
  color: var(--blue);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 48px;
}

.nl-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.nl-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.nl-btn:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
}

.nl-msg {
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  animation: nl-fade-in 0.4s ease;
}

.nl-msg-ok {
  background: rgba(80, 215, 161, 0.2);
  color: #fff;
  border: 1px solid rgba(80, 215, 161, 0.4);
}

.nl-msg-error {
  background: rgba(255, 100, 100, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 100, 100, 0.4);
}

@keyframes nl-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nl-note {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
}

/* -- Stats -- */

.stats {
  padding: 4rem 0 1rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--warm) 50%, var(--surface) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat {
  padding: 1.5rem 1rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(107, 141, 242, 0.04);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--blue), var(--violet), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}


/* ============================================================
   7. SHARED COMPONENTS
   ============================================================ */

/* -- Badges -- */

.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-primary {
  background: var(--blue-glass);
  color: var(--blue);
}

.badge-violet {
  background: var(--violet-soft);
  color: var(--violet);
}

.badge-mint {
  background: var(--mint-soft);
  color: #2a9d6e;
}

/* -- Cards -- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(107, 141, 242, 0.1);
  border-color: var(--blue);
}

.card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  margin-top: 0.75rem;
}

.card-link:hover {
  color: var(--violet);
}

/* -- Forms -- */

.form-input {
  width: 100%;
  padding: 0.65rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: all 0.3s;
  background: var(--surface);
}

.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-input::placeholder {
  color: var(--text-soft);
}

.inline-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
}

.inline-form .form-input {
  flex: 1;
}

/* -- Animations -- */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ============================================================
   8. FORMATIONS PAGE
   ============================================================ */

.chat-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(107, 141, 242, 0.08);
}

.chat-input-wrap {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.chat-input {
  flex: 1;
  padding: 0.65rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: all 0.3s;
  background: var(--surface);
}

.chat-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.chat-input::placeholder {
  color: var(--text-soft);
}

.chat-send {
  flex-shrink: 0;
}


/* ============================================================
   9. DEVENIR FORMATEUR PAGE
   ============================================================ */

/* -- Diagnostic options -- */

.diag-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s;
  text-align: left;
}

.diag-option:hover {
  border-color: var(--blue);
  background: var(--blue-glass);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--blue-glow);
}

.diag-emoji {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* -- Diagnostic result -- */

.diag-result {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(107, 141, 242, 0.08);
}

.diag-result h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.diag-result ul {
  margin: 1rem 0 1rem 1.5rem;
  line-height: 2;
}

/* -- Steps -- */

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================================
   10. OUTILS PAGE
   ============================================================ */

.tool-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.35s ease;
  overflow: hidden;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(107, 141, 242, 0.1);
  border-color: var(--blue);
}

.tool-card-body {
  padding: 1.5rem;
}

.tool-card-badge {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--blue-glass);
  color: var(--blue);
}


/* ============================================================
   11. BLOG PAGE
   ============================================================ */

.post-card {
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(107, 141, 242, 0.1);
  border-color: var(--blue);
}

.post-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--lavender);
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.post-card:hover .post-thumb img {
  transform: scale(1.04);
}

.post-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.post-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}

.quick-reply {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.25s;
}

.quick-reply:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.active-cat {
  background: var(--blue-glass) !important;
  border-color: var(--blue) !important;
  color: var(--blue) !important;
}

.blog-search-bar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}


/* ============================================================
   12. AGENDA PAGE
   ============================================================ */

.agenda-last-update {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* MOOC section — mint-tinted differentiation */
.mooc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.mooc-card {
  background: linear-gradient(135deg, rgba(80,215,161,0.04) 0%, rgba(107,141,242,0.03) 100%);
  border: 1px solid rgba(80,215,161,0.2);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mooc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(80,215,161,0.12);
}
.mooc-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.mooc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mint), #3dc78a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.mooc-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
}
.mooc-card .mooc-org {
  font-size: 0.78rem;
  color: var(--mint);
  font-weight: 600;
  margin-top: 0.15rem;
}
.mooc-card .mooc-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.mooc-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  background: rgba(80,215,161,0.1);
  color: #2a9d6c;
}
.mooc-badge-platform {
  background: rgba(107,141,242,0.1);
  color: var(--blue);
}
.mooc-card .mooc-desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.mooc-card .mooc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mint);
  text-decoration: none;
  transition: color 0.2s;
}
.mooc-card .mooc-cta:hover {
  color: #2a9d6c;
}
.mooc-filter-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.mooc-filter-pill {
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(80,215,161,0.3);
  background: transparent;
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.mooc-filter-pill:hover {
  border-color: var(--mint);
  color: var(--mint);
}
.mooc-filter-pill.active {
  background: var(--mint);
  color: #fff;
  border-color: var(--mint);
}

.agenda-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.agenda-search-wrap {
  position: relative;
  flex: 1 1 280px;
  min-width: 200px;
}

.agenda-search {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.agenda-search:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(107, 141, 242, 0.12);
}

.agenda-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

/* -- Filter pills -- */

.filter-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(107, 141, 242, 0.04);
}

.filter-pill.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.filter-pill.active:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.filter-select {
  padding: 0.45rem 2rem 0.45rem 0.8rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-mid);
  background: var(--surface);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234a5568'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  transition: border-color 0.25s;
}

.filter-select:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 141, 242, 0.12);
}

.filters-active-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
}

.clear-filters {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0;
  text-decoration: underline;
  display: none;
}

.clear-filters:hover {
  color: var(--violet);
}

/* -- Featured events -- */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.featured-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  padding: 1.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  opacity: 0;
  transition: opacity 0.3s;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(107, 141, 242, 0.1);
  border-color: var(--blue);
}

.featured-card:hover::before { opacity: 1; }

.featured-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.featured-date-block {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  background: linear-gradient(135deg, var(--lavender), rgba(101, 88, 211, 0.06));
  border-radius: 12px;
  padding: 0.5rem 0.4rem;
}

.featured-date-day {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.featured-date-month {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  margin-top: 0.15rem;
}

.featured-card-meta { flex: 1; }

.featured-card-badges {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.featured-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.featured-card .evt-org {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.featured-card .evt-summary {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.featured-card .evt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}

.evt-time {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* -- Event badges -- */

.evt-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.evt-badge-free { background: rgba(80, 215, 161, 0.12); color: #2a9d6c; }
.evt-badge-online { background: rgba(107, 141, 242, 0.1); color: var(--blue); }
.evt-badge-hybrid { background: rgba(101, 88, 211, 0.08); color: var(--violet); }
.evt-badge-presential { background: rgba(255, 160, 60, 0.1); color: #c97a1a; }
.evt-badge-theme { background: var(--lavender); color: var(--text-mid); }

/* -- Event CTA -- */

.evt-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.evt-cta:hover { color: var(--violet); }
.evt-cta::after { content: '\2192'; transition: transform 0.3s; }
.evt-cta:hover::after { transform: translateX(3px); }

/* -- Month groups -- */

.month-group { margin-bottom: 2.5rem; }

.month-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--lavender);
}

.month-label h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  text-transform: capitalize;
}

.month-count {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--lavender);
  color: var(--blue);
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
}

/* -- Event rows (list view) -- */

.evt-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 0.65rem;
  transition: all 0.3s ease;
}

.evt-row:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(107, 141, 242, 0.08);
  transform: translateY(-1px);
}

.evt-date-col { text-align: center; padding-top: 0.1rem; }
.evt-date-day { font-size: 1.35rem; font-weight: 800; color: var(--blue); line-height: 1; }
.evt-date-month { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-mid); margin-top: 0.15rem; }
.evt-date-time { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.3rem; }

.evt-content { min-width: 0; }
.evt-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; line-height: 1.35; }
.evt-content .evt-org { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.evt-content .evt-desc { font-size: 0.82rem; color: var(--text-soft); line-height: 1.55; margin-bottom: 0.5rem; }
.evt-tags { display: flex; gap: 0.3rem; flex-wrap: wrap; }

.evt-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  padding-top: 0.1rem;
  white-space: nowrap;
}

/* -- Sources -- */

.source-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.source-card {
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.3s ease;
}

.source-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(107, 141, 242, 0.08);
  transform: translateY(-2px);
}

.source-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.source-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0.5rem; }
.source-card .source-freq { font-size: 0.72rem; font-weight: 600; color: var(--mint); }

/* -- Empty state -- */

.empty-state { text-align: center; padding: 3rem 1.5rem; color: var(--text-muted); }
.empty-state p { font-size: 0.95rem; margin-bottom: 0.75rem; }

/* ============================================================
   13. NOTRE HISTOIRE PAGE
   ============================================================ */

.entry-content {
  max-width: 700px;
  margin: 0 auto;
}

.entry-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 2.5rem 0 0.75rem;
  color: var(--text);
}

.entry-content p {
  margin-bottom: 1rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-mid);
}


/* ============================================================
   14. FOOTER
   ============================================================ */

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.footer p {
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer a:hover {
  color: #fff;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.45rem;
}

/* -- Social grid (homepage) -- */

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.35s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(107, 141, 242, 0.12);
  border-color: var(--blue);
}

.social-card i {
  font-size: 2rem;
  color: var(--blue);
}

.social-card:hover i {
  color: var(--violet);
}

.social-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.social-desc {
  font-size: 0.75rem;
  color: var(--text-soft);
}

@media (max-width: 640px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -- Footer social -- */

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social a i {
  font-size: 1.25rem;
  line-height: 1;
  display: block;
}

.footer-social a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 141, 242, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}


/* ============================================================
   14b. CONTACT PAGE
   ============================================================ */

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-method {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.contact-method-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-method h3 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-method p { font-size: 0.8rem; color: var(--text-muted); }
.contact-method a { font-size: 0.8rem; font-weight: 600; }

.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(107, 141, 242, 0.06);
}

.contact-card .field { margin-bottom: 1.25rem; }
.contact-card label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.contact-card .required { color: var(--blue); }

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(107, 141, 242, 0.1);
}

.contact-card textarea { resize: vertical; min-height: 120px; }

.contact-submit {
  width: 100%;
  padding: 0.85rem;
  border-radius: 12px;
  border: none;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-submit:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(107, 141, 242, 0.3);
}


/* ============================================================
   14c. FORFAIT PAGE
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(107, 141, 242, 0.1);
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 30px rgba(107, 141, 242, 0.12);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Recommandé';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
}

.pricing-name { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 0.25rem; }
.pricing-price { font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-bottom: 0.25rem; }
.pricing-price span { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--mint);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-cta { text-align: center; margin-top: auto; }

/* Service highlight (Clinique de la Com) */

.service-highlight {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--violet-soft) 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.service-highlight::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(101, 88, 211, 0.1), transparent 70%);
  border-radius: 50%;
}

.service-highlight > * { position: relative; z-index: 2; }
.service-highlight h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 0.5rem; }
.service-highlight .accent { color: var(--violet); }
.service-highlight p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; max-width: 600px; }

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.service-feat-icon { font-size: 1.2rem; flex-shrink: 0; }

/* FAQ accordion */

.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--blue);
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 0.75rem;
}


/* ============================================================
   15. SUPERPOWERS
   ============================================================ */

.btn,
.action-btn,
.cta a {
  will-change: transform;
}

.card,
.tool-card,
.pathway,
.tool,
.pourqui-item {
  transform-style: preserve-3d;
  will-change: transform;
}


/* -- Back to top button -- */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(107, 141, 242, 0.3);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--blue-deep);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 30px rgba(107, 141, 242, 0.4);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* -- Active nav link -- */

.nav a.nav-active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* -- Scroll progress bar -- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--blue), var(--violet));
  width: 0%;
  z-index: 1001;
  transition: none;
  pointer-events: none;
}

/* -- Page transition -- */

.page-transition {
  animation: page-fade-in 0.4s ease-out;
}

@keyframes page-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   16. RESPONSIVE
   ============================================================ */

/* -- Tablet (820px) -- */

@media (max-width: 820px) {
  .blog-home-hero {
    padding: 3.6rem 0 2.5rem;
  }

  .blog-home-copy h1 {
    font-size: 3rem;
  }

  .blog-featured-content h2 {
    font-size: 1.8rem;
  }

  .blog-home-hero-grid,
  .blog-featured,
  .blog-start {
    grid-template-columns: 1fr;
  }

  .blog-home-panel {
    max-width: 560px;
  }

  .blog-panel-card.active {
    transform: none;
  }

  .blog-topic-band {
    top: 57px;
  }

  .blog-featured-media img {
    min-height: 260px;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
  }
  .pathway:first-child {
    border-right: none;
  }

  .burger {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
  }

  .nav.open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    padding: 0.5rem 1.5rem;
  }

  .nav a {
    padding: 0.7rem 0;
  }

  /* Dropdown in mobile nav */
  .has-dropdown > .dropdown {
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    background: transparent;
  }

  .has-dropdown > .dropdown li a {
    color: #fff !important;
    padding: 0.4rem 0 !important;
  }

  .has-dropdown > .dropdown li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .has-dropdown:hover > .dropdown,
  .nav.open .has-dropdown > .dropdown {
    display: block;
  }

  /* User menu in mobile nav */
  .nav .user-menu .user-link,
  .nav .user-menu .user-link:hover {
    color: #fff;
    background: transparent;
  }
  .nav .user-menu .user-avatar {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
  }
  .nav .user-menu .user-online-dot {
    border-color: var(--blue);
  }

  /* Stats 2-col */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Social grid 2x2 */
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Content gate tablet */
  .gate-cta {
    padding: 2rem 1.5rem;
  }
}

/* -- Mobile (640px) -- */

@media (max-width: 640px) {
  .blog-home-copy h1 {
    font-size: 2rem;
  }

  .blog-home-copy p {
    font-size: 0.98rem;
  }

  .blog-home-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .blog-home-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog-home-panel {
    padding: 0.8rem;
  }

  .blog-panel-card {
    padding: 1rem;
  }

  .blog-topic-band {
    position: static;
  }

  .blog-featured-section {
    padding-top: 2rem;
  }

  .blog-featured-content {
    padding: 1.5rem;
  }

  .blog-start {
    padding: 1.25rem;
  }

  .blog-start-links a {
    align-items: flex-start;
  }

  .hero {
    padding: 4rem 0 3.5rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .nl-form {
    flex-direction: column;
  }

  .newsletter {
    padding: 2.5rem 1.5rem;
  }

  .inline-form {
    flex-direction: column;
  }

  .pathway {
    padding: 2rem 1.5rem;
  }

  /* Agenda responsive */
  .evt-row {
    grid-template-columns: 56px 1fr;
    gap: 0.75rem;
  }

  .evt-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .agenda-filters {
    gap: 0.4rem;
  }

  /* Forfait pricing cards */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Contact methods */
  .contact-methods {
    grid-template-columns: 1fr;
  }

  /* Card grid - smaller min for tight screens */
  .card-grid {
    grid-template-columns: 1fr;
  }

  /* Footer stacks cleanly */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Service highlight (forfait) */
  .service-highlight {
    padding: 2rem 1.5rem;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  /* Social grid single col */
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* Tables scroll horizontal */
  .article-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.82rem;
  }

  /* Content gate mobile */
  .gate-cta {
    padding: 1.75rem 1rem;
  }

  .gate-cta h3 {
    font-size: 1.1rem;
  }

  .gate-btn {
    width: 100%;
    text-align: center;
  }

  /* Ad slots responsive */
  .ad-slot-banner {
    min-height: 50px;
  }
}

/* -- Small mobile (480px) -- */

@media (max-width: 480px) {
  /* Container padding reduction */
  .container {
    padding: 0 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Back to top — keep 44px minimum touch target */
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  /* Hero tighter */
  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  /* Social grid single col */
  .social-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  /* Sections tighter padding */
  section {
    padding: 3rem 0;
  }

  /* Newsletter tighter */
  .newsletter {
    padding: 2rem 1rem;
  }

  /* Article body tighter */
  .article-body {
    padding: 0 1rem 3rem;
  }

  /* Blog grid single col on very small */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Content gate small mobile */
  .gate-cta h3 {
    font-size: 1rem;
  }

  .gate-cta p {
    font-size: 0.85rem;
  }

  /* Event row stack on very small */
  .evt-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .evt-date-col {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
  }
}

/* -- Print -- */

@media print {
  .header,
  .footer,
  .brand-bar,
  .btn,
  .newsletter {
    display: none;
  }
}


/* ============================================================
   17. CONTENT GATE & ADS
   ============================================================ */

/* Contenu masqué (visiteur non connecté) */
.gated-content { display: none !important; }
body.logged-in .gated-content { display: block !important; }
body.logged-in .content-gate-overlay { display: none !important; }
body.logged-in .ad-slot { display: none !important; }

/* Overlay CTA */
.content-gate-overlay {
  position: relative;
  margin-top: -3rem;
  padding-top: 3rem;
}

.gate-gradient {
  position: absolute;
  top: -5rem;
  left: -1.5rem;
  right: -1.5rem;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, var(--surface));
  pointer-events: none;
}

.gate-cta {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--lavender);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.gate-cta h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.gate-cta p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.gate-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--blue);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  min-height: 48px;
}

.gate-btn:hover {
  background: var(--blue-deep);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(107, 141, 242, 0.3);
}

.gate-login {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-mid);
}

.gate-login a { color: var(--blue); font-weight: 600; }
.gate-login a:hover { color: var(--violet); }

/* ── Metering doux (2026-06-06) — flou 40% final, contenu DOM intact ── */

/* Zone floutée : visible mais lisibilité réduite progressivement */
.gate-blurred {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
  opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
}
body.logged-in .gate-blurred {
  filter: none;
  user-select: auto;
  pointer-events: auto;
  opacity: 1;
}

/* Overlay metering — positionné comme l'overlay classique */
.content-gate-meter .gate-gradient {
  height: 6rem;
  top: -6rem;
  background: linear-gradient(to bottom, transparent, var(--surface) 85%);
}

/* Étiquette quota — discret, au-dessus du titre */
.gate-quota-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--violet);
  background: rgba(101, 88, 211, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

/* Emplacements pub */
.ad-slot {
  text-align: center;
  margin: 2rem 0;
  min-height: 90px;
  overflow: hidden;
}

.ad-slot-banner { min-height: 90px; }
.ad-slot-rectangle { min-height: 250px; }
.ad-slot-in-article { min-height: 120px; margin: 1.5rem 0; }

/* Responsive gate/ads handled in section 16 */
/* Refonte visuelle blog + articles MonRFS — 2026-05-15
   À intégrer dans main.css après validation Elise
   Bumper main.css?v=11 lors de l'intégration finale
   100% additif — aucune règle existante n'est modifiée.
   Tokens : --blue --mint --violet --lavender --warm --text --text-mid --border --dark
*/

/* === Refonte visuelle blog + articles — 2026-05-15 === */

/* 1. Menu blog — bandeau de recherche + filtres (donne du relief au search plat) */
.blog-topic-band-inner{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;padding:1rem 0}
.blog-topic-heading{display:flex;flex-direction:column;gap:.15rem;flex:1 1 240px;min-width:0}
.blog-topic-heading strong{font-size:.95rem;color:var(--text);font-weight:800;letter-spacing:-.01em}
.blog-topic-heading span{font-size:.82rem;color:var(--text-mid)}
.blog-topic-status{font-size:.74rem;color:var(--blue);font-weight:600}
.blog-filter-tools{display:flex;gap:.6rem;align-items:center;flex-wrap:wrap}
.blog-search-field{display:inline-flex;align-items:center;gap:.5rem;padding:.55rem .9rem;min-height:48px;background:#fff;border:1px solid var(--border);border-radius:50px;box-shadow:0 6px 20px rgba(107,141,242,.08);transition:box-shadow .2s,border-color .2s}
.blog-search-field:focus-within{border-color:var(--blue);box-shadow:0 10px 28px rgba(107,141,242,.18)}
.blog-search-field i{color:var(--blue);font-size:1.1rem}
.blog-search-input{border:0;outline:0;background:transparent;font:600 .9rem/1.4 'Open Sans',system-ui,sans-serif;color:var(--text);min-width:220px}
.blog-search-input::placeholder{color:var(--text-mid);font-weight:400}
.blog-filter-reset{display:inline-flex;align-items:center;gap:.4rem;padding:.55rem 1rem;min-height:48px;border:1px solid var(--border);border-radius:50px;background:#fff;font:700 .82rem/1 'Open Sans',sans-serif;color:var(--text-mid);cursor:pointer;transition:all .2s}
.blog-filter-reset:hover{border-color:var(--blue);color:var(--blue);background:rgba(107,141,242,.05)}

/* 2. Spotlight "À lire aujourd'hui" — classes présentes dans HTML mais 100% unstyled live */
.blog-spotlight{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.25rem;margin-top:1.5rem}
@media(max-width:900px){.blog-spotlight{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.blog-spotlight{grid-template-columns:1fr}}
.blog-spotlight-card{position:relative;display:flex;flex-direction:column;gap:.6rem;padding:1.5rem 1.4rem;background:#fff;border:1px solid var(--border);border-radius:20px;box-shadow:0 10px 28px rgba(30,42,53,.05);transition:transform .25s,box-shadow .25s,border-color .25s}
.blog-spotlight-card:hover{transform:translateY(-4px);border-color:var(--blue);box-shadow:0 22px 50px rgba(107,141,242,.14)}
.blog-spotlight-card-featured{background:linear-gradient(135deg,rgba(80,215,161,.10) 0%,rgba(236,240,255,.85) 70%,#fff 100%);border-color:rgba(80,215,161,.35)}
.blog-spotlight-top{display:flex;align-items:center;gap:.65rem;flex-wrap:wrap}
.blog-spotlight-rank{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:linear-gradient(135deg,var(--blue),var(--violet));color:#fff;font-size:.78rem;font-weight:800;box-shadow:0 6px 14px rgba(101,88,211,.25)}
.blog-spotlight-icon{color:var(--blue);font-size:1.4rem;line-height:1}
.blog-spotlight-kicker{font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;color:var(--violet)}
.blog-spotlight-note{display:inline-block;margin-left:.4rem;font-size:.68rem;font-weight:700;color:#2a9d6e;background:rgba(80,215,161,.14);padding:.1rem .55rem;border-radius:50px}
.blog-spotlight-card h3{font-size:1.05rem;font-weight:800;line-height:1.35;letter-spacing:-.01em;margin:.2rem 0 .15rem}
.blog-spotlight-card h3 a{color:var(--text)}
.blog-spotlight-card h3 a:hover{color:var(--blue)}
.blog-spotlight-card p{font-size:.86rem;color:var(--text-mid);line-height:1.6;margin:0}
.blog-spotlight-meta{display:flex;gap:.4rem;flex-wrap:wrap;margin-top:.2rem}
.blog-spotlight-meta span{font-size:.68rem;font-weight:700;color:var(--text-mid);background:var(--lavender);padding:.18rem .55rem;border-radius:50px}
.blog-spotlight-link{margin-top:auto;align-self:flex-start;display:inline-flex;align-items:center;gap:.3rem;font-size:.84rem;font-weight:700;color:var(--blue)}
.blog-spotlight-link::after{content:"\2192";transition:transform .25s}
.blog-spotlight-link:hover::after{transform:translateX(3px)}

/* 3. Grille blog — cartes plus aérées + relief renforcé */
.blog-list-section .blog-grid{gap:1.75rem}
.blog-list-section .post{border-radius:20px;box-shadow:0 6px 20px rgba(30,42,53,.04)}
.blog-list-section .post:hover{box-shadow:0 22px 50px rgba(107,141,242,.14);transform:translateY(-6px)}
.blog-list-section .post-img{height:210px;min-height:210px}
.blog-list-section .post-content{padding:1.4rem 1.4rem 1.3rem;gap:.35rem}
.blog-list-section .post-title{font-size:1.05rem;line-height:1.4;letter-spacing:-.005em}
.blog-list-section .post-date{display:inline-flex;align-items:center;gap:.35rem;color:var(--text-mid)}
.blog-list-section .post-date::before{content:"";display:inline-block;width:6px;height:6px;border-radius:50%;background:var(--mint)}

/* 4. Article — hero plus présent (breadcrumb arrondi + image renforcée) */
.article-hero{padding:4rem 0 3rem}
.article-hero .article-back{display:inline-flex;align-items:center;gap:.4rem;padding:.45rem .9rem;min-height:38px;background:#fff;border:1px solid var(--border);border-radius:50px;font-size:.8rem;font-weight:700;color:var(--text-mid);box-shadow:0 6px 16px rgba(30,42,53,.06);transition:all .2s;text-decoration:none}
.article-hero .article-back:hover{color:var(--blue);border-color:var(--blue);transform:translateX(-2px)}
.article-hero img{border-radius:20px !important;box-shadow:0 24px 60px rgba(101,88,211,.18) !important}

/* 5. Article — corps : aération typographique + repère visuel sur H2 */
.eva-art h2{position:relative;padding-left:.9rem;margin-top:3rem}
.eva-art h2::before{content:"";position:absolute;left:0;top:.35em;bottom:.35em;width:4px;background:linear-gradient(180deg,var(--mint),var(--blue));border-radius:4px}
.eva-art h3{margin-top:2.4rem}

/* 6. Article — CTA newsletter + carte auteur final renforcés */
.eva-cta{border:1px solid rgba(101,88,211,.18);box-shadow:0 22px 56px rgba(101,88,211,.10)}
.eva-related{box-shadow:0 10px 30px rgba(30,42,53,.05)}
.article-author-card{display:flex;align-items:center;gap:1rem;max-width:720px;margin:1.5rem auto 4rem;padding:1.3rem 1.4rem;background:linear-gradient(135deg,var(--warm) 0%,#fff 100%);border:1px solid var(--border);border-radius:18px;box-shadow:0 10px 28px rgba(30,42,53,.06)}
.article-author-photo{width:64px;height:64px;border-radius:50%;object-fit:cover;flex-shrink:0;border:2px solid #fff;box-shadow:0 4px 10px rgba(30,42,53,.1)}
.article-author-name{margin:0;font-size:1rem;font-weight:800;color:var(--text);letter-spacing:-.01em}
.article-author-role{margin:.1rem 0 .2rem;font-size:.78rem;font-weight:700;color:var(--violet);text-transform:uppercase;letter-spacing:.05em}
.article-author-bio{margin:0;font-size:.85rem;color:var(--text-mid);line-height:1.5}

/* 7. Responsive ajustements */
@media(max-width:640px){
  .blog-topic-band-inner{flex-direction:column;align-items:stretch}
  .blog-filter-tools{justify-content:flex-start}
  .blog-search-input{min-width:0;width:100%}
  .article-hero{padding:2.5rem 0 2rem}
  .article-author-card{flex-direction:column;text-align:center;gap:.6rem}
}
/* HEAD-COMMON-CSS-START v3 */
/* ============================================================
   HEAD-COMMON v3 — additions (chantier visibilite, 2026-06-06)
   ============================================================ */

/* (1) No-FOUC propre, conditionne JS.
   .reveal ne se cache QUE si <html class="js"> (pose par le bloc HEAD-COMMON).
   Sans JS -> contenu visible immediatement (plus de FOUC, plus de pansement).
   NB : le filet reveal-failsafe (s'il subsiste ailleurs) devient redondant mais
   inoffensif. A retirer au lot suivant. */
html:not(.js) .reveal,
html:not(.js) .fade-in {
  opacity: 1 !important;
  transform: none !important;
}

/* (2) .article-quick-answer — centralisation des styles inline EXACTS
   des blocs "A retenir" deja presents dans les articles GEO. Permet aux
   futurs articles un balisage par classe (sans style= inline). */
.article-quick-answer {
  background: linear-gradient(135deg, var(--mint) 0%, var(--lavender) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}
.article-quick-answer > p:first-child {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
  margin: 0 0 1rem;
}
.article-quick-answer dl {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}
.article-quick-answer dt {
  font-weight: 700;
  color: var(--text);
}
.article-quick-answer dd {
  margin: 0 0 0.75rem;
  color: var(--text-mid);
}
.article-quick-answer dd:last-child {
  margin: 0;
}
.article-quick-answer a {
  color: var(--blue);
  font-weight: 600;
}
/* HEAD-COMMON-CSS-END v3 */
