:root {
      --primary: #0052cc;
      --primary-light: #e8f0ff;
      --accent: #ff7f66;
      --accent-light: #ffe7df;
      --text: #1f2933;
      --muted: #6b7280;
      --bg: #f5f7fb;
      --bg-soft: #fafbff;
      --border: #e2e8f0;
      --radius-lg: 18px;
      --radius-md: 12px;
      --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.10);
      --shadow-card: 0 10px 28px rgba(15, 23, 42, 0.08);
      --max-width: 1180px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Inter", system-ui, sans-serif;
      background: #ffffff;
      color: var(--text);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ------------------------------
       HEADER
    ------------------------------ */
    header.header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      backdrop-filter: blur(14px);
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0;
    }

    .logo {
      height: 42px;
    }

    .nav-right {
      display: flex;
      gap: 24px;
      align-items: center;
      font-size: 14px;
    }

    .nav-right a {
      color: var(--muted);
      font-weight: 500;
    }

    .nav-right a:hover {
      color: var(--text);
    }

    .btn-nav {
      padding: 8px 16px;
      border-radius: 999px;
      /* background: var(--primary); */
      background: linear-gradient(135deg, var(--primary),#00B4A0);
      color: #fff !important;
      font-weight: 600;
      box-shadow: 0 10px 26px rgba(0, 82, 204, 0.35);
      /* box-shadow: 0 10px 26px #007F73; */
    }

    .burger {
      display: none;
      font-size: 26px;
      cursor: pointer;
    }

    /* ------------------------------
       HERO — STYLE B (SaaS Produit)
    ------------------------------ */
    .hero {
      padding: 160px 0 120px;
      background: radial-gradient(circle at top left, #fef4ef 0, #f5f7fb 40%, #f9fbff 100%);
    }

    .hero-content {
      max-width: 620px;
    }

    .hero h1 {
      font-size: 42px;
      font-weight: 750;
      line-height: 1.15;
      margin-bottom: 18px;
      color: var(--text);
    }

    .hero-subtitle {
      font-size: 18px;
      color: #4b5563;
      margin-bottom: 24px;
      max-width: 520px;
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      margin-top: 20px;
    }

    .btn-primary {
      padding: 14px 26px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary),#00B4A0);
      color: #fff;
      font-weight: 600;
      font-size: 15px;
      box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
      transition: 0.25s ease;
      animation: pulse 2.5s infinite;
    }

    /* PULSE PREMIUM */
.pulse-btn {
  position: relative;
  overflow: visible;
}

.pulse-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  /* background: rgba(0, 180, 160, 0.35);  */
  /* turquoise doux */
  background: linear-gradient(135deg, var(--primary),#00B4A0);
  z-index: -1;
  animation: pulseGlow 1.8s ease-out infinite;
  /* animation: pulse 2.5s infinite; */
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
/* CLIGNOTEMENT PREMIUM */
.pulse-blink {
  position: relative;
  animation: blinkPulse 1.4s infinite ease-in-out;
}

/* Animation du bouton lui-même */
@keyframes blinkPulse {
  0% {
    box-shadow: 0 0 0px rgba(0, 180, 160, 0.0);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(0, 180, 160, 0.55);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 0px rgba(0, 180, 160, 0.0);
    transform: scale(1);
  }
}

    .btn-secondary {
      padding: 13px 24px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #fff;
      font-weight: 500;
      color: var(--muted);
    }

    /* ------------------------------
       COMPARATIF
    ------------------------------ */
    .comparatif-section {
      padding: 100px 0;
      background: #ffffff;
    }

    .comparatif-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

     .comparatif-col {
      transition: all 0.35s ease;
    }

    .comparatif-col:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
      border-color: rgba(0, 180, 160, 0.45);
    }

    .comparatif-col.left:hover {
      border-color: rgba(255, 120, 90, 0.45);
    }

    .comparatif-col.right:hover {
      border-color: rgba(0, 180, 160, 0.45);
    }
    .comparatif-col:hover::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 18px;
      background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 70%);
      pointer-events: none;
    }

    .comparatif-col h3 {
      font-size: 20px;
      margin-bottom: 16px;
      /* color: var(--text); */
      color: rgba(0, 0, 0, 0.85); /* noir premium */
    }

    .comparatif-col ul {
      list-style: none;
      display: grid;
      gap: 10px;
      font-size: 15px;
      /* color: #4b5563; */
      color: rgba(0, 0, 0, 0.70); 
    }

    .icon-x {
      /* color: #FF6B6B;  */
      color: #E25555; /* rouge premium */
      /* rouge premium */
      font-weight: 700;
      margin-right: 8px;
    }

    .icon-check {
      color: rgba(0, 127, 115, 0.45);
      font-weight: 700;
      margin-right: 8px;
    }


    /* MOBILE : 1 colonne */
