/*
 * francevideo24.com : theme clair "confiance" pour cold prospecting.
 * Page claire (credibilite institutionnelle), bande cinema sombre
 * autour de la video (la video elle-meme reste #111827), or reserve
 * aux CTA, prix et etoiles.
 * Mobile-first : la majorite des prospects ouvrent le lien depuis
 * un email sur telephone.
 */

:root {
  --fv-bg: #ffffff;          /* fond de page : blanc pur */
  --fv-bg-soft: #f3f5f9;     /* gris tres leger : cartes imbriquees */
  --fv-surface: #ffffff;     /* cartes */
  --fv-bg-dark: #111827;     /* bande cinema (alignee sur la video) */
  --fv-accent: #D4A94E;      /* or : etoiles, boutons, decorations */
  --fv-accent-dark: #b8923f;
  --fv-gold-text: #9a7524;   /* or fonce lisible pour le texte sur clair */
  --fv-white: #ffffff;
  --fv-title: #111827;
  --fv-text: #2b3446;
  --fv-muted: #5d6a82;
  --fv-border: #e3e8f0;
  --fv-radius: 12px;
  --fv-max-width: 680px;
  --fv-shadow-card: 0 10px 30px rgba(17, 24, 39, 0.08);
  --fv-gradient-gold: linear-gradient(135deg, #e8c476 0%, #D4A94E 55%, #c39a42 100%);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--fv-bg);
  color: var(--fv-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a {
  color: var(--fv-gold-text);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  color: var(--fv-title);
  line-height: 1.25;
}

/* --- Topbar ------------------------------------------------------------ */

.fv-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--fv-max-width);
  margin: 0 auto;
  padding: 18px 16px 10px;
}

.fv-logo {
  height: 36px;
  width: auto;
}

.fv-topbar-trust {
  color: var(--fv-muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.fv-main {
  max-width: var(--fv-max-width);
  margin: 0 auto;
  padding: 16px;
}

/* --- Landing prospect : hero ------------------------------------------- */

.fv-hero {
  text-align: center;
  padding: 14px 0 24px;
}

.fv-eyebrow {
  display: inline-block;
  color: var(--fv-gold-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-transform: uppercase;
  border: 1px solid rgba(212, 169, 78, 0.5);
  background: rgba(212, 169, 78, 0.1);
  border-radius: 999px;
  padding: 6px 14px;
  margin: 0 0 16px;
}

.fv-hero h1 {
  font-size: 1.75rem;
  line-height: 1.22;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.fv-hero-sub {
  color: var(--fv-muted);
  font-size: 1.02rem;
  margin: 0 auto;
  max-width: 34em;
}

.fv-hero-rating {
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fv-stars {
  letter-spacing: 2px;
  font-size: 1.05rem;
  line-height: 1;
}

.fv-stars-big {
  font-size: 1.5rem;
}

.fv-star {
  color: var(--fv-accent);
}

.fv-star-dim {
  color: #cdd5e1;
}

.fv-rating-text {
  color: var(--fv-title);
  font-size: 0.92rem;
  font-weight: 600;
}

/* --- Bande cinema : la video dans un ecrin sombre ----------------------- */

.fv-cinema {
  background: var(--fv-bg-dark);
  padding: 26px 16px 20px;
  /* Full-bleed : la bande cinema sort de la colonne texte (680px) pour laisser
     la video s'afficher bien plus grande. overflow-x:clip sur body evite le
     scroll horizontal du 100vw. */
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.fv-cinema-inner {
  /* Video ~82% de la largeur ecran, plafonnee a 1080px (regle Erwin 2026-07-20). */
  width: 82%;
  max-width: 1080px;
  margin: 0 auto;
}

.fv-player-wrap {
  background: #000;
  border-radius: var(--fv-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 169, 78, 0.25);
}

.fv-player {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

.fv-player-caption {
  color: #9aa4b8;
  font-size: 0.85rem;
  text-align: center;
  margin: 14px auto 0;
  max-width: 36em;
}

/* --- Offre ---------------------------------------------------------------- */

.fv-offer {
  position: relative;
  text-align: center;
  background: var(--fv-surface);
  border: 1px solid rgba(212, 169, 78, 0.55);
  border-radius: var(--fv-radius);
  padding: 34px 20px 26px;
  margin: 34px 0 28px;
  box-shadow: var(--fv-shadow-card);
}

.fv-offer-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fv-gradient-gold);
  color: #1a1305;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 16px;
  margin: 0;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(212, 169, 78, 0.35);
}

.fv-offer-includes {
  list-style: none;
  margin: 4px auto 20px;
  padding: 0;
  max-width: 30em;
  text-align: left;
}

.fv-offer-includes li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 0.97rem;
}

.fv-offer-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212, 169, 78, 0.18);
  color: var(--fv-gold-text);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.fv-offer-includes strong {
  color: var(--fv-title);
}

.fv-offer-expired {
  color: var(--fv-muted);
  font-size: 0.95rem;
  margin: 0 0 10px;
}

.fv-price {
  margin: 0 0 8px;
}

.fv-price-barred {
  color: var(--fv-muted);
  text-decoration: line-through;
  font-size: 1.3rem;
  margin-right: 12px;
  vertical-align: 8px;
}

.fv-price-now {
  color: var(--fv-gold-text);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fv-price-tax {
  display: block;
  color: var(--fv-muted);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 2px;
}

/* Ancrage marche cite (conforme : reference externe, datee et sourcee,
   pas un faux prix barre maison) */
.fv-anchor {
  color: var(--fv-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 32em;
  margin: 0 auto 10px;
}

.fv-anchor strong {
  color: var(--fv-title);
  font-weight: 700;
}

.fv-anchor-src {
  color: var(--fv-muted);
  font-size: 0.76rem;
  margin-left: 5px;
  white-space: nowrap;
}

/* Compte a rebours des 24h : element fort, affiche en grand */
.fv-countdown {
  margin: 6px 0 20px;
  text-align: center;
}

.fv-countdown-label {
  color: var(--fv-title);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

.fv-countdown-clock {
  display: inline-block;
  background: var(--fv-bg-dark);
  border-radius: 14px;
  padding: 14px 26px;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.22);
}

.fv-countdown-clock .fv-countdown-value {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

.fv-countdown-sub {
  color: var(--fv-muted);
  font-size: 0.82rem;
  margin: 10px 0 0;
}

/* Page video expiree (fenetre de 24h ecoulee) */
.fv-expired {
  text-align: center;
  padding: 50px 10px 30px;
}

.fv-expired h1 {
  font-size: 1.5rem;
  margin: 0 0 16px;
}

.fv-expired p {
  color: var(--fv-muted);
  max-width: 34em;
  margin: 0 auto 12px;
}

.fv-expired strong {
  color: var(--fv-title);
}

/* --- CTA ------------------------------------------------------------------ */

.fv-cta {
  display: inline-block;
  background: var(--fv-gradient-gold);
  color: #1a1305;
  font-weight: 800;
  font-size: 1.08rem;
  padding: 17px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(184, 146, 63, 0.4);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.fv-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(184, 146, 63, 0.5);
  text-decoration: none;
}

.fv-cta:active {
  transform: scale(0.98);
}

.fv-cta-small {
  font-size: 0.95rem;
  padding: 12px 22px;
  box-shadow: 0 4px 14px rgba(184, 146, 63, 0.35);
}

.fv-cta-secondary {
  background: transparent;
  border: 1px solid var(--fv-accent-dark);
  color: var(--fv-gold-text);
  margin-left: 0;
  margin-top: 10px;
  box-shadow: none;
}

.fv-cta-reassurance {
  color: var(--fv-muted);
  font-size: 0.83rem;
  margin: 14px 0 0;
}

.fv-offer-why {
  color: var(--fv-muted);
  font-size: 0.88rem;
  margin: 18px auto 0;
  max-width: 36em;
  border-top: 1px solid var(--fv-border);
  padding-top: 16px;
}

/* --- Sections communes ---------------------------------------------------- */

.fv-proof, .fv-steps, .fv-uses, .fv-faq, .fv-final {
  margin: 40px 0;
}

.fv-proof h2, .fv-steps h2, .fv-uses h2, .fv-faq h2, .fv-final h2 {
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

/* --- Preuve : ses avis ------------------------------------------------------ */

.fv-proof {
  text-align: center;
}

.fv-proof p {
  color: var(--fv-text);
  max-width: 36em;
  margin: 0 auto;
  font-size: 0.98rem;
}

.fv-proof strong {
  color: var(--fv-title);
}

.fv-proof-rating {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 14px !important;
}

.fv-proof-score {
  color: var(--fv-title);
  font-size: 1.4rem;
  font-weight: 800;
}

.fv-proof-count {
  color: var(--fv-muted);
  font-size: 0.92rem;
}

/* --- Etapes ----------------------------------------------------------------- */

.fv-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.fv-step {
  background: var(--fv-surface);
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius);
  padding: 20px 18px;
  box-shadow: var(--fv-shadow-card);
}

.fv-step-num {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--fv-gradient-gold);
  color: #1a1305;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 30px;
  text-align: center;
  margin-bottom: 10px;
}

.fv-step h3 {
  font-size: 1.02rem;
  margin: 0 0 6px;
  font-weight: 700;
}

.fv-step p {
  color: var(--fv-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* --- Usages ------------------------------------------------------------------ */

.fv-uses {
  text-align: center;
}

.fv-uses-sub {
  color: var(--fv-muted);
  font-size: 0.95rem;
  max-width: 34em;
  margin: 0 auto 16px;
}

.fv-uses-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.fv-uses-chips li {
  background: var(--fv-surface);
  border: 1px solid var(--fv-border);
  border-radius: 999px;
  color: var(--fv-text);
  font-size: 0.88rem;
  padding: 8px 16px;
}

/* --- Monteur ------------------------------------------------------------------ */

.fv-monteur {
  text-align: center;
  margin: 40px 0;
}

.fv-monteur-photo {
  border-radius: var(--fv-radius);
  margin: 0 auto 12px;
  max-width: 280px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.22);
}

.fv-monteur-text {
  color: var(--fv-muted);
  font-size: 0.95rem;
  max-width: 26em;
  margin: 0 auto;
}

/* --- FAQ ------------------------------------------------------------------------ */

.fv-faq-item {
  background: var(--fv-surface);
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.fv-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 15px 42px 15px 18px;
  font-weight: 600;
  color: var(--fv-title);
  font-size: 0.97rem;
  position: relative;
  user-select: none;
}

.fv-faq-item summary::-webkit-details-marker {
  display: none;
}

.fv-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fv-gold-text);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.15s ease;
}

.fv-faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.fv-faq-item p {
  color: var(--fv-muted);
  font-size: 0.93rem;
  margin: 0;
  padding: 0 18px 16px;
}

/* --- CTA final --------------------------------------------------------------------- */

.fv-final {
  text-align: center;
  background: var(--fv-surface);
  border: 1px solid rgba(212, 169, 78, 0.55);
  border-radius: var(--fv-radius);
  padding: 30px 20px;
  box-shadow: var(--fv-shadow-card);
}

.fv-final-sub {
  color: var(--fv-muted);
  font-size: 0.95rem;
  max-width: 32em;
  margin: 0 auto 20px;
}

/* --- Sticky bar ---------------------------------------------------------------------- */

body.fv-landing {
  padding-bottom: 86px;
}

.fv-stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--fv-border);
  box-shadow: 0 -6px 20px rgba(17, 24, 39, 0.08);
  transform: translateY(110%);
  transition: transform 0.25s ease;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
}

.fv-stickybar-visible {
  transform: translateY(0);
}

.fv-stickybar-inner {
  max-width: var(--fv-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fv-stickybar-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.fv-stickybar-now {
  color: var(--fv-gold-text);
  font-size: 1.25rem;
  font-weight: 800;
  white-space: nowrap;
}

.fv-stickybar-old {
  color: var(--fv-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
  white-space: nowrap;
}

.fv-stickybar-timer {
  color: var(--fv-muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.fv-stickybar .fv-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Page expiree (24h ecoulees) ------------------------------------------ */

.fv-expired {
  text-align: center;
  padding: 40px 8px 20px;
  max-width: 34em;
  margin: 0 auto;
}

.fv-expired h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.fv-expired p {
  color: var(--fv-muted);
  margin: 0 0 12px;
}

.fv-expired strong {
  color: var(--fv-title);
}

/* --- Page index (facade) ---------------------------------------------------------------- */

.fv-index-main {
  text-align: center;
  padding-top: 40px;
}

.fv-index-contact {
  color: var(--fv-muted);
}

/* --- Footer ------------------------------------------------------------ */

.fv-footer {
  max-width: var(--fv-max-width);
  margin: 30px auto 0;
  padding: 20px 16px 30px;
  border-top: 1px solid var(--fv-border);
  text-align: center;
}

.fv-footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.fv-footer nav a {
  color: var(--fv-muted);
  font-size: 0.85rem;
}

.fv-footer-copy {
  color: var(--fv-muted);
  font-size: 0.78rem;
  margin: 0;
}

/* --- Checkout ------------------------------------------------------------ */

.fv-checkout-main h1 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.fv-checkout-company {
  color: var(--fv-muted);
  margin-top: 0;
}

.fv-checkout-form {
  background: var(--fv-surface);
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius);
  padding: 18px;
  margin-top: 16px;
  box-shadow: var(--fv-shadow-card);
}

.fv-checkout-line {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--fv-border);
  margin-bottom: 14px;
}

.fv-checkout-price {
  color: var(--fv-gold-text);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 12px;
}

.fv-checkout-note {
  color: var(--fv-muted);
  font-size: 0.88rem;
}

.fv-checkout-upsell {
  margin: 10px 0;
  font-size: 0.95rem;
}

.fv-checkout-upsell label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fv-checkout-upsell input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--fv-accent-dark);
  width: 18px;
  height: 18px;
}

.fv-checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--fv-border);
  margin-top: 16px;
  padding-top: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fv-title);
}

.fv-checkout-total-value {
  color: var(--fv-gold-text);
  font-size: 1.45rem;
  font-weight: 800;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.fv-checkout-total-note {
  margin-top: 4px;
}

.fv-checkout-vat {
  margin: 18px 0;
}

.fv-checkout-vat label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--fv-muted);
}

