/* Consultoría Método — Wizard */
:root {
  --bg: #0A2540;
  --bg-2: #0d2d4d;
  --fg: #F5EFE6;
  --fg-soft: rgba(245, 239, 230, 0.82);
  --fg-mute: rgba(245, 239, 230, 0.62);
  --accent: #FF5B3A;
  --accent-ink: #1a0500;
  --card: rgba(255, 255, 255, 0.04);
  --card-line: rgba(255, 255, 255, 0.10);
  --radius: 14px;
  --radius-btn: 999px;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --t-fast: 220ms cubic-bezier(.2,.7,.2,1);
  --t-med: 380ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: #07182b;
  color: var(--fg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Outer stage — gives a phone-shell vibe on desktop, full-bleed on mobile */
.stage {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255,91,58,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 100%, rgba(255,91,58,0.06), transparent 60%),
    #07182b;
}

.frame {
  width: 100%;
  max-width: 420px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

@media (min-width: 640px) {
  .stage { padding: 28px 16px; }
  .frame {
    min-height: min(880px, calc(100dvh - 56px));
    height: min(880px, calc(100dvh - 56px));
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.06);
  }
}

/* Header */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 6px;
  gap: 12px;
  flex-shrink: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 15px;
  color: var(--fg);
}
.brand-name span:first-child { opacity: 0.55; font-weight: 500; }

/* Bullet list (screen 1) */
.bullet-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--card-line);
  background: var(--card);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--fg);
}
.bullet-ic {
  width: 24px; height: 24px;
  border-radius: 7px;
  flex-shrink: 0;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
}

/* Point list (screen 2) */
.point-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.point-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--fg);
}
.point-ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255,91,58,0.14);
  color: var(--accent);
  display: grid; place-items: center;
}

/* Costs block (screen 4) */
.costs-block {
  margin-top: 22px;
  border-top: 1px solid var(--card-line);
  padding-top: 18px;
}
.costs-title {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fg-mute);
  margin-bottom: 12px;
}
.costs-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.costs-item { display: flex; gap: 11px; align-items: flex-start; }
.costs-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}
.costs-text { display: flex; flex-direction: column; gap: 1px; }
.costs-text strong { font-size: 14px; font-weight: 600; color: var(--fg); line-height: 1.25; }
.costs-text em { font-style: normal; font-size: 12.5px; color: var(--fg-mute); }

.step-pill {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding: 5px 10px;
  border: 1px solid var(--card-line);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Progress bar */
.progress {
  height: 3px;
  background: rgba(255,255,255,0.06);
  margin: 10px 22px 0;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width var(--t-med);
}

/* Screen container */
.screen-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.screen-slot {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 18px;
  overflow-y: auto;
}
@media (prefers-reduced-motion: no-preference) {
  .screen { animation: slide-in var(--t-med) both; }
}
@keyframes slide-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Type */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }

h1.headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 8.5vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  text-wrap: balance;
}
h1.headline em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
.lede {
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg-soft);
  margin: 0 0 24px;
  text-wrap: pretty;
}

h2.q-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 6.5vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 6px 0 6px;
  text-wrap: balance;
}
.q-sub {
  font-size: 14px;
  color: var(--fg-mute);
  margin: 0 0 22px;
}

/* CTA */
.cta-row {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.btn {
  appearance: none;
  border: 0;
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--radius-btn);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), opacity var(--t-fast);
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 10px 30px -10px rgba(255,91,58,0.6);
}
.btn-primary:hover:not(:disabled) { transform: translateY(-1px); }
.btn-primary:active:not(:disabled) { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-ghost {
  background: transparent;
  color: var(--fg-soft);
  border: 1px solid var(--card-line);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); }

.btn-arrow {
  display: inline-block;
  transition: transform var(--t-fast);
}
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.link-back {
  background: none; border: 0; color: var(--fg-mute);
  font-family: var(--font-body); font-size: 13px;
  cursor: pointer; padding: 6px 8px; align-self: flex-start;
  margin-bottom: 8px;
  display: inline-flex; align-items: center; gap: 6px;
}
.link-back:hover { color: var(--fg-soft); }

