:root {
  --blue: #1F7A8C;
  --blue-dark: #0A2342;
  --gray: #6B7280;
  --light: #F5F7FA;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: var(--light);
  color: var(--blue-dark);
}

/* NAV */
.header {
  /* background: var(--white); */
  /* background: linear-gradient(
    180deg, */
    background: rgba(224, 245, 241, 0.55);
    /* rgba(255, 255, 255, 0.85) */
  /* ); */
  border-bottom: 1px var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.container {
  max-width: 1150px;
  margin: auto;
  padding: 20px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 48px;
}

.nav-right a {
  margin-left: 20px;
  color: var(--gray);
  text-decoration: none;
}

.btn-nav {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  color: var(--blue);
}

/* HERO SECTION */
.hero {
  padding: 120px 0 140px;
  background: linear-gradient(
    180deg,
    rgba(224, 245, 241, 0.55),
    rgba(255, 255, 255, 0.85)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  border-bottom: 1px rgba(31, 122, 140, 0.15);
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #1a1a1a;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 35px;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.btn-primary {
  padding: 12px 28px;
  background: #1F7A8C;
  color: white;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
  animation: pulse 2.5s infinite;
}

.btn-primary:hover {
  background: #16606d;
}

.btn-secondary {
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 122, 140, 0.35);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.75);
}

@media screen and (max-width: 768px) {
  .nav-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
  }

  .nav-right a {
    font-size: 16px;
    padding: 8px 0;
    display: block;
  }

  .btn-nav {
    margin-top: 12px;
  }
}


/* Micro-pulsation douce */ 
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.015); } 100% { transform: scale(1); } }

/* --- HERO RESPONSIVE --- */
@media screen and (max-width: 768px) {

  .hero {
    padding: 80px 0 100px; /* réduit le padding */
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 1.9rem;   /* taille adaptée mobile */
    line-height: 1.3;
    margin-bottom: 16px;
    padding: 0 10px;     /* évite que le texte touche les bords */
  }

  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 100%;
    padding: 0 10px;
    margin-bottom: 28px;
  }

  .hero-cta {
    flex-direction: column;   /* boutons empilés */
    gap: 14px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-size: 1rem;
  }
}

/* HERO */
/* .hero {
  padding: 80px 0;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hero-sub {
  color: var(--gray);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid var(--blue);
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--blue);
} */

/* INCUBATEURS */
.incubators img {
  height: 40px;
  margin-right: 20px;
}

/* MOCKUP */
.mockup-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mockup-map img {
  width: 100%;
  display: block;
}

.mockup-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-item {
  background: var(--light);
  padding: 12px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta {
  font-size: 0.8rem;
  color: var(--gray);
}

.status {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.waiting { background: #FFF3CD; color: #B8860B; }
.validated { background: #D1F7C4; color: #2E7D32; }
.ongoing { background: #CFE2FF; color: #0A58CA; }

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--white);
}

.grid-4, .grid-3, .grid-2 {
  display: grid;
  gap: 20px;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  /* box-shadow: var(--shadow); */
  border: 1px solid #D0EAF2; /* bleu clair */
  box-shadow: 0 4px 12px rgba(0, 128, 128, 0.05); /* ombre vert doux */
}

/* VIDEO */
.video-placeholder {
  height: 300px;
  background: var(--border);
  border-radius: var(--radius);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  color: var(--gray);
  background: linear-gradient(
    180deg,
    rgba(224, 245, 241, 0.4),
    rgba(255, 255, 255, 0.9)
  );
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  width: fit-content;
  padding: 12px 24px;
}

.carousel-wrapper {
  position: relative;
  margin-top: 40px;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  min-width: 280px;
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  /* box-shadow: 0 8px 20px rgba(31, 122, 140, 0.15); bleu doux */
  box-shadow: 0 8px 20px rgba(0, 128, 128, 0.15); /* bleu-vert santé */

  /* box-shadow: var(--shadow); */
  flex-shrink: 0;
}

.carousel-item h3 {
  margin-top: 0;
  color: var(--blue-dark);
}

.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  /* background: var(--white); */
  background: #D0EAF2; /* bleu clair */
  color: var(--blue-dark);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-btn.left {
  left: -20px;
}

.carousel-btn.right {
  right: -20px;
}

.carousel-btn:hover {
  background: #A0D8E8; /* bleu un peu plus vif */
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }
}

.section.green {
  background: #F5FCF9; /* vert très doux, santé */
}

.card h3 {
  margin-top: 0;
  color: var(--blue-dark);
}

.card ul.list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.card ul.list li {
  margin-bottom: 12px;
  font-size: 1rem;
  padding-left: 0;
  color: var(--blue-dark);
}

.section.green {
  background: #F5FCF9; /* vert très doux santé-tech */
}

.card {
  background: #FFFFFF;
  border: 1px solid #D0EAF2;
  box-shadow: 0 8px 20px rgba(31, 122, 140, 0.12);
  border-radius: var(--radius);
  padding: 25px;
}

.icon-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--blue-dark);
}

