/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #6C3AFF;
  --primary-dim: rgba(108, 58, 255, 0.18);
  --teal:       #00D4AA;
  --teal-dim:   rgba(0, 212, 170, 0.15);
  --danger:     #FF4D6D;
  --bg1:        #080814;
  --bg2:        #10082A;
  --surface:    rgba(255,255,255,0.04);
  --surface-hov:rgba(255,255,255,0.08);
  --border:     rgba(255,255,255,0.08);
  --border-hov: rgba(255,255,255,0.18);
  --text:       #F0EEFF;
  --text-muted: rgba(240,238,255,0.45);
  --radius-lg:  20px;
  --radius-md:  12px;
  --radius-sm:  8px;
  --font:       'Inter', system-ui, sans-serif;
  --transition: 280ms cubic-bezier(0.4,0,0.2,1);
}

html { height: 100%; }

body {
  font-family: var(--font);
  background: var(--bg1);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-x: hidden;
}

/* ─── Animated Background ───────────────────────────────────────────────────── */
.bg-gradient {
  position: fixed; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(108,58,255,0.22) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 100%, rgba(0,212,170,0.14) 0%, transparent 55%),
              linear-gradient(160deg, var(--bg1) 0%, var(--bg2) 100%);
}

.bg-orb {
  position: fixed; border-radius: 50%; filter: blur(90px);
  z-index: 0; pointer-events: none; opacity: 0.35;
  animation-fill-mode: both;
}
.orb1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -200px; left: -120px;
  animation: orb-drift1 18s ease-in-out 3 both;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation: orb-drift2 22s ease-in-out 2 both;
}

@keyframes orb-drift1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(60px, 40px) scale(1.1); }
  66%  { transform: translate(-30px, 70px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orb-drift2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-50px, -40px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ─── Layout ────────────────────────────────────────────────────────────────── */
.hub-wrapper {
  position: relative; z-index: 1;
  width: 100%; max-width: 480px;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}

/* ─── Logo ──────────────────────────────────────────────────────────────────── */
.hub-logo {
  display: flex; align-items: center; gap: 0.6rem;
  animation: fade-down 500ms cubic-bezier(0.4,0,0.2,1) 1 both;
}
.hub-logo img { height: 32px; }
.logo-text { font-size: 1.15rem; font-weight: 300; color: var(--text-muted); letter-spacing: -0.02em; }
.logo-text strong { color: var(--text); font-weight: 700; }

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Progress Track ─────────────────────────────────────────────────────────── */
.progress-track {
  display: flex; align-items: center; width: 100%; padding: 0 0.5rem;
  animation: fade-in 400ms 100ms both;
}
.progress-dot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 600;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  transition: var(--transition);
}
.progress-dot.active {
  border-color: var(--primary);
  background: var(--primary-dim);
  color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108,58,255,0.15);
  animation: dot-pulse 2s ease-in-out 3 both;
}
.progress-dot.done {
  border-color: var(--teal);
  background: var(--teal-dim);
  color: var(--teal);
}
.progress-dot svg { width: 12px; height: 12px; }
.progress-line {
  flex: 1; height: 2px; background: var(--border); border-radius: 2px;
  transition: background 400ms ease;
}
.progress-line.done { background: var(--teal); }

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(108,58,255,0.15); }
  50%       { box-shadow: 0 0 0 8px rgba(108,58,255,0.08); }
}

/* ─── Wizard Card ────────────────────────────────────────────────────────────── */
.wizard-card {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  animation: card-enter 450ms cubic-bezier(0.4,0,0.2,1) 1 both;
}

