:root {
  --navy: #0c1222;
  --navy-light: #151d32;
  --gold: #b8860b;
  --gold-light: #d4a84b;
  --slate-muted: #64748b;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1e293b;
}

.font-serif-display {
  font-family: 'DM Serif Display', Georgia, serif;
}

.bg-navy { background-color: var(--navy); }
.bg-navy-light { background-color: var(--navy-light); }
.text-gold { color: var(--gold); }
.border-gold { border-color: var(--gold); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--gold) 0%, #9a7209 100%);
  color: #0c1222;
  border-radius: 0.375rem;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 0.375rem;
  transition: background 0.15s, color 0.15s;
}

.btn-secondary:hover {
  background: rgba(184, 134, 11, 0.1);
}

.card-elevated {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 24px rgba(12, 18, 34, 0.06);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(184, 134, 11, 0.12);
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.form-input.error {
  border-color: #dc2626;
}

.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: #334155;
  margin-bottom: 0.375rem;
}

.form-error {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 0.25rem;
}

.progress-bar {
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
}

.step-panel { display: none; }
.step-panel.active { display: block; }

.review-card-missing {
  border-color: #fca5a5 !important;
  background: #fef2f2;
}

.review-missing-label {
  color: #dc2626;
}

.review-missing-value {
  color: #dc2626;
  font-weight: 600;
}

.payment-tab.active {
  background: rgba(184, 134, 11, 0.15);
  border-color: var(--gold);
  color: var(--navy);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@media print {
  header, footer, .no-print { display: none !important; }
  .print-only { display: block !important; }
  body { background: white; }
  .card-elevated { box-shadow: none; border: 1px solid #ccc; }
}