/* Choice list (multi/single select) */
.choices { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 0; }
.choice {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--card-line);
  background: var(--card);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  user-select: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
  line-height: 1.3;
}
.choice:hover { border-color: rgba(255,91,58,0.4); background: rgba(255,91,58,0.04); }
.choice.is-selected {
  border-color: var(--accent);
  background: rgba(255,91,58,0.10);
}
.choice .check {
  width: 22px; height: 22px;
  border-radius: 7px;
  border: 1.5px solid var(--card-line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all var(--t-fast);
}
.choice.is-selected .check {
  background: var(--accent); border-color: var(--accent);
}
.choice .check svg { opacity: 0; transition: opacity var(--t-fast); }
.choice.is-selected .check svg { opacity: 1; }
.choice .emoji { font-size: 18px; }

/* Scale 1-10 */
.scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.scale-btn {
  appearance: none;
  border: 1px solid var(--card-line);
  background: var(--card);
  color: var(--fg);
  padding: 14px 6px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.scale-btn:hover { border-color: rgba(255,91,58,0.5); }
.scale-btn.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  transform: scale(1.04);
}
.scale-legend {
  display: flex; justify-content: space-between;
  margin-top: 12px;
  font-size: 12px; color: var(--fg-mute);
}

/* Yes/no rapid */
.yn-list { display: flex; flex-direction: column; gap: 10px; }
.yn-item {
  border: 1px solid var(--card-line);
  background: var(--card);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.yn-q {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--fg);
}
.yn-buttons { display: flex; gap: 8px; }
.yn-btn {
  flex: 1;
  appearance: none;
  border: 1px solid var(--card-line);
  background: transparent;
  color: var(--fg-soft);
  padding: 9px 12px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
}
.yn-btn:hover { border-color: var(--fg-soft); color: var(--fg); }
.yn-btn.is-selected.yes {
  background: var(--accent); color: var(--accent-ink); border-color: var(--accent);
}
.yn-btn.is-selected.no {
  background: rgba(255,255,255,0.10); color: var(--fg); border-color: rgba(255,255,255,0.2);
}

/* Frequency scale (3 niveles) — Q3 */
.freq-buttons { display: flex; gap: 6px; }
.freq-btn {
  flex: 1;
  appearance: none;
  border: 1px solid var(--card-line);
  background: transparent;
  color: var(--fg-soft);
  padding: 9px 6px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.freq-btn:hover { border-color: var(--fg-soft); color: var(--fg); }
.freq-btn.lvl-2.is-selected {
  background: var(--accent); color: var(--accent-ink); border-color: var(--accent);
}
.freq-btn.lvl-1.is-selected {
  background: rgba(255,91,58,0.16); color: var(--accent); border-color: rgba(255,91,58,0.5);
}
.freq-btn.lvl-0.is-selected {
  background: var(--card); color: var(--fg); border-color: var(--fg-mute);
}

/* Slider revenue */
.slider-wrap { padding: 4px 4px 0; }
.slider-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -0.03em;
  margin: 6px 0 4px;
}
.slider-value small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--fg-mute);
  letter-spacing: 0;
  margin-top: 4px;
}
.slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.10);
  border-radius: 999px;
  outline: none;
  margin: 20px 0 8px;
}
.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 4px solid var(--bg);
  box-shadow: 0 4px 14px rgba(255,91,58,0.5);
}
.slider-input::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 4px solid var(--bg);
}
.slider-ticks { display: flex; justify-content: space-between; font-size: 11px; color: var(--fg-mute); }

/* Form inputs */
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 12px; color: var(--fg-mute); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.input {
  appearance: none;
  border: 1px solid var(--card-line);
  background: var(--card);
  color: var(--fg);
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  width: 100%;
  outline: none;
  transition: border-color var(--t-fast);
}
.input:focus { border-color: var(--accent); }
.phone-row { display: grid; grid-template-columns: 88px 1fr; gap: 8px; }
.phone-row .input { padding-left: 14px; }
.check-line { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--fg-soft); line-height: 1.45; cursor: pointer; user-select: none; }
.check-line input { margin-top: 2px; accent-color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }
.check-line a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.check-line strong { color: var(--fg); font-weight: 600; }

