.conditions-content {
  max-width: 820px;
  margin: auto;
  text-align: left;
  line-height: 1.7;
}

.conditions-content h3 {
  margin-bottom: 1rem;
  color: var(--brand);
}

.conditions-content ul {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.conditions-content li {
  margin-bottom: .5rem;
}

p {
    text-align: justify;
}

.conditions-badge {
  margin-bottom: 1rem;
  text-align: center; /* ou left si tu préfères l’aligner au texte */
}

.badge-date {
  display: inline-block;
  background: linear-gradient(90deg, var(--surface-2), var(--surface-3));
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  position: relative;
}

.badge-date::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}


.conditions-sidebar {
  position: fixed;
  top: 140px; /* ajuste en fonction de ta navbar */
  left: 40px;
  width: 220px;
  padding-left: 12px;
  border-left: 2px solid var(--line);
  font-size: 0.9rem;
  z-index: 100;
}

.conditions-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.conditions-sidebar a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s, font-weight 0.3s, border-left 0.3s;
  padding-left: 10px;
  border-left: 3px solid transparent;
}

.conditions-sidebar a:hover {
  color: var(--text);
}

.conditions-sidebar a.active {
  font-weight: 600;
  color: var(--brand);
  border-left: 3px solid var(--brand);
}


 .cgv-encadre-rouge {
            border: 2px solid #ef4444;
            padding: 0;
            border-radius: 6px;
            background-color: rgba(239, 68, 68, 0.08);
            color: #fecaca;
            font-size: 0.95rem;
            line-height: 1.6;
            max-width: 700px;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
            margin-bottom: 50px;
        }
        
        .cgv-encadre-header {
            padding: 1.25rem;
            border-bottom: 1px solid rgba(239, 68, 68, 0.3);
        }
        
        .cgv-encadre-header h2 {
            margin: 0;
            color: #ef4444 !important;
            font-size: 1.25rem;
            font-weight: 600;
        }
        
        .cgv-encadre-content {
            padding: 1.25rem;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .cgv-encadre-content::-webkit-scrollbar {
            width: 8px;
        }
        
        .cgv-encadre-content::-webkit-scrollbar-track {
            background: rgba(239, 68, 68, 0.05);
            border-radius: 4px;
        }
        
        .cgv-encadre-content::-webkit-scrollbar-thumb {
            background: rgba(239, 68, 68, 0.3);
            border-radius: 4px;
        }
        
        .cgv-encadre-content::-webkit-scrollbar-thumb:hover {
            background: rgba(239, 68, 68, 0.5);
        }
        
        .cgv-section {
            margin-bottom: 1.5rem;
        }
        
        .cgv-section:last-child {
            margin-bottom: 0;
        }
        
        .cgv-section-title {
            color: #ef4444 !important;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
        
        .cgv-section-text {
            color: #fecaca !important;
            margin: 0;
        }
        
        .cgv-liste {
            list-style: none;
            padding-left: 0;
            margin: 0.5rem 0;
        }
        
        .cgv-liste li {
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
            position: relative;
            color: #fecaca !important;
        }
        
        .cgv-liste li::before {
            content: "•";
            position: absolute;
            left: 0.5rem;
            color: #ef4444 !important;
            font-weight: bold;
        }


     

/* 
.cgv-scroll-indicator {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(239, 68, 68, 0.2);
            border-radius: 50%;
            animation: cgvBounce 2s infinite;
            pointer-events: none;
        }
        
.cgv-scroll-indicator svg {
            width: 16px;
            height: 16px;
            stroke: #ef4444;
        }
    
@keyframes cgvBounce {
      0%, 100% {
                transform: translateY(0);
          }
        50% {
                transform: translateY(5px);
            }
        } */




.cgc-rail{
  position: relative;
  padding-left: 42px; /* espace pour la ligne */
}

/* La ligne verticale */
.cgc-rail::before{
  content:"";
  position: absolute;
  left: 14px;
  top: 36px;
  bottom: 36px;
  width: 4px;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(160,160,160,.55) 0px,
    rgba(160,160,160,.55) 8px,
    transparent 8px,
    transparent 16px
  );
  border-radius: 4px;
  opacity: .75;
}


.cgc-rail-start{
  position: absolute;
  left: 9px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(160,160,160,.85);
  box-shadow: 0 0 0 4px rgba(160,160,160,.15);
}

.cgc-rail-end{
  position: absolute;
  left: 9px;
  bottom: 10px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(160,160,160,.85);
  box-shadow: 0 0 0 4px rgba(160,160,160,.15);
}


.cgc-rail-start::after{
  content: "Début";
  position: absolute;
  right: 28px;        /* ← place le texte à gauche de la ligne */
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  letter-spacing: .3px;
  color: rgba(160,160,160,.85);
  font-weight: 600;
  white-space: nowrap;
}
.cgc-rail-end::after{
  content: "Fin";
  position: absolute;
  right: 28px;        /* ← même logique */
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  letter-spacing: .3px;
  color: rgba(160,160,160,.85);
  font-weight: 600;
  white-space: nowrap;
}


.cgc-cloud-note{
  font-size: 14px;
  line-height: 1.55;
  color: darkgrey !important;
}


.cgc-section-title{
  margin: 64px 0 28px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .2px;
  color: rgba(255,255,255,.9);
  position: relative;
}

/* petit filet discret */
.cgc-section-title::after{
  content:"";
  display:block;
  width: 64px;
  height: 2px;
  margin-top: 10px;
  background: rgba(160,160,160,.45);
  border-radius: 999px;
}




.cgc-closing {
  padding-top: 20px;
}


.cgc-signature{
  margin: 50px auto 10px;
  padding-top: 22px;
  max-width: 420px;
  text-align: center;
  border-top: 1px solid rgba(160,160,160,.25);
}

.cgc-signature-name{
  font-weight: 800;
  letter-spacing: .6px;
  color: rgba(255,255,255,.9);
  margin-bottom: 6px;
}

.cgc-signature-sub{
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
}

.cgc-signature-text{
  margin-top: 12px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
}


.legal-link-intro {
  margin: 20px auto 40px;
  max-width: 920px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #8a8a8a;
}

.legal-link-label {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
  color: #6f6f6f;
}

.legal-link-anchor {
  color: #3cff8f; /* vert TURBOPROG */
  text-decoration: none;
  border-bottom: 1px solid rgba(60, 255, 143, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-link-anchor:hover {
  color: #7dffb3;
  border-bottom-color: rgba(125, 255, 179, 0.6);
}


 .cg-tarif-note{
    margin: 16px 0;
    padding: 12px 14px;
    border-left: 4px solid var(--brand, #00e2a6);
    background: rgba(0,0,0,.08);
    color: var(--text, #e8eef6);
    font-size: .95rem;
    line-height: 1.45;
    border-radius: 12px;
  }