/* ─── FWO Quiz Frontend ──────────────────────────────────────── */
.fwo-quiz-wrap {
  --fwo-primary: #1A3C5E;
  --fwo-accent:  #E8A020;
  max-width: 680px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}
.fwo-quiz-intro {
  background: #f8f9fa;
  border-left: 4px solid var(--fwo-accent);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-bottom: 24px;
}

/* ── Conditions de réussite ──────────────────────────────────── */
.fwo-quiz-conditions {
  margin: 14px 0 12px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 14px 16px;
}
.fwo-condition-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #aaa;
  font-weight: 600;
  margin-bottom: 10px;
}
.fwo-condition-levels {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fwo-condition-level {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  min-width: 160px;
}
.fwo-condition-specialist { background: #EEF4FF; border: 1px solid #C7D9F8; }
.fwo-condition-expert     { background: #FFF5EC; border: 1px solid #F9D5B0; }
.fwo-condition-icon { font-size: 18px; flex-shrink: 0; }
.fwo-condition-score {
  font-size: 20px;
  font-weight: 800;
  color: var(--fwo-primary);
  flex-shrink: 0;
}
.fwo-condition-specialist .fwo-condition-score { color: #1565C0; }
.fwo-condition-expert .fwo-condition-score     { color: #E65100; }
.fwo-condition-label {
  font-size: 12px;
  color: #555;
  font-weight: 500;
  line-height: 1.3;
}
.fwo-condition-single {
  font-size: 14px;
  color: #444;
}
.fwo-condition-single strong { color: var(--fwo-primary); }

/* ── Critères quiz — 3 items sur une ligne ───────────────────── */
.fwo-quiz-meta-inline {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
}
.fwo-quiz-meta-inline li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 8px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
  border-right: 1px solid #f0f0f0;
  background: none;
  border-radius: 0;
  border-top: none;
  border-bottom: none;
  border-left: none;
}
.fwo-quiz-meta-inline li:last-child { border-right: none; }
.fwo-quiz-meta-inline li strong { color: var(--fwo-primary); font-weight: 700; }

.fwo-quiz-step { }
.fwo-hidden { display: none !important; }

/* ── Formulaire étape 1 ──────────────────────────────────────── */
.fwo-quiz-step h3 {
  font-size: 18px;
  color: var(--fwo-primary);
  margin: 0 0 16px;
}
.fwo-field {
  margin-bottom: 14px;
}
.fwo-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
}
.fwo-field input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 7px;
  font-size: 14px;
  transition: border-color .2s;
  outline: none;
}
.fwo-field input:focus { border-color: var(--fwo-primary); }

/* Textes de réassurance — discrets */
.fwo-field-hint {
  font-size: 11px;
  color: #aaa;
  margin: 4px 0 0;
  line-height: 1.5;
  font-style: italic;
}

/* Timer */
.fwo-timer {
  background: var(--fwo-primary);
  color: #fff;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.fwo-timer.fwo-timer-warning { background: #e65100; }

/* Progress */
.fwo-progress-bar {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  margin-bottom: 6px;
  overflow: hidden;
}
.fwo-progress-fill {
  height: 100%;
  background: var(--fwo-accent);
  border-radius: 3px;
  transition: width .3s ease;
}
.fwo-progress-label {
  text-align: right;
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
}

/* Question block */
.fwo-question-block {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  padding: 24px;
  margin-bottom: 16px;
  animation: fwoFadeIn .25s ease;
}
@keyframes fwoFadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }

.fwo-question-number {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--fwo-accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.fwo-question-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--fwo-primary);
  line-height: 1.5;
  margin-bottom: 20px;
}
.fwo-answers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.fwo-answer-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 9px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-size: 14px;
  line-height: 1.4;
}
.fwo-answer-label:hover { border-color: var(--fwo-primary); background: #f5f8ff; }
.fwo-answer-label input[type="radio"] { margin-top: 2px; accent-color: var(--fwo-primary); flex-shrink: 0; }
.fwo-answer-label.fwo-selected { border-color: var(--fwo-primary); background: var(--fwo-primary)0f; }
.fwo-answer-label.fwo-correct  { border-color: #4caf50; background: #e8f5e9; }
.fwo-answer-label.fwo-wrong    { border-color: #f44336; background: #fce4ec; }

/* Navigation buttons */
.fwo-question-nav {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.fwo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s, transform .1s;
}
.fwo-btn:hover { opacity: .88; transform: translateY(-1px); }
.fwo-btn:active { transform: none; }
.fwo-btn-start  { background: var(--fwo-primary); color: #fff; margin-top: 8px; }
.fwo-btn-prev   { background: #fff !important; color: #028D6A !important; border: 2px solid #028D6A !important; }
.fwo-btn-next   { background: var(--fwo-primary); color: #fff; margin-left: auto; }
.fwo-btn-submit { background: var(--fwo-accent); color: #fff; margin-left: auto; }
.fwo-retry-cta  { background: var(--fwo-primary); color: #fff; font-weight: 700; }
.fwo-retry-cta:hover { opacity: .88; }
.fwo-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* Type badge */
.fwo-q-type-badge {
  display: inline-block;
  font-size: 10px;
  background: var(--fwo-accent)22;
  color: var(--fwo-accent);
  border: 1px solid var(--fwo-accent)44;
  border-radius: 10px;
  padding: 2px 8px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
/* Champs libres */
.fwo-free-field { margin-bottom: 20px; }
.fwo-text-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 9px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
}
.fwo-text-input:focus {
  border-color: var(--fwo-primary);
  box-shadow: 0 0 0 3px var(--fwo-primary)18;
}
textarea.fwo-text-input { min-height: 100px; }
.fwo-linkedin-hint {
  font-size: 12px;
  color: #0A66C2;
  background: #e8f0fb;
  padding: 7px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-weight: 500;
}
/* Erreur result */
.fwo-result-error {
  background: #fce4ec;
  border-left: 4px solid #f44336;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  color: #c62828;
  font-size: 14px;
}
.fwo-spinner {
  width: 40px; height: 40px;
  border: 4px solid #e0e0e0;
  border-top-color: var(--fwo-primary);
  border-radius: 50%;
  animation: fwoSpin .7s linear infinite;
  margin: 0 auto 16px;
}
@keyframes fwoSpin { to { transform: rotate(360deg); } }

/* Result */
.fwo-result-wrap { animation: fwoFadeIn .35s ease; }
.fwo-result-icon { font-size: 56px; text-align: center; margin-bottom: 12px; }
.fwo-result-score {
  text-align: center;
  font-size: 52px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 4px;
}
.fwo-result-passed .fwo-result-score { color: #2e7d32; }
.fwo-result-failed .fwo-result-score { color: #c62828; }
.fwo-result-label {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.fwo-result-detail {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
}
.fwo-result-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  padding: 28px 32px;
  margin-bottom: 16px;
}
.fwo-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.fwo-result-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.fwo-result-cert-url {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  color: #888;
  word-break: break-all;
  text-align: center;
  margin-top: 12px;
}
.fwo-retry-msg {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  color: #7a5c00;
  margin-top: 16px;
}

/* ─── Image illustrative de question ──────────────────────────── */
.fwo-question-image {
  margin: 0 -24px 20px;
  position: relative;
  background: #f4f4f0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.fwo-question-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.fwo-question-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: rgba(255,255,255,.9);
  font-size: 11px;
  padding: 18px 16px 10px;
  text-align: right;
  letter-spacing: .3px;
}
/* Quand la question-image est le premier enfant du block, coins ronds du haut */
.fwo-question-block:has(.fwo-question-image:first-child) {
  padding-top: 0;
  overflow: hidden;
}
/* Contexte / mise en situation */
.fwo-question-context {
  background: #f0f4ff;
  border-left: 4px solid var(--fwo-primary);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 13px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 16px;
}
.fwo-question-context strong { color: var(--fwo-primary); }


.fwo-q-type-badge {
  display: inline-block;
  font-size: 10px;
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffcc8033;
  border-radius: 10px;
  padding: 2px 8px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.fwo-free-field { margin-bottom: 20px; }
.fwo-text-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 9px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
}
.fwo-text-input:focus {
  border-color: var(--fwo-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--fwo-primary) 15%, transparent);
}
textarea.fwo-text-input { min-height: 110px; }
.fwo-linkedin-hint {
  font-size: 12px;
  color: #0A66C2;
  background: #e8f0fb;
  padding: 7px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-weight: 500;
}
.fwo-result-error {
  background: #fce4ec;
  border-left: 4px solid #f44336;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  color: #c62828;
  font-size: 14px;
}


/* ── Double niveau de certification ─────────────────────────────────── */
.fwo-result-level {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 700;
  margin: 8px 0 4px;
}
.fwo-level-specialist { background: #E3F2FD; color: #1565C0; }
.fwo-level-expert     { background: #FFF3E0; color: #E65100; }

/* ── Page de résultat enrichie ───────────────────────────────────────── */
.fwo-result-wrap {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}
.fwo-result-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(0,0,0,.10);
  padding: 32px 28px 28px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Hero score */
.fwo-result-hero {
  margin-bottom: 12px;
}
.fwo-result-icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 8px;
}
.fwo-result-score {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: #1A3C5E;
}
.fwo-result-passed .fwo-result-score { color: #1565C0; }
.fwo-result-failed .fwo-result-score { color: #546E7A; }
.fwo-score-unit {
  font-size: 32px;
  font-weight: 700;
  color: inherit;
  opacity: .6;
}

/* Headline / subline */
.fwo-result-headline {
  font-size: 20px;
  font-weight: 800;
  color: #1A3C5E;
  margin: 12px 0 6px;
}
.fwo-result-subline {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Barre de score */
.fwo-score-bar-wrap {
  margin: 0 0 20px;
}
.fwo-score-bar-track {
  position: relative;
  height: 10px;
  background: #e8e8e8;
  border-radius: 6px;
  overflow: visible;
}
.fwo-score-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1s ease;
}
.fwo-score-bar-marker {
  position: absolute;
  top: -4px;
  width: 2px;
  height: 18px;
  background: #333;
  opacity: .35;
  transform: translateX(-50%);
}
.fwo-marker-expert {
  background: #E65100;
  opacity: .5;
}
.fwo-score-bar-labels {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #aaa;
  margin-top: 5px;
}
.fwo-bar-label-mid {
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  color: #888;
}

/* Bloc pédagogique */
.fwo-result-insight {
  text-align: left;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 20px;
}
.fwo-insight-elite    { background: #FFF3E0; border-left: 4px solid #E65100; }
.fwo-insight-passed   { background: #E3F2FD; border-left: 4px solid #1565C0; }
.fwo-insight-close    { background: #FFFDE7; border-left: 4px solid #F9A825; }
.fwo-insight-mid      { background: #F3F4F6; border-left: 4px solid #78909C; }
.fwo-insight-low      { background: #F3F4F6; border-left: 4px solid #90A4AE; }

/* Bannière certificat */
.fwo-result-cert-banner {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: #2E7D32;
  font-weight: 600;
  margin-bottom: 18px;
}

/* CTA LinkedIn — élément central sur réussite */
.fwo-result-linkedin-cta {
  background: #F0F4FF;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
  text-align: center;
}
.fwo-linkedin-why {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  margin: 0 0 14px;
  text-align: left;
}
.fwo-btn-linkedin-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0A66C2;
  color: #fff !important;
  text-decoration: none !important;
  padding: 13px 24px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  transition: opacity .15s, transform .1s;
  width: 100%;
  justify-content: center;
}
.fwo-btn-linkedin-big:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* Boutons secondaires */
.fwo-result-actions-secondary {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.fwo-result-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: opacity .15s;
}
.fwo-result-btn:hover { opacity: .85; }
.fwo-btn-verify   { background: #E8F5E9; color: #2E7D32 !important; border: 1px solid #A5D6A7; }
.fwo-btn-download { background: #F3F4F6; color: #1A3C5E !important; border: 1px solid #ddd; }

/* URL de vérification */
.fwo-result-cert-url {
  font-size: 11px;
  color: #aaa;
  word-break: break-all;
  margin-top: 4px;
}
.fwo-result-cert-url a { color: #aaa; text-decoration: none; }
.fwo-result-cert-url a:hover { text-decoration: underline; }

/* Bloc retry */
.fwo-retry-block {
  background: #FFFDE7;
  border: 1px solid #FFE082;
  border-radius: 10px;
  padding: 18px 20px;
  text-align: left;
  margin-top: 4px;
}
.fwo-retry-attempts {
  font-size: 15px;
  font-weight: 700;
  color: #F57F17;
  margin-bottom: 8px;
}
.fwo-retry-encourage {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* Bloc plus de tentatives */
.fwo-no-retry-block {
  background: #F3F4F6;
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 14px;
  color: #555;
  text-align: left;
  line-height: 1.6;
}

/* ── Rating Stars ──────────────────────────────────────────────────────── */
.fwo-rating-stars { display:flex; gap:6px; align-items:center; flex-wrap:wrap; padding:8px 0; }
.fwo-rating-label { cursor:pointer; position:relative; }
.fwo-rating-input { position:absolute; opacity:0; width:0; height:0; }
.fwo-rating-star  { font-size:36px; color:#ddd; transition:color .15s, transform .1s; display:block; line-height:1; }
.fwo-rating-label:hover .fwo-rating-star,
.fwo-rating-label:hover ~ .fwo-rating-label .fwo-rating-star { color:#ddd; }
.fwo-rating-stars:hover .fwo-rating-label:hover .fwo-rating-star,
.fwo-rating-stars:hover .fwo-rating-label:hover ~ .fwo-rating-label .fwo-rating-star { color:#ddd; }

/* highlight up to hovered star */
.fwo-rating-stars { direction:ltr; }
.fwo-rating-label:hover .fwo-rating-star { color:#E8A020; transform:scale(1.15); }
.fwo-rating-input:checked + .fwo-rating-star { color:#E8A020; }

/* Use sibling trick: reverse stars for CSS-only hover chain */
.fwo-rating-stars .fwo-rating-label:hover ~ .fwo-rating-label .fwo-rating-star { color:#ddd !important; }

.fwo-rating-legend { display:flex; justify-content:space-between; font-size:11px; color:#aaa; width:100%; margin-top:4px; }
.fwo-sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* JS-enhanced hover via data attribute */
.fwo-rating-stars[data-hover] .fwo-rating-label .fwo-rating-star { color:#ddd; }
.fwo-rating-stars[data-hover="1"] .fwo-rating-label:nth-child(-n+1) .fwo-rating-star,
.fwo-rating-stars[data-hover="2"] .fwo-rating-label:nth-child(-n+2) .fwo-rating-star,
.fwo-rating-stars[data-hover="3"] .fwo-rating-label:nth-child(-n+3) .fwo-rating-star,
.fwo-rating-stars[data-hover="4"] .fwo-rating-label:nth-child(-n+4) .fwo-rating-star,
.fwo-rating-stars[data-hover="5"] .fwo-rating-label:nth-child(-n+5) .fwo-rating-star { color:#E8A020; }

/* ── Rating stars (questionnaire) ─────────────────────────────────────── */
.fwo-rating-group { display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin:8px 0; }
.fwo-rating-label { cursor:pointer;user-select:none; }
.fwo-rating-input { position:absolute;opacity:0;width:0;height:0; }
.fwo-rating-star  { display:inline-flex;align-items:center;justify-content:center;
  width:52px;height:52px;border-radius:10px;font-size:18px;font-weight:700;
  border:2px solid #e0e0e0;color:#aaa;background:#fafafa;
  transition:background .15s,border-color .15s,color .15s; }
.fwo-rating-input:checked ~ .fwo-rating-star,
.fwo-rating-label:hover .fwo-rating-star {
  background:#FFF0D4;border-color:#E8A020;color:#c68000; }
.fwo-rating-labels { display:flex;justify-content:space-between;width:100%;
  font-size:11px;color:#aaa;margin-top:4px; }

/* ── Échelle NPS 0-10 ─────────────────────────────────────────────────── */
.fwo-nps-group  { margin:8px 0; }
.fwo-nps-track  { display:flex;gap:6px;flex-wrap:nowrap;align-items:stretch; }
@media(max-width:480px){ .fwo-nps-track { gap:3px; } }
.fwo-nps-label  { flex:1;min-width:0;cursor:pointer;user-select:none; }
.fwo-nps-input  { position:absolute;opacity:0;width:0;height:0; }
.fwo-nps-btn    {
  display:flex;align-items:center;justify-content:center;
  height:48px;border-radius:8px;font-size:16px;font-weight:700;
  border:2px solid #e0e0e0;color:#999;background:#fafafa;
  transition:background .12s,border-color .12s,color .12s;
  width:100%;
}
.fwo-nps-input:checked + .fwo-nps-btn { border-color:var(--fwo-primary,#1A3C5E) !important;background:var(--fwo-primary,#1A3C5E) !important;color:#fff !important; }
.fwo-nps-label:hover .fwo-nps-btn    { border-color:var(--fwo-primary,#1A3C5E);color:var(--fwo-primary,#1A3C5E);background:#EEF4FF; }
/* Teintes neutres (pas de rouge/orange/vert) */
.fwo-nps-label:nth-child(-n+7) .fwo-nps-btn  { border-color:#ddd; color:#555; background:#f5f5f5; }
.fwo-nps-label:nth-child(n+8):nth-child(-n+9) .fwo-nps-btn { border-color:#ddd; color:#555; background:#f5f5f5; }
.fwo-nps-label:nth-child(n+10) .fwo-nps-btn  { border-color:#ddd; color:#555; background:#f5f5f5; }
.fwo-nps-label:nth-child(-n+7) .fwo-nps-input:checked + .fwo-nps-btn  { background:var(--fwo-primary,#1A3C5E) !important;border-color:var(--fwo-primary,#1A3C5E) !important;color:#fff !important; }
.fwo-nps-label:nth-child(n+8):nth-child(-n+9) .fwo-nps-input:checked + .fwo-nps-btn { background:var(--fwo-primary,#1A3C5E) !important;border-color:var(--fwo-primary,#1A3C5E) !important;color:#fff !important; }
.fwo-nps-label:nth-child(n+10) .fwo-nps-input:checked + .fwo-nps-btn  { background:var(--fwo-primary,#1A3C5E) !important;border-color:var(--fwo-primary,#1A3C5E) !important;color:#fff !important; }
.fwo-nps-legends { display:flex;justify-content:space-between;margin-top:6px;font-size:11px;color:#aaa;position:relative; }
.fwo-nps-legend--left   { text-align:left;flex:1; }
.fwo-nps-legend--center { text-align:center;flex:1; }
.fwo-nps-legend--right  { text-align:right;flex:1; }

/* ── Texte chaleureux résultat ────────────────────────────────────────── */
.fwo-result-warm-text {
  background: linear-gradient(135deg, #fff8e8 0%, #f0f7ff 100%);
  border: 1px solid #e8d5a3;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 0 0 16px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  text-align: center;
}
