/* ============================================
   InAT — Initiative Africaine pour l'Attractivité des Territoires
   Couleurs extraites du dossier PDF officiel
   ============================================ */

:root {
  --navy: #1B3A5C;
  --navy-dark: #0F2440;
  --gold: #C8963E;
  --gold-light: #E8C96A;
  --green: #1A6B4A;
  --green-dark: #0E4A30;
  --green-light: #2E8B57;
  --teal: #1A4D5E;
  --orange: #D4762C;
  --red-accent: #C0392B;
  --bg-light: #F7F5F0;
  --bg-white: #FFFFFF;
  --bg-grey: #ECEBE6;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #6B6B6B;
  --border: #D6D3CC;
  --shadow: rgba(27, 58, 92, 0.12);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px var(--shadow);
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(15, 36, 64, 0.97);
  backdrop-filter: blur(10px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand img {
  height: 48px;
  width: auto;
}

.nav-brand span {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links li { position: relative; }

.nav-links a {
  color: #D0D0D0;
  text-decoration: none;
  padding: 22px 18px;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s, background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(200, 150, 62, 0.08);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-dark);
  min-width: 260px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border-top: 3px solid var(--gold);
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  padding: 12px 20px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dropdown-menu a:hover { background: rgba(200, 150, 62, 0.12); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: 0.3s;
}

/* ---- HERO ---- */
.hero {
  margin-top: 70px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--teal) 100%);
  color: white;
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(200, 150, 62, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(26, 107, 74, 0.06) 0%, transparent 50%);
  animation: heroGlow 12s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(2%, -1%) rotate(3deg); }
}

.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }

.hero-logo {
  width: 130px;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: white;
  padding: 8px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.hero h1 strong {
  font-weight: 800;
  color: var(--gold-light);
  font-size: 3.5rem;
  display: block;
  letter-spacing: 6px;
  margin: 0.3rem 0;
}

.hero .period {
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}

.hero .slogan {
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  border-top: 1px solid rgba(200,150,62,0.4);
  border-bottom: 1px solid rgba(200,150,62,0.4);
  padding: 1rem 0;
  margin: 1.5rem auto;
  max-width: 600px;
}

.hero .slogan-en {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-top: 0.5rem;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 150, 62, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---- KEY FIGURES STRIP ---- */
.key-figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: -3rem auto 0;
  position: relative;
  z-index: 2;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow);
}

.key-figure {
  background: white;
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--border);
}

.key-figure:last-child { border-right: none; }

.key-figure .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.key-figure .label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.4rem;
  line-height: 1.3;
}

/* ---- SECTIONS ---- */
section { padding: 5rem 2rem; }

.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header .subtitle {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 1rem auto;
  border-radius: 2px;
}

/* ---- RESUME EXECUTIF ---- */
.resume-section { background: white; }

