<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;900&family=DM+Sans:wght@400;500&display=swap" rel="stylesheet">
 
 
.lp-card-icon {
  width: 46px;
  height: 46px;
  background: #fff8e7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;        /* ← ajouter */
  padding: 8px;            /* ← ajouter pour aérer l'image */
}

.lp-card-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;     /* conserve les proportions */
  display: block;
}

.lp-essentiel *, .lp-essentiel *::before, .lp-essentiel *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
.lp-essentiel {
  max-width: 920px;
  margin: 0 auto;
}
 
/* ── Bloc intro 2 colonnes ─────────────────────────────── */
.lp-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #e8e8e8;
  margin-bottom: 20px;
}
 
.lp-intro-left {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
  background: #111111;
  padding: 48px 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 18px;
}
 
.lp-eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background: rgba(249,178,27,0.14);
  border: 1px solid rgba(249,178,27,0.3);
  color: #f9b21b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  width: -webkit-fit-content;
  width: fit-content;
}
 
.lp-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f9b21b;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
 
.lp-intro-left h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
 
.lp-intro-left h3 em {
  font-style: normal;
  color: #f9b21b;
}
 
.lp-intro-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
 
.lp-intro-right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 280px;
  flex: 1 1 280px;
  background: #fff8e7;
  padding: 48px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
 
.lp-why-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4920e;
  margin-bottom: 20px;
}
 
.lp-tagline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(249,178,27,0.22);
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111111;
  line-height: 1.45;
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
 
.lp-tagline.lp-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
 
.lp-tagline:last-child {
  border-bottom: 1px solid rgba(249,178,27,0.22);
}
 
.lp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f9b21b;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 5px;
}
 
/* ── Grille 3 cartes ───────────────────────────────────── */
.lp-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
 
.lp-card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 240px;
  flex: 1 1 240px;
  background: #ffffff;
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  -webkit-transform: translateY(16px);
  transform: translateY(16px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease, border-color 0.25s, -webkit-box-shadow 0.25s;
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s, box-shadow 0.25s;
}
 
.lp-card.lp-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
 
.lp-card:hover {
  border-color: #f9b21b;
  -webkit-box-shadow: 0 4px 24px rgba(249,178,27,0.15);
  box-shadow: 0 4px 24px rgba(249,178,27,0.15);
}
 
.lp-card-icon {
  width: 46px;
  height: 46px;
  background: #fff8e7;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #d4920e;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
 
.lp-card h3 {

  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
}
 
.lp-card p {
  font-size: 0.88rem;
  color: #666666;
  line-height: 1.72;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
 
.lp-card-bar {
  height: 3px;
  width: 28px;
  background: #f9b21b;
  border-radius: 2px;
  margin-top: auto;
}
 
/* ── Blocs alternatifs 2 colonnes ──────────────────────── */
.lp-alt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  background: #f9f9f9;
  border: 1.5px solid #ebebeb;
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 14px;
  opacity: 0;
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
 
.lp-alt.lp-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
 
.lp-alt-icon {
  width: 46px;
  height: 46px;
  background: #111111;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #f9b21b;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
}
 
.lp-alt-icon svg {
  width: 22px;
  height: 22px;
  stroke: #f9b21b;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
 
.lp-alt h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  line-height: 1.3;
}
 
.lp-alt p {
  font-size: 0.88rem;
  color: #666666;
  line-height: 1.72;
}
 
.lp-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}
 
.lp-pill {
  font-size: 11px;
  font-weight: 700;
  color: #854F0B;
  background: #FAEEDA;
  padding: 4px 13px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
 
@media screen and (max-width: 640px) {
  .lp-intro-left,
  .lp-intro-right { padding: 36px 28px; }
 
  .lp-alt { flex-direction: column; gap: 14px; padding: 24px 20px; }
 
  .lp-card { flex: 1 1 100%; }
}
