/* ===================================
   VARIABLES & RESET
   =================================== */
:root {
  --primary-color: #1e40af;
  --secondary-color: #3b82f6;
  --accent-color: #10b981;
  --pedagogical-color: #8b5cf6;
  --research-color: #f59e0b;

  --dark-bg: #1f2937;
  --light-bg: #f9fafb;
  --text-dark: #111827;
  --text-light: #6b7280;
  --border-color: #e5e7eb;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.10);

  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 10px;

  --transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  overflow: hidden;
  color: var(--text-dark);
}

/* ===================================
   UTILITY BAR (NEW)
   =================================== */
.utility-bar {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, calc(100% - 40px));
  z-index: 1200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
}

.utility-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.brand-title {
  font-weight: 800;
  color: var(--text-dark);
}

.utility-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.utility-btn {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: #fff;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.utility-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.utility-btn.primary {
  border: none;
  background: linear-gradient(135deg, var(--accent-color), #34d399);
  color: #fff;
}

/* ===================================
   PRESENTATION CONTAINER
   =================================== */
.presentation-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ===================================
   PROGRESS BAR
   =================================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1000;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* ===================================
   NAVIGATION
   =================================== */
.navigation {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.nav-btn:hover { background: var(--secondary-color); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.nav-btn:active { transform: translateY(0); }
.nav-btn:disabled { background: #d1d5db; cursor: not-allowed; transform: none; }
.nav-btn svg { width: 20px; height: 20px; }

.slide-counter {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0 8px;
}

#currentSlide { color: var(--primary-color); font-size: 20px; }

/* ===================================
   SLIDES WRAPPER
   =================================== */
.slides-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 70px 20px 80px; /* leaves space for utility bar and nav */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================
   SLIDE
   =================================== */
.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1400px;
  height: 85vh;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  overflow: hidden;
}

.slide.active { opacity: 1; visibility: visible; z-index: 10; }
.slide.prev { transform: translate(-150%, -50%) scale(0.8); }
.slide.next { transform: translate(50%, -50%) scale(0.8); }

/* ===================================
   SLIDE CONTENT
   =================================== */
.slide-content {
  height: 100%;
  padding: 60px 80px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--light-bg);
}

.slide-content::-webkit-scrollbar { width: 8px; }
.slide-content::-webkit-scrollbar-track { background: var(--light-bg); border-radius: 4px; }
.slide-content::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 4px; }
.slide-content::-webkit-scrollbar-thumb:hover { background: var(--secondary-color); }

/* ===================================
   COVER SLIDE
   =================================== */
.cover-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  box-shadow: var(--shadow-xl);
  margin: 0 auto 30px;
}

