:root{
  --bleu:#0a0a23;
  --or:#f5c44f;
  --or2:#ffd86a;
  --wa:#25d366;
  --bg:#0b0b1f;
  --white:#ffffff;
  --radius:16px;
}

/* Base */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body.lx{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:var(--bg);
  color:#111;
}
a{ color:inherit; text-decoration:none; }

/* ---------------------------
   HERO (mobile-first)
--------------------------- */
.lx-hero{
  position:relative;
  padding:84px 16px 32px;
  text-align:center;
  color:var(--white);
  overflow:hidden;
}

/* Fond (sobre, lisible) */
.lx-hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.58),rgba(0,0,0,.78)),
    url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1400&q=80');
  background-size:cover;
  background-position:center;
  z-index:-2;
}

/* léger grain (premium) */
.lx-hero::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 20% 15%, rgba(245,196,79,.10), transparent 55%);
  z-index:-1;
}

.lx-pill{
  display:inline-block;
  background:rgba(245,196,79,.16);
  color:var(--or);
  border:1px solid rgba(245,196,79,.35);
  padding:.28rem .65rem;
  border-radius:999px;
  font-weight:900;
  margin-bottom:10px;
  font-size:.86rem;
}

.lx-h1{
  font-size:1.45rem;
  line-height:1.18;
  margin:0 0 .6rem;
  text-shadow:0 2px 10px rgba(0,0,0,.55);
}

.lx-lead{
  font-size:.96rem;
  line-height:1.5;
  opacity:.97;
  margin:0 0 14px;
  text-shadow:0 2px 10px rgba(0,0,0,.45);
}

/* CTA */
.lx-cta{
  display:grid;
  gap:10px;
  max-width:360px;
  margin:0 auto;
}

.lx-btn{
  padding:14px 14px;
  border-radius:14px;
  font-weight:900;
  text-align:center;
  display:inline-block;
  transition:transform .15s ease, filter .15s ease, background-color .15s ease;
}

.lx-btn--primary{
  background:var(--or);
  color:var(--bleu);
}
.lx-btn--primary:hover{
  filter:brightness(1.04);
  transform:translateY(-1px);
}

.lx-btn--ghost{
  border:1px solid var(--or);
  color:var(--or);
  background:rgba(0,0,0,.18);
}
.lx-btn--ghost:hover{
  background:rgba(245,196,79,.10);
  transform:translateY(-1px);
}

.lx-miniProof{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  font-size:.82rem;
  opacity:.9;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}
.lx-miniProof li{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:.35rem .6rem;
  border-radius:999px;
}

/* ---------------------------
   SECTIONS
--------------------------- */
.lx-section{
  padding:42px 16px;
  background:#ffffff;
}
.lx-wrap{
  max-width:960px;
  margin:0 auto;
}

.lx-h2{
  margin:0 0 .45rem;
  font-size:1.35rem;
  color:#111;
}

.lx-sub{
  margin:0 0 20px;
  color:#3f3f3f;
  line-height:1.45;
}

/* Grid offre */
.lx-grid{
  display:grid;
  gap:16px;
}
@media (min-width:768px){
  .lx-grid{ grid-template-columns:1fr 1fr; }
}

/* Cards */
.lx-card{
  border-radius:16px;
  padding:18px;
  background:#fdfcf8;
  border:1px solid #f1e0b4;
}

.lx-card--highlight{
  background:var(--bleu);
  color:#fff;
  border-color:rgba(255,255,255,.10);
}

.lx-list{ margin:0; padding-left:18px; }
.lx-list li{ margin:.35rem 0; line-height:1.4; }

.lx-price{
  font-size:1.45rem;
  font-weight:900;
  margin-bottom:8px;
}

.lx-small{ font-size:.9rem; }
.lx-muted{ opacity:.86; }

/* ---------------------------
   CONTACT
--------------------------- */
.lx-section--contact{
  background:var(--bleu);
  color:#fff;
}

.lx-form{
  display:grid;
  gap:10px;
  max-width:520px;
  margin:0 auto;
}

.lx-form input,
.lx-form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:10px;
  border:none;
  font-size:16px; /* évite le zoom iOS */
  outline:none;
}

.lx-form input:focus,
.lx-form textarea:focus{
  box-shadow:0 0 0 3px rgba(245,196,79,.22);
}