.fv-checkout-vat input[type="text"] {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: var(--fv-white);
  color: var(--fv-title);
  font-size: 1rem;
}

.fv-checkout-help {
  color: var(--fv-muted);
  font-size: 0.8rem;
  margin: 6px 0 0;
}

.fv-checkout-form .fv-cta {
  width: 100%;
  text-align: center;
  margin-top: 6px;
}

.fv-checkout-reassurance {
  color: var(--fv-muted);
  font-size: 0.82rem;
  text-align: center;
  margin: 12px 0 0;
}

.fv-checkout-back {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
}

.fv-error {
  background: #fdeeee;
  border: 1px solid #e0a1a1;
  color: #a52a2a;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* --- Merci -------------------------------------------------------------- */

.fv-merci-head {
  text-align: center;
  padding: 10px 0 4px;
}

.fv-merci-check {
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--fv-gradient-gold);
  color: #1a1305;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 54px;
  text-align: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(184, 146, 63, 0.4);
}

.fv-merci-main h1 {
  font-size: 1.6rem;
  margin: 0 0 10px;
  font-weight: 800;
}

.fv-merci-intro {
  color: var(--fv-muted);
  max-width: 34em;
  margin: 0 auto;
}

.fv-merci-wait {
  font-size: 1.6rem;
  margin: 18px 0 0;
}