.main-title { font-size: 48px; font-weight: 800; margin-bottom: 18px; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
.subtitle { font-size: 28px; font-weight: 600; margin-bottom: 40px; opacity: 0.96; }

.candidate-info {
  background: rgba(255,255,255,0.12);
  padding: 26px 46px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  margin-bottom: 26px;
}

.candidate-info h3 { font-size: 34px; margin-bottom: 10px; }
.candidate-info p { font-size: 18px; margin: 6px 0; opacity: 0.92; }

/* ===================================
   TITLES
   =================================== */
.slide-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 26px;
  padding-bottom: 12px;
  border-bottom: 4px solid var(--primary-color);
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 28px 40px;
  border-radius: 15px;
  margin: -60px -80px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.section-header.section-a {
  background: linear-gradient(135deg, var(--pedagogical-color), #a78bfa);
}

.section-header.section-b {
  background: linear-gradient(135deg, var(--research-color), #fbbf24);
}

.section-header .slide-title {
  border: none;
  margin: 0;
  padding: 0;
  color: white;
}

.section-score { text-align: right; }
.score-label { display: block; font-size: 15px; opacity: 0.95; margin-bottom: 4px; }
.score-value { font-size: 40px; font-weight: 900; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
.score-sub { display: block; font-size: 14px; opacity: 0.95; margin-top: 6px; }

/* ===================================
   BADGES / PILLS
   =================================== */
.score-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), #34d399);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  margin-bottom: 18px;
}

.score-badge.small { font-size: 14px; padding: 10px 16px; }

.badge-inline {
  margin-left: 10px;
  display: inline-block;
  background: rgba(255,255,255,0.25);
  padding: 6px 10px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
}

.points-badge {
  background: var(--accent-color);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  display: inline-block;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: #eef2ff;
  color: #1e3a8a;
  border: 1px solid #e0e7ff;
}

.pill.success {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}

.pill.neutral {
  background: #f3f4f6;
  color: #374151;
  border-color: #e5e7eb;
}

.meta-line {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}

.meta-line.center { justify-content: center; }

/* ===================================
   OVERVIEW
   =================================== */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.overview-card {
  background: white;
  border-radius: 15px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--primary-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.overview-card.pedagogical { border-left-color: var(--pedagogical-color); }
.overview-card.research { border-left-color: var(--research-color); }

.card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
}

.overview-card.pedagogical .icon-circle { background: linear-gradient(135deg, var(--pedagogical-color), #a78bfa); }
.overview-card.research .icon-circle { background: linear-gradient(135deg, var(--research-color), #fbbf24); }

.score-display { font-size: 48px; font-weight: 900; color: var(--primary-color); margin: 10px 0 12px; }
.max-score { font-size: 30px; color: var(--text-light); }

.highlights { list-style: none; padding: 0; }
.highlights li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 15px;
}
.highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 900;
  font-size: 18px;
}

.total-score {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border-radius: 15px;
  padding: 26px;
  text-align: center;
}

.total-score h3 { font-size: 22px; margin-bottom: 12px; }
.total-display { font-size: 60px; font-weight: 900; color: var(--primary-color); }
.total-max { font-size: 36px; color: var(--text-light); }

.note-muted {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===================================
   SUBSECTION GRID
   =================================== */
.subsection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.subsection-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 22px;
  border-top: 4px solid var(--primary-color);
  box-shadow: var(--shadow-md);
}

.subsection-card h3 { font-size: 19px; margin-bottom: 12px; }

.subsection-score {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 12px;
}

.subsection-score.warning { background: #f59e0b; }

.subsection-list { list-style: none; padding: 0; }
.subsection-list li { padding: 8px 0 8px 22px; position: relative; font-size: 14px; }
.subsection-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 900;
  font-size: 20px;
}

/* ===================================
   PUBLICATIONS
   =================================== */
.publications-list { display: flex; flex-direction: column; gap: 18px; }

.publication-item {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  gap: 18px;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.publication-item:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.publication-item.compact { padding: 18px; }

.pub-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.pub-content h4 { font-size: 18px; margin-bottom: 8px; }
.pub-details { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }

.badge {
  background: var(--primary-color);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}

.pub-description { color: var(--text-light); font-size: 14px; line-height: 1.6; }

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}
.resource-link:hover { color: var(--secondary-color); text-decoration: underline; }

/* ===================================
   TWO COLUMN
   =================================== */
.two-column-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 14px;
}

.column h3 {
  font-size: 20px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

/* ===================================
   TABLES
   =================================== */
.table-responsive { overflow-x: auto; margin-top: 14px; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.data-table thead {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.data-table th { padding: 14px 14px; text-align: left; font-weight: 900; font-size: 14px; }
.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--border-color); font-size: 14px; }
.data-table tbody tr:hover { background: var(--light-bg); }
.data-table tbody tr:last-child td { border-bottom: none; }

/* status chips */
.status {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid transparent;
}
.status.ok { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }

/* ===================================
   BOXES
   =================================== */
.highlight-box {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-left: 4px solid var(--accent-color);
  border-radius: 10px;
  padding: 18px;
  margin-top: 18px;
}

.highlight-box p { margin: 8px 0; font-size: 14px; line-height: 1.6; }
.note-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  padding: 14px;
  margin-top: 16px;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
}

/* ===================================
   RESPONSIBILITIES
   =================================== */
.responsibilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.responsibility-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary-color);
}

.responsibility-card.highlight {
  border-top-color: var(--accent-color);
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

.period { font-weight: 900; color: var(--primary-color); margin: 10px 0; }
.description { color: var(--text-light); line-height: 1.6; font-size: 14px; }

/* ===================================
   SUMMARY (NEW)
   =================================== */
.summary-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  padding: 22px;
  border: 1px solid var(--border-color);
}

.summary-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}

