/* =================================================================
   PAGE D'AVIS — INCUBATEUR ECOMMERCE
   Direction artistique : charte « Stratégie Escape »
   (navy + or + violet, fonds crème, titres Sora / texte Inter)
================================================================= */
:root {
  /* Charte Escape */
  --ink: #010030;             /* Navy — titres, UI dominante */
  --accent: #9154FF;          /* Violet — accents, surlignages, dégradés */
  --accent-dark: #7a3df0;
  --accent-soft: #EFE8FF;     /* Violet très clair (fonds doux) */
  --gold: #FFC955;            /* Or — CTA principal (texte navy dessus) */
  --gold-dark: #F0B83A;
  --green: #1E9E2B;           /* Vert lisible — validation */
  --glow: #00FF15;            /* Vert électrique — points « live » uniquement */
  --pink: #F472B6;            /* Badge promo */
  --star: #FFC955;            /* Étoiles */

  --text: #0A0A0A;            /* Texte courant */
  --ink-soft: #5C5A55;        /* Texte secondaire */
  --line: #E4DFD2;            /* Bordures */
  --bg: #FBFAF6;              /* Fond page (quasi blanc chaud) */
  --bg-2: #FBFAF6;            /* Cartes */
  --bg-alt: #F4F1EA;          /* Fond crème — sections alternées */

  --radius: 16px;
  --shadow: 0 4px 24px rgba(1, 0, 48, 0.06);
  --shadow-lg: 0 14px 44px rgba(1, 0, 48, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name { font-family: 'Sora', 'Inter', sans-serif; color: var(--ink); }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }
.muted { color: var(--ink-soft); font-size: 0.85rem; }
.accent { color: var(--accent); }
.stars { color: var(--star); letter-spacing: 1px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none; border: 1.5px solid transparent; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 6px 20px rgba(255,201,85,.45); }
.btn-primary:hover { background: var(--gold-dark); box-shadow: 0 8px 26px rgba(255,201,85,.55); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-lg { padding: 18px 38px; font-size: 1.1rem; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 68px; }
.brand-name { font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 46px; width: auto; display: block; }
.header-rating { display: flex; align-items: center; gap: 8px; margin-left: auto; margin-right: 8px; font-size: .9rem; }
.header-rating .stars { font-size: .95rem; }
.header-rating-text a { color: var(--accent); }
@media (max-width: 720px) { .header-rating { display: none; } }

/* ===================== HERO ===================== */
.hero { padding: 64px 0 56px; background: radial-gradient(120% 120% at 100% 0%, var(--accent-soft) 0%, #fff 55%); }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.badge-verified {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: .85rem; font-weight: 600; box-shadow: var(--shadow);
}
.dot-green { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(30,158,43,.18); }
.hero-title { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.1; letter-spacing: -.03em; margin: 22px 0 18px; font-weight: 800; }
.hero-title strong { color: var(--ink); }
.hero-subtitle { font-size: 1.12rem; color: var(--ink-soft); max-width: 540px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.rating-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); }
.rating-card-top { display: flex; align-items: center; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.big-score { font-size: 3.2rem; font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.big-score span { font-size: 1.3rem; color: var(--ink-soft); font-weight: 600; }
.big-score-meta { display: flex; flex-direction: column; gap: 4px; }
.big-score-meta .stars { font-size: 1.2rem; }
.rating-bars { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.rating-bars li { display: flex; align-items: center; gap: 10px; font-size: .85rem; }
.rb-label { width: 30px; color: var(--ink-soft); white-space: nowrap; }
.rb-track { flex: 1; height: 8px; background: #eceef5; border-radius: 99px; overflow: hidden; }
.rb-fill { display: block; height: 100%; background: var(--green); border-radius: 99px; }
.rb-pct { width: 34px; text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 44px 0 40px; }
}

/* Hero compact centré */
.hero-inner-center { text-align: center; max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero-inner-center .hero-title { margin: 0; }
.hero-subtitle.center { margin-left: auto; margin-right: auto; }
.hero-actions.center { justify-content: center; }

/* Boutons de navigation du hero */
.hero-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.hero-chip {
  display: inline-flex; align-items: center; padding: 11px 20px; border-radius: 999px;
  border: 1.5px solid var(--ink); background: #fff; font-weight: 600; font-size: .95rem; color: var(--ink);
  transition: background .15s, color .15s, border-color .15s, transform .15s, box-shadow .15s;
}
.hero-chip:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,201,85,.42); }

/* Bandeau chiffres clés (données réelles) */
.stats-band { background: var(--ink); color: #fff; padding: 38px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 7px; }
.stat-num { font-family: 'Sora', sans-serif; font-size: 2.3rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -.02em; }
.stat-label { font-size: .85rem; color: #c9c7e0; line-height: 1.35; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; } }

/* ===================== SECTIONS ===================== */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.kicker { display: inline-block; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.02em; line-height: 1.15; }
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 1.05rem; }
.section-head a { color: var(--accent); font-weight: 600; }
@media (max-width: 720px) { .section { padding: 52px 0; } }

/* ===================== TRUSTPILOT WIDGET ===================== */
.trustpilot-widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 8px; box-shadow: var(--shadow); }

/* Bloc résumé Trustpilot (données réelles) */
.tp-summary { max-width: 620px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 34px 32px; text-align: center; }
.tp-summary-main { display: flex; align-items: center; justify-content: center; gap: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px; flex-wrap: wrap; }
.tp-score { font-family: 'Sora', sans-serif; font-size: 3.4rem; font-weight: 900; line-height: 1; color: var(--ink); letter-spacing: -.04em; }
.tp-score span { font-size: 1.3rem; color: var(--ink-soft); font-weight: 600; }
.tp-score-meta { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; text-align: left; }
.tp-stars { color: #00b67a; font-size: 1.4rem; letter-spacing: 2px; }
.tp-excellent { font-size: 1.15rem; color: var(--ink); }
.tp-bars { list-style: none; display: flex; flex-direction: column; gap: 9px; max-width: 440px; margin: 0 auto 26px; }
.tp-bars li { display: flex; align-items: center; gap: 12px; font-size: .85rem; }
.tp-bl { width: 32px; color: var(--ink-soft); text-align: left; white-space: nowrap; }
.tp-bt { flex: 1; height: 9px; background: #edeef2; border-radius: 99px; overflow: hidden; }
.tp-bf { display: block; height: 100%; background: #00b67a; border-radius: 99px; min-width: 2px; }
.tp-bc { width: 38px; text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.tp-cta { margin-top: 4px; }

/* ===================== VIDEOS ===================== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.video-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
/* ratio 16:9 responsive */
.video-frame { position: relative; width: 100%; padding-top: 56.25%; background: #0e0f15; }
.video-frame iframe,
.video-frame video,
.video-frame > div:not(.video-placeholder),
.video-frame .video-placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-placeholder {
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: #aeb3c7; font-weight: 600; font-size: .95rem; padding: 20px;
  background: repeating-linear-gradient(45deg, #15171f, #15171f 12px, #181a24 12px, #181a24 24px);
}
/* Conteneur d'un embed Vidalytics (gère son propre ratio 16:9) */
.video-embed { position: relative; width: 100%; background: #0e0f15; overflow: hidden; line-height: 0; }
.video-embed iframe { border: 0; }
.video-card figcaption { padding: 16px 18px; font-size: .95rem; line-height: 1.4; display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.video-card figcaption .vc-name { font-weight: 700; font-size: 1rem; }
.video-card figcaption .vc-desc { color: var(--ink-soft); font-size: .9rem; }
.video-card figcaption .result {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  background: rgba(30,158,43,.12); color: var(--green);
  font-weight: 700; font-size: .85rem;
  padding: 4px 11px; border-radius: 999px; border: 1px solid rgba(30,158,43,.28);
}
.video-card figcaption .result::before { content: "\2191"; font-weight: 800; }

.video-grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); max-width: 860px; margin: 0 auto; }

/* Vidéo unique mise en avant (16:9, centrée) */
.video-featured { max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-featured .video-frame { position: relative; width: 100%; padding-top: 56.25%; background: #0e0f15; }
.video-featured figcaption { padding: 16px 18px; font-size: .95rem; text-align: center; color: var(--ink-soft); }

/* Placeholder image (à remplacer par <img>) */
.img-placeholder {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: repeating-linear-gradient(45deg, #eef0f7, #eef0f7 14px, #e6e9f4 14px, #e6e9f4 28px);
  color: #9aa0b8; font-weight: 600; border-radius: var(--radius); padding: 24px; min-height: 220px;
  border: 1px dashed #cfd4e6;
}
.img-placeholder.tall { min-height: 420px; height: 100%; }
.img-placeholder.wide { min-height: 150px; }

/* ===================== GARANTIE AVOCAT ===================== */
.section-guarantee { padding: 72px 0; background: linear-gradient(180deg, #fbfaff 0%, #fff 100%); }
.guarantee-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; margin-bottom: 40px; }
.guarantee-photo { position: relative; }
.guarantee-content { position: relative; }
.guarantee-content h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin: 8px 0 16px; letter-spacing: -.02em; }
.guarantee-content p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 26px; }
.guarantee-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--accent); color: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 10px 30px rgba(145,84,255,.45); border: 4px solid #fff;
}
/* Badge garantie HTML/CSS — identique à la page de confirmation */
.se-gar-badge { position:absolute; top:-12px; right:-12px; z-index:2; width:96px; height:96px; border-radius:50%; background:linear-gradient(150deg,#A36CFF 0%, #9154FF 52%, #7A3DF0 100%); color:#fff; border:3px solid #fff; box-shadow:0 10px 24px -8px rgba(145,84,255,.62), inset 0 0 0 1.5px rgba(255,255,255,.30); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:5px; }
.se-gar-top { font-family:'Sora',sans-serif; font-weight:700; font-size:.44rem; letter-spacing:.05em; text-transform:uppercase; line-height:1.16; opacity:.96; }
.se-gar-num { font-family:'Sora',sans-serif; font-weight:800; font-size:1.38rem; line-height:1; margin:2px 0 0; }
.se-gar-bot { font-family:'Sora',sans-serif; font-weight:700; font-size:.48rem; letter-spacing:.15em; text-transform:uppercase; }
@media (max-width: 600px) { .se-gar-badge { width:82px; height:82px; top:-9px; right:-9px; } .se-gar-top { font-size:.4rem; } .se-gar-num { font-size:1.2rem; } }
.guarantee-badge-num { font-size: 2rem; font-weight: 900; line-height: 1; }
.guarantee-badge-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; line-height: 1.1; }
.guarantee-video { margin-top: 8px; }

/* Titre garantie sur une seule ligne */
.section-head-guarantee { max-width: 960px; }
.section-head-guarantee h2 { white-space: nowrap; }
@media (max-width: 600px) { .section-head-guarantee h2 { white-space: normal; } }

/* Extrait vidéo : texte plus long à gauche, vidéo à droite, bouton dessous */
.avocate-extract { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; margin-top: 48px; }
.avocate-extract-text { text-align: left; }
.avocate-quote { color: var(--ink); font-size: 1.18rem; line-height: 1.6; font-style: italic; }
.avocate-cite { margin-top: 16px; font-weight: 700; color: var(--ink); font-size: .95rem; font-style: normal; }
.avocate-extract-video .video-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.avocate-extract-cta { text-align: center; margin-top: 30px; }
@media (max-width: 820px) {
  .avocate-extract { grid-template-columns: 1fr; gap: 22px; margin-top: 32px; }
  .avocate-extract-text { text-align: center; }
}

.barreau-badge { display: flex; align-items: center; gap: 14px; margin: 0; padding: 12px 16px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.barreau-badge-lg { flex-direction: column; text-align: center; gap: 20px; padding: 28px 20px; box-shadow: var(--shadow-lg); }
.barreau-badge-lg img { width: 100%; max-width: 100%; height: auto; }
.barreau-badge-lg span { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.45; }
.barreau-badge-lg strong { color: var(--ink); }
.barreau-badge img { height: 46px; width: auto; flex-shrink: 0; }
.barreau-badge span { font-size: .82rem; color: var(--ink-soft); font-weight: 600; line-height: 1.3; }

/* Bouton-lien (dans la légende de l'extrait) */
.link-btn { background: none; border: 0; padding: 0; margin-left: 4px; color: var(--accent); font-weight: 700; font-family: inherit; font-size: inherit; cursor: pointer; }
.link-btn:hover { text-decoration: underline; }

/* Modale vidéo complète */
.video-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .22s ease; }
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal-overlay { position: absolute; inset: 0; background: rgba(1,0,48,.72); backdrop-filter: blur(3px); }
.video-modal-box { position: relative; z-index: 1; width: 100%; max-width: 900px; background: #0e0f15; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-modal-close { position: absolute; top: -42px; right: 0; z-index: 2; background: none; border: 0; color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; }
.video-modal-cap { padding: 14px 18px; font-size: .9rem; color: #c9c7e0; text-align: center; margin: 0; }
@media (max-width: 720px) { .video-modal-close { top: -38px; } }
@media (max-width: 820px) {
  .guarantee-grid { grid-template-columns: 1fr; gap: 28px; }
  .guarantee-badge { top: -28px; width: 90px; height: 90px; }
  .guarantee-badge-num { font-size: 1.6rem; }
}

/* ===================== BADGES / CERTIFICATIONS ===================== */
.badges-row { display: grid; grid-template-columns: 1fr 1fr 2fr 1fr 1fr; gap: 18px; max-width: 1060px; margin: 0 auto; align-items: stretch; }
.badges-row .badge-cert:nth-child(3) .badge-logo img { max-height: 100px; }
@media (max-width: 720px) { .badges-row { grid-template-columns: repeat(2, 1fr); } }
.badge-cert {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; box-shadow: var(--shadow); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.badge-cert:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.badge-img {
  width: 96px; height: 96px; border-radius: 50%; background: var(--accent-soft);
  color: var(--accent); font-weight: 800; font-size: .8rem; line-height: 1.2;
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 8px;
}
.badge-logo { height: 82px; display: flex; align-items: center; justify-content: center; width: 100%; }
.badge-logo img { max-height: 78px; max-width: 100%; width: auto; object-fit: contain; }
.badge-name { font-size: .9rem; font-weight: 600; color: var(--ink); }

/* ===================== INSTRUCTEUR ===================== */
.instructor-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.instructor-content h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: 6px 0 16px; letter-spacing: -.02em; }
.instructor-content p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 22px; }
.pillars { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 0 0 28px; }
.pillars li { position: relative; padding-left: 30px; font-size: 1rem; color: var(--ink); line-height: 1.4; }
.pillars li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: .75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.proof-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.proof-shots.proof-shots-single { grid-template-columns: 1fr; max-width: 460px; }
.proof-shots .img-placeholder { min-height: 130px; }
.proof-img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.portrait-img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
@media (max-width: 820px) {
  .instructor-grid { grid-template-columns: 1fr; gap: 28px; }
  .proof-shots { grid-template-columns: 1fr; }
}

/* ===================== CTA BAND (intermédiaire) ===================== */
.cta-band { background: var(--accent-soft); padding: 56px 0; }
.cta-band-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.cta-band-inner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.02em; }

/* ===================== REVIEW CARDS ===================== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; }
.review-stars { display: flex; gap: 3px; }
.review-stars .tp-star {
  width: 22px; height: 22px; border-radius: 2px;
  background: #00b67a; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; line-height: 1;
}
.review-text { font-size: .98rem; color: #2a2d3a; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-author strong { display: block; font-size: .92rem; }

/* Mur d'avis (masonry en colonnes) */
.reviews-wall { columns: 3 330px; column-gap: 22px; }
.reviews-wall .review-card { display: block; width: 100%; break-inside: avoid; margin: 0 0 22px; }
#reviews-sentinel { height: 1px; }
.reviews-foot { text-align: center; margin-top: 34px; }
.reviews-foot a { color: var(--accent); font-weight: 700; }
@media (max-width: 720px) { .reviews-wall { columns: 1; } }

/* ===================== LOGOS ===================== */
.logos-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px 56px; }
.logo-item {
  font-weight: 800; color: #b6bacb; letter-spacing: .04em; font-size: 1.1rem;
  filter: grayscale(1); opacity: .8; transition: opacity .2s, filter .2s;
  display: flex; align-items: center; min-height: 48px;
}
.logo-item img { max-height: 44px; width: auto; }
.logo-item:hover { opacity: 1; filter: grayscale(0); }

/* ===================== FAQ ===================== */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--accent); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--ink-soft); }

/* ===================== CTA FINAL ===================== */
.cta-final { text-align: center; padding: 84px 0; background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 140%); color: #fff; }
.cta-final h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -.02em; }
.cta-final p { font-size: 1.15rem; opacity: .92; margin: 16px 0 32px; }
.cta-reassurance { font-size: .9rem; opacity: .85; margin-top: 18px; margin-bottom: 0; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--ink); color: #c9c7e0; padding: 56px 0 36px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; }
.footer-transparency h3 { color: #fff; font-size: 1.1rem; margin-bottom: 12px; }
.footer-transparency p { font-size: .92rem; color: #9b99bf; max-width: 520px; }
.footer-meta { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-meta .brand-name { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: #c9c7e0; font-size: .92rem; }
.footer-links a:hover { color: var(--gold); }
.footer-meta small { color: #6f6d94; }
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }

/* Bouton revenir en haut */
#back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 50px; height: 50px; border-radius: 50%; border: none;
  background: var(--gold); color: var(--ink); font-size: 1.5rem; font-weight: 800; line-height: 1; cursor: pointer;
  box-shadow: 0 8px 22px rgba(255,201,85,.55);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, background .15s ease;
}
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--gold-dark); }
@media (max-width: 720px) { #back-to-top { bottom: 18px; right: 18px; width: 46px; height: 46px; } }