.fv-downloads {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 8px;
  align-items: center;
}

.fv-downloads .fv-cta {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.fv-merci-tip {
  color: var(--fv-muted);
  font-size: 0.85rem;
  text-align: center;
  margin: 0 0 8px;
}

.fv-upsell-remaining {
  background: var(--fv-surface);
  border: 1px solid rgba(212, 169, 78, 0.55);
  border-radius: var(--fv-radius);
  padding: 22px 18px;
  margin-top: 28px;
  box-shadow: var(--fv-shadow-card);
}

.fv-upsell-remaining h2 {
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 8px;
}

.fv-upsell-sub {
  color: var(--fv-muted);
  font-size: 0.92rem;
  text-align: center;
  max-width: 32em;
  margin: 0 auto 18px;
}

.fv-upsell-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--fv-bg-soft);
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius);
  padding: 14px;
  margin: 0 0 10px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.fv-upsell-card:hover {
  border-color: rgba(212, 169, 78, 0.7);
}

.fv-upsell-card:has(input:checked) {
  border-color: var(--fv-accent-dark);
  background: rgba(212, 169, 78, 0.08);
}

.fv-upsell-card input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--fv-accent-dark);
  width: 18px;
  height: 18px;
}

.fv-upsell-card-body {
  display: block;
}