.icon-line svg {
  flex-shrink: 0;
}

.icon-animated svg {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.20); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

/* Section */
.premium-support {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    rgba(224, 245, 241, 0.4),
    rgba(255, 255, 255, 0.9)
  );
  backdrop-filter: blur(6px);
  border-top: 1px  #D0EAF2;
}

/* Titre */
.supporters-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 45px;
}

/* Conteneur logos */
.supporters-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Cartes logos */
.supporter-card {
  background: rgba(255, 255, 255, 0.7);
  padding: 18px 28px;
  border-radius: 14px;
  border: 1px solid rgba(31, 122, 140, 0.15);
  box-shadow: 0 8px 20px rgba(31, 122, 140, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Effet hover premium */
.supporter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(31, 122, 140, 0.18);
}

/* Logos */
.supporter-card img {
  height: 55px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.supporter-card:hover img {
  opacity: 1;
}

.real-map {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(31, 122, 140, 0.12);
  margin-bottom: 25px;
}

.mockup-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(31, 122, 140, 0.08);
  margin-bottom: 12px;
}

.mockup-item strong {
  color: var(--blue-dark);
  font-weight: 600;
}

.mockup-item .meta {
  font-size: 0.9rem;
  color: #666;
  margin-top: 4px;
}

.status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Couleurs des statuts */
.status.ongoing {
  background: #D0EAF2;
  color: #1F7A8C;
}

.status.validated {
  background: #C8E6C9;
  color: #2E7D32;
}

.status.waiting {
  background: #FFF3CD;
  color: #856404;
}

/* .section.about {
  padding: 80px 0;
  background: #FFFFFF;
}

.section.about h3 {
  font-size: 1.8rem;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 30px;
}

.about-intro {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  text-align: center;
}

.about-founder {
  max-width: 750px;
  margin: 25px auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1F7A8C;
  text-align: center;
  font-style: italic;
  padding: 15px 20px;
  border-left: 3px solid #1F7A8C;
  border-right: 3px solid #1F7A8C;
  border-radius: 8px;
  background: rgba(31, 122, 140, 0.05);
} */


/* .section.about.glass {
  padding: 90px 0;
  background: linear-gradient(
    180deg,
    rgba(224, 245, 241, 0.4),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px  rgba(31, 122, 140, 0.15);
  border-bottom: 1px  rgba(31, 122, 140, 0.15);
}

.section.about.glass h3 {
  font-size: 1.9rem;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 35px;
  font-weight: 600;
}

.about-intro {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #1a1a1a;
  text-align: center;
  font-weight: 400;
}

.about-founder {
  max-width: 780px;
  margin: 30px auto 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #1F7A8C;
  text-align: center;
  font-style: italic;
  padding: 20px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 122, 140, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(31, 122, 140, 0.12);
} */


/* Formulaire caché */
.hidden {
  display: none;
}

/* Style du formulaire */
.contact-form {
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.7);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(31, 122, 140, 0.12);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.4s ease;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: var(--blue-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* SECTION À PROPOS — GLASSMORPHISM */
.section.about {
  padding: 90px 0;
  background: linear-gradient(
    180deg,
    rgba(224, 245, 241, 0.45),
    rgba(255, 255, 255, 0.75)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px  rgba(31, 122, 140, 0.15);
  border-bottom: 1px  rgba(31, 122, 140, 0.15);
}

.section.about h3 {
  font-size: 1.9rem;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.about-intro {
  max-width: 850px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  line-height: 1.75;
  color: #1a1a1a;
  text-align: center;
}

/* ACCORDÉON */
.accordion {
  max-width: 850px;
  margin: 0 auto;
}

.accordion-btn {
  width: 100%;
  padding: 18px 22px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 122, 140, 0.25);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.accordion-btn:hover {
  background: rgba(255, 255, 255, 0.7);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 10px;
}

.accordion-content p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #1a1a1a;
  margin: 20px 0;
  text-align: center;
}

.accordion-content .emphasis {
  font-weight: 600;
  color: #1F7A8C;
}

/* Accordéon ouvert */
.accordion.open .accordion-content {
  max-height: 800px; /* assez pour tout le texte */
}


/*SECTION ADN*/

.section.adna-glass { 
  background-color: #fff; 
}
/* Container des cards */
.adna-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 40px auto;
  flex-wrap: wrap;
  max-width: 1100px;
  background: white;
}

/* Style d'une card */
.adna-card {
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  padding: 25px 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 122, 140, 0.25);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(31, 122, 140, 0.12);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover premium */
.adna-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(31, 122, 140, 0.18);
}

/* Titres */
.adna-card h4 {
  font-size: 1.25rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

/* Texte */
.adna-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1a1a1a;
}


/* CTA */
.cta-wrapper {
  margin-top: 50px;
  padding: 35px 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 122, 140, 0.25);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(31, 122, 140, 0.12);
}

