@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;700&display=swap');

:root {
  --navy:    #173258;
  --blue:    #2F506D;
  --cyan:    #00BEF3;
  --dark:    #04173d;
  --bg:      #f2f6fa;
  --bg-card: #ffffff;
  --border:  #dde5ed;
  --muted:   #5e789a;
  --text:    #2F506D;
  --good:    #1e8a5e;
  --warn:    #c07c10;
  --bad:     #b83040;
  --radius:  8px;
  --shadow:  0 2px 12px rgba(23,50,88,.09);
  --shadow-lg: 0 6px 28px rgba(23,50,88,.13);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Lato, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

/* ── Layout ── */
.container { max-width: 920px; margin: 0 auto; padding: 32px 18px 52px; }

/* ── Navbar (bandeau menu) ── */
.navbar {
  background: linear-gradient(180deg, var(--navy) 0%, var(--dark) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(4, 23, 61, .25);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(0, 190, 243, .35);
}
.navbar__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  gap: 16px;
}
.navbar__brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
  padding: 2px 0;
}
.navbar__brand:hover { opacity: .92; }
.navbar__logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .35px;
  line-height: 1.25;
  color: #fff;
}
.navbar__sub {
  font-size: 11px;
  font-weight: 400;
  opacity: .82;
  margin-top: 2px;
  letter-spacing: .2px;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar__link {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.navbar__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}
.navbar__link--external::after {
  content: ' ↗';
  font-size: 10px;
  opacity: .7;
  vertical-align: 1px;
}
.navbar__link--cta {
  background: var(--cyan);
  color: #fff !important;
  margin-left: 8px;
}
.navbar__link--cta:hover {
  background: rgba(0, 190, 243, .85);
  color: #fff !important;
}
.navbar__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: var(--cyan);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  margin-left: 8px;
  box-shadow: 0 1px 3px rgba(0, 190, 243, .3);
}
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  border-radius: 6px;
  transition: background .2s;
}
.navbar__toggle:hover { background: rgba(255, 255, 255, .1); }
.navbar__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .2s;
}
@media (max-width: 640px) {
  .navbar__toggle { display: flex; }
  .navbar__nav {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--dark) 100%);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s, opacity .25s, visibility .25s;
    box-shadow: 0 8px 24px rgba(4, 23, 61, .25);
    border-bottom: 2px solid rgba(0, 190, 243, .35);
  }
  body.nav-open .navbar__nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .navbar__link {
    font-size: 15px;
    padding: 12px 16px;
    width: 100%;
    text-align: left;
    border-radius: 6px;
  }
}

