.elementor-1834 .elementor-element.elementor-element-17005e1{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ef6a9a8 *//* =====================================================
   QUIZ ISO 9001:2015 — CSS SÉPARÉ
   Design assorti au site Securex
   Bugs corrigés : texte débordant + texte blanc au survol
   À coller dans : Elementor > CSS personnalisé (global)
   ===================================================== */

:root {
  --orange:        #e8793a;
  --orange-dark:   #d0632a;
  --orange-light:  #fff3ec;
  --blue:          #29a8d8;
  --blue-dark:     #1a87b3;
  --blue-light:    #e8f6fb;
  --bg:            #eef2f7;
  --card-bg:       #ffffff;
  --text-dark:     #1a1a2e;
  --text-mid:      #4a5568;
  --text-light:    #718096;
  --border:        #dde3ea;
  --correct:       #1d7a4f;
  --correct-bg:    #eaf7f1;
  --incorrect:     #c0392b;
  --incorrect-bg:  #fdf0ef;
  --shadow:        0 6px 28px rgba(26,60,94,0.10);
  --radius:        18px;
  --radius-sm:     10px;
  --transition:    0.22s ease;
  --font:          -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* ===== RESET SCOPÉ ===== */
.quiz-wrapper *, .quiz-wrapper *::before, .quiz-wrapper *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

/* ===== FOND GRILLE COMME LE SITE ===== */
.quiz-wrapper {
  font-family: var(--font);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(41,168,216,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,168,216,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.quiz-screen {
  width: 100%;
  max-width: 700px;
  animation: fadeUp 0.4s ease both;
}
.quiz-screen.hidden { display: none; }

/* ===== ÉCRAN D'ACCUEIL ===== */
.quiz-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--card-bg);
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(41,168,216,0.12);
}

.quiz-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.quiz-title .accent { color: var(--orange); }

.quiz-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.quiz-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.meta-pill {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* ===== BOUTON ORANGE ARRONDI ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(232,121,58,0.35);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,121,58,0.40);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.hidden { display: none; }

/* ===== PROGRESSION ===== */
.quiz-header { margin-bottom: 16px; }
.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.progress-label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); }
.score-label    { font-size: 0.82rem; font-weight: 800; color: var(--orange); }

.progress-bar-track {
  width: 100%;
  height: 7px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, #f5a263 100%);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ===== CARTE QUESTION ===== */
.question-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
  border: 1.5px solid var(--border);
}

.question-number {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.question-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 24px;
}

/* ===== OPTIONS DE RÉPONSE ===== */
.options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.option-btn {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  width: 100%;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  transition: border-color var(--transition), background var(--transition),
              transform var(--transition), box-shadow var(--transition);
}

/* FIX : couleur forcée au survol — neutralise le CSS global du thème WordPress */
.option-btn:hover:not(:disabled) {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--text-dark) !important;
  transform: translateX(5px);
  box-shadow: 0 2px 12px rgba(41,168,216,0.10);
}
/* Garantit que les éléments enfants ne deviennent pas blancs */
.option-btn:hover:not(:disabled) .opt-text,
.option-btn:hover:not(:disabled) .opt-id {
  color: var(--text-dark) !important;
}

.option-btn:disabled { cursor: default; }

/* Pastille lettre A/B/C/D */
.opt-id {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--border);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 1px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

/* FIX : empêche le texte de déborder hors du bouton */
.opt-text {
  flex: 1;
  min-width: 0;           /* Fix flexbox : autorise le retour à la ligne */
  word-break: break-word;
  white-space: normal;
}

/* États correct / incorrect */
.option-btn.correct               { border-color: var(--correct);   background: var(--correct-bg); }
.option-btn.correct .opt-id       { background: var(--correct);     border-color: var(--correct);  color: #fff; }
.option-btn.incorrect             { border-color: var(--incorrect); background: var(--incorrect-bg); }
.option-btn.incorrect .opt-id     { background: var(--incorrect);   border-color: var(--incorrect); color: #fff; }

/* ===== FEEDBACK ===== */
.feedback-box {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  animation: fadeUp 0.28s ease both;
  border-left: 4px solid transparent;
}
.feedback-box.hidden    { display: none; }
.feedback-correct       { background: var(--correct-bg);   border-left-color: var(--correct); }
.feedback-incorrect     { background: var(--incorrect-bg); border-left-color: var(--incorrect); }

.feedback-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem; font-weight: 800;
  margin-top: 1px;
}
.feedback-correct  .feedback-icon  { background: var(--correct);   color: #fff; }
.feedback-incorrect .feedback-icon { background: var(--incorrect); color: #fff; }

.feedback-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.feedback-correct  .feedback-title  { color: var(--correct); }
.feedback-incorrect .feedback-title { color: var(--incorrect); }
.feedback-explanation { font-size: 0.87rem; color: var(--text-mid); line-height: 1.55; }

/* ===== RÉSULTATS ===== */
#resultScreen { text-align: center; }

.result-circle {
  position: relative;
  width: 148px; height: 148px;
  margin: 0 auto 28px;
}
.circle-svg  { width: 148px; height: 148px; transform: rotate(-90deg); }
.circle-bg   { fill: none; stroke: var(--border); stroke-width: 9; }
.circle-prog { fill: none; stroke-width: 9; stroke-linecap: round;
               transition: stroke-dashoffset 1.2s cubic-bezier(0.4,0,0.2,1); }
.circle-score {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; font-weight: 900; color: var(--text-dark);
}

.result-level   { font-size: 1.65rem; font-weight: 900; margin-bottom: 12px; letter-spacing: -0.01em; }
.result-message { font-size: 1rem; color: var(--text-mid); line-height: 1.7;
                  max-width: 480px; margin: 0 auto 24px; }

.result-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.stat-pill {
  font-size: 0.84rem; font-weight: 700;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.question-card.slide-in { animation: slideIn 0.33s cubic-bezier(0.4,0,0.2,1) both; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(45px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .quiz-wrapper   { padding: 16px 12px; align-items: flex-start; }
  .question-card  { padding: 24px 18px; }
  .question-text  { font-size: 1rem; }
  .quiz-title     { font-size: 1.85rem; }
  .btn-primary    { width: 100%; justify-content: center; }
  .option-btn     { font-size: 0.88rem; padding: 12px 13px; }
}/* End custom CSS */