.cta-wrapper h4 {
  font-size: 1.4rem;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.cta-wrapper p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #333;
}

.cta-btn {
  padding: 12px 28px;
  font-size: 1.1rem;
  border-radius: 8px;
}

/* SECTION GARANTIES */
.section.guarantees {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    rgba(224, 245, 241, 0.45),
    rgba(255, 255, 255, 0.75)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Grille des deux blocs */
.guarantees-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* Style d’un bloc */
.guarantee-box {
  flex: 1;
  min-width: 280px;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 122, 140, 0.25);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(31, 122, 140, 0.12);
  padding: 30px 25px;
}

/* Titre */
.guarantee-box h4 {
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

/* Liste */
.guarantee-box ul {
  list-style: none;
  padding: 0;
}

.guarantee-box li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}

.guarantee-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1F7A8C;
  font-size: 1.2rem;
}

/* .scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(31, 122, 140, 0.35);
  border-radius: 50%;
  padding: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(31, 122, 140, 0.12);
  cursor: pointer;
  z-index: 999;
  transition: background 0.3s ease;
}

.scroll-top:hover {
  background: rgba(255, 255, 255, 0.85);
}*/

html {
  scroll-behavior: smooth;
} 

/* .scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(31, 122, 140, 0.35);
  border-radius: 50%;
  padding: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(31, 122, 140, 0.12);
  cursor: pointer;
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
} */

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(31, 122, 140, 0.35);
  border-radius: 50%;
  padding: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(31, 122, 140, 0.12);
  cursor: pointer;
  z-index: 999;
  transition: 
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  opacity: 0;
  visibility: hidden;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Effet au survol */
.scroll-top:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 25px rgba(31, 122, 140, 0.25);
}

.header {
  transition: transform 0.35s ease;
}

.header.hide {
  transform: translateY(-100%);
}
.section.enjeux-solution {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f6fdfb, #ffffff);
}

.enjeux-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.enjeu-box, .solution-box {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(31, 122, 140, 0.2);
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(31, 122, 140, 0.08);
  backdrop-filter: blur(10px);
}

.enjeu-box h5, .solution-box h5 {
  font-size: 1rem;
  color: #1F7A8C;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.enjeu-box h4, .solution-box h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.enjeu-box ul, .solution-box ul {
  list-style: none;
  padding-left: 0;
}

.enjeu-box li, .solution-box li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}

.enjeu-box li::before, .solution-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1F7A8C;
  font-size: 1.2rem;
}

/*Section Enjeux*/
.enjeux-section {
  padding: 80px 20px;
  background: #ffffff;
}

.enjeux-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.enjeux-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f3d3e;
  margin-bottom: 30px;
}

.enjeux-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enjeux-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #2a4f4f;
  font-weight: 500;
}

.enjeux-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: #1F7A8C;
  font-weight: bold;
}


/* Section Solution*/
.solution-section {
  padding: 80px 20px;
  background: #f7fbfb;
}

.solution-container {
  max-width: 900px;
  margin: 0 auto;
}

.solution-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f3d3e;
  margin-bottom: 10px;
}

.solution-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1F7A8C;
  margin-bottom: 25px;
}

.solution-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2a4f4f;
  margin-bottom: 30px;
}

.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #2a4f4f;
}

.solution-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  color: #1F7A8C;
  font-weight: bold;
}


