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

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

/* Question card */
.tds-question-prompt { font-size: 1.15rem; font-weight: 700; color: #1e293b; margin: 0 0 12px; line-height: 1.35; }
.tds-help { font-size: 0.8rem; color: #6b7280; margin: 10px 0 0; line-height: 1.45; }
.tds-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.tds-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;
}
.tds-option:hover { border-color: #16a34a; }
.tds-option-selected { border-color: #16a34a; background: #f0fdf4; font-weight: 600; }

.tds-container input[type="date"], .tds-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;
}
.tds-rupee-wrap { position: relative; }
.tds-rupee-wrap::before {
  content: '₹'; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #6b7280; font-size: 1.05rem; pointer-events: none;
}
.tds-rupee-wrap input { padding-left: 28px !important; }

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

/* Result screen */
.tds-result-hero {
  text-align: center; padding: 24px 20px; background: #fff; border: 2px solid #e5e7eb;
  border-radius: 12px; margin-bottom: 16px;
}
.tds-result-eyebrow { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.8px; color: #6b7280; font-weight: 600; }
#tds-tds-amount { display: block; font-size: 2.6rem; font-weight: 800; color: #1e293b; margin: 6px 0 2px; font-variant-numeric: tabular-nums; }
.tds-breakdown-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin: 0 0 16px; }
.tds-breakdown-table td { padding: 8px 10px; border-bottom: 1px solid #f1f5f9; color: #374151; }
.tds-breakdown-table td:last-child { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; color: #1e293b; }
.tds-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;
}
.tds-terminal-cta {
  display: block; text-align: center; background: #16a34a; color: #fff !important;
  border-radius: 8px; padding: 14px; text-decoration: none; font-weight: 700; margin: 4px 0 10px;
}
.tds-terminal-cta:hover { background: #15803d; }
.tds-recalc-link {
  font-size: 0.85rem; color: #6b7280; text-decoration: underline; cursor: pointer;
  background: none; border: none; padding: 0;
}
.tds-recalc-link:hover { background: none; color: #374151; }
.tds-mandatory-disclaimer { font-size: 0.8rem; color: #6b7280; margin-top: 18px; line-height: 1.5; }

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