/* === HERO (Above the Fold) === */
.hero-fold {
  position: relative;
  width: 100vw;
  margin-left: -4rem;
  margin-right: -4rem;
  padding: 4rem 5rem;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-fold__inner {
  max-width: 600px;
  width: 100%;
}
.hero-fold__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.3;
}
.hero-fold__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #444;
  max-width: 550px;
}
.hero-fold__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-fold__cta .btn--primary {
  animation: slow-pulse 8s ease-in-out infinite;
}
.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.btn--secondary:hover,
.btn--secondary:focus {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.hero-fold__reassurance {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}
.hero-fold__reassurance li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-fold__reassurance li::before {
  content: "✔︎";
  color: var(--color-primary);
  font-weight: bold;
}
.hero-fold__urgency {
  font-size: 1rem;
  color: #ba392b;
  font-weight: 700;
  background: rgba(220, 116, 104, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}
.hero-fold__visual img {
  width: 100%;
  border-radius: 12px;
  margin-top: 2rem;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-fold__visual img {
    max-height: 250px;
  }
  .hero-fold__link-alt {
    margin-top: 1rem;
  }
  .hero-fold {
    padding: 3.5rem 2.5rem;
  }
}
@media (min-width: 768px) {
  .hero-fold {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 3rem;
  }
  .hero-fold__inner {
    flex: 1;
  }
  .hero-fold__visual {
    flex: 1;
    max-width: 626px;
  }
}

/* === OFFRES & TARIFS ENRICHI === */
.lp-offres {
  padding: 4rem 1.5rem;
  background-color: #ffffff;
}
.lp-offres__title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 3.5rem;
  color: var(--text-color);
  font-weight: 700;
}
.offres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.offre-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 2.5rem 1.5rem 3rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.2s ease;
  border: 2px solid transparent;
}
.offre-card:hover {
  transform: translateY(-4px);
}
.offre-card--highlight {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 128, 96, 0.1);
  transform: scale(1.03);
  z-index: 1;
}
.offre-card__badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 99px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.offre-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}
.offre-card__price {
  text-align: center;
  margin-bottom: 1.5rem;
}
.offre-card__price .from {
  font-size: 1.1rem;
  color: #666;
}
.offre-card__price strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
}
.offre-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  color: #555;
  text-align: left;
  width: 100%;
}
.offre-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.offre-card__features li.valid::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}
.offre-card__features li.invalid {
  color: #aaa;
}
.offre-card__features li.invalid::before {
  content: "✗";
  color: #ccc;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.offre-card__img {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.offre-card__img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.lp-offres__footer {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #696969;
}

@media (max-width: 480px) {
  .lp-offres__footer {
    font-size: 0. ninerem;
    margin-top: 1.5rem;
  }
}

/* === TÉMOIGNAGES === */
.lp-temoignages {
  background-color: #f9f9f9;
  padding: 4rem 5rem;
  text-align: center;
  width: 100vw;
  margin-left: -4rem;
  margin-right: -4rem;
}
.lp-temoignages__title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--text-color);
}
.lp-temoignages__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
.lp-temoignages__logos img {
  height: 85px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  border-radius: 30px;
}
.lp-temoignages__logos img:hover {
  opacity: 1;
}
.lp-temoignages__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.temoignage-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
}
.temoignage-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.temoignage-card__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.temoignage-card__nom {
  font-weight: 600;
  color: var(--text-color);
}
.temoignage-card__source {
  font-size: 0.9rem;
  color: #888;
}
.temoignage-card__stars {
  color: #f1c40f;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.temoignage-card__texte {
  font-style: italic;
  color: #444;
}

.lp-avis-intro {
  max-width: 800px;
  margin: 2rem auto 1.5rem;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 400;
  color: #696969;
  line-height: 1.5;
}

/* Responsive : ajustement mobile */
@media (max-width: 480px) {
  .lp-avis-intro {
    font-size: 0.95rem;
    margin-top: 1.25rem;
  }
}