/* "Por qué pedimos esto" — nota de finalidad en captura */
.why-note {
  margin: 2px 0 2px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--fg-mute);
  padding: 10px 12px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 10px;
}

/* Final stat pop */
.diag-card {
  border: 1px solid var(--card-line);
  background: linear-gradient(180deg, rgba(255,91,58,0.10), rgba(255,91,58,0.02));
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}
.diag-card .label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.diag-card .big { font-family: var(--font-display); font-weight: 600; font-size: 26px; line-height: 1.1; letter-spacing: -0.02em; }
.diag-card .sub { color: var(--fg-soft); font-size: 13px; margin-top: 8px; line-height: 1.45; }

/* Success */
.success-screen { text-align: center; align-items: center; justify-content: center; display: flex; flex-direction: column; }
.success-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  margin: 0 auto 22px;
  animation: pop 500ms cubic-bezier(.2,1.4,.4,1);
}
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }

/* small */
.fine { font-size: 11px; color: var(--fg-mute); line-height: 1.4; text-align: center; padding: 8px 4px 0; }

/* Square buttons variant */
.btn-shape-rect { border-radius: 12px; }
.btn-shape-rect.btn-ghost { border-radius: 12px; }

/* ===== Value card (CTA preview of report) ===== */
.value-card {
  border: 1px solid var(--card-line);
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 18px;
}
.value-card-title {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 12px;
}
.value-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.value-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.35; color: var(--fg-soft);
}
.value-list strong { color: var(--fg); font-weight: 600; }
.vdot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 6px; }

/* ===== Report screen ===== */
.report-screen { padding-top: 18px; }
.report-block {
  border: 1px solid var(--card-line);
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}
.report-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-mute); font-weight: 700; margin-bottom: 12px;
}
.index-block {
  background: linear-gradient(180deg, rgba(255,91,58,0.12), rgba(255,91,58,0.02));
}
.index-band {
  font-family: var(--font-display); font-weight: 600;
  font-size: 24px; letter-spacing: -0.02em; line-height: 1.05; color: var(--fg);
}
.index-tag { font-size: 13px; color: var(--accent); font-weight: 600; margin-top: 2px; }
.index-desc { font-size: 13.5px; line-height: 1.5; color: var(--fg-soft); margin: 14px 0 0; }

/* Meter */
.meter { margin: 18px 0 2px; }
.meter-track {
  position: relative; height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,91,58,0.25), rgba(255,91,58,0.55));
}
.meter-fill {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--accent); border-radius: 999px;
}
.meter-knob {
  position: absolute; top: 50%;
  transform: translate(-50%, -50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  border: 3px solid var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  box-shadow: 0 4px 14px rgba(255,91,58,0.5);
}
.meter-scale { display: flex; justify-content: space-between; margin-top: 14px; font-size: 11px; color: var(--fg-mute); }

/* Mirror */
.mirror-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.mirror-list li { display: flex; flex-direction: column; gap: 3px; }
.mirror-k { font-size: 12px; color: var(--fg-mute); font-weight: 600; }
.mirror-v { font-size: 14px; color: var(--fg); line-height: 1.4; }

/* Levers */
.lever-list { display: flex; flex-direction: column; gap: 10px; }
.lever-card {
  border: 1px solid var(--card-line);
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  padding: 14px;
}
.lever-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.lever-icon { font-size: 20px; }
.lever-title { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; flex: 1; }
.lever-num { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--fg-mute); }
.lever-row { margin-bottom: 10px; }
.lever-row:last-child { margin-bottom: 0; }
.lever-row p { margin: 4px 0 0; font-size: 13.5px; line-height: 1.45; color: var(--fg-soft); }
.lever-row.action p { color: var(--fg); }
.lever-tag {
  display: inline-block; font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 700; padding: 3px 7px; border-radius: 6px;
}
.tag-sym { background: var(--card); border: 1px solid var(--card-line); color: var(--fg-soft); }
.tag-cost { background: var(--card); border: 1px solid var(--card-line); color: var(--fg-soft); }
.tag-act { background: var(--accent); color: var(--accent-ink); }
.lever-row.action {
  border-top: 1px dashed var(--card-line);
  padding-top: 10px; margin-top: 12px;
}