/*Comparatif enjeux, Solutions*/
.comparatif-section {
  padding: 80px 20px;
  background: #ffffff;
}

.comparatif-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.comparatif-col {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 25px rgba(31, 122, 140, 0.08);
  backdrop-filter: blur(10px);
}

.comparatif-col.left {
  border-left: 6px solid #d9534f; /* Rouge problème */
}

.comparatif-col.right {
  border-left: 6px solid #1F7A8C; /* Bleu solution */
}

.comparatif-col h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #0f3d3e;
}

.comparatif-col ul {
  list-style: none;
  padding: 0;
}

.comparatif-col li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2a4f4f;
}

.comparatif-col.left li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #d9534f;
  font-size: 1.2rem;
}

.comparatif-col.right li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1F7A8C;
  font-size: 1.2rem;
}


/*Bloc Bénefices*/

.benefices-section {
  padding: 80px 20px;
  background: #f7fbfb;
  text-align: center;
}

.benefices-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f3d3e;
  margin-bottom: 50px;
}

.benefices-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.benefice-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 25px;
  width: 300px;
  box-shadow: 0 8px 25px rgba(31, 122, 140, 0.08);
  text-align: left;
  transition: 0.3s ease;
}

.benefice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(31, 122, 140, 0.15);
}

.icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.benefice-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1F7A8C;
  margin-bottom: 20px;
}

.benefice-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefice-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #2a4f4f;
}

.benefice-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1F7A8C;
  font-size: 1.3rem;
  line-height: 1;
}

/*Croussel Fonction*/

/* .features-carousel-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.features-carousel-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f3d3e;
  margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 30px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  min-width: 300px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 35px 28px;
  box-shadow: 0 8px 25px rgba(31, 122, 140, 0.08);
  text-align: left;
  scroll-snap-align: start;
  transition: 0.3s ease;
}

.carousel-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(31, 122, 140, 0.15);
}

.icon-svg {
  margin-bottom: 18px;
}

.carousel-slide h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1F7A8C;
  margin-bottom: 15px;
}

.carousel-slide p {
  font-size: 1.05rem;
  color: #2a4f4f;
  line-height: 1.6;
}

/* Pagination dots */
/* .carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.carousel-dots div {
  width: 10px;
  height: 10px;
  background: #c7dfe3;
  border-radius: 50%;
  transition: 0.3s;
}

.carousel-dots .active {
  background: #1F7A8C;
  transform: scale(1.2);
} */ 


.features-carousel-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.feature-item {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(31, 122, 140, 0.08);
  text-align: left;
}

.feature-item h3 {
  color: #1F7A8C;
  margin-bottom: 10px;
}

.feature-item p {
  color: #2a4f4f;
}

/* Flèches */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.6rem;
  color: #1F7A8C;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(31, 122, 140, 0.15);
  transition: 0.3s ease;
}

.carousel-btn:hover {
  background: #1F7A8C;
  color: #ffffff;
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

/* Mobile : 1 item visible */
@media (max-width: 768px) {
  .feature-item {
    flex: 0 0 100%;
    margin: 0 5px;
  }
}

/*Fonction TimeLine*/
.timeline-section {
  padding: 80px 20px;
  background: #f7fbfb;
  text-align: center;
}

.timeline-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f3d3e;
  margin-bottom: 50px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  /* padding-left: 20px; */
  padding-left: 30px; /* au lieu de 20px */
  border-left: 3px solid #1F7A8C;
}

