:root {
  --bg: #05060a;
  --panel: #0b0e16;
  --panel-2: #111522;
  --text: #f5f7fb;
  --muted: #8c95a8;
  --line: #252b3a;
  --gold: #d7b46a;
  --gold-2: #f2d590;
  --red: #c7353d;
  --blue: #2457d6;
  --white: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(36, 87, 214, .16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(199, 53, 61, .14), transparent 30%),
    linear-gradient(135deg, #020308 0%, #080a12 46%, #05060a 100%);
}

button {
  font: inherit;
}

.app {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: block;
  background: linear-gradient(90deg, var(--blue) 0 33%, var(--white) 33% 66%, var(--red) 66% 100%);
  border: 1px solid var(--line);
}

.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-weight: 700;
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

.hero,
.quiz-shell,
.results-shell {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 21, 34, .96), rgba(8, 10, 18, .96));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.hero {
  min-height: 72vh;
  padding: clamp(32px, 7vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero::before,
.quiz-shell::before,
.results-shell::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--white), var(--red));
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.hero,
.quiz-shell,
.results-shell {
  position: relative;
}

.overline {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.06em;
}

h1 {
  max-width: 820px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .88;
}

h2 {
  font-size: clamp(34px, 6vw, 72px);
  line-height: .95;
}

h3 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: 24px;
  color: var(--gold-2);
}

.lead {
  max-width: 680px;
  margin: 24px 0 34px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

.btn {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--text);
  padding: 15px 22px;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform .16s ease, background .16s ease, color .16s ease, opacity .16s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  width: fit-content;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
}

.btn.secondary {
  border-color: var(--line);
  color: var(--muted);
}

.btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
}

.quiz-shell,
.results-shell {
  padding: clamp(22px, 5vw, 56px);
}

.quiz-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.progress {
  height: 8px;
  background: #151a27;
  border: 1px solid var(--line);
  margin-bottom: 38px;
}

#progressBar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--white), var(--red));
  transition: width .25s ease;
}

.answers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.answer {
  min-height: 92px;
  padding: 20px;
  text-align: left;
  color: var(--text);
  background: #0d111c;
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.35;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.answer:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: #141928;
}

.quiz-bottom {
  display: flex;
  justify-content: flex-start;
  margin-top: 26px;
}

.results-shell {
  max-width: 920px;
  margin: 0 auto;
}

.gauge-card {
  margin-top: 30px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #0b0f19;
}

.gauge-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  margin-bottom: 14px;
}

.gauge {
  height: 20px;
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, var(--red), #f8fafc 50%, var(--blue));
}

#needle {
  position: absolute;
  left: 50%;
  top: -12px;
  width: 8px;
  height: 44px;
  background: var(--gold-2);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(215, 180, 106, .18);
  transition: left .7s cubic-bezier(.2, .9, .3, 1.1);
}

.result-text {
  margin: 22px 0 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.families {
  display: grid;
  gap: 12px;
}

.family-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: #0d111c;
  border: 1px solid var(--line);
}

.family-card:first-child {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(215, 180, 106, .14), #0d111c);
}

.family-card strong {
  display: block;
  font-size: 17px;
}

.family-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.family-card .percent {
  color: var(--gold-2);
  font-size: 22px;
  font-weight: 950;
}

.hidden {
  display: none !important;
}