.summary-title { font-size: 18px; font-weight: 900; }
.summary-sub { font-size: 14px; color: var(--text-light); margin-top: 4px; }

.summary-score {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
}
.summary-score span { font-size: 22px; color: var(--text-light); font-weight: 800; }

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.summary-item {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #eef2f7;
}

.summary-k { font-weight: 900; }
.summary-v { font-size: 22px; font-weight: 900; color: var(--text-dark); margin-top: 6px; }
.summary-s { margin-top: 8px; font-weight: 900; font-size: 13px; }
.summary-s.ok { color: #065f46; }
.summary-s.neutral { color: #374151; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 980px) {
  .slide-content { padding: 50px 22px; }
  .section-header { margin: -50px -22px 26px; padding: 22px; }
  .overview-grid { grid-template-columns: 1fr; }
  .two-column-layout { grid-template-columns: 1fr; }
  .utility-bar { top: 8px; }
}

/* ===================================
   COMMISSION MODE (NEW)
   - reduce visual noise, animations
   =================================== */
body.commission-mode {
  background: #e5e7eb; /* neutral */
}

body.commission-mode .slide {
  transition: none !important;
}

body.commission-mode .overview-card:hover,
body.commission-mode .publication-item:hover {
  transform: none !important;
}

body.commission-mode .utility-bar {
  background: rgba(255,255,255,0.97);
}

body.commission-mode .progress-fill {
  box-shadow: none;
}

/* ===================================
   PRINT / PDF SUPPORT (NEW)
   =================================== */
@media print {
  body {
    background: #fff !important;
    overflow: visible !important;
  }

  .navigation, .progress-bar, .utility-bar {
    display: none !important;
  }

  .slides-wrapper {
    padding: 0 !important;
    overflow: visible !important;
    display: block !important;
  }

  .slide {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 0 18px 0 !important;
    page-break-after: always;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: 1px solid #e5e7eb;
  }

  .slide-content {
    overflow: visible !important;
    height: auto !important;
    padding: 24px !important;
  }
}






/* ===================================
   VARIABLES & RESET
   =================================== */
:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #10b981;
    --pedagogical-color: #8b5cf6;
    --research-color: #f59e0b;
    --dark-bg: #1f2937;
    --light-bg: #f9fafb;
    --text-dark: #111827;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow: hidden;
}

/* ===================================
   PRESENTATION CONTAINER
   =================================== */
.presentation-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ===================================
   PROGRESS BAR
   =================================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* ===================================
   NAVIGATION
   =================================== */
.navigation {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.nav-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-btn:active {
    transform: translateY(0);
}

.nav-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

.slide-counter {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0 15px;
}

#currentSlide {
    color: var(--primary-color);
    font-size: 20px;
}

/* ===================================
   SLIDES WRAPPER
   =================================== */
.slides-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   SLIDE
   =================================== */
.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1400px;
    height: 85vh;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.slide.prev {
    transform: translate(-150%, -50%) scale(0.8);
}

.slide.next {
    transform: translate(50%, -50%) scale(0.8);
}

/* ===================================
   SLIDE CONTENT
   =================================== */
.slide-content {
    height: 100%;
    padding: 60px 80px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-bg);
}

.slide-content::-webkit-scrollbar {
    width: 8px;
}

.slide-content::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 4px;
}

.slide-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.slide-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ===================================
   COVER SLIDE
   =================================== */
.cover-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.university-logo {
    margin-bottom: 40px;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 50px;
    opacity: 0.95;
}

.candidate-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 50px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.candidate-info h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