/* Benchmark */
.bench-block { background: var(--card); }
.bench-block p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--fg-soft); }
.bench-block strong { color: var(--fg); }

/* Report CTA */
.report-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; padding-top: 6px; }
.cta-pitch {
  border: 1px solid var(--card-line);
  background: var(--card);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 4px;
}
.cta-pitch-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.cta-pitch p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--fg-soft); }
.cta-pitch strong { color: var(--fg); }
.btn-wa { background: #25D366; color: #06351b; box-shadow: 0 10px 30px -10px rgba(37,211,102,0.6); }
.btn-wa svg { flex-shrink: 0; }

/* ===== Print document — hidden on screen, shown on print ===== */
.print-doc { display: none; }

@media print {
  @page { size: A4; margin: 16mm 14mm; }
  html, body { background: #fff !important; }
  .stage, .frame { all: unset; }
  .app-header, .progress, .screen > *:not(.print-doc), .tweaks-fab, .tweaks-panel, [data-tweaks-root] { display: none !important; }
  .screen { padding: 0 !important; overflow: visible !important; display: block !important; animation: none !important; }
  .screen-wrap, .frame, .stage { overflow: visible !important; display: block !important; height: auto !important; min-height: 0 !important; }

  .print-doc {
    display: block !important;
    color: #1a1a1a;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 11pt;
    line-height: 1.5;
  }
  .print-header {
    display: flex; justify-content: space-between; align-items: baseline;
    border-bottom: 2px solid #FF5B3A; padding-bottom: 8px; margin-bottom: 18px;
  }
  .print-brand { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14pt; color: #0A2540; font-weight: 500; }
  .print-brand strong { font-weight: 700; }
  .print-meta { font-size: 9pt; color: #777; }
  .print-h1 {
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 22pt; font-weight: 600;
    letter-spacing: -0.02em; color: #0A2540; margin: 0 0 18px;
  }
  .print-index {
    display: flex; gap: 18px; align-items: flex-start;
    background: #FFF4F1; border: 1px solid #FFD9CE; border-radius: 12px; padding: 16px; margin-bottom: 22px;
  }
  .print-index-num {
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 40pt; font-weight: 700;
    color: #FF5B3A; line-height: 0.9;
  }
  .print-index-num span { font-size: 16pt; color: #c0c0c0; }
  .print-index-band { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16pt; font-weight: 600; color: #0A2540; }
  .print-index-tag { font-size: 10pt; color: #FF5B3A; font-weight: 600; margin-bottom: 6px; }
  .print-index-desc { font-size: 10pt; color: #444; margin: 0; }
  .print-h2 {
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 13pt; font-weight: 600;
    color: #0A2540; margin: 22px 0 10px; padding-bottom: 4px; border-bottom: 1px solid #eee;
  }
  .print-table { width: 100%; border-collapse: collapse; }
  .print-table th {
    text-align: left; width: 38%; vertical-align: top; padding: 6px 12px 6px 0;
    font-size: 9.5pt; color: #777; font-weight: 600;
  }
  .print-table td { padding: 6px 0; font-size: 10pt; color: #1a1a1a; border-bottom: 1px solid #f0f0f0; }
  .print-lever { break-inside: avoid; margin-bottom: 14px; padding: 12px 14px; border: 1px solid #eee; border-radius: 10px; }
  .print-lever-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 12pt; font-weight: 600; color: #0A2540; margin-bottom: 6px; }
  .print-lever p { margin: 4px 0; font-size: 10pt; color: #333; }
  .print-action { background: #FFF4F1; padding: 8px 10px; border-radius: 8px; margin-top: 8px !important; }
  .print-bench { break-inside: avoid; margin-top: 18px; padding: 12px 14px; background: #f7f7f5; border-radius: 10px; font-size: 9.5pt; color: #444; }
  .print-footer { margin-top: 22px; padding-top: 10px; border-top: 1px solid #eee; font-size: 8.5pt; color: #999; }
}