@media (min-width: 768px) {
  .lp-temoignages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === BÉNÉFICES === */
.lp-benefices {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
}
.lp-benefices__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.lp-benefices__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--text-color);
  font-weight: 700;
}
.lp-benefices__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.benefice {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.benefice:hover {
  transform: translateY(-4px);
}
.benefice img {
  height: 90px;
  margin-bottom: 1rem;
}
.benefice h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.benefice p {
  color: #555;
  font-size: 1rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lp-benefices__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === PROCESSUS / COMMENT ÇA MARCHE – TIMELINE === */
.lp-process {
  padding: 4rem 1.5rem;
  background: #ffffff;
  text-align: center;
}

.lp-process__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 3rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid var(--color-primary);
  margin: 0 auto;
  max-width: 90%;
}

.timeline__step {
  position: relative;
  padding-left: 2rem;
  text-align: left;
  padding: 2rem 1rem;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.timeline__step:nth-child(even) {
  background-color: #e6f4f0;
}

.timeline__circle {
  position: absolute;
  left: -1.5rem;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #fff;
}

.timeline__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.timeline__desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Illustration */
.lp-processus__illustration {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}
.lp-processus__illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .lp-processus__illustration img {
    max-width: 80%;
  }
}
@media (min-width: 1024px) {
  .lp-processus__illustration img {
    max-width: 700px;
  }
}

/* === TIMELINE HORIZONTALE (desktop) === */
@media (min-width: 768px) {
  .timeline {
    flex-direction: row;
    border-left: none;
    border-top: 4px solid var(--color-primary);
    padding-left: 0;
    padding-top: 3rem;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .timeline__step {
    padding-top: 3.5rem;
    text-align: center;
    max-width: 200px;
  }

  .timeline__circle {
    top: -2.2rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* === 🟥 Comment choisir la bonne solution ? === */
.lp-choix {
  background-color: #f9f9f9;
  padding: 4rem 5rem;
  width: 100vw;
  margin-left: -4rem;
  margin-right: -4rem;
}

.lp-choix__title {
  text-align: center;
  font-size: 2rem;
  color: var(--text-color);
  font-weight: 700;
  margin-bottom: 2.5rem;
}

/* Liste des critères - sans puces, avec icônes SVG */
.lp-choix__criteres {
  max-width: 800px;
  margin: 0 auto 3.5rem;
  font-size: 1rem;
  color: #444;
}

.lp-choix__criteres h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  color: var(--color-primary);
}

.lp-choix__criteres ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.icon-txt {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-txt .icon {
  min-width: 44px;
  min-height: 44px;
  background-color: rgba(43, 180, 145, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-txt .icon svg {
  width: 24px;
  height: 24px;
  stroke: #2bb491;
  stroke-width: 2.5;
  fill: currentColor;
}

.icon--zone svg {
  stroke: #2bb491;
  fill: #2bb491;
}

.icon--features svg text {
  fill: #2bb491;
  font-size: 12px;
  font-weight: bold;
}

.icon--budget svg {
  stroke: #2bb491;
}

/* Tableau comparatif */
.lp-choix__table {
  overflow-x: auto;
  margin-bottom: 2.5rem;
}

.lp-choix__table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.lp-choix__table th,
.lp-choix__table td {
  padding: 0.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.lp-choix__table th {
  background: var(--color-primary);
  color: white;
  font-weight: 600;
}

.lp-choix__table th:nth-child(3) {
  border-top: 2px solid #2a856f;
  color: #2a856f;
  background-color: white !important;
  font-size: 1.1rem;
  border-radius: 14px 14px 0 0;
}

.lp-choix__table td.adone,
.lp-choix__table th:nth-child(3) {
  background-color: #e6f4f0;
  font-weight: 600;
  border-left: 2px solid #2a856f;
  border-right: 2px solid #2a856f;
}

.last-adone {
  border-bottom: 2px solid #2a856f !important;
}

.ico-cell-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.adone .ico-cell-wrapper {
  background-color: rgba(255, 255, 255, 0.8);
}

.diy .ico-cell-wrapper {
  background-color: rgba(192, 57, 43, 0.1);
}

.ico-cell {
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 26px;
  height: 26px;
  fill: none;
}

.adone .ico-cell {
  stroke: #2a856f;
}

.diy .ico-cell {
  stroke: #b85145;
}

.lp-choix__cta {
  text-align: center;
  margin-top: 2rem;
}

.lp-choix__cta p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* === 🟫 Section : FAQ (6–10 questions clés) === */
.lp-faq {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
}

.lp-faq__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text-color);
  font-weight: 700;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  background: transparent;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: #444;
  transition: transform 0.3s, color 0.3s;
}

.faq-item.open .faq-question::after {
  content: "–";
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

.lp-faq .faq-answer strong {
  color: var(--color-primary);
}

.faq-answer__check {
  color: var(--color-primary);
  font-weight: bold;
  margin-right: 0.4rem;
  vertical-align: middle;
}

/* === GARANTIES & CONFORMITÉ === */
.lp-garanties {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
}

.lp-garanties__title {
  text-align: center;
  font-size: 2rem;
  color: var(--text-color);
  font-weight: 700;
  margin-bottom: 3rem;
}

.garanties-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.garantie-item {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.garantie-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.garantie-item--highlight {
  background-color: #e6f4f0;
  font-weight: 600;
  text-align: center;
  font-size: 1.2rem;
}

.garantie-item__icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin: 0 auto;
}

.garantie-item__icon img {
  width: 100%;
  height: auto;
}

.garantie-item__content {
  text-align: center;
}

.garantie-item h3 {
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.garantie-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Bloc spécifiques */
.garantie-item:first-child {
  grid-column: span 3;
}
.garantie-item:nth-child(2) {
  grid-column: span 3;
}
.garantie-item:nth-child(3) {
  grid-column: span 4;
}
.garantie-item:nth-child(4) {
  grid-column: span 2;
}

/* Position icônes */
.garantie-icon-top .garantie-item__icon {
  order: -1;
  margin-bottom: 1rem;
}

.garantie-icon-right {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.garantie-icon-right .garantie-item__icon {
  margin: 0 0 0 1rem;
}

.garantie-icon-left {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.garantie-icon-left .garantie-item__icon {
  margin: 0 1rem 0 0;
}

.garantie-icon-bottom {
  flex-direction: column;
  align-items: center;
}

.garantie-icon-bottom .garantie-item__icon {
  margin-top: 1rem;
}

/* === 🟦 Section : Vous hésitez encore ? === */
.lp-final-cta {
  background: #eef8f4;
  padding: 4rem 5rem;
  width: 100vw;
  margin-left: -4rem;
  margin-right: -4rem;
  text-align: center;
}

.lp-final-cta__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.lp-final-cta__subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.lp-final-cta__bloc {
  margin-bottom: 3rem;
}

.lp-final-cta__bloc-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.lp-final-cta__bloc-title .ico-section {
  width: 22px;
  height: 22px;
  stroke: #2bb491;
  stroke-width: 2.5;
  fill: none;
}

.lp-final-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.cta-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.cta-card:hover {
  transform: translateY(-4px);
}

.cta-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.cta-card p {
  font-size: 0.95rem;
  color: #444;
}

.lp-final-cta__action {
  margin-top: 1.5rem;
}

.btn--big {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .lp-final-cta__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}