.paradox-box {
  background: linear-gradient(135deg, #FFF8E7 0%, #FFF3D4 100%);
  border-left: 5px solid var(--gold);
  padding: 2rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.paradox-box strong { color: var(--orange); }
.paradox-box em { color: var(--red-accent); font-style: normal; font-weight: 700; }

.resume-text {
  columns: 2;
  column-gap: 3rem;
  font-size: 1rem;
  color: var(--text-medium);
}

/* ---- IDENTITY TABLE ---- */
.identity-section { background: var(--bg-light); }

.identity-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.identity-table tr { transition: background 0.2s; }
.identity-table tr:hover { background: rgba(26, 107, 74, 0.03); }

.identity-table th {
  background: var(--green-dark);
  color: white;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  width: 220px;
  font-size: 0.9rem;
}

.identity-table td {
  background: white;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

/* ---- VISION MISSION ---- */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.vm-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.vm-card-header {
  padding: 1rem 1.5rem;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.vm-card:first-child .vm-card-header { background: var(--navy); }
.vm-card:last-child .vm-card-header { background: var(--green); }

.vm-card-body {
  background: white;
  padding: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ---- THEORY OF CHANGE ---- */
.toc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.toc-step {
  background: white;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.toc-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(27, 58, 92, 0.18);
}

.toc-step .step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.toc-step h4 {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toc-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- 6 LEVIERS ---- */
.leviers-section { background: white; }

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

.levier-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.levier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(27, 58, 92, 0.18);
}

.levier-header {
  padding: 1.2rem 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}

.levier-header .levier-num {
  background: rgba(255,255,255,0.2);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.levier-header h4 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.levier-card:nth-child(1) .levier-header { background: var(--navy); }
.levier-card:nth-child(2) .levier-header { background: var(--green-dark); }
.levier-card:nth-child(3) .levier-header { background: var(--teal); }
.levier-card:nth-child(4) .levier-header { background: var(--orange); }
.levier-card:nth-child(5) .levier-header { background: var(--green); }
.levier-card:nth-child(6) .levier-header { background: var(--gold); color: var(--navy-dark); }

.levier-body {
  background: white;
  padding: 1.2rem 1.5rem;
}

.levier-body .objective {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 0.8rem;
  font-style: italic;
}

.levier-body .results {
  list-style: none;
  font-size: 0.82rem;
}

.levier-body .results li {
  padding: 4px 0;
  color: var(--text-light);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.levier-body .results li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ---- INFOGRAPHIC IMAGE ---- */
.infographic-section {
  background: var(--bg-grey);
  text-align: center;
}

.infographic-img {
  max-width: 900px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 40px var(--shadow);
  margin-top: 1rem;
}

/* ---- EDITIONS CALENDAR ---- */
.editions-section { background: var(--bg-light); }

.editions-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.editions-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--green));
  border-radius: 3px;
}

.edition-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  position: relative;
  align-items: flex-start;
}

.edition-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--bg-light);
  flex-shrink: 0;
  margin-left: 21px;
  margin-top: 4px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(200,150,62,0.3);
}

.edition-item:first-child .edition-dot {
  background: var(--green);
  width: 24px; height: 24px;
  margin-left: 19px;
  box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.2), 0 2px 8px rgba(0,0,0,0.1);
}

.edition-content {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  flex: 1;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s;
}

.edition-content:hover { transform: translateX(4px); }