.lx-confirm{
  margin-top:10px;
  font-size:.92rem;
  opacity:.9;
}

/* ---------------------------
   STICKY CTA (mobile)
--------------------------- */
.lx-sticky{
  position:fixed;
  bottom:0; left:0; right:0;
  z-index:999;
  display:flex;
}

.lx-sticky a{
  flex:1;
  padding:14px;
  text-align:center;
  font-weight:900;
}

.lx-stickyCall{ background:#111; color:#fff; }
.lx-stickyWa{ background:var(--wa); color:#0a0a23; }

@media (min-width:900px){
  .lx-sticky{ display:none; }
}

/* ---------------------------
   Desktop polish
--------------------------- */
@media (min-width:900px){
  .lx-h1{ font-size:2.05rem; }
  .lx-lead{ font-size:1.05rem; }
  .lx-hero{ padding:120px 16px 52px; }
  .lx-cta{
    grid-template-columns: 1fr 1fr;
    max-width: 560px;
  }
}

/* =========================
   HEADER LANDING (WhatsApp only)
========================= */
.lxh{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,35,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: calc(env(safe-area-inset-top,0) + .5rem) 16px .5rem;
}

.lxh__inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lxh__brand{ display:flex; align-items:center; min-width:0; }

.lxh__logo{
  display:block;
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.35));
}

.lxh__wa{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
  background: var(--wa);
  color: #0a0a23;
  text-decoration:none;
  white-space:nowrap;
}

@media (max-width: 520px){
  .lxh__logo{ height: 36px; }
  .lxh__wa{ padding: 10px 10px; }
}

/* =========================
   FOOTER LANDING (compact)
========================= */
.lxf{
  background:#070718;
  color:#fff;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 16px 12px;
}