@media (max-width: 768px) {
  .comparatif-container {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}


    /* ------------------------------
       BENEFICES
    ------------------------------ */
    .benefices-section {
      padding: 100px 0;
      background: #ffffff;
    }

    .benefices-section h2 {
      text-align: center;
      font-size: 30px;
      margin-bottom: 40px;
    }

    .benefices-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

     .benefice-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 180, 160, 0.15);
  transition: all 0.35s ease;
  overflow: hidden;
}

.benefice-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 180, 160, 0.45);
}

.benefice-card img {
  width: 100%;
  height: auto;
  border-radius: 12px 12px 0 0;
  transition: all 0.35s ease;
}

.benefice-card:hover img {
  filter: brightness(1.05) saturate(1.1);
}


/* Halo lumineux subtil */
.benefice-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 70%);
  pointer-events: none;
}


    .benefice-card h3 {
      color: #007F73; 
      margin-top: 12px;
      font-size: 18px;
      margin-bottom: 12px;
      position: relative;
      text-align: center;
      width: 100%;
    }

    .benefice-card ul {
      list-style: none;
      display: grid;
      gap: 8px;
      font-size: 14px;
      /* color: #4b5563; */
      /* color: rgba(0, 0, 0, 0.70);  */
      color: #0A1A2A;
      position: relative;
      text-align: center;
      width: 100%;
    }

    /* ------------------------------
       FONCTIONNALITÉS (remplace carrousel)
    ------------------------------ */

.features-section {
  padding: 110px 0;
  background: #F6F8FC; /* encore plus doux */
}

.features-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
  color: #0A1A2A;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* Grille premium */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARTES FLOTTANTES PREMIUM */

.feature-card {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  min-height: 260px;

  /* Ombre flottante premium */
  box-shadow:
    0 12px 28px rgba(15, 35, 52, 0.06),
    0 4px 12px rgba(15, 35, 52, 0.04);

  /* Transition plus douce et plus longue */
  transition:
    transform 0.35s cubic-bezier(.21,.67,.21,1),
    box-shadow 0.35s cubic-bezier(.21,.67,.21,1);
}

/* Effet flottant au survol */
.feature-card:hover {
  transform: translateY(-10px); /* flottement réel */
  box-shadow:
    0 22px 55px rgba(15, 35, 52, 0.12),
    0 8px 20px rgba(15, 35, 52, 0.06);
}

/* Icônes turquoise sans ombre */
.feature-card svg {
  width: 54px;
  height: 54px;
  margin-bottom: 4px;
  filter: none; /* suppression de l’ombre */
}


/* Titre premium */
.feature-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0A1A2A;
  letter-spacing: -0.2px;
}

/* Texte premium */
.feature-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #5A6E7A;
  max-width: 280px;
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 34px 26px;
    min-height: auto;
  }
}

/* ------------------------------
   VIDEO — VERSION FINALE
------------------------------ */
/* VIDEO RATIO TM-CONNECT */
.video-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.video-container {
  width: 100%;
  max-width: 900px; /* limite sur desktop */
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9; /* ratio propre */
  overflow: hidden;
  border-radius: 16px;
  background: black; /* évite les bords blancs */
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* remplit le cadre sans déformer */
  display: block;
  border-radius: 16px;
}

/* MOBILE */
@media (max-width: 600px) {
  .video-container {
    max-width: 380px; /* évite que la vidéo soit trop large */
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }
}

/* ------------------------------
   TIMELINE — VERSION FINALE
------------------------------ */

.timeline-section {
  padding: 80px 0;
  background: white;
}

.timeline-section .section-title {
  text-align: center;
  margin-bottom: 10px;
}