/* ── Footer ── */
.footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__brand strong {
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}
.footer__brand span {
  font-size: 12px;
  color: var(--muted);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer__links a {
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.footer__links a:hover { color: var(--blue); }
.footer__bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: var(--cyan);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Legacy brand (MODX / fallback) */
.brand__logo { font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: .3px; }
.brand__sub   { color: var(--muted); font-size: 13px; margin-top: 2px; font-weight: 400; }
.brand__badge {
  font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  background: var(--cyan); color: #fff; padding: 3px 9px; border-radius: 4px;
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.card + .card { margin-top: 16px; }

.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 780px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 780px) { .grid--3 { grid-template-columns: 1fr 1fr 1fr; } }

/* ── Typography ── */
.h1 {
  font-size: 28px; font-weight: 700; line-height: 1.15;
  color: var(--navy); margin: 0 0 10px;
}
.h2 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.lead { color: var(--blue); margin: 0 0 14px; font-size: 15px; font-weight: 400; }
.muted { color: var(--muted); }
.hint { color: var(--muted); font-size: 13px; margin-top: 8px; }
.small { font-size: 13px; }

/* ── Tags / pills ── */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  border-radius: 4px; padding: 3px 8px;
  background: #eaf4fb; color: #1870a0; border: 1px solid #b8dcf0;
}
.tag--pre  { background: #eef7f2; color: #1a6b45; border-color: #a8d9bc; }
.tag--new  { background: #f5f0fd; color: #5e3b9e; border-color: #ccb3f5; }
.tag--v2   { background: #fff3e8; color: #b85c10; border-color: #f5c49a; }

/* ── Bullets ── */
.bullets { margin: 0 0 16px; padding: 0 0 0 18px; }
.bullets li { margin: 5px 0; color: var(--blue); }

/* ── Buttons ── */
.btnrow { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 18px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; border-radius: var(--radius);
  padding: 10px 20px; font-family: Lato, sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: .2px;
  cursor: pointer; text-decoration: none; transition: opacity .15s, background .15s;
  border: 2px solid transparent; white-space: nowrap;
}
.btn--primary {
  background: var(--dark); color: #fff; border-color: var(--dark);
}
.btn--primary:hover { background: var(--navy); border-color: var(--navy); }

.btn--outline {
  background: transparent; color: var(--blue); border-color: var(--border);
}
.btn--outline:hover { border-color: var(--blue); }

.btn--cyan {
  background: var(--cyan); color: #fff; border-color: var(--cyan);
}
.btn--cyan:hover { opacity: .85; }

.btn:disabled { opacity: .38; cursor: not-allowed; }

/* ── Section label ── */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ── Resume notice ── */
.resume-notice {
  display: inline-flex; align-items: center; gap: 8px;
  background: #eef7f2; border: 1px solid #a8d9bc; border-radius: var(--radius);
  padding: 8px 14px; font-size: 13px; color: #1a6b45; font-weight: 700;
  margin-bottom: 4px;
}

/* ── Pack cards ── */
.pack-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
  box-shadow: var(--shadow);
}
.pack-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-lg); }
.pack-card .title { font-size: 17px; font-weight: 700; color: var(--navy); margin: 8px 0 4px; }
.pack-card .desc  { font-size: 14px; color: var(--muted); }
.pack-card .arrow { font-size: 18px; color: var(--cyan); float: right; margin-top: 2px; }

/* ── Quiz ── */
.quizHead {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.quizStep { font-size: 15px; color: var(--muted); line-height: 1; }
.quizStep strong { font-size: 22px; font-weight: 700; color: var(--navy); }

.progressWrap { margin-bottom: 18px; }
.progress {
  height: 10px; background: var(--border); border-radius: 999px; overflow: hidden;
}
.progress > div { height: 100%; background: var(--cyan); transition: width .35s ease; }
.progressMeta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 5px; font-size: 12px; color: var(--muted);
}
.progressPct { font-weight: 700; color: var(--cyan); font-size: 13px; }
.progressRemain { font-style: italic; }

.qTitle { font-size: 20px; font-weight: 700; color: var(--navy); margin: 0 0 6px; line-height: 1.3; }
.qHelp  { color: var(--muted); font-size: 14px; margin: 0 0 14px; }

.options { display: grid; gap: 8px; margin-top: 12px; }
.opt {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg-card);
  cursor: pointer; transition: border-color .15s, background .1s;
}
.opt:hover { border-color: var(--cyan); background: #f0faff; }
.opt--selected {
  border-color: var(--cyan); background: #e4f6fe;
  box-shadow: 0 0 0 2px rgba(0,190,243,.18);
}
.opt--na {
  border-style: dashed; opacity: .75;
}
.opt--na:hover { opacity: 1; }
.opt input[type="radio"] { margin-top: 3px; accent-color: var(--cyan); flex-shrink: 0; }
.opt strong { display: block; font-weight: 500; color: var(--navy); }
.opt span   { display: block; font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ── Score ── */
.scoreBox {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end;
  justify-content: space-between; margin-bottom: 18px;
}
.scoreBig { font-size: 48px; font-weight: 700; color: var(--navy); line-height: 1; }
.scoreLabel { font-size: 13px; color: var(--muted); font-weight: 400; margin-bottom: 2px; }

.level-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 6px 12px; font-weight: 700; color: var(--navy); font-size: 15px;
  background: #fff;
}
.level-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.confidence { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── Pillars ── */
.pillars { display: grid; gap: 10px; margin-top: 14px; }
.pRow { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; }
.pRow .name { color: var(--blue); font-size: 14px; }
.pRow .val  { font-weight: 700; color: var(--navy); font-size: 14px; }
.bar { grid-column: 1/-1; height: 8px; background: var(--border); border-radius: 999px; overflow: hidden; }
.bar > div { height: 100%; background: var(--cyan); }

/* ── Results columns ── */
.cols { display: grid; gap: 16px; margin-top: 16px; }
@media (min-width: 780px) { .cols { grid-template-columns: 1fr 1fr; } }
.cols .card { box-shadow: none; }

.list { margin: 10px 0 0; padding: 0 0 0 18px; }
.list li { margin: 8px 0; }
.list li strong { color: var(--navy); font-weight: 700; }
.list li .hint { margin-top: 2px; }

.sep { height: 1px; background: var(--border); margin: 16px 0; }

/* ── Cost block ── */
.cost-block { background: #f7fafd; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; margin-top: 16px; }
.cost-block .h2 { font-size: 16px; }
.cost-figures { display: flex; gap: 28px; flex-wrap: wrap; margin: 8px 0 4px; }
.cost-fig span { display: block; }
.cost-fig .val { font-size: 22px; font-weight: 700; color: var(--navy); }
.cost-fig .lbl { font-size: 12px; color: var(--muted); }

/* ── Forms / inputs ── */
.field { display: grid; gap: 6px; margin: 10px 0; }
.field label { font-weight: 700; font-size: 14px; color: var(--navy); }
.field input {
  padding: 10px 12px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg);
  color: var(--navy); font-family: Lato, sans-serif; font-size: 15px;
}
.field input:focus { outline: none; border-color: var(--cyan); }
.check {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 10px 0; font-size: 14px; color: var(--muted); line-height: 1.4;
}
.check input[type="checkbox"] { margin-top: 2px; accent-color: var(--cyan); flex-shrink: 0; }

/* ── V2 Diagnostic card ── */
.v2-diagnostic { padding: 28px 24px; }

.v2-meters {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px;
}
@media (max-width: 480px) { .v2-meters { grid-template-columns: 1fr; } }

.v2-meter { display: flex; flex-direction: column; align-items: center; text-align: center; }
.v2-meter__num {
  font-size: 52px; font-weight: 700; line-height: 1; letter-spacing: -1px;
}
.v2-meter__sub  { font-size: 16px; color: var(--muted); margin-top: -4px; margin-bottom: 6px; }
.v2-meter__lbl  { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: 8px; }
.v2-meter__track {
  width: 100%; height: 8px; background: var(--border); border-radius: 999px; overflow: hidden;
}
.v2-meter__fill { height: 100%; border-radius: 999px; transition: width .4s ease; }

.v2-badges {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.v2-verdict-badge {
  display: inline-flex; align-items: center;
  border: 2px solid; border-radius: var(--radius);
  padding: 7px 14px; font-weight: 700; font-size: 14px;
  background: #fff;
}
.v2-tag-badge {
  display: inline-flex; align-items: center;
  border-radius: var(--radius); padding: 7px 14px;
  font-size: 13px; font-weight: 700;
}
.v2-tag-badge--qw   { background: #e4f8f1; color: #1a6b45; border: 1.5px solid #a8d9bc; }
.v2-tag-badge--proj { background: #eaf1fb; color: #1b4a9e; border: 1.5px solid #b0c8f0; }

/* ── V2 Mini plan ── */
.v2-mini-plan { display: grid; gap: 16px; margin-top: 0; }

.v2-plan-cols {
  display: grid; gap: 16px; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .v2-plan-cols { grid-template-columns: 1fr 1fr; } }

.v2-plan-section { padding: 20px; }
.v2-plan-section--qw { background: #f5f9ff; }

.v2-plan-title {
  font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.v2-plan-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.v2-plan-title--risk { color: var(--bad); }

.v2-plan-list { margin: 0; padding: 0 0 0 18px; }
.v2-plan-list li { margin: 8px 0; color: var(--navy); }
.v2-plan-list li strong { font-weight: 700; }
.v2-plan-list li .hint { margin-top: 1px; }

.v2-plan-risk-block {
  background: #fff8f8; border: 1.5px solid #f0c8c8; border-radius: var(--radius);
  padding: 18px 20px;
}
.v2-plan-risk-card strong { font-size: 15px; font-weight: 700; color: var(--navy); }
.v2-plan-risk-card p { margin: 4px 0 0; }

/* ── Unlock gate ── */
.unlock-gate {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 2px;
  box-shadow: var(--shadow-lg);
}
.unlock-gate__inner {
  background: #fff;
  border-radius: calc(var(--radius) - 2px);
  padding: 32px 28px;
  text-align: center;
}
.unlock-gate__icon {
  font-size: 28px; color: var(--cyan); font-weight: 700;
  margin-bottom: 12px; line-height: 1;
  animation: bounce 1.4s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
.unlock-gate .h2 { text-align: center; font-size: 22px; }
.unlock-gate .lead { text-align: center; max-width: 480px; margin: 0 auto 18px; }

/* Risques teaser dans l'unlock gate */
.unlock-risks {
  display: grid; gap: 10px; margin-bottom: 24px;
  text-align: left; max-width: 520px; margin-left: auto; margin-right: auto;
}
.unlock-risk {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff8f8; border: 1px solid #f0c8c8; border-radius: var(--radius);
  padding: 12px 14px;
}
.unlock-risk__num {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--bad); color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.unlock-risk__body { display: flex; flex-direction: column; gap: 2px; }
.unlock-risk__body strong { font-size: 14px; font-weight: 700; color: var(--navy); }
.unlock-risk__body span  { font-size: 13px; color: var(--muted); line-height: 1.4; }

.unlock-form { display: flex; flex-direction: column; align-items: center; }
.unlock-row {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; width: 100%;
  max-width: 480px;
}
.unlock-row input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 12px 14px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg);
  color: var(--navy); font-family: Lato, sans-serif; font-size: 15px;
}
.unlock-row input[type="email"]:focus { outline: none; border-color: var(--cyan); }
.btn--unlock { padding: 12px 28px; font-size: 16px; }

/* ── CTAs débloqués ── */
.unlocked-ctas {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #00BEF3 0%, #1a8ecb 100%);
  padding: 2px;
  box-shadow: var(--shadow-lg);
}
.unlocked-ctas__inner {
  background: #fff;
  border-radius: calc(var(--radius) - 2px);
  padding: 32px 28px;
  text-align: center;
}
.unlocked-ctas .h2 { text-align: center; font-size: 22px; }
.unlocked-ctas .lead { text-align: center; max-width: 480px; margin: 0 auto; }

/* Bloc CTA commerciaux */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  max-width: 420px;
}
.btn--cta-main {
  width: 100%;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(0,190,243,.35);
}
.btn--cta-secondary {
  width: 100%;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 500px) {
  .btn--cta-main  { font-size: 15px; padding: 14px 16px; }
  .btn--cta-secondary { font-size: 14px; }
}

/* ── Tags outils ── */
.tag--roi { background: #fffbe8; color: #8a5a00; border-color: #f0d090; }
.tag--qwf { background: #e8faf6; color: #0a6a50; border-color: #90d8c0; }
.tag--booking { background: #e8f4ff; color: #0a5a9e; border-color: #90c0f0; }

.pack-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.pack-card--link:hover { text-decoration: none; color: inherit; }

/* ── ROI Calculator ── */
.roi-grid { display: grid; gap: 14px; }
@media (min-width: 600px) { .roi-grid { grid-template-columns: 1fr 1fr; } }
.roi-field { display: grid; gap: 4px; }
.roi-field > label { font-weight: 700; font-size: 14px; color: var(--navy); }
.roi-unit { font-weight: 400; font-size: 12px; color: var(--muted); }
.roi-field input {
  padding: 10px 12px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg);
  color: var(--navy); font-family: Lato, sans-serif; font-size: 15px; width: 100%;
}
.roi-field input:focus { outline: none; border-color: var(--cyan); }
.field-hint { font-size: 11px; color: var(--muted); margin-top: 2px; }

.confidence-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 99px; font-size: 12px; font-weight: 700; border: 1.5px solid;
}
.confidence-pill--fort   { background: #eef7f2; color: #1a6b45; border-color: #a8d9bc; }
.confidence-pill--moyen  { background: #fff8ed; color: #a05a00; border-color: #f0cc8a; }
.confidence-pill--faible { background: #fff0f0; color: #b83040; border-color: #f0b3bb; }

.roi-hero {
  display: flex; flex-wrap: wrap; gap: 24px; padding: 20px 0;
  justify-content: center; align-items: center; text-align: center;
}
.roi-hero__sep { width: 1px; height: 50px; background: var(--border); }
@media (max-width: 500px) { .roi-hero__sep { display: none; } }
.roi-hero__val { font-size: 40px; font-weight: 700; color: var(--navy); line-height: 1; }
.roi-hero__lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }
.roi-hero__sub { font-size: 16px; font-weight: 700; color: var(--blue); margin-top: 3px; }

.lever-cards { display: grid; gap: 12px; margin-top: 12px; }
@media (min-width: 600px) { .lever-cards { grid-template-columns: 1fr 1fr; } }
.lever-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
}
.lever-card--top { border-color: var(--cyan); background: #f0faff; }
.lever-card__lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); }
.lever-card__amt { font-size: 24px; font-weight: 700; color: var(--navy); margin: 4px 0 2px; }
.lever-card__det { font-size: 12px; color: var(--muted); }

.conclusion-box {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius); padding: 20px 24px; color: #fff; text-align: center;
}
.conclusion-box p { margin: 0; font-size: 15px; line-height: 1.55; }
.conclusion-box .hint { color: rgba(255,255,255,.65); margin-top: 8px; font-size: 13px; }

/* ── Quick Wins Finder ── */
.signal-list { display: grid; gap: 8px; margin-top: 10px; }
.signal-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
}
.signal-row__lbl { font-size: 14px; color: var(--navy); flex: 1; line-height: 1.4; }
.signal-row__btns { display: flex; gap: 6px; flex-shrink: 0; }
.signal-btn {
  padding: 6px 16px; border-radius: 6px; font-size: 13px; font-weight: 700;
  cursor: pointer; border: 1.5px solid var(--border); background: var(--bg);
  color: var(--muted); font-family: Lato, sans-serif;
  transition: border-color .12s, background .12s, color .12s;
}
.signal-btn:hover { border-color: var(--blue); color: var(--blue); }
.signal-btn--oui.active { background: #eef7f2; border-color: #1a6b45; color: #1a6b45; }
.signal-btn--non.active { background: #f5f5f5; border-color: #999; color: #555; }

.qw-cards { display: grid; gap: 16px; }
.qw-card { border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.qw-card__head {
  background: var(--navy); color: #fff;
  padding: 14px 18px; display: flex; align-items: center; gap: 14px;
}
.qw-card__num {
  width: 30px; height: 30px; border-radius: 50%; background: var(--cyan); color: #fff;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.qw-card__head-title { font-size: 15px; font-weight: 700; line-height: 1.3; }
.qw-card__body { background: var(--bg-card); padding: 16px 18px; display: grid; gap: 12px; }
.qw-card__result {
  background: #eef7f2; border-left: 3px solid #1a6b45;
  padding: 10px 14px; border-radius: 0 6px 6px 0;
  font-size: 14px; color: #1a6b45; font-weight: 600;
}
.qw-section { display: grid; gap: 3px; }
.qw-section__lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); }
.qw-section__val { font-size: 14px; color: var(--navy); line-height: 1.45; }
.qw-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.badge-effort { background: #f0f5ff; border: 1px solid #b3c8f5; color: #3a5fc8; border-radius: 4px; padding: 3px 10px; font-size: 12px; font-weight: 700; }
.badge-delay  { background: #f5f0fd; border: 1px solid #ccb3f5; color: #5e3b9e; border-radius: 4px; padding: 3px 10px; font-size: 12px; font-weight: 700; }
.impact-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.impact-chip  { background: #fff3e8; border: 1px solid #f5c49a; color: #b85c10; border-radius: 4px; padding: 2px 8px; font-size: 12px; }

/* ── Coming-soon card ── */
.pack-card--soon { position: relative; overflow: hidden; }
.soon-overlay {
  position: absolute; inset: 0;
  background: rgba(23, 50, 88, 0.9);
  border-radius: calc(var(--radius) - 2px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity .2s;
}
.pack-card--soon:hover .soon-overlay { opacity: 1; }
.soon-overlay__label {
  color: var(--cyan); font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
}
.soon-overlay__text { color: #fff; font-weight: 700; font-size: 15px; }
.tag--soon { background: #f0f5ff; color: #3a5fc8; border-color: #b3c8f5; }

/* ── Dialog ── */
.dialog { border: none; padding: 0; background: transparent; }
.dialog::backdrop { background: rgba(23,50,88,.45); }
.dialog__inner {
  width: min(560px, calc(100vw - 20px));
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card); box-shadow: var(--shadow-lg);
  padding: 0;
}
.dialog__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.dialog__head strong { font-size: 17px; font-weight: 700; color: var(--navy); }
.dialog__body { padding: 18px 20px; }