@keyframes card-enter {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.step-content { animation: step-slide 320ms cubic-bezier(0.4,0,0.2,1) 1 both; }

@keyframes step-slide {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─── Step Typography ────────────────────────────────────────────────────────── */
.step-icon {
  font-size: 2.4rem; margin-bottom: 0.8rem;
  animation: icon-pop 500ms cubic-bezier(0.34,1.56,0.64,1) 1 both;
}
@keyframes icon-pop {
  from { transform: scale(0.5) rotate(-10deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}

.step-title {
  font-size: 1.55rem; font-weight: 700; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 0.4rem; line-height: 1.2;
}
.step-subtitle {
  font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.8rem; line-height: 1.5;
}

/* ─── Method Cards (Step 1) ──────────────────────────────────────────────────── */
.method-cards { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }

.method-card {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  cursor: pointer; text-decoration: none; color: var(--text);
  transition: var(--transition);
  animation: fade-in 400ms both;
}
.method-card:nth-child(1) { animation-delay: 100ms; }
.method-card:nth-child(3) { animation-delay: 200ms; }

.method-card:hover {
  background: var(--surface-hov);
  border-color: var(--border-hov);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.method-card--google:hover { border-color: rgba(66,133,244,0.4); }

.method-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); flex-shrink: 0; }
.method-info { flex: 1; }
.method-info strong { display: block; font-size: 0.95rem; font-weight: 600; }
.method-info span { font-size: 0.8rem; color: var(--text-muted); }
.method-arrow { font-size: 1.1rem; color: var(--text-muted); transition: var(--transition); }
.method-card:hover .method-arrow { transform: translateX(4px); color: var(--text); }

.method-divider {
  display: flex; align-items: center; gap: 0.75rem; color: var(--text-muted); font-size: 0.8rem;
}
.method-divider::before, .method-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.step-legal { font-size: 0.75rem; color: var(--text-muted); text-align: center; line-height: 1.5; }
.step-legal a { color: var(--primary); text-decoration: none; }
.step-legal a:hover { text-decoration: underline; }

/* ─── Inputs ─────────────────────────────────────────────────────────────────── */
.hub-input {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text); font-family: var(--font); font-size: 0.95rem;
  outline: none; transition: var(--transition);
  margin-bottom: 0.75rem;
  -webkit-appearance: none;
}
.hub-input:focus {
  border-color: var(--primary);
  background: rgba(108,58,255,0.06);
  box-shadow: 0 0 0 3px rgba(108,58,255,0.15);
}
.hub-input::placeholder { color: var(--text-muted); }

.hub-select { cursor: pointer; }
.hub-select option { background: #1a1030; }

.input-group { display: flex; gap: 0; margin-bottom: 0.75rem; }
.input-group .hub-input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 0; flex: 1; }
.phone-prefix {
  display: flex; align-items: center; gap: 0.4rem; padding: 0 0.85rem;
  background: rgba(255,255,255,0.07); border: 1px solid var(--border);
  border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.9rem; color: var(--text-muted); white-space: nowrap;
}
.phone-prefix img { width: 18px; border-radius: 2px; }

.input-hint { font-size: 0.77rem; color: var(--text-muted); margin-bottom: 1.2rem; }

.input-field { position: relative; }
.toggle-pass {
  position: absolute; right: 0.85rem; top: 50%; transform: translateY(-60%);
  background: none; border: none; cursor: pointer; font-size: 1rem; padding: 0.25rem;
}

.input-error, .otp-error {
  font-size: 0.8rem; color: var(--danger); margin-bottom: 0.75rem;
  animation: shake 400ms cubic-bezier(0.4,0,0.2,1) 1 both;
}

/* Validación en tiempo real */
.hub-input.input-error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 2px rgba(255, 77, 109, 0.18);
}
.hub-input.input-ok {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px rgba(0, 212, 170, 0.12);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.5rem; }
.form-row .hub-input { margin-bottom: 0; }

.form-section-label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 0.6rem; font-weight: 600;
}

.social-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.social-row .hub-input { margin-bottom: 0; }

/* ─── OTP Inputs ─────────────────────────────────────────────────────────────── */
.otp-inputs {
  display: flex; gap: 0.6rem; justify-content: center; margin-bottom: 1.2rem;
}
.otp-box {
  width: 48px; height: 56px; text-align: center;
  font-size: 1.5rem; font-weight: 700; letter-spacing: 0;
  background: rgba(255,255,255,0.05); border: 2px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); outline: none;
  transition: var(--transition); font-family: var(--font);
}
.otp-box:focus { border-color: var(--primary); background: var(--primary-dim); box-shadow: 0 0 0 3px rgba(108,58,255,0.2); }
.otp-box.filled { border-color: var(--teal); }
.otp-box.error  { border-color: var(--danger); animation: shake 400ms 1 both; }

