/* La Ligne Auto — styles spécifiques hero & page accueil */

/* Override ll-reveal pour le hero : couleur blanche conservée après transition */


/* La transition ll-reveal part de translateY(20px) → 0 + opacity 0 → 1
   Les délais sont portés par --ll-delay déjà en inline style sur chaque élément */

/* ============================================================
   RÉASSURANCE STRIP — bandeau d'icônes avec cercles
   ============================================================ */

.ll-rea-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 40px;
  padding: 64px 0;
}

.ll-rea-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.ll-rea-bubble {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.ll-rea-item:hover .ll-rea-bubble {
  border-color: var(--ll-copper);
}

.ll-rea-bubble svg {
  width: 38px;
  height: 38px;
  stroke: var(--ll-copper);
  stroke-width: 1.25;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ll-rea-bubble img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  position: absolute;
  top: 24px;
  left: 26px;
}

.ll-rea-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ll-ink);
  max-width: 110px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .ll-rea-strip {
    gap: 32px 16px;
    padding: 48px 0;
  }
  .ll-rea-item {
    width: calc(50% - 8px);
  }
  .ll-rea-bubble {
    width: 80px;
    height: 80px;
  }
  .ll-rea-bubble svg {
    width: 32px;
    height: 32px;
  }
}

/* ============================================================
   HEADER CTAs — icône cercle + label / valeur
   ============================================================ */

.ll-header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color:  #fff;
}

.ll-header-cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ll-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ll-header-cta-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ll-header-cta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ll-header-cta-label {
  font-size: 11px;
  color: #fff;
  opacity: 0.5;
  letter-spacing: 0.02em;
}

.ll-header-cta-value {
  font-size: 15px;
  font-weight: 700;
  color:  #fff;
  letter-spacing: 0.01em;
}