.timeline-section .section-sub {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: #5A6E7A;
}

/* CONTENEUR TIMELINE */
.timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 40px;
  max-width: 800px;
}

/* LIGNE VERTICALE ANIMÉE */
.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 3px;
  height: var(--line-height, 0);
  background: #00B4A0;
  border-radius: 3px;
  transition: height 1.2s ease-out;
  z-index: 1;
}

/* ÉTAPE */
.timeline-step {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* BADGE TURQUOISE */
.timeline-badge {
  position: absolute;
  left: -2px;
  width: 36px;
  height: 36px;
  background: #00B4A0;
  color: white;
  border-radius: 50%;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 180, 160, 0.25);
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.4s ease-out;
  z-index: 5;
}

/* CARTE FLOTTANTE */
.timeline-content {
  background: white;
  padding: 26px 28px;
  border-radius: 18px;
  box-shadow: 
    0 12px 28px rgba(15, 35, 52, 0.06),
    0 4px 12px rgba(15, 35, 52, 0.04);
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

/* TITRE */
.timeline-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #0A1A2A;
}

/* TEXTE */
.timeline-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #5A6E7A;
}

/* ÉTAT VISIBLE (animé) */
.timeline-step.visible .timeline-badge {
  opacity: 1;
  transform: scale(1);
}

.timeline-step.visible .timeline-content {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 600px) {
  .timeline {
    padding-left: 30px;
  }

  .timeline-step {
    margin-bottom: 40px;
  }

  .timeline-badge {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .timeline-content {
    padding: 20px 22px;
  }
}
/* Glow turquoise premium */
.timeline-step.visible .timeline-content {
  box-shadow:
    0 12px 28px rgba(15, 35, 52, 0.06),
    0 4px 12px rgba(15, 35, 52, 0.04),
    0 0 0 rgba(0, 180, 160, 0); /* état initial */
  animation: cardGlow 1.2s ease-out forwards;
}

@keyframes cardGlow {
  0% {
    box-shadow:
      0 12px 28px rgba(15, 35, 52, 0.06),
      0 4px 12px rgba(15, 35, 52, 0.04),
      0 0 0 rgba(0, 180, 160, 0);
  }
  50% {
    box-shadow:
      0 12px 28px rgba(15, 35, 52, 0.06),
      0 4px 12px rgba(15, 35, 52, 0.04),
      0 0 18px rgba(0, 180, 160, 0.35);
  }
  100% {
    box-shadow:
      0 12px 28px rgba(15, 35, 52, 0.06),
      0 4px 12px rgba(15, 35, 52, 0.04),
      0 0 0 rgba(0, 180, 160, 0);
  }
}
.timeline-step.visible .timeline-badge {
  animation: badgePulse 1.4s ease-out;
}

@keyframes badgePulse {
  0% {
    box-shadow: 0 0 0 rgba(0, 180, 160, 0);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 14px rgba(0, 180, 160, 0.45);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 rgba(0, 180, 160, 0);
    transform: scale(1);
  }
}
.timeline-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  transition: 0.6s ease-out;
  pointer-events: none;
}

.timeline-step.visible .timeline-content::after {
  left: 120%;
}




    /* ------------------------------
       GARANTIES
    ------------------------------ */
/* SECTION */
.section.guarantees {
  padding: 110px 0;
  background: #F6F8FC;
}

/* GRID */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* CARTES PREMIUM */
.guarantee-box {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 42px 36px;
  box-shadow:
    0 14px 40px rgba(15, 35, 52, 0.06),
    0 4px 12px rgba(15, 35, 52, 0.04);
  transition: transform 0.35s cubic-bezier(.21,.67,.21,1),
              box-shadow 0.35s cubic-bezier(.21,.67,.21,1);
  min-height: 280px; /* hauteur uniforme */
}

.guarantee-box:hover {
  transform: translateY(-8px);
  box-shadow:
    0 22px 55px rgba(15, 35, 52, 0.12),
    0 8px 20px rgba(15, 35, 52, 0.06);
}

/* TITRES */
.guarantee-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0A1A2A;
  margin-bottom: 26px;
  letter-spacing: -0.2px;
}