/* ─── Primary Button ─────────────────────────────────────────────────────────── */
.hub-btn {
  width: 100%; padding: 0.95rem; margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #9B5CF6 100%);
  border: none; border-radius: var(--radius-sm);
  color: #fff; font-family: var(--font); font-size: 1rem; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(108,58,255,0.35);
  position: relative; overflow: hidden;
}
.hub-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.hub-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(108,58,255,0.45); }
.hub-btn:hover::before { opacity: 1; }
.hub-btn:active { transform: translateY(0); }
.hub-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.hub-link {
  display: block; text-align: center; margin-top: 0.75rem;
  font-size: 0.85rem; color: var(--text-muted); background: none; border: none;
  cursor: pointer; font-family: var(--font); transition: color 200ms;
}
.hub-link:hover { color: var(--text); }

/* ─── Button Loader ──────────────────────────────────────────────────────────── */
.btn-loader {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 700ms linear 20 both;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── AI Greeting ────────────────────────────────────────────────────────────── */
.ai-greeting {
  display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1.5rem;
}
.ai-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #fff;
  animation: avatar-pop 500ms cubic-bezier(0.34,1.56,0.64,1) 1 both;
}
@keyframes avatar-pop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.ai-bubble {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 0.8rem 1rem; font-size: 0.9rem; line-height: 1.55; color: var(--text);
  flex: 1; min-height: 48px; display: flex; align-items: center;
}

.ai-typing { display: flex; gap: 4px; align-items: center; }
.ai-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--text-muted);
  animation: typing-dot 1.2s ease-in-out 4 both;
}
.ai-typing span:nth-child(2) { animation-delay: 200ms; }
.ai-typing span:nth-child(3) { animation-delay: 400ms; }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

/* ─── Google Avatar ──────────────────────────────────────────────────────────── */
.google-avatar {
  width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--border);
  display: block; margin: 0 auto 1rem;
  animation: avatar-pop 400ms cubic-bezier(0.34,1.56,0.64,1) 1 both;
}

/* ─── Solution Cards ─────────────────────────────────────────────────────────── */
.solution-cards { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.2rem; }

.solution-card {
  display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 1rem;
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-md);
  cursor: pointer; transition: var(--transition);
  animation: fade-in 300ms both;
}
.solution-card:nth-child(1) { animation-delay: 50ms; }
.solution-card:nth-child(2) { animation-delay: 120ms; }
.solution-card:nth-child(3) { animation-delay: 190ms; }

.solution-card:hover { background: var(--surface-hov); border-color: var(--border-hov); }
.solution-card.selected { border-color: var(--primary); background: var(--primary-dim);
  box-shadow: 0 0 0 3px rgba(108,58,255,0.15); }

.solution-icon { font-size: 1.4rem; width: 36px; text-align: center; }
.solution-info { flex: 1; }
.solution-info strong { font-size: 0.92rem; font-weight: 600; }
.solution-check { font-size: 0.9rem; color: var(--primary); opacity: 0; transition: var(--transition); }
.solution-card.selected .solution-check { opacity: 1; }

/* ─── Map Preview ────────────────────────────────────────────────────────────── */
.address-group { position: relative; }
/* ─── Dev Badge ──────────────────────────────────────────────────────────────── */
.dev-badge {
  margin-top: 0.8rem; padding: 0.5rem 0.85rem;
  background: rgba(255,183,0,0.1); border: 1px solid rgba(255,183,0,0.2);
  border-radius: var(--radius-sm); font-size: 0.78rem; color: #FFB700; text-align: center;
  animation: fade-in 400ms 500ms both;
}

