/* =====================================================
   G-VAD CONVERSION BOOST — conversion-boost.css
   ===================================================== */

/* ─── FAQ ─── */
#faq { padding: 80px 0; background: var(--gray-50); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); border-color: var(--sky); }
.faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  line-height: 1.4;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sky);
  flex-shrink: 0;
  margin-top: -2px;
  line-height: 1;
}
.faq-item.faq-open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  margin-top: 12px;
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  padding-top: 12px;
}
.faq-item.faq-open .faq-a { display: block; }
.faq-cta { text-align: center; margin-top: 48px; }

/* ─── TASK 5 : BARRE D'URGENCE STICKY ─── */
#cb-urgency-bar {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10001;
  background: #e63946;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 44px 8px 16px;
  font-size: .83rem;
  font-weight: 600;
  min-height: 38px;
  box-shadow: 0 2px 10px rgba(230,57,70,.4);
  transition: top .25s ease;
}
#cb-urgency-bar.cb-ub-hidden { display: none; }
.cb-ub-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.cb-ub-timer {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  background: rgba(0,0,0,.22);
  padding: 2px 9px;
  border-radius: 6px;
  letter-spacing: .04em;
}
.cb-ub-cta {
  display: inline-block;
  background: #fff;
  color: #e63946;
  font-weight: 800;
  border-radius: 100px;
  padding: 4px 14px;
  text-decoration: none;
  font-size: .78rem;
  white-space: nowrap;
  margin-left: 6px;
  transition: opacity .15s;
}
.cb-ub-cta:hover { opacity: .88; }
.cb-ub-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  cursor: pointer;
  padding: 6px 8px;
  line-height: 1;
}
.cb-ub-close:hover { color: #fff; }

/* ─── TASK 2 : HERO PRICE TRUST BADGE ─── */
.cb-price-trust {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
  flex-wrap: wrap;
}
.cb-price-trust i { color: #4db8e8; flex-shrink: 0; }
.cb-price-trust strong { color: rgba(255,255,255,.9); }

/* ─── TASK 3 : FOMO PLACES RESTANTES ─── */
.cb-fomo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .77rem;
  font-weight: 700;
  color: #ff6b6b;
  margin-top: 8px;
}
.cb-fomo-dot {
  width: 7px;
  height: 7px;
  background: #ff6b6b;
  border-radius: 50%;
  flex-shrink: 0;
  animation: cb-blink 1s infinite;
}
@keyframes cb-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ─── TASK 4 : AVATARS DICEBEAR + BADGE VÉRIFIÉ ─── */
.testimonial-avatar.cb-db {
  background: none !important;
  width: 52px;
  height: 52px;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar.cb-db img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #e2e8f0;
}
.cb-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  color: #059669;
  font-weight: 600;
  margin-top: 2px;
}

/* ─── TASK 6 : ROI TEXT ─── */
.cb-roi {
  font-size: .72rem;
  color: rgba(134,239,172,.85);
  font-style: italic;
  margin-top: 5px;
  line-height: 1.4;
  padding: 4px 8px;
  background: rgba(5,150,105,.12);
  border-radius: 6px;
  border-left: 2px solid rgba(5,150,105,.4);
}