.lxf__inner{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lxf__brand{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.lxf__logo{
  height: 44px;
  width: auto;
  display:block;
  object-fit: contain;
}

.lxf__legal a{
  color: var(--or);
  font-weight: 800;
  text-decoration:none;
}
.lxf__legal a:hover{ text-decoration:underline; }
.lxf__legal span{ opacity:.6; margin: 0 .35rem; }

.lxf__actions{
  display:flex;
  gap: 10px;
  align-items:center;
}

.lxf__wa{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
  background: var(--wa);
  color: #0a0a23;
  text-decoration:none;
}

.lxf__top{
  color:#fff;
  opacity:.8;
  font-weight:900;
  text-decoration:none;
}

.lxf__bottom{
  max-width:1100px;
  margin: 10px auto 0;
  opacity:.6;
  font-size:.85rem;
}

/* =========================
   OPTION : sticky CTA = WhatsApp only (si tu veux)
   (remplace ton sticky 2 boutons)
========================= */
.lx-sticky{ display:flex; }
.lx-stickyCall{ display:none; } /* cache “Appeler” */
.lx-stickyWa{ flex:1; }

.lx-faq{
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.lx-faq h2{
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.lx-faq details{
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: .8rem;
}

.lx-faq summary{
  cursor: pointer;
  font-weight: 700;
}

.lx-faq p{
  margin-top: .6rem;
  line-height: 1.5;
}

<section class="lx-section lx-faq" id="faq">
  <div class="lx-wrap">
    <h2 class="lx-h2">Les questions que vos clients se posent avant d’appeler</h2>
    <p class="lx-sub">Réponses courtes, claires, sans promesses irréalistes.</p>

    <details class="lx-faq__item">
      <summary class="lx-faq__q">Pourquoi certains professionnels sortent avant moi sur Google ?</summary>
      <div class="lx-faq__a">
        <p>Google met en avant les entreprises qui inspirent confiance rapidement : fiche Google claire, site lisible sur mobile et signaux locaux cohérents. Ce n’est pas une question de budget, mais de structure.</p>
      </div>
    </details>

    <details class="lx-faq__item">
      <summary class="lx-faq__q">Est-ce qu’un site internet suffit pour être visible localement ?</summary>
      <div class="lx-faq__a">
        <p>Non. Un site seul ne suffit pas. La visibilité locale repose sur l’ensemble : site + fiche Google + cohérence locale. Sans cela, Google ne vous priorise pas.</p>
      </div>
    </details>

    <details class="lx-faq__item">
      <summary class="lx-faq__q">En combien de temps peut-on voir les premiers résultats ?</summary>
      <div class="lx-faq__a">
        <p>Les premiers signaux apparaissent souvent en quelques semaines. Le but n’est pas de promettre un classement, mais de corriger ce qui empêche vos clients de vous appeler.</p>
      </div>
    </details>

  </div>
</section>

.lx-faq__q::after{
  content:"+";
  float:right;
  font-weight:900;
}
details[open] .lx-faq__q::after{
  content:"–";
}

.lx-faq{
  background:#fff;
  margin-top: 2rem;
}

/* Micro-CTA post FAQ */
.lx-afterfaq{
  background:#0a0a23;
  color:#fff;
  padding: 2.5rem 1rem;
}

.lx-afterfaq__inner{
  border:1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 22px 18px;
  background: rgba(255,255,255,.04);
}

.lx-afterfaq__title{
  margin:0 0 .35rem;
  font-size: 1.2rem;
  font-weight: 900;
}

.lx-afterfaq__text{
  margin:0 0 14px;
  opacity:.9;
}

.lx-afterfaq__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 900;
  background: var(--wa);
  color:#0a0a23;
  text-decoration:none;
}

.lx-afterfaq__note{
  margin:10px 0 0;
  font-size: .9rem;
  opacity:.7;
}

/* ===== FAQ Mobile Premium (force styles + supprime triangle) ===== */
.lx-faq details > summary::-webkit-details-marker{ display:none; }
.lx-faq details > summary{ list-style:none; }

@media (max-width: 700px){

  .lx-faq{ padding: 28px 0; }
  .lx-faq .lx-wrap{ padding: 0 16px; }

  .lx-faq__item{
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:14px;
    overflow:hidden;
    margin: 12px 0;
  }

  .lx-faq__q{
    position:relative;
    width:100%;
    padding: 16px 46px 16px 14px;
    font-size: 1.02rem;
    line-height: 1.25;
    font-weight: 900;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .lx-faq__q::after{
    content:"+";
    position:absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display:grid;
    place-items:center;
    background: rgba(10,10,35,.08);
    color:#0a0a23;
    font-weight: 900;
  }

  details[open] .lx-faq__q::after{ content:"–"; }

  .lx-faq__a{
    padding: 0 14px 16px;
    border-top: 1px solid #f0f0f0;
  }

  .lx-faq__a p{
    margin: 10px 0 0;
    font-size: 1rem;
    line-height: 1.55;
    color:#111;
  }
}

/* Force le bouton WhatsApp après FAQ (même si CSS global écrase) */
.lx-afterfaq__btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:100% !important;
  max-width: 420px !important;
  padding: 14px 16px !important;
  margin: 8px 0 0 !important;

  background: var(--wa) !important;
  color: #0a0a23 !important;
  font-weight: 900 !important;
  text-decoration: none !important;

  border-radius: 14px !important;
  border: none !important;
}

.lx-afterfaq__btn:active{ transform: scale(.99); }

/* Force le bouton WhatsApp après FAQ (même si CSS global écrase) */
.lx-afterfaq__btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:100% !important;
  max-width: 420px !important;
  padding: 14px 16px !important;
  margin: 8px 0 0 !important;

  background: var(--wa) !important;
  color: #0a0a23 !important;
  font-weight: 900 !important;
  text-decoration: none !important;

  border-radius: 14px !important;
  border: none !important;
}

.lx-afterfaq__btn:active{ transform: scale(.99); }

.lx-afterfaq__inner{ text-align:center; }
.lx-afterfaq__btn{ margin-left:auto !important; margin-right:auto !important; }

/* ===== FAQ MOBILE FIX ===== */
.lx-faq{
  padding: 32px 16px;
}

.lx-faq__item{
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

/* Question */
.lx-faq__q{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  position: relative;
}

.lx-faq__q::-webkit-details-marker{
  display: none;
}

/* Chevron */
.lx-faq__q::after{
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .25s ease;
}

/* Réponse */
.lx-faq__a{
  padding: 0 16px 16px;
  font-size: .95rem;
  line-height: 1.5;
}

/* Animation ouverture */
.lx-faq__item[open] .lx-faq__q::after{

/* TEST CSS */
#faq { outline: 6px solid red !important; }

