.nsp-container { max-width: 640px; margin: 0 auto; }
.nsp-step { display: none; }
.nsp-step.active { display: block; }

/* Progress dots: light gray = not reached yet, dark green = answered/current */
.nsp-progress { display: flex; gap: 6px; margin-bottom: 16px; }
.nsp-dot { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; }
.nsp-dot-done { background: #16a34a; }
.nsp-dot-current { background: #16a34a; width: 10px; height: 10px; box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18); }

/* Question card */
.nsp-question-prompt { font-size: 1.15rem; font-weight: 700; color: #1e293b; margin: 0 0 12px; line-height: 1.35; }
.nsp-help { font-size: 0.8rem; color: #6b7280; margin: 10px 0 0; line-height: 1.45; }
.nsp-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.nsp-option {
  width: 100%; text-align: left; padding: 14px 16px; min-height: 48px;
  border: 1.5px solid #d1d5db; border-radius: 10px; background: #fff;
  font-size: 1rem; color: #1e293b; cursor: pointer; box-sizing: border-box;
}
.nsp-option:hover { border-color: #16a34a; }
.nsp-option-selected { border-color: #16a34a; background: #f0fdf4; font-weight: 600; }

.nsp-container input[type="number"] {
  width: 100%; padding: 12px 14px; border: 1.5px solid #d1d5db; border-radius: 10px;
  font-size: 1.05rem; color: #1e293b; background: #fff; box-sizing: border-box;
}
.nsp-rupee-wrap { position: relative; }
.nsp-rupee-wrap::before {
  content: '₹'; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #6b7280; font-size: 1.05rem; pointer-events: none;
}
.nsp-rupee-wrap input { padding-left: 28px !important; }

.nsp-btn-row { display: flex; align-items: center; justify-content: flex-end; gap: 16px; margin-top: 20px; }
.nsp-btn-primary {
  flex: 1; background: #16a34a; color: #fff; border: none; border-radius: 6px;
  padding: 12px 20px; font-size: 1rem; font-weight: 700; cursor: pointer;
}
.nsp-btn-primary:hover:not(:disabled) { background: #15803d; }
.nsp-btn-primary:disabled { background: #9ca3af; cursor: not-allowed; }
.nsp-back-link {
  background: none; border: none; color: #6b7280; font-size: 0.9rem;
  text-decoration: underline; cursor: pointer; padding: 0; white-space: nowrap;
}
.nsp-back-link:hover { color: #374151; }

/* Result screen */
.nsp-result-hero {
  text-align: center; padding: 24px 20px; background: #fff; border: 2px solid #e5e7eb;
  border-radius: 12px; margin-bottom: 14px;
}
.nsp-result-eyebrow { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.8px; color: #6b7280; font-weight: 600; }
#nsp-fv-amount { display: block; font-size: 2.4rem; font-weight: 800; color: #1e293b; margin: 6px 0 2px; font-variant-numeric: tabular-nums; }
.nsp-primary-label { font-size: 0.85rem; color: #6b7280; }

.nsp-currency-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 0 6px; }
.nsp-currency-label { font-size: 0.82rem; color: #6b7280; margin-right: 4px; }
.nsp-currency-btn {
  border: 1.5px solid #d1d5db; background: #fff; color: #374151; border-radius: 6px;
  padding: 6px 12px; font-size: 0.88rem; font-weight: 600; cursor: pointer;
}
.nsp-currency-btn:hover { border-color: #16a34a; }
.nsp-currency-btn-selected { border-color: #16a34a; background: #f0fdf4; color: #15803d; }
.nsp-fx-note { text-align: center; font-size: 0.76rem; color: #9ca3af; margin: 0 0 14px; }

.nsp-breakdown-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: 14px 0; }
.nsp-breakdown-table td { padding: 8px 10px; border-bottom: 1px solid #f1f5f9; color: #374151; }
.nsp-breakdown-table td:last-child { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; color: #1e293b; }

.nsp-note {
  font-size: 0.85rem; line-height: 1.5; border-left: 3px solid #d97706; border-radius: 4px;
  padding: 10px 13px; margin: 0 0 14px; background: #fffbeb; color: #92400e;
}
.nsp-rupee-link { font-size: 0.85rem; margin: 0 0 16px; }
.nsp-rupee-link a { color: #16a34a; font-weight: 600; }
.nsp-recalc-link {
  font-size: 0.85rem; color: #6b7280; text-decoration: underline; cursor: pointer;
  background: none; border: none; padding: 0;
}
.nsp-recalc-link:hover { background: none; color: #374151; }
.nsp-mandatory-disclaimer { font-size: 0.8rem; color: #6b7280; margin-top: 8px; line-height: 1.5; }

/* Privacy line under the card (page shell, not a step) */
.nsp-privacy-line { font-size: 0.78rem; color: #94a3b8; text-align: center; margin: 14px 0 0; }