.fv-upsell-card-title {
  display: block;
  color: var(--fv-title);
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.fv-upsell-card-price {
  color: var(--fv-gold-text);
  font-weight: 800;
  margin-left: 6px;
  white-space: nowrap;
}

.fv-upsell-card-desc {
  display: block;
  color: var(--fv-muted);
  font-size: 0.88rem;
}

.fv-upsell-remaining .fv-cta {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.fv-upsell-remaining .fv-cta-reassurance {
  text-align: center;
}

.fv-merci-next {
  margin: 32px 0;
}

.fv-merci-next h2 {
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 14px;
}

.fv-merci-next-list {
  margin: 0;
  padding-left: 22px;
  max-width: 36em;
}

.fv-merci-next-list li {
  color: var(--fv-muted);
  font-size: 0.93rem;
  margin-bottom: 10px;
}

.fv-merci-next-list strong {
  color: var(--fv-title);
}

/* --- Pages legales -------------------------------------------------- */

.fv-legal-main h1 {
  font-size: 1.5rem;
}

.fv-legal-main h2 {
  font-size: 1.1rem;
  color: var(--fv-gold-text);
  margin-top: 28px;
}

.fv-legal-main p, .fv-legal-main li {
  font-size: 0.95rem;
  color: var(--fv-text);
}

.fv-legal-date {
  color: var(--fv-muted);
  font-size: 0.85rem;
}

/* --- 404 / login ------------------------------------------------------- */

.fv-notfound, .fv-admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.fv-notfound-box, .fv-login-box {
  text-align: center;
  padding: 30px;
}

.fv-login-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  max-width: 280px;
}

.fv-login-box input {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: var(--fv-white);
  color: var(--fv-title);
}

/* --- Stats -------------------------------------------------------------- */

.fv-stats-main {
  max-width: 960px;
}

.fv-stats-main table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.fv-stats-main th, .fv-stats-main td {
  border-bottom: 1px solid var(--fv-border);
  padding: 8px 10px;
  text-align: left;
  white-space: nowrap;
}

.fv-stats-main th {
  color: var(--fv-gold-text);
}

.fv-table-scroll {
  overflow-x: auto;
}

/* --- Responsive : au-dela du mobile ------------------------------------ */

@media (min-width: 640px) {
  .fv-hero h1 {
    font-size: 2.35rem;
  }

  .fv-hero-sub {
    font-size: 1.08rem;
  }

  .fv-price-now {
    font-size: 3rem;
  }

  .fv-steps-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .fv-proof h2, .fv-steps h2, .fv-uses h2, .fv-faq h2, .fv-final h2 {
    font-size: 1.55rem;
  }

  .fv-offer {
    padding: 38px 34px 30px;
  }
}