/* LISTE */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* LIGNE AVEC ICÔNE */
/* Ligne avec icône */
.icon-line {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  color: #5A6E7A;
  line-height: 1.55;
  padding: 6px 0;
  transition: color 0.25s ease;
}

/* Icône turquoise pleine */
.icon-line svg {
  width: 30px;
  height: 30px;
  fill: #00B4A0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Animation au hover */
.icon-line:hover {
  color: #0A1A2A;
}

.icon-line:hover svg {
  transform: translateX(4px);
  opacity: 0.9;
}



    /* ------------------------------
       TÉMOIGNAGES
    ------------------------------ */

    .section.testimonials {
  padding: 110px 0;
  background: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Carte placeholder */
.testimonial-card.placeholder {
  background: #F6F8FC;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 12px 28px rgba(15, 35, 52, 0.06),
              0 4px 12px rgba(15, 35, 52, 0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: pulse 2s infinite ease-in-out;
}

/* Avatar illustré style Doctolib */
.avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #E1E8F0;
}

/* Lignes de texte */
.text-placeholder {
  height: 14px;
  border-radius: 6px;
  background: #E1E8F0;
}

.text-placeholder.short {
  width: 60%;
}

.text-placeholder.long {
  width: 90%;
}

/* Animation douce */
@keyframes pulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}
/* MOBILE — Témoignages en 1 colonne */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .testimonial-card.placeholder {
    padding: 24px !important;
  }
}
.section.testimonials {
  visibility: hidden;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}



    /* ------------------------------
       ADN
    ------------------------------ */
/* SECTION ADN */
.section.adna-glass {
  padding: 110px 0;
}

/* MOT DE LA FONDATRICE */
.founder-box {
  background: #FFE7DF; /* pêche/corail très doux */
  border-radius: 22px;
  padding: 38px 34px;
  margin-bottom: 50px;
  box-shadow: 0 12px 28px rgba(15, 35, 52, 0.06);
  animation: fadeIn 0.8s ease-out;
  position: relative;
}
.founder-silhouette {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 120px;
  height: 160px;
  background: url("https://transmed-connect.fr/serve.php?file=portrait.png&type=image") bottom right/contain no-repeat;
  opacity: 0.15;
  filter: blur(1px);
  pointer-events: none;
}

.founder-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #8A3A2F; /* corail foncé premium */
  margin-bottom: 16px;
}

.founder-box p {
  font-size: 16px;
  line-height: 1.65;
  color: #4A2A25;
  margin: 0 0 14px;
}

.founder-box .signature {
  font-size: 15px;
  font-weight: 600;
  color: #8A3A2F;
}

.founder-story {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.65;
  color: #4A2A25;
  font-style: italic;
  opacity: 0.9;
}


/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section.adna-glass {
  background: #F1F5FA; /* bleu glacier premium */
  padding: 110px 0;
}

/* GRILLE ADN */
.adna-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

/* CARTES ADN */
.adna-card {
  background: #FFFFFF;
  border-radius: 18px; /* arrondi premium */
  padding: 32px 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 2px solid rgba(0,0,0,0.04);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;

}

.adna-card:hover {
  transform: translateY(-6px);
  /* background: #E8F3FF;               */
  /* bleu glacier plus contrasté */
  border-color: var(--turquoise);   /* turquoise de ta charte */
  /* box-shadow: 0 18px 40px rgba(15, 35, 52, 0.16); */
  border: 2px solid rgba(0, 150, 150, 0.25); /* turquoise doux */
  
}

.adna-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  text-align: center; /* centrage */
  padding-left: 14px;
}
.adna-card h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: 18px;
  /* background: var(--turquoise); */
  border-radius: 3px;
}

/* Accent turquoise centré sous le titre */
.adna-card h4::after {
  content: "";
  display: block;
  margin: 8px auto 0 auto;
  width: 32px;
  height: 4px;
  /* background: var(--turquoise); */
  border-radius: 2px;
}

.adna-card p {
  font-size: 15px;
  color: #5A6E7A;
  line-height: 1.55;
}

/* CTA */
.cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.cta-wrapper h4 {
  font-size: 22px;
  font-weight: 600;
  color: #0A1A2A;
  margin-bottom: 10px;
}