@media (max-width: 760px) {
  .app {
    width: min(100% - 20px, 1080px);
    padding-top: 18px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: 78vh;
  }

  .answers {
    grid-template-columns: 1fr;
  }

  .quiz-meta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .family-card {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ===== Version perfectionnée : jauge, luxe, lecture finale ===== */

body {
  background:
    radial-gradient(circle at 8% 2%, rgba(36, 87, 214, .18), transparent 30%),
    radial-gradient(circle at 94% 92%, rgba(199, 53, 61, .14), transparent 32%),
    linear-gradient(135deg, #020308 0%, #070912 44%, #020307 100%);
}

.hero,
.quiz-shell,
.results-shell {
  border-color: rgba(215, 180, 106, .20);
  background:
    linear-gradient(180deg, rgba(18, 22, 34, .985), rgba(5, 7, 13, .985));
}

.quiz-shell {
  min-height: 74vh;
  display: flex;
  flex-direction: column;
}

.quiz-shell h2 {
  max-width: 900px;
  font-size: clamp(26px, 4.1vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.answers {
  margin-top: 28px;
}

.answer {
  min-height: 78px;
  padding: 18px 20px;
  font-size: clamp(15px, 1.6vw, 17px);
}

.quiz-bottom {
  margin-top: auto;
  padding-top: 30px;
}

.results-shell {
  padding-bottom: 72px;
}

.results-shell > h2 {
  font-size: clamp(34px, 5.5vw, 64px);
}

.gauge-card {
  margin-top: 24px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(215, 180, 106, .08), transparent 38%),
    #090d16;
  border-color: rgba(215, 180, 106, .22);
}

.gauge {
  height: 22px;
  background:
    linear-gradient(90deg,
      #8b111b 0%,
      #c7353d 18%,
      #f8fafc 50%,
      #2457d6 82%,
      #0b2f86 100%);
}

#needle {
  width: 9px;
  height: 50px;
  top: -15px;
  background: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(215, 180, 106, .18), 0 12px 30px rgba(0,0,0,.42);
}

.result-text {
  font-size: 17px;
}

.families {
  margin-bottom: 26px;
}

.analysis-card {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(215, 180, 106, .22);
  background:
    linear-gradient(135deg, rgba(215, 180, 106, .10), rgba(36, 87, 214, .035)),
    #090d16;
}

.analysis-card h3 {
  margin-top: 8px;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.045em;
}

.analysis-card p {
  margin: 0;
  color: #c6ccda;
  line-height: 1.75;
  font-size: 16px;
}

.analysis-label {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 950;
  font-size: 12px !important;
}

.restart-zone {
  display: flex;
  justify-content: center;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.restart-zone .btn {
  min-width: 240px;
}

@media (max-width: 760px) {
  .quiz-shell {
    min-height: 78vh;
  }

  .quiz-shell h2 {
    font-size: clamp(26px, 8vw, 38px);
  }

  .answer {
    min-height: 70px;
  }

  .analysis-card {
    padding: 22px;
  }

  .restart-zone {
    margin-top: 48px;
  }
}


/* ===== Version V3 : analyse approfondie + randomisation visible ===== */

.shuffle-note {
  margin: -18px 0 0;
  color: #778196;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.deep-analysis {
  position: relative;
  overflow: hidden;
}

.deep-analysis::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  top: -120px;
  background: radial-gradient(circle, rgba(215,180,106,.14), transparent 68%);
  pointer-events: none;
}

.analysis-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.analysis-grid > div {
  padding: 18px;
  border: 1px solid rgba(215, 180, 106, .16);
  background: rgba(5, 7, 13, .68);
}

.analysis-grid strong {
  display: block;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 12px;
  margin-bottom: 10px;
}

.analysis-grid p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #b8c0d3;
}

.family-card {
  position: relative;
}

.family-card:first-child::before {
  content: "Profil principal";
  position: absolute;
  right: 14px;
  top: -12px;
  padding: 4px 8px;
  background: var(--gold);
  color: #090d16;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 760px) {
  .analysis-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== V4 : profil politique plus complet ===== */

.profile-line {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(215, 180, 106, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.profile-line span {
  color: #98a2b8;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 950;
}

.profile-line strong {
  color: var(--gold-2);
  font-size: clamp(16px, 2.4vw, 22px);
  letter-spacing: -0.025em;
}

.analysis-grid {
  grid-template-columns: 1fr 1fr;
}

.analysis-grid > div {
  min-height: 148px;
}

@media (max-width: 760px) {
  .profile-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .analysis-grid > div {
    min-height: auto;
  }
}


/* ===== V5 : fin simplifiée, analyse plus profonde ===== */

.analysis-card > #analysisText {
  max-width: 880px;
  font-size: 17px;
  line-height: 1.85;
  color: #d2d7e5;
}

.simple-profile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border: 1px solid rgba(215, 180, 106, .22);
}

.simple-profile > div {
  padding: 20px;
  background: rgba(5, 7, 13, .72);
  border-right: 1px solid rgba(215, 180, 106, .18);
}

.simple-profile > div:last-child {
  border-right: 0;
}

.simple-profile span {
  display: block;
  margin-bottom: 10px;
  color: #8f98ac;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.simple-profile strong {
  display: block;
  color: var(--gold-2);
  font-size: 16px;
  line-height: 1.4;
}

.analysis-conclusion {
  margin-top: 26px !important;
  max-width: 880px;
  padding-top: 22px;
  border-top: 1px solid rgba(215, 180, 106, .18);
  color: #bfc7d8 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

.profile-line,
.analysis-grid {
  display: none !important;
}

@media (max-width: 760px) {
  .simple-profile {
    grid-template-columns: 1fr;
  }

  .simple-profile > div {
    border-right: 0;
    border-bottom: 1px solid rgba(215, 180, 106, .18);
  }

  .simple-profile > div:last-child {
    border-bottom: 0;
  }
}


/* ===== V6 : effets premium + résultat plus clair ===== */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.035) 35%, transparent 70%);
  mix-blend-mode: screen;
  animation: ambientSweep 9s ease-in-out infinite alternate;
}

@keyframes ambientSweep {
  from { transform: translateX(-8%) translateY(-4%); opacity: .45; }
  to { transform: translateX(8%) translateY(4%); opacity: .9; }
}

.hero,
.quiz-shell,
.results-shell,
.gauge-card,
.analysis-card,
.family-card,
.answer {
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.hero:hover,
.quiz-shell:hover,
.results-shell:hover {
  border-color: rgba(215, 180, 106, .34);
  box-shadow: 0 36px 110px rgba(0, 0, 0, .50);
}

.answer {
  position: relative;
  overflow: hidden;
}

.answer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(215,180,106,.08) 45%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .45s ease;
}

.answer:hover::after {
  transform: translateX(120%);
}

.btn.primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(215, 180, 106, .16);
}

.btn.primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.btn.primary:hover::after {
  left: 120%;
}

#prevBtn {
  min-width: 170px;
}