.edition-content .ed-number {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.edition-content h4 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.edition-content .ed-date {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.edition-content .ed-region {
  color: var(--text-light);
  font-size: 0.85rem;
}

.edition-content .ed-theme {
  font-style: italic;
  color: var(--text-medium);
  font-size: 0.88rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

/* ---- PROGRAMME 5 JOURS ---- */
.programme-section { background: white; }

.programme-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prog-day {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s;
}

.prog-day:hover { transform: translateX(4px); }

.prog-day-label {
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  flex-shrink: 0;
  padding: 1rem 0.5rem;
}

.prog-day-label .day-code { font-size: 1.3rem; }
.prog-day-label .day-name { font-size: 0.7rem; letter-spacing: 1px; opacity: 0.8; }

.prog-day:nth-child(1) .prog-day-label { background: var(--teal); }
.prog-day:nth-child(2) .prog-day-label { background: var(--navy); }
.prog-day:nth-child(3) .prog-day-label { background: var(--green-dark); }
.prog-day:nth-child(4) .prog-day-label { background: var(--green); }
.prog-day:nth-child(5) .prog-day-label { background: var(--gold); color: var(--navy-dark); }

.prog-day-content {
  background: white;
  padding: 1.2rem 1.5rem;
  flex: 1;
}

.prog-day-content h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.prog-day-content p {
  color: var(--text-medium);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ---- BUDGET ---- */
.budget-section { background: var(--bg-light); }

.budget-total-bar {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 30px var(--shadow);
}

.budget-total-bar .total-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-light);
}

.budget-total-bar .total-fcfa {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}

.budget-phases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.budget-phase {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.budget-phase .bp-percent {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: white;
  flex-shrink: 0;
}

.budget-phase:nth-child(1) .bp-percent { background: var(--teal); }
.budget-phase:nth-child(2) .bp-percent { background: var(--navy); }
.budget-phase:nth-child(3) .bp-percent { background: var(--green); }
.budget-phase:nth-child(4) .bp-percent { background: var(--green-dark); }
.budget-phase:nth-child(5) .bp-percent { background: var(--orange); }

.budget-phase .bp-info h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.budget-phase .bp-info .bp-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.budget-phase .bp-info .bp-details {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ---- FINANCEMENT ---- */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.finance-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  position: relative;
  overflow: hidden;
}

.finance-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.finance-card:nth-child(1)::before { background: var(--navy); }
.finance-card:nth-child(2)::before { background: var(--green); }
.finance-card:nth-child(3)::before { background: var(--orange); }
.finance-card:nth-child(4)::before { background: var(--gold); }
.finance-card:nth-child(5)::before { background: var(--teal); }

.finance-card .fc-percent {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.finance-card .fc-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin: 0.3rem 0;
}

.finance-card .fc-source {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

.finance-card .fc-status {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
}

.fc-status.confirmed { background: #E8F5E9; color: var(--green-dark); }
.fc-status.pending { background: #FFF8E1; color: #B8860B; }

/* ---- GOUVERNANCE ---- */
.gouvernance-section { background: white; }

.gouv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.gouv-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  background: var(--bg-light);
  position: relative;
  transition: transform 0.3s;
}

.gouv-card:hover { transform: translateY(-4px); }

.gouv-card .gouv-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  margin: 0 auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
}

.gouv-card:nth-child(1) .gouv-icon { background: var(--gold); }
.gouv-card:nth-child(2) .gouv-icon { background: var(--navy); }
.gouv-card:nth-child(3) .gouv-icon { background: var(--green); }
.gouv-card:nth-child(4) .gouv-icon { background: var(--teal); }
.gouv-card:nth-child(5) .gouv-icon { background: var(--orange); }

.gouv-card h4 {
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.gouv-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---- KPI ---- */
.kpi-section { background: var(--bg-light); }

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

.kpi-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s;
}

.kpi-card:hover { transform: translateY(-3px); }

.kpi-card .kpi-target {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.kpi-card .kpi-label {
  font-size: 0.85rem;
  color: var(--text-medium);
  font-weight: 500;
}

.kpi-card .kpi-freq {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.4rem;
}

/* ---- ACCORDION / FAQ ---- */
.accordion-section { background: white; }

.accordion-group { max-width: 850px; margin: 0 auto; }

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.accordion-item.active {
  box-shadow: 0 4px 20px var(--shadow);
  border-color: var(--gold);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  background: var(--bg-light);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: background 0.3s;
  user-select: none;
}

.accordion-header:hover { background: var(--bg-grey); }

.accordion-header .acc-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
  color: var(--gold);
  font-weight: 300;
}

.accordion-item.active .accordion-header { background: var(--navy); color: white; }
.accordion-item.active .acc-icon { transform: rotate(45deg); color: var(--gold-light); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.accordion-body-inner ul {
  margin: 0.5rem 0 0.5rem 1.2rem;
}

.accordion-body-inner li { margin-bottom: 0.3rem; }

/* ---- PARTENARIAT ---- */
.partenariat-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: white;
}

.partenariat-section .section-header h2 { color: white; }
.partenariat-section .section-header p { color: rgba(255,255,255,0.7); }

.partner-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.partner-tier {
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}

.partner-tier:hover { transform: translateY(-4px); }

.pt-header {
  padding: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.partner-tier:nth-child(1) .pt-header { background: linear-gradient(135deg, #B0B0B0, #E0E0E0); color: #333; }
.partner-tier:nth-child(2) .pt-header { background: linear-gradient(135deg, #C8963E, #E8C96A); color: #333; }
.partner-tier:nth-child(3) .pt-header { background: linear-gradient(135deg, #A0A0A0, #C8C8C8); color: #333; }
.partner-tier:nth-child(4) .pt-header { background: linear-gradient(135deg, #CD7F32, #DDA15E); color: #fff; }
.partner-tier:nth-child(5) .pt-header { background: linear-gradient(135deg, var(--teal), #2A7D8E); color: #fff; }

.pt-body {
  background: rgba(255,255,255,0.08);
  padding: 1.2rem 1rem;
  min-height: 160px;
}

.pt-body .pt-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.pt-body .pt-benefits {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ---- OPERATEUR ---- */
.operateur-section { background: var(--bg-light); }

.operateur-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.operateur-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  padding: 2rem;
}

.operateur-header h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.operateur-header .op-sub { font-size: 0.9rem; opacity: 0.8; font-style: italic; }

.operateur-body { padding: 2rem; }

.operateur-body p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.op-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.op-service {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 1.2rem;
}

.op-service h4 {
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.op-service ul {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-medium);
}

.op-service li {
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}

.op-service li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

/* ---- CONTACT / FOOTER ---- */
.contact-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.contact-detail .cd-icon {
  width: 36px; height: 36px;
  background: rgba(200, 150, 62, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-detail .cd-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

.contact-detail .cd-text strong {
  color: white;
  display: block;
  margin-bottom: 2px;
}

.roadmap-box {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.roadmap-box h3 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.roadmap-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.roadmap-item .rm-date {
  background: rgba(200, 150, 62, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 90px;
  text-align: center;
}

.roadmap-item .rm-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.roadmap-item.highlight .rm-date {
  background: var(--gold);
  color: var(--navy-dark);
}

.roadmap-item.highlight .rm-text {
  color: white;
  font-weight: 600;
}

/* Footer */
footer {
  background: #0A1929;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.82rem;
}

footer .footer-slogan {
  color: var(--gold);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .leviers-grid { grid-template-columns: repeat(2, 1fr); }
  .gouv-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-tiers { grid-template-columns: repeat(3, 1fr); }
  .finance-grid { grid-template-columns: repeat(3, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .burger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    border-top: 2px solid var(--gold);
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-links.open { display: flex; }

  .nav-dropdown .dropdown-menu {
    position: static;
    display: none;
    border-top: none;
    background: rgba(0,0,0,0.15);
  }

  .nav-dropdown.open .dropdown-menu { display: block; }

  .hero h1 { font-size: 1.8rem; }
  .hero h1 strong { font-size: 2.5rem; }

  .key-figures { grid-template-columns: repeat(2, 1fr); margin: -2rem 1rem 0; }
  .key-figure { padding: 1.2rem 0.8rem; }

  .resume-text { columns: 1; }
  .vm-grid { grid-template-columns: 1fr; }
  .toc-steps { grid-template-columns: repeat(2, 1fr); }
  .leviers-grid { grid-template-columns: 1fr; }
  .budget-phases { grid-template-columns: 1fr; }
  .finance-grid { grid-template-columns: repeat(2, 1fr); }
  .gouv-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  .partner-tiers { grid-template-columns: repeat(2, 1fr); }
  .op-services { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .prog-day { flex-direction: column; }
  .prog-day-label { width: 100%; flex-direction: row; gap: 0.5rem; padding: 0.8rem 1rem; }

  section { padding: 3rem 1rem; }
}

@media (max-width: 480px) {
  .key-figures { grid-template-columns: 1fr 1fr; }
  .toc-steps { grid-template-columns: 1fr; }
  .finance-grid { grid-template-columns: 1fr; }
  .partner-tiers { grid-template-columns: 1fr; }
  .hero { padding: 4rem 1rem 3rem; }
  .hero h1 strong { font-size: 2rem; letter-spacing: 3px; }
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(200,150,62,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}