.candidate-info p {
    font-size: 18px;
    margin: 8px 0;
    opacity: 0.9;
}

.date-info {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.85;
}

/* ===================================
   SLIDE TITLES
   =================================== */
.slide-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 4px solid var(--primary-color);
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px 40px;
    border-radius: 15px;
    margin: -60px -80px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header.section-a {
    background: linear-gradient(135deg, var(--pedagogical-color), #a78bfa);
}

.section-header.section-b {
    background: linear-gradient(135deg, var(--research-color), #fbbf24);
}

.section-header .slide-title {
    border: none;
    margin: 0;
    padding: 0;
    color: white;
}

.section-score {
    text-align: right;
}

.score-label {
    display: block;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.score-value {
    font-size: 42px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===================================
   SCORE BADGES
   =================================== */
.score-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #34d399);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.points-badge {
    background: var(--accent-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
}

.points-inline {
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    margin-left: 10px;
}

/* ===================================
   OVERVIEW GRID
   =================================== */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.overview-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border-left: 6px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.overview-card.pedagogical {
    border-left-color: var(--pedagogical-color);
}

.overview-card.research {
    border-left-color: var(--research-color);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
}

.overview-card.pedagogical .icon-circle {
    background: linear-gradient(135deg, var(--pedagogical-color), #a78bfa);
}

.overview-card.research .icon-circle {
    background: linear-gradient(135deg, var(--research-color), #fbbf24);
}

.card-header h3 {
    font-size: 24px;
    color: var(--text-dark);
}

.card-content {
    margin-top: 20px;
}

.score-display {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.max-score {
    font-size: 32px;
    color: var(--text-light);
}

.highlights {
    list-style: none;
    padding: 0;
}

.highlights li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
}

.highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
    font-size: 18px;
}

/* ===================================
   TOTAL SCORE
   =================================== */
.total-score {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.total-score h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.total-display {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-color);
}

.total-max {
    font-size: 40px;
    color: var(--text-light);
}

/* ===================================
   SUBSECTION GRID
   =================================== */
.subsection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.subsection-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 25px;
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.subsection-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.subsection-score {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.subsection-list {
    list-style: none;
    padding: 0;
}

.subsection-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
}

.subsection-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 20px;
}

/* ===================================
   PUBLICATIONS LIST
   =================================== */
.publications-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.publication-item {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.publication-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.publication-item.compact {
    padding: 20px;
}

.pub-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
}

.pub-content {
    flex: 1;
}

.pub-content h4 {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pub-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.pub-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* ===================================
   RESOURCE LINKS
   =================================== */
.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
}

.resource-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.resource-link svg {
    width: 16px;
    height: 16px;
}

/* ===================================
   TWO COLUMN LAYOUT
   =================================== */
.two-column-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.column h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

/* ===================================
   TABLES
   =================================== */
.table-responsive {
    overflow-x: auto;
    margin-top: 20px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.data-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.data-table th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-dark);
}

.data-table tbody tr:hover {
    background: var(--light-bg);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.highlight-row {
    background: #fef3c7 !important;
    font-weight: 600;
}

/* ===================================
   HIGHLIGHT BOX
   =================================== */
.highlight-box {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-left: 4px solid var(--accent-color);
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
}

.highlight-box p {
    margin: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
}

.highlight-box strong {
    color: #065f46;
}

/* ===================================
   RESPONSIBILITIES
   =================================== */
.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.responsibility-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
}

.responsibility-card.highlight {
    border-top-color: var(--accent-color);
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

.responsibility-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.period {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
}

.description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.modules-list h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin: 15px 0 10px;
}

.modules-list ul {
    list-style: none;
    padding-left: 0;
}

.modules-list li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: var(--text-dark);
    font-size: 14px;
}

.modules-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

.modules-list li ul {
    margin-top: 8px;
}

.modules-list li ul li {
    font-size: 13px;
    color: var(--text-light);
}

/* ===================================
   RESPONSIBILITY ITEMS
   =================================== */
.responsibilities-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.responsibility-item {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-md);
}

.resp-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.resp-content {
    flex: 1;
}

.resp-content h3 {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.jury-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.jury-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 14px;
}

.jury-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 16px;
}