.timeline-step {
  position: relative;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-dot {
  position: absolute;
  /* left: -11px; */
  left: -8px;
  top: 0;
  width: 18px;
  height: 18px;
  background: #1F7A8C;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #1F7A8C;

}

.timeline-content {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(31, 122, 140, 0.08);
  text-align: left;
}

.timeline-content h3 {
  color: #1F7A8C;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #2a4f4f;
  line-height: 1.6;
}
.timeline {
  overflow: visible;
}
.timeline-section {
  overflow: visible;
}



/*Fonction Soutien*/

.support-section {
  padding: 40px 20px;
  background: #f7fbfb;
  text-align: center;
}

.support-caption {
  font-size: 1rem;
  color: #2a4f4f;
  margin-bottom: 20px;
  opacity: 0.7;
}

.support-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.support-logo {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: 0.3s ease;
}

.support-logo:hover {
  opacity: 1;
}

/*Fonction Founder Message*/

/* .founder-quote {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  font-style: italic;
  color: #2a4f4f;
}

.founder-quote blockquote {
  font-size: 1.25rem;
  line-height: 1.7;
  position: relative;
  padding-left: 40px;
}

.founder-quote blockquote::before {
  content: "“";
  font-size: 4rem;
  position: absolute;
  left: 0;
  top: -10px;
  color: #1F7A8C;
  opacity: 0.25;
}

.founder-signature {
  margin-top: 20px;
  font-weight: 600;
  color: #1F7A8C;
  text-align: right;
} */

/* SECTION À PROPOS — GLASSMORPHISM PREMIUM */
/* .citation-fluide {
  position: relative;
  background-color: #fff;
  margin: 60px auto;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
} */

/* .citation-fluide { 
  position: relative; 
  background: red !important;
  margin: 60px auto; 
  width: 900px; 
  padding: 0 20px;
  z-index: 1; 
} */

.citation-fluide {
  background-color: #fff;
  padding: 40px 20px;
  width: 100%;
}

.citation-fluide > * {
  max-width: 850px;
  margin: 0 auto;
}


.citation-fluide::before,
.citation-fluide::after {
  content: "";
  position: absolute;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #1F7A8C;
  border-radius: 4px;
}

.citation-fluide::before {
  left: 0;
}

.citation-fluide::after {
  right: 0;
}

.citation-texte {
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  color: #2a4f4f;
  margin-bottom: 10px;
}

.citation-auteur {
  text-align: right;
  font-weight: 500;
  color: #1F7A8C;
}

/* ✅ Mobile adaptation */
@media (max-width: 600px) {
  .citation-fluide::before,
  .citation-fluide::after {
    height: 90%;
  }

  .citation-texte {
    font-size: 1rem;
  }

  .citation-auteur {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .citation-fluide {
    padding: 20px 16px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }
}

/*fermerture Formulaire*/

/* Bouton de fermeture */
.close-form {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #1F7A8C;
}


/* .testimonials {
  text-align: center;
  padding: 80px 20px;
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.testimonials .subtitle {
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: left;
}

.testimonial-card .quote {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
} */

/*////////////////////////////////
.testimonials.compact {
  text-align: center;
  padding: 30px 10px;
}

.testimonials.compact h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.testimonials-grid.compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card.compact {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: left;
}

.testimonial-card.compact .quote {
  font-size: 0.95rem;
  margin-bottom: 8px;
  font-style: italic;
  line-height: 1.4;
}

.testimonial-card.compact .author {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
}

*/

/* .testimonial-single-section {
  background: #ffffff;
} */


.testimonial-single {
  text-align: center;
  background-color: #fff;
  padding: 40px 20px;
  max-width: 100%;
  margin: 0 auto;
  
}

.testimonial-card.single 
{ background: #fff; 
  padding: 20px 25px; 
  border-radius: 10px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
  border: 1px solid rgba(31, 122, 140, 0.25);
  max-width: 700px; 
  margin: 0 auto; 
  text-align: left; }

.testimonial-single h2 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.single-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.35;
}

.single-quote .author {
  font-weight: 600;
  margin-left: 4px;
  color: #444;
}



/*Ajout burger*/
.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #004080;
}

@media screen and (max-width: 768px) {
  .burger {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
  }
  .burger span { 
    display: block; 
    height: 3px; 
    background-color: #004080; 
    border-radius: 3px; 
    transition: all 0.3s ease; }

    /* --- ANIMATION EN CROIX --- */ 
    .burger.active span:nth-child(1) { 
      transform: translateY(9px) rotate(45deg); 
    } 
    .burger.active span:nth-child(2) {
       opacity: 0; 
      } 
      .burger.active span:nth-child(3) { 
      transform: translateY(-9px) rotate(-45deg); 
    }

  /* .nav-right {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-right.show {
    display: flex;
  } */

  .nav-right {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-right.show {
    display: flex;
    opacity: 1; 
    transform: translateY(0);
  }



  .nav-right a {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .btn-nav {
    margin-top: 12px;
  }

  /* Header qui s’ouvre */ 
  .header.menu-open { 
    height: auto; 
    /* s’adapte au contenu */ 
    padding-bottom: 20px; 
    transition: all 0.3s ease; 
  } /* Le contenu descend */ 
  body.menu-opened .main-content 
  { transform: translateY(180px); 
    transition: transform 0.3s ease; }
}
