:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8fafc;
  color: #0f172a;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #eef2ff;
  --border: #d1d5db;
  --primary: #0f172a;
  --primary-soft: #0f172a;
  --secondary: #004899;
  --muted: #64748b;
  --accent: #009FE3;
  --brand-navy: 217 91% 21%;  /* Exemple de valeurs pour le bleu marine */
  --brand-cyan: 191 97% 47%;  /* Exemple de valeurs pour le bleu cyan */

}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--primary);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 880px;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-item {
  color: var(--muted);
}

.nav-item--active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.2rem;
}

.breadcrumb {
  background: #e0e7ff;
  color: var(--muted);
  font-family: 'Jost', sans-serif;
}

.breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 0;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb-current {
  color: var(--secondary);
  font-weight: 600;
}

.breadcrumb-current--strong {
  font-weight: 700;
}

.hero {
  background-image: linear-gradient(to bottom right, hsl(var(--brand-navy)), hsl(var(--brand-cyan)));
  color: #f8fafc;
  padding: 70px 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.container.hero__content {
    max-width: 880px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #d5750d;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 48px;
  line-height: 1;
}

.hero__subtitle {
  margin: 0;
  font-size: 20px;
  opacity: 0.95;
  color: #fff;
  font-weight: 300;
  font-style: italic;
}

.section {
  padding: 5rem 0;
}

.section--narrow {
  max-width: 860px;
}

.section--soft {
  background: var(--surface-soft);
}

.section-card {
  border-radius: 1rem;
  padding: 2rem;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 2vw, 2.5rem);
  color: #0048a6;
  text-transform: none;
  font-size: 30px;
}

.section h2.accordion-header {
    margin-bottom: 0;
}

h2.accordion-header .accordion-button {
    flex-direction: row;
    justify-content: space-between;
    text-transform: none;
    color: #0048a6;
    padding-left: 13px;
}

.accordion h3 .accordion-button {
    color: #0048a6;
    text-transform: none;
    flex-direction: row;
    justify-content: space-between;
}

.accordion .accordion-button:not(.collapsed)::after {
    border-color: inherit;
}

.accordion .accordion-button:not(.collapsed) {
    color: inherit;
    background: transparent;
}

.accordion .accordion-button::after {
    width: 1.1rem;
    height: 1.1rem;
}

.accordion-body {
    color: #004899;
}

.section p,
.section li,
.section span,
.section strong {
  line-height: 1.75;
}

.section ul,
.checklist,
.timeline {
  margin: 1rem 0 0 0;
  padding-left: 1.2rem;
}

section.section.section--soft p {
    font-size: 18px;
}

section.section.section--soft ul {
    font-size: 16px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0px;
    color: #004899;
    list-style: none;
    font-family: 'Jost';
    position: relative;
    padding-left: 0;
}

section.section.section--soft ul li::before {
    content: "";
    background: #e28e2a;
    width: 10px;
    height: 10px;
    display: inline-block;
    top: 0;
    margin-right: 15px;
    position: relative;
    border-radius: 100%;
}

section.section.section--soft ul li {
    position: relative;
}
.section ul li,
.checklist li,
.timeline li {
  margin-bottom: 0.85rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid--3 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.feature-card {
  background: var(--surface);
  border-left: 4px solid #e28e2a;
  border-radius: 1rem;
  padding: 2.3rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  font-weight: 600;
  color: var(--secondary);
}

.poster-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  width: fit-content;
  margin: 0 auto;
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.poster-card img {
  /* height: auto; */
  /* width: 100%; */
  /* display: block; */
}

.poster-card figcaption {
  padding: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion .accordion-item {
  background: var(--surface);
  border: 1px solid #d1d5db !important;
  border-radius: 1rem;
  padding: 1.5rem;
}

.accordion-item h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--secondary);
}

.partner-logo {
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  max-width: 260px;
}

.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

section.section.section--soft .accordion ul li::before {
    display: none;
}
.partner-cards article {
  border-radius: 1rem;
}

.partner-cards h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Jost';
  color: #0048a6 !important;
}

.timeline {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  border-left: 3px solid #009fe3;
  font-family: 'Jost';
  color: #0048a6;
}

.timeline strong {
    display: block;
}

.timeline li {
  padding-left: 2.2rem;
  position: relative;
  margin-bottom: 13px;
}

.timeline li::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: -11px;
  top: 4px;
  border: 3px solid #eef2ff;
}

.financing-card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
}

.financing-logo {
  background: #eef2ff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  width: fit-content;
  font-weight: 700;
}

.financing-amount {
  font-weight: 700;
  color: var(--secondary);
}

section .accordion{
  margin-top: 0;
}
.section .accordion p {
    font-weight: 400;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    margin: 35px 0;
  }

  .partner-cards {
  }

  .financing-card {
    grid-template-columns: auto 1fr;
  }
}
@media (max-width: 768px) {
.container {
    padding-inline: 20px;
}

.poster-card img {
    width: 100%;
    object-fit: contain;
    height: auto;
}

.grid.grid--3 {
    margin: 30px 0;
}
}