/* ===================================
   PUBLICATION DETAILED
   =================================== */
.publication-detailed {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.publication-header {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pub-type {
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.indexing-badge {
    background: var(--accent-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.publisher-badge {
    background: #8b5cf6;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.pub-title {
    font-size: 24px;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.authors {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
}

.publication-info {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    font-weight: 700;
    color: var(--text-dark);
    min-width: 180px;
}

.info-row .value {
    color: var(--text-light);
    flex: 1;
}

.abstract-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.abstract-section h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.abstract-section ul {
    list-style: none;
    padding: 0;
}

.abstract-section li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
}

.abstract-section li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 14px;
}

.doi-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.doi-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.book-title {
    font-style: italic;
    color: var(--text-light);
    font-size: 15px;
    margin: 8px 0;
}

.isbn {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

/* ===================================
   CONFERENCES
   =================================== */
.conferences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.conference-item {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.conference-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.conference-item.organized {
    border-left: 4px solid var(--accent-color);
}

.conf-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
}

.conf-content h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.conf-content p {
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 6px;
}

.conf-details {
    color: var(--text-light);
    font-size: 13px;
    font-style: italic;
}

/* ===================================
   SYNTHESIS
   =================================== */
.synthesis-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.synthesis-section h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.strength-item {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
}

.strength-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.strength-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.strength-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===================================
   SCORE BREAKDOWN
   =================================== */
.score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.breakdown-item {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-md);
}

.breakdown-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.section-letter {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
}

.breakdown-label span:last-child {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.breakdown-bar {
    background: #e5e7eb;
    border-radius: 50px;
    height: 40px;
    overflow: hidden;
    margin-bottom: 15px;
}

.bar-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 18px;
    transition: width 0.5s ease;
}

.bar-fill.pedagogical {
    background: linear-gradient(90deg, var(--pedagogical-color), #a78bfa);
}

.bar-fill.research {
    background: linear-gradient(90deg, var(--research-color), #fbbf24);
}

.breakdown-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.breakdown-details span {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

/* ===================================
   CONCLUSION SLIDE
   =================================== */
.conclusion-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.conclusion-content {
    max-width: 1000px;
    margin: 0 auto;
}

.total-score-display {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-xl);
}

.total-score-display h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.final-score {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.score-number {
    color: white;
}

.score-percentage {
    font-size: 32px;
    font-weight: 700;
    opacity: 0.9;
}

.conclusion-text {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
}

.highlight-statement {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.key-achievements h4,
.future-perspective h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.key-achievements ul {
    list-style: none;
    padding: 0;
}

.key-achievements li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

.key-achievements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
    font-size: 20px;
}

.future-perspective p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
}

.contact-info {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.contact-info p {
    margin: 6px 0;
    color: var(--text-dark);
    font-size: 15px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ===================================
   INSTITUTION DETAIL
   =================================== */
.institution-detail {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .slide-content {
        padding: 50px 60px;
    }
    
    .main-title {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .slide {
        width: 95%;
        height: 90vh;
    }
    
    .slide-content {
        padding: 40px 30px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        margin: -40px -30px 30px;
        padding: 25px 30px;
    }
    
    .overview-grid,
    .subsection-grid,
    .two-column-layout,
    .responsibilities-grid,
    .conferences-grid,
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .navigation {
        bottom: 20px;
        padding: 10px 20px;
    }
    
    .nav-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 22px;
    }
    
    .slide-title {
        font-size: 28px;
    }
}

/* ================================
   FOOTER INSTITUTIONNEL FIXE
   ================================ */

.institutional-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: #f8fafc;            /* très neutre */
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #475569;                 /* gris institutionnel */
  z-index: 1000;
  pointer-events: none;           /* ne gêne pas l’interaction */
}

/* Éviter que le contenu soit caché */
body {
  padding-bottom: 36px;
}

.institutional-footer {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.92);
}