#prevBtn:disabled {
  opacity: .32;
  filter: grayscale(.6);
}

.result-help {
  margin: -4px 0 18px;
  color: #858fa5;
  font-size: 14px;
  line-height: 1.55;
}

.family-card {
  padding: 20px;
}

.family-card strong {
  letter-spacing: -0.015em;
}

.family-card small {
  line-height: 1.55;
}

.party-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.party-tag {
  padding: 5px 7px;
  border: 1px solid rgba(215, 180, 106, .18);
  background: rgba(215, 180, 106, .06);
  color: #c8cfdf;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.analysis-card > #analysisText {
  font-size: 17.5px;
  line-height: 1.9;
  color: #d9deea;
}

.analysis-conclusion {
  display: none !important;
}

.simple-profile {
  margin-top: 32px;
}

.gauge-card,
.analysis-card {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 18px 60px rgba(0,0,0,.22);
}

@media (max-width: 760px) {
  #prevBtn {
    min-width: 100%;
  }

  .party-tags {
    gap: 5px;
  }
}


/* ===== V7 : intro raffinée, analyse courte et surlignée ===== */

.analysis-card mark {
  color: var(--gold-2);
  background: rgba(215, 180, 106, .12);
  padding: 1px 5px;
  border: 1px solid rgba(215, 180, 106, .16);
}

.analysis-card > #analysisText {
  max-width: 820px;
  font-size: 16.5px;
  line-height: 1.82;
}

.simple-profile strong {
  font-size: 15px;
}

.party-tags {
  max-width: 620px;
}

.party-tag {
  font-size: 10.5px;
  padding: 5px 6px;
}

.result-help {
  max-width: 720px;
}


/* ===== V8 : surlignage plus discret + partis non répétés ===== */

.analysis-card mark {
  color: #ead6a2;
  background: transparent;
  border: 0;
  padding: 0;
  font-weight: 900;
}

.party-tags {
  margin-top: 12px;
}

.family-card small {
  display: none;
}

.family-card strong {
  font-size: 18px;
}

.party-tag {
  border-color: rgba(215, 180, 106, .22);
  background: rgba(215, 180, 106, .08);
}


/* ===== V9 : analyse plus personnalisée et mots clés mieux mis en valeur ===== */

.analysis-card mark {
  color: #f1d88f;
  background: rgba(215, 180, 106, .10);
  border: 1px solid rgba(215, 180, 106, .16);
  padding: 1px 4px;
  font-weight: 900;
}


/* ===== V10 : surlignage éditorial plus discret ===== */

.analysis-card mark {
  color: #dbc88f !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  font-weight: 800 !important;
  text-decoration: underline;
  text-decoration-color: rgba(219, 200, 143, .32);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.simple-profile span {
  letter-spacing: .12em;
}


/* ===== V12 : synthèse finale plus utile ===== */

.simple-profile > div:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(215, 180, 106, .10), rgba(36, 87, 214, .045)),
    rgba(5, 7, 13, .72);
}

.simple-profile > div:nth-child(3) strong {
  color: #e4d39f;
}


/* ===== V13 : analyse finale professionnelle et personnalisée ===== */

