/* ── POSTULACION BH ── wrapper de página */
.ud-bh-page {
  background: #070b17;
  color: #e2e8f0;
  overflow-x: hidden;
  min-height: 100vh;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

/* Glass card */
.glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.glass-2 {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Gradient text */
.g-text {
  background: linear-gradient(130deg, #60a5fa 0%, #00e87c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Neon glow */
.glow-green { box-shadow: 0 0 24px rgba(0,232,124,.35), 0 0 60px rgba(0,232,124,.12); }
.glow-blue  { box-shadow: 0 0 20px rgba(59,107,255,.4), 0 0 50px rgba(59,107,255,.12); }
.glow-text  { text-shadow: 0 0 20px rgba(0,232,124,.6); }

/* Input dark */
.inp {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  border-radius: 0.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.inp::placeholder { color: rgba(255,255,255,0.25); }
.inp:focus { border-color: #3b6bff; box-shadow: 0 0 0 3px rgba(59,107,255,.12); }
.inp option { background: #0f1527; }
select.inp { -webkit-appearance: none; appearance: none; }

/* Upload zone */
.upz {
  background: rgba(255,255,255,0.03);
  border: 2px dashed rgba(255,255,255,0.1);
  border-radius: 0.875rem;
  padding: 1.25rem;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
}
.upz:hover { border-color: rgba(59,107,255,.45); background: rgba(59,107,255,.05); }
.upz.done  { border-color: rgba(0,232,124,.4); background: rgba(0,232,124,.05); border-style: solid; }
.upz.locked{ opacity: .38; cursor: not-allowed; pointer-events: none; }

/* Chip dark */
.chp {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9999px;
  padding: .45rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}
.chp:hover { border-color: #00e87c; color: #00e87c; }
.chp.on    { background: rgba(0,232,124,.12); border-color: #00e87c; color: #00e87c; }

/* Wizard step panel */
.wpanel { display: none; }
.wpanel.on { display: block; animation: slideIn 0.38s cubic-bezier(.22,1,.36,1); }

/* Step circle states */
.sc-wait   { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.3); }
.sc-active { background: #3b6bff; color: white; box-shadow: 0 0 16px rgba(59,107,255,.45); }
.sc-done   { background: #00c468; color: white; }

/* Progress bar */
#wProg { transition: width .45s cubic-bezier(.22,1,.36,1); }

/* Range slider */
.ud-bh-page input[type=range] {
  -webkit-appearance: none; appearance: none;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255,255,255,.1);
  outline: none;
  width: 100%;
}
.ud-bh-page input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #00e87c;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0,232,124,.5);
}

/* Speed lines */
@keyframes speedLine {
  0%   { transform: translateX(0);   opacity: 0;   }
  20%  { opacity: .7; }
  100% { transform: translateX(-60px); opacity: 0; }
}
.sl  { animation: speedLine 1.4s ease-in-out infinite; border-radius: 9999px; }
.sl1 { animation-delay: 0s;    height: 2px; width: 55px; }
.sl2 { animation-delay: .25s;  height: 2px; width: 38px; }
.sl3 { animation-delay: .5s;   height: 2px; width: 68px; }
.sl4 { animation-delay: .12s;  height: 1px; width: 30px; }

/* FAQ */
.ud-bh-page details[open] .fa { transform: rotate(180deg); }
.fa { transition: transform .2s; }
.ud-bh-page details summary { list-style: none; }
.ud-bh-page details summary::-webkit-details-marker { display: none; }

/* City bg blobs */
.blob1 { position:absolute; top:-120px; left:50%; transform:translateX(-50%); width:700px; height:400px;
          background:radial-gradient(ellipse, rgba(59,107,255,.12) 0%, transparent 70%); pointer-events:none; }
.blob2 { position:absolute; bottom:0; right:-80px; width:300px; height:300px;
          background:radial-gradient(circle, rgba(0,232,124,.07) 0%, transparent 70%); pointer-events:none; }

/* Earnings bar animation */
@keyframes barGrow { from { width: 0; } }
.bar-fill { animation: barGrow .8s ease-out both; }

/* ── KEYFRAMES ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── MOTO ILLUSTRATION ── */
.pbh-moto-float  { animation: float 3.5s ease-in-out infinite; }
.pbh-moto-shadow { filter: drop-shadow(0 4px 32px rgba(59,107,255,.35)); }
.pbh-glow-ring   { background: rgba(59,107,255,.10); filter: blur(48px); }

/* ── SPEED LINES ── */
.pbh-sl-blue-1 { background: linear-gradient(to right, transparent, rgba(147,197,253,.60)); }
.pbh-sl-blue-2 { background: linear-gradient(to right, transparent, rgba(147,197,253,.40)); }
.pbh-sl-green  { background: linear-gradient(to right, transparent, rgba(0,232,124,.50)); }
.pbh-sl-blue-3 { background: linear-gradient(to right, transparent, rgba(147,197,253,.30)); }

/* ── EARNING BADGE ── */
.pbh-badge-earn {
  background: linear-gradient(to bottom right, #00e87c, #00c468);
  box-shadow: 0 10px 15px -3px rgba(34,197,94,.30), 0 4px 6px -4px rgba(34,197,94,.30);
}

/* ── ICON BACKGROUNDS ── */
.pbh-icon-green-sm { background: rgba(0,232,124,.20); }
.pbh-icon-step1 { background: linear-gradient(to bottom right, #3b6bff, #1e40af); box-shadow: 0 10px 15px -3px rgba(59,107,255,.30); }
.pbh-icon-step2 { background: linear-gradient(to bottom right, #6366f1, #6d28d9); box-shadow: 0 10px 15px -3px rgba(99,102,241,.30); }
.pbh-icon-step3 { background: linear-gradient(to bottom right, #00e87c, #047857); box-shadow: 0 10px 15px -3px rgba(0,232,124,.30); }

/* ── BUTTONS ── */
.pbh-sim-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; border-radius: 0.75rem; margin-top: 1rem;
  background: linear-gradient(to right, #3b6bff, #1d4ed8);
  color: white; font-weight: 900; font-size: 0.875rem; padding: 0.75rem;
  transition: opacity 150ms;
  box-shadow: 0 0 20px rgba(59,107,255,.40), 0 0 50px rgba(59,107,255,.12);
}
.pbh-sim-cta:hover { opacity: 0.9; }

.pbh-btn-step1 {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(to right, #3b6bff, #1d4ed8);
  color: white; font-weight: 900; font-size: 0.875rem;
  padding: 0.875rem 2rem; border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(59,107,255,.25);
  transition: opacity 150ms;
}
.pbh-btn-step1:hover { opacity: 0.9; }

.pbh-btn-step2 {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(to right, #4f46e5, #6d28d9);
  color: white; font-weight: 900; font-size: 0.875rem;
  padding: 0.875rem 2rem; border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(99,102,241,.25);
  transition: opacity 150ms;
}
.pbh-btn-step2:hover { opacity: 0.9; }

.pbh-btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(to right, #00e87c, #00c468);
  color: white; font-weight: 900; font-size: 1rem;
  padding: 1rem 2.5rem; border-radius: 0.75rem;
  box-shadow: 0 0 24px rgba(0,232,124,.35), 0 0 60px rgba(0,232,124,.12),
              0 20px 25px -5px rgba(0,232,124,.25);
  transition: opacity 150ms;
}
.pbh-btn-submit:hover { opacity: 0.9; }

.pbh-btn-step1:disabled,
.pbh-btn-step2:disabled,
.pbh-btn-submit:disabled,
.pbh-btn-back:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  filter: saturate(0.6);
}

.pbh-btn-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,.35); font-weight: 600; font-size: 0.875rem;
  padding: 0.75rem 1rem; border-radius: 0.75rem;
  transition: color 150ms;
}
.pbh-btn-back:hover { color: rgba(255,255,255,.60); }

/* ── PROGRESS ── */
.pbh-prog-track { background: rgba(255,255,255,.06); }
.pbh-prog-bar   {
  width: 0%; transition: width .45s cubic-bezier(.22,1,.36,1);
  background: linear-gradient(to right, #3b6bff, #00e87c);
}
.pbh-connector-bg { background: rgba(255,255,255,.08); }
.pbh-conn1-fill {
  width: 0%; transition: width .50s cubic-bezier(.22,1,.36,1);
  background: #3b6bff;
}
.pbh-conn2-fill {
  width: 0%; transition: width .50s cubic-bezier(.22,1,.36,1);
  background: linear-gradient(to right, #3b6bff, #00e87c);
}

/* ── META HINT ── */
.pbh-meta-hint {
  background: rgba(0,232,124,.10);
  border: 1px solid rgba(0,232,124,.20);
}

/* ── BENEFIT MINI CARDS ── */
.pbh-benefit-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 0.75rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── FAQ ── */
.pbh-faq-item { border: 1px solid rgba(255,255,255,.07); border-radius: 1rem; overflow: hidden; }
.pbh-faq-body { border-top: 1px solid rgba(255,255,255,.07); }

/* ── COLOR UTILITIES ── */
.text-ud-green  { color: #00e87c; }
.text-ud-bright { color: #3b6bff; }
.pbh-text-muted { color: rgba(255,255,255,.50); }

/* ── CHECKBOX ACCENT ── */
.pbh-accent-green { accent-color: #00e87c; }

/* ── UPLOAD NOTE ── */
.pbh-upload-note { color: rgba(255,255,255,.25); font-size: 0.75rem; margin-top: 0.375rem; line-height: 1.4; }

/* ── MOTO SVG WIDTH ── */
.pbh-moto-svg { width: clamp(18rem, 50vw, 23.75rem); }