.cta-wrapper p {
  font-size: 16px;
  color: #5A6E7A;
  margin-bottom: 20px;
}

.cta-btn {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 10px;
}

/* FORMULAIRE */
/* FORMULAIRE PREMIUM */
.contact-form {
  margin-top: 40px;
  background: #FFFFFF;
  padding: 40px 36px;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 35, 52, 0.08);
  animation: fadeIn 0.4s ease-out;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.contact-form.hidden {
  display: none;
}

/* Bouton fermer */
.close-form {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #5A6E7A;
}

/* Titres */
.form-title {
  font-size: 22px;
  font-weight: 600;
  color: #0A1A2A;
  margin-bottom: 6px;
  text-align: center;
}

.form-sub {
  font-size: 15px;
  color: #5A6E7A;
  text-align: center;
  margin-bottom: 28px;
}

/* Groupes */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #0A1A2A;
  margin-bottom: 6px;
}

/* Champs */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #D6DFE6;
  background: #F9FBFD;
  font-size: 15px;
  color: #0A1A2A;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #00B4A0;
  box-shadow: 0 0 0 3px rgba(0, 180, 160, 0.15);
  outline: none;
}

/* Bouton envoyer */
.submit-btn {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  border-radius: 12px;
  margin-top: 10px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* SECTION SUPPORT */
.support-section {
  text-align: center;
  margin-top: 60px;
}

.support-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0A1A2A;
  margin-bottom: 24px;
}

/* GRILLE DES LOGOS */
.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* espace premium entre logos */
  flex-wrap: wrap;
}

/* LOGOS */
.logos-grid img {
  max-height: 80px; /* limite la taille */
  width: auto;       /* garde les proportions */
  object-fit: contain;
  filter: grayscale(0); /* tu peux mettre 1 si tu veux un rendu monochrome premium */
  opacity: 0.95;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* HOVER PREMIUM */
.logos-grid img:hover {
  transform: translateY(-4px);
  opacity: 1;
}

/* Bouton CTA vert #007F73 */
#openFormBtn {
  /* background: #007F73 !important; */
  background: linear-gradient(135deg, var(--primary),#00B4A0);
  border: none;
  box-shadow: 0 12px 32px rgba(0, 127, 115, 0.35);
}


    /* ------------------------------
       FOOTER
    ------------------------------ */
    footer.footer {
      padding: 32px 0;
      background: #020617;
      color: #9ca3af;
      text-align: center;
      font-size: 14px;
    }

    /* ------------------------------
       RESPONSIVE
    ------------------------------ */
    @media (max-width: 960px) {
      .comparatif-container,
      .benefices-grid,
      .features-grid,
      .guarantees-grid,
      .adna-cards {
        grid-template-columns: 1fr;
      }

      .hero h1 {
        font-size: 34px;
      }

      .nav-right {
        display: none;
      }

      .burger {
        display: block;
      }
    }
    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }
    .hero-gradient {
      animation: gradientMove 12s ease-in-out infinite alternate;
}
/* Effet saut premium */
.jump-logo {
  display: inline-block;
  animation: logoJump 2.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes logoJump {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-6px);
  }
  35% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  65% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

/* Wrapper pour alignement parfait */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Style du nom de marque */
.logo-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.3px;
  display: flex;
}

/* Partie 1 : bleu nuit premium */
.logo-title .part1 {
  color: #0A1A2A;
}

/* Partie 2 : turquoise identitaire */
.logo-title .part2 {
  color: #007F73;
}

/* Bouton remonter en haut */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  /* background: #007F73; */
  background: linear-gradient(135deg, var(--primary),#00B4A0);
  color: white;
  font-size: 22px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 127, 115, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Apparition */
.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hover premium */
.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 127, 115, 0.45);
}