.profile-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border: 1px solid rgba(215, 180, 106, .22);
  background: rgba(5, 7, 13, .58);
}

.profile-summary > div {
  padding: 20px;
  border-right: 1px solid rgba(215, 180, 106, .16);
}

.profile-summary > div:last-child {
  border-right: 0;
}

.profile-summary span,
.premium-analysis-grid span {
  display: block;
  margin-bottom: 10px;
  color: #8f98ac;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.profile-summary strong {
  display: block;
  color: var(--gold-2);
  font-size: 16px;
  line-height: 1.42;
}

.premium-analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.premium-analysis-grid article {
  padding: 20px;
  border: 1px solid rgba(215, 180, 106, .16);
  background:
    linear-gradient(135deg, rgba(215, 180, 106, .055), rgba(36, 87, 214, .025)),
    rgba(5, 7, 13, .72);
}

.premium-analysis-grid p {
  margin: 0;
  color: #c7cede;
  font-size: 15px;
  line-height: 1.72;
}

.analysis-card > #analysisText {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.86;
  color: #d8deeb;
}

.simple-profile,
.profile-line,
.analysis-grid {
  display: none !important;
}

@media (max-width: 760px) {
  .profile-summary,
  .premium-analysis-grid {
    grid-template-columns: 1fr;
  }

  .profile-summary > div {
    border-right: 0;
    border-bottom: 1px solid rgba(215, 180, 106, .16);
  }

  .profile-summary > div:last-child {
    border-bottom: 0;
  }
}


/* ===== V14 : analyse par points, premium et personnalisée ===== */

.analysis-points {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
  margin-top: 28px;
}

.analysis-points article {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(215, 180, 106, .17);
  background:
    linear-gradient(135deg, rgba(215, 180, 106, .055), rgba(36, 87, 214, .025)),
    rgba(5, 7, 13, .74);
  overflow: hidden;
}

.analysis-points article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(215,180,106,.15));
}

.analysis-points .main-point {
  grid-column: 1 / -1;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(215, 180, 106, .10), rgba(199, 53, 61, .025)),
    rgba(5, 7, 13, .82);
  border-color: rgba(215, 180, 106, .28);
}

.analysis-points span {
  display: block;
  color: #8f98ac;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 10px;
}

.analysis-points strong {
  display: block;
  color: var(--gold-2);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.analysis-points p {
  margin: 0;
  color: #c4ccdc;
  font-size: 15px;
  line-height: 1.72;
}

.analysis-card > #analysisText {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.86;
  color: #d8deeb;
}

.profile-summary,
.premium-analysis-grid,
.simple-profile,
.profile-line,
.analysis-grid {
  display: none !important;
}

@media (max-width: 760px) {
  .analysis-points {
    grid-template-columns: 1fr;
  }

  .analysis-points .main-point {
    grid-column: auto;
  }
}


/* ===== V15 : fin beaucoup plus courte ===== */

.compact-analysis {
  padding-bottom: 28px;
}

.compact-analysis > #analysisText {
  max-width: 820px;
  font-size: 16.5px;
  line-height: 1.78;
  color: #d5dbea;
}

.compact-profile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  border: 1px solid rgba(215, 180, 106, .22);
  background: rgba(5, 7, 13, .66);
}

.compact-profile > div {
  padding: 18px;
  border-right: 1px solid rgba(215, 180, 106, .16);
}

.compact-profile > div:last-child {
  border-right: 0;
}

.compact-profile span {
  display: block;
  margin-bottom: 8px;
  color: #8f98ac;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.compact-profile strong {
  display: block;
  color: var(--gold-2);
  font-size: 15.5px;
  line-height: 1.35;
}

.analysis-points,
.profile-summary,
.premium-analysis-grid,
.simple-profile,
.profile-line,
.analysis-grid {
  display: none !important;
}

@media (max-width: 760px) {
  .compact-profile {
    grid-template-columns: 1fr;
  }

  .compact-profile > div {
    border-right: 0;
    border-bottom: 1px solid rgba(215, 180, 106, .16);
  }

  .compact-profile > div:last-child {
    border-bottom: 0;
  }
}


/* ===== V25 : question sur une ligne + résultats plus propres ===== */

.quiz-shell h2 {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(22px, 3.1vw, 40px) !important;
  line-height: 1.12 !important;
}

@media (max-width: 900px) {
  .quiz-shell h2 {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: clamp(24px, 7vw, 36px) !important;
  }
}