/* ─── Loading Bar ────────────────────────────────────────────────────────────── */
.loading-bar {
  height: 4px; background: var(--border); border-radius: 4px;
  overflow: hidden; margin-top: 1.5rem;
}
.loading-fill {
  height: 100%; width: 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  animation: load-fill 2.5s cubic-bezier(0.4,0,0.2,1) 1 forwards;
}
@keyframes load-fill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* ─── Success Screen ─────────────────────────────────────────────────────────── */
.step-success { text-align: center; padding: 1rem; }
.success-icon {
  font-size: 3.5rem; margin-bottom: 0.8rem;
  animation: success-bounce 600ms cubic-bezier(0.34,1.56,0.64,1) 1 both;
}
@keyframes success-bounce {
  from { transform: scale(0) rotate(-15deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}

/* ─── Confetti ───────────────────────────────────────────────────────────────── */
.confetti-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 0; overflow: visible; }

.confetti-piece {
  position: absolute; top: -10px; width: 8px; height: 14px;
  border-radius: 2px; opacity: 0;
  animation: confetti-fall 1.4s ease-in 1 forwards;
}
@keyframes confetti-fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(320px) rotate(720deg); opacity: 0; }
}

/* ─── Vend AI Bubble ─────────────────────────────────────────────────────────── */
.vend-bubble {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(108,58,255,0.5);
  transition: var(--transition);
  animation: vend-enter 600ms cubic-bezier(0.34,1.56,0.64,1) 800ms both;
}
.vend-bubble:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(108,58,255,0.6); }
.vend-avatar { font-size: 1.1rem; font-weight: 700; color: #fff; }

.vend-tooltip {
  position: absolute; bottom: 64px; right: 0;
  background: rgba(20,10,45,0.95); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.7rem 0.9rem;
  font-size: 0.83rem; color: var(--text); min-width: 200px; max-width: 260px;
  backdrop-filter: blur(12px); line-height: 1.5;
  animation: tooltip-pop 250ms cubic-bezier(0.34,1.56,0.64,1) 1 both;
}
@keyframes tooltip-pop {
  from { transform: scale(0.85) translateY(8px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes vend-enter {
  from { transform: scale(0) rotate(-90deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}

/* ─── Facebook method card ───────────────────────────────────────────────────── */
.method-card--facebook:hover { border-color: rgba(24,119,242,0.4); }

/* ─── Solution logo ──────────────────────────────────────────────────────────── */
.solution-logo { height: 36px; max-width: 180px; object-fit: contain; }

/* ─── Country selector ───────────────────────────────────────────────────────── */
.phone-group { display: flex; gap: 0; margin-bottom: 0.75rem; }
.phone-number-input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important; margin-bottom: 0 !important; flex: 1; }

.country-selector { position: relative; flex-shrink: 0; }

.country-trigger {
  display: flex; align-items: center; gap: 0.35rem; padding: 0 0.9rem;
  height: 100%; min-height: 48px;
  background: rgba(255,255,255,0.07); border: 1px solid var(--border);
  border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--text); cursor: pointer; font-family: var(--font); font-size: 0.9rem;
  white-space: nowrap; transition: var(--transition);
}
.country-trigger:hover { background: rgba(255,255,255,0.1); }
.caret { color: var(--text-muted); flex-shrink: 0; }

.country-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; z-index: 50;
  background: rgba(16,8,42,0.97); border: 1px solid var(--border-hov);
  border-radius: var(--radius-md); padding: 0.3rem;
  min-width: 220px; max-height: 280px; overflow-y: auto;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  animation: fade-in 180ms both;
}
.country-option {
  display: flex; align-items: center; gap: 0.6rem; width: 100%;
  padding: 0.55rem 0.7rem; border-radius: var(--radius-sm); border: none;
  background: none; color: var(--text); cursor: pointer; font-family: var(--font);
  font-size: 0.875rem; text-align: left; transition: background 150ms;
}
.country-option:hover { background: rgba(255,255,255,0.07); }
.country-flag { font-size: 1.2rem; line-height: 1; }
.country-name { flex: 1; }
.country-dial { color: var(--text-muted); font-size: 0.8rem; }

/* ─── Upsell social (Step 5 WhatsApp) ────────────────────────────────────────── */
.upsell-social {
  margin-top: 1.2rem; padding: 1rem;
  background: rgba(108,58,255,0.07); border: 1px solid rgba(108,58,255,0.2);
  border-radius: var(--radius-md);
  animation: fade-in 400ms 200ms both;
}
.upsell-label { font-size: 0.85rem; color: var(--text); margin-bottom: 0.75rem; line-height: 1.5; }
.upsell-label small { color: var(--text-muted); }
.upsell-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }

.upsell-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600; text-decoration: none; cursor: pointer;
  border: 1px solid; transition: var(--transition);
}
.upsell-google { color: #4285F4; border-color: rgba(66,133,244,0.3); background: rgba(66,133,244,0.07); }
.upsell-google:hover { background: rgba(66,133,244,0.15); }
.upsell-fb { color: #1877F2; border-color: rgba(24,119,242,0.3); background: rgba(24,119,242,0.07); }
.upsell-fb:hover { background: rgba(24,119,242,0.15); }
.upsell-skip { background: none; border: none; color: var(--text-muted); font-size: 0.82rem; cursor: pointer; font-family: var(--font); padding: 0.5rem; }
.upsell-skip:hover { color: var(--text); }

/* ─── Utility ────────────────────────────────────────────────────────────────── */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Places New (Step 6) ─────────────────────────────────────────────────── */
.places-search { position: relative; margin-bottom: .75rem; }
.business-search-status {
  min-height: 1.25rem; margin: -.35rem 0 .45rem;
  font-size: .78rem; color: var(--text-muted);
}
.business-search-status[hidden] { display: block; visibility: hidden; }
.business-search-status.loading { color: var(--primary); }
.business-search-status.success { color: var(--success); }
.business-search-status.error { color: var(--danger); }
.business-search-status.info { color: var(--text-muted); }

.places-suggestions {
  display: flex; flex-direction: column; gap: .45rem;
  width: 100%; max-height: 280px; overflow-y: auto;
  padding: .45rem; margin: -.15rem 0 .55rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  background: rgba(8,8,20,0.92);
  box-shadow: 0 18px 44px rgba(0,0,0,0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.places-suggestions:empty { display: none; }
.places-suggestion {
  appearance: none;
  display: grid; grid-template-columns: minmax(0, 1fr); gap: .22rem;
  width: 100%; min-height: 64px;
  padding: .78rem .9rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.045);
  color: var(--text);
  text-align: left; cursor: pointer; font: inherit;
  line-height: 1.35;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.places-suggestion:hover, .places-suggestion.active {
  background: rgba(108,58,255,0.16);
  border-color: rgba(197,234,255,0.55);
  outline: none;
  transform: translateY(-1px);
}
.places-suggestion strong {
  display: block;
  min-width: 0;
  color: var(--text);
  font-size: .91rem;
  font-weight: 700;
  line-height: 1.22;
  white-space: normal;
  overflow-wrap: anywhere;
}
.places-suggestion span {
  display: block;
  min-width: 0;
  color: rgba(240,238,255,0.62);
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.32;
  white-space: normal;
  overflow-wrap: anywhere;
}
.places-attribution {
  padding: .4rem .15rem 0; color: #4285f4; font-size: .7rem; text-align: right;
  font-weight: 600;
}
.selected-place-profile {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  margin-bottom: .75rem; padding: .75rem; border: 1px solid rgba(0,212,170,.3);
  border-radius: 8px; background: rgba(0,212,170,.07); text-align: left;
}
.selected-place-profile[hidden] { display: none; }
.selected-place-profile > div { min-width: 0; display: flex; flex-direction: column; gap: .2rem; }
.selected-place-profile strong { font-size: .88rem; overflow-wrap: anywhere; }
.selected-place-profile span { font-size: .74rem; color: var(--text-muted); }
.selected-place-profile .hub-link { flex: 0 0 auto; margin: 0; padding: .35rem; }
.places-help { margin: .25rem 0 .75rem; color: var(--text-muted); font-size: .78rem; line-height: 1.45; }
/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 520px) {
  body { padding: 1rem; align-items: flex-start; padding-top: 1.5rem; }
  .wizard-card { padding: 1.6rem 1.25rem; }
  .step-title { font-size: 1.3rem; }
  .form-row, .social-row { grid-template-columns: 1fr; }
  .otp-box { width: 40px; height: 50px; font-size: 1.3rem; }
  .hub-wrapper { gap: 1rem; }
  .business-results-card { max-height: 80vh; }
}