@media (max-width: 768px) {
  section:not(.hero) {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .comparatif-container,
  .benefices-container,
  .timeline,
  .grid,
  .container {
    gap: 16px !important;
  }

  .comparatif-col,
  .benefices-col,
  .card,
  .timeline-step {
    padding: 20px !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
  }
  .hero-mockup {
    display: none;
  }
}


@media (max-width: 768px) {
  #mobileMenu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    background: white;
    backdrop-filter: blur(6px);
    padding: 100px 24px 40px;
    display: none; /* caché par défaut */
    flex-direction: column;
    gap: 28px;
    text-align: center;
    z-index: 999;
  }

  #mobileMenu a {
    font-size: 20px;
    font-weight: 600;
    color: #0A1A2A;
  }

  #mobileMenu .btn-nav {
    margin-top: 12px;
    font-size: 18px;
  }
}
/* ----------------------------------------------------
   PATCH RESPONSIVE GLOBAL — TM-CONNECT
   Corrige : images non adaptées, grilles trop serrées,
   sections en 3 colonnes sur mobile, cartes compressées.
---------------------------------------------------- */

/* IMAGES — toujours adaptatives */
img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* SECTIONS EN GRILLE — 3 colonnes → 1 colonne en mobile */
@media (max-width: 768px) {

  /* Bénéfices */
  .benefices-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Fonctionnalités */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* ADN */
  .adna-cards {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Garanties */
  .guarantees-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Témoignages */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Comparatif */
  .comparatif-container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Cartes — padding réduit */
  .benefice-card,
  .feature-card,
  .adna-card,
  .guarantee-box,
  .testimonial-card {
    padding: 20px !important;
  }

  /* Titres */
  h2, h3, h4 {
    text-align: center !important;
  }
}

/* ----------------------------------------------------
   PATCH RESPONSIVE — SECTIONS AVEC IMAGES PLEINE LARGEUR
---------------------------------------------------- */

@media (max-width: 768px) {

  /* Images dans les cartes bénéfices */
  .benefice-card img {
    height: 200px !important;
    object-fit: cover !important;
  }

  /* Images dans les sections visuelles */
  .section-images img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
}

/* ----------------------------------------------------
   PATCH RESPONSIVE — HERO
---------------------------------------------------- */

@media (max-width: 768px) {
  .hero {
    padding-top: 80px !important;
    padding-bottom: 60px !important;
  }

  .hero h1 {
    font-size: 30px !important;
    line-height: 1.25 !important;
  }

  .hero-subtitle {
    font-size: 16px !important;
  }

  .hero-cta {
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* ----------------------------------------------------
   PATCH RESPONSIVE — VIDEO
---------------------------------------------------- */

@media (max-width: 768px) {
  .video-container {
    max-width: 100% !important;
    border-radius: 12px !important;
  }
}

/* ----------------------------------------------------
   PATCH RESPONSIVE — TIMELINE
---------------------------------------------------- */

@media (max-width: 768px) {
  .timeline {
    padding-left: 20px !important;
  }

  .timeline-step {
    flex-direction: column !important;
    gap: 14px !important;
  }

  .timeline-content {
    padding: 18px !important;
  }
}
@media (max-width: 768px) {
  .support-hero-human .hero-content {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
:target {
  scroll-margin-top: 110px; /* Ajuste selon la hauteur réelle du header */
}
html {
  scroll-behavior: smooth;
}

/* ============================================================
   TM-CONNECT — PATCH RESPONSIVE NAVBAR (COMPATIBLE AVEC toggleMenu)
   ============================================================ */

/* Compensation du header fixe */
:root {
  --header-height: 90px;
}

body {
  padding-top: var(--header-height);
}

/* NAVBAR FLUIDE */
header.header {
  height: auto;
  padding: 0;
}

/* NAV */
.nav {
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO RESPONSIVE */
.logo {
  height: clamp(26px, 6vw, 42px);
  width: auto;
}

/* MENU MOBILE — caché par défaut */
#mobileMenu {
  display: none; /* ton JS gère l'ouverture */
  flex-direction: column;
  gap: 28px;
  background: white;
  padding: 100px 24px 40px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  text-align: center;
  z-index: 999;
  backdrop-filter: blur(6px);
}

#mobileMenu a {
  font-size: 20px;
  font-weight: 600;
  color: #0A1A2A;
}

#mobileMenu .btn-nav {
  margin-top: 12px;
  font-size: 18px;
}

/* RESPONSIVE NAV */
@media (max-width: 960px) {
  .nav-right {
    display: none;
  }
  .burger {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }
}

/* HERO FIX — évite que le header masque le contenu */
:target {
  scroll-margin-top: 110px;
}

html {
  scroll-behavior: smooth;
}