/* ─── TASK 7 : MODAL INSCRIPTION RAPIDE ─── */
.cb-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}
.cb-modal-overlay[hidden] { display: none; }
.cb-modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 24px;
  max-width: 430px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  animation: cb-modal-pop .25s ease;
}
@keyframes cb-modal-pop {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to   { opacity: 1; transform: none; }
}
.cb-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #64748b;
  transition: background .15s;
}
.cb-modal-close:hover { background: #e2e8f0; }
.cb-modal-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #e63946;
  margin-bottom: 8px;
}
.cb-modal-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #0d1b4b;
  margin: 0 0 4px;
}
.cb-modal-sub {
  color: #64748b;
  font-size: .84rem;
  margin-bottom: 20px;
}
.cb-form-group {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 14px;
}
.cb-form-group input,
.cb-form-group select {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: .88rem;
  font-family: inherit;
  outline: none;
  background: #fff;
  color: #1e293b;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
}
.cb-form-group input:focus,
.cb-form-group select:focus {
  border-color: #0d1b4b;
  box-shadow: 0 0 0 3px rgba(13,27,75,.1);
}
.cb-form-submit {
  width: 100%;
  background: linear-gradient(135deg, #0d1b4b, #1a3a6b);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .2s, transform .1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cb-form-submit:hover { opacity: .9; transform: translateY(-1px); }
.cb-form-note {
  text-align: center;
  font-size: .72rem;
  color: #94a3b8;
  margin-top: 10px;
}
.cb-form-wa-alt {
  text-align: center;
  margin-top: 10px;
  font-size: .8rem;
  color: #64748b;
}
.cb-form-wa-alt a { color: #25d366; font-weight: 700; text-decoration: none; }

/* ─── TASK 8 : SOCIAL PROOF TOAST ─── */
#sp-toast {
  position: fixed;
  bottom: 100px;
  left: 16px;
  z-index: 9990;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  padding: 12px 36px 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 292px;
  max-width: calc(100vw - 32px);
  border-left: 4px solid #0d1b4b;
  transform: translateX(calc(-100% - 24px));
  transition: transform .45s cubic-bezier(.34,1.45,.64,1);
}
#sp-toast[hidden] { display: none; }
#sp-toast.sp-show  { transform: translateX(0); }
.sp-avatar { font-size: 1.5rem; flex-shrink: 0; }
.sp-content { flex: 1; min-width: 0; }
.sp-msg {
  font-size: .79rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.35;
}
.sp-time {
  font-size: .7rem;
  color: #94a3b8;
  margin-top: 3px;
  display: block;
}
.sp-close {
  position: absolute;
  top: 8px; right: 8px;
  background: none;
  border: none;
  font-size: .85rem;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px 5px;
  line-height: 1;
}

/* ─── TASK 9 : EXIT POPUP WHATSAPP ─── */
.ep-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 16px;
  transition: background .2s;
  font-family: inherit;
}
.ep-wa-btn:hover { background: #1db954; }
.ep-wa-btn i { font-size: 1.2rem; }
.ep-no-thanks {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: .8rem;
  color: #94a3b8;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: underline;
  width: 100%;
}

/* ─── TASK 10 : CHATBOT FLOW INSCRIPTION ─── */
.chat-flow-opts {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
}
.chat-flow-opt {
  background: #f0f4ff;
  color: #0d1b4b;
  border: 1px solid #c7d5f0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: .79rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .15s;
}
.chat-flow-opt:hover { background: #dde8ff; }

/* ─── FREIN 2 : DATE MISE À JOUR PLACES ─── */
.fc-urgence-date {
  font-size: .65rem;
  font-weight: 400;
  opacity: .65;
  margin-left: 6px;
}

/* ─── FREIN 4 : PRIX CALCULÉ DANS LE MODAL ─── */
.cb-price-display {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .85rem;
}
.cb-pd-label {
  color: #15803d;
  font-weight: 600;
}
.cb-pd-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0d1b4b;
}
.cb-pd-price.cb-pd-price-hot {
  color: #e63946;
  font-size: 1.15rem;
}
.cb-pd-discount {
  width: 100%;
  font-size: .78rem;
  color: #16a34a;
  font-weight: 600;
  margin-top: 2px;
}

/* ─── FREIN 6 : MICRO-TÉMOIGNAGES HERO ─── */
.hero-micro-testi {
  margin-top: 18px;
  min-height: 44px;
  position: relative;
}
.hmt-item {
  display: none;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
}
.hmt-item.hmt-active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.hmt-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.hmt-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.3);
}
.hmt-text {
  font-size: .8rem;
  color: rgba(255,255,255,.78);
  line-height: 1.4;
  margin: 0;
}
.hmt-text strong {
  color: rgba(255,255,255,.95);
}

/* ─── FREIN 7 : SECTION TEASER ROI ─── */
#roi-teaser {
  padding: 72px 0;
  background: #f8fafc;
}
.roi-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.roi-teaser-examples {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.roi-ex-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 16px;
  gap: 12px;
}
.roi-ex-fm {
  font-size: .85rem;
  font-weight: 600;
  color: #1e293b;
}
.roi-ex-roi {
  font-size: .82rem;
  font-weight: 800;
  color: #059669;
  white-space: nowrap;
}
/* Carte simulation */
.roi-teaser-card {
  background: var(--navy, #0d1b4b);
  border-radius: 20px;
  padding: 32px 28px;
  color: #fff;
}
.rtc-header {
  margin-bottom: 20px;
}
.rtc-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.rtc-fm {
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
.rtc-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.rtc-green { color: #4ade80; font-weight: 700; }
.rtc-divider {
  border-top: 1px solid rgba(255,255,255,.15);
  margin: 12px 0;
}
.rtc-roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 20px;
}
.rtc-roi-pct {
  font-size: 1.8rem;
  font-weight: 900;
  color: #4ade80;
}
.rtc-cta {
  display: block;
  text-align: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 12px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.rtc-cta:hover { background: rgba(255,255,255,.2); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .roi-teaser-inner { grid-template-columns: 1fr; gap: 32px; }
  .roi-teaser-card  { display: none; } /* Masquer la carte sur mobile, le texte suffit */
}
@media (max-width: 480px) {
  #sp-toast { bottom: 80px; width: calc(100vw - 32px); }
  .cb-modal-box { padding: 24px 16px 20px; }
  .cb-ub-inner { font-size: .78rem; gap: 6px; }